:root {
  --bg: #030813;
  --bg-deep: #01040b;
  --surface: #07101f;
  --surface-2: #0a1528;
  --surface-3: #0e1c33;
  --line: rgba(132, 174, 255, 0.16);
  --line-strong: rgba(132, 174, 255, 0.3);
  --text: #f7f9ff;
  --text-soft: #b8c4d9;
  --text-muted: #7f8da7;
  --blue: #0a61ef;
  --blue-bright: #1787ff;
  --blue-light: #5eb5ff;
  --blue-dark: #0039a8;
  --cyan: #2ed6ff;
  --white: #ffffff;
  --light-bg: #f3f7fc;
  --light-surface: #ffffff;
  --dark-text: #07111f;
  --dark-soft: #526176;
  --success: #49dfa4;
  --warning: #ffc15a;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --shadow-blue: 0 20px 70px rgba(0, 83, 226, 0.24);
  --container: 1220px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.6rem);
  margin-bottom: 22px;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
  color: var(--text-soft);
}

::selection {
  background: rgba(23, 135, 255, 0.38);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--dark-text);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.icon--sm {
  width: 18px;
  height: 18px;
}

.icon--lg {
  width: 34px;
  height: 34px;
}

.icon--xl {
  width: 54px;
  height: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.eyebrow--dark {
  color: var(--blue);
}

.lead,
.lead-dark {
  font-size: clamp(1.12rem, 1.9vw, 1.38rem);
  line-height: 1.62;
}

.lead-dark {
  color: #263750;
}

.section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading p {
  max-width: 680px;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center p {
  margin-inline: auto;
}

.section-topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 48px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  box-shadow: 0 10px 30px rgba(0, 90, 240, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0, 90, 240, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.82rem;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(142, 183, 255, 0.28);
  box-shadow: none;
}

.button--ghost:hover {
  background: rgba(20, 102, 239, 0.12);
  border-color: rgba(69, 150, 255, 0.65);
  box-shadow: 0 14px 34px rgba(0, 80, 220, 0.15);
}

.button--light {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.button--light:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.button--full {
  width: 100%;
}

.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 750;
  transition: color 180ms ease, gap 180ms ease;
}

.arrow-link {
  color: var(--blue-light);
}

.text-link:hover,
.arrow-link:hover {
  color: var(--white);
  gap: 12px;
}

.text-link--light {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 5px;
}

.arrow-link--top {
  flex: 0 0 auto;
  margin-bottom: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(2, 6, 15, 0.94), rgba(2, 6, 15, 0.62));
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 6, 15, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.26);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 207px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #c1ccdc;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 29px 0 27px;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
  box-shadow: 0 0 10px rgba(45, 134, 255, 0.85);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle .close-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 15, 0.98);
}

.mobile-nav {
  display: grid;
  padding-top: 20px;
  padding-bottom: 28px;
}

.mobile-nav > a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-weight: 750;
}

.mobile-nav > a.is-active {
  color: var(--blue-light);
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 0 !important;
  color: var(--white) !important;
}

/* Home hero */
.hero {
  position: relative;
  min-height: 820px;
  padding: calc(var(--header-height) + 78px) 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 40%, rgba(0, 94, 255, 0.18), transparent 31%),
    radial-gradient(circle at 18% 20%, rgba(0, 159, 255, 0.09), transparent 28%),
    linear-gradient(160deg, #020611 0%, #050b18 52%, #030711 100%);
}

.hero-grid,
.page-hero .hero-grid,
.product-detail-hero .hero-grid,
.not-found .hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(54, 114, 224, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 114, 224, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.7) 52%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb--one {
  width: 420px;
  height: 420px;
  right: 7%;
  top: 17%;
  border: 1px solid rgba(50, 142, 255, 0.18);
  box-shadow: 0 0 100px rgba(0, 80, 255, 0.18), inset 0 0 100px rgba(0, 80, 255, 0.08);
}

.hero-orb--two {
  width: 760px;
  height: 760px;
  right: -22%;
  bottom: -47%;
  border: 1px solid rgba(50, 142, 255, 0.1);
  box-shadow: 0 0 160px rgba(0, 80, 255, 0.12);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  align-items: center;
  gap: 34px;
  min-height: 618px;
}

.hero-copy {
  padding: 30px 0 76px;
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(3.75rem, 6.6vw, 6.9rem);
}

.hero-copy h1 span {
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0%, #70baff 40%, #0a64ed 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 610px;
  color: #becae0;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.65;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  color: #a8b8d1;
  font-size: 0.82rem;
  font-weight: 650;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof .icon {
  color: var(--blue-light);
}

.hero-visual {
  position: relative;
  min-height: 630px;
}

.machine-stage {
  position: absolute;
  inset: 0;
}

.machine-stage::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 103, 255, 0.29), rgba(0, 103, 255, 0.08) 45%, transparent 70%);
  filter: blur(4px);
}

.machine-floor {
  position: absolute;
  z-index: 0;
  left: 7%;
  right: 1%;
  bottom: 58px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 86, 255, 0.28), rgba(0, 35, 100, 0.12) 48%, transparent 70%);
  transform: perspective(400px) rotateX(62deg);
  filter: blur(4px);
}

.machine {
  position: absolute;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 32px 34px rgba(0, 0, 0, 0.54)) drop-shadow(0 0 22px rgba(0, 97, 255, 0.12));
  user-select: none;
}

.machine--drawer {
  width: 315px;
  height: 500px;
  left: 27%;
  bottom: 55px;
  z-index: 3;
  animation: machineFloat 7s ease-in-out infinite;
}

.machine--system {
  width: 230px;
  height: 470px;
  left: 2%;
  bottom: 52px;
  opacity: 0.9;
  animation: machineFloat 8.2s ease-in-out -1.5s infinite;
}

.machine--bay {
  width: 220px;
  height: 400px;
  right: 0;
  bottom: 53px;
  opacity: 0.96;
  animation: machineFloat 7.7s ease-in-out -3.2s infinite;
}

@keyframes machineFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.data-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 13px 15px;
  border: 1px solid rgba(90, 160, 255, 0.25);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(13, 31, 59, 0.92), rgba(4, 13, 28, 0.9));
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.data-card__icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue-light);
  background: rgba(16, 107, 255, 0.13);
  border: 1px solid rgba(59, 142, 255, 0.22);
}

.data-card small,
.data-card strong,
.data-card div > span {
  display: block;
}

.data-card small {
  color: #6f8db9;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.data-card strong {
  margin: 1px 0 2px;
  color: var(--white);
  font-size: 0.83rem;
}

.data-card div > span {
  color: #9fb0c9;
  font-size: 0.66rem;
}

.status-line {
  display: flex !important;
  align-items: center;
  gap: 5px;
}

.status-line i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 9px var(--success);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  50% { opacity: 0.45; }
}

.data-card--stock {
  top: 96px;
  right: 2px;
}

.data-card--access {
  left: 0;
  top: 260px;
}

.data-card--replenish {
  right: 10px;
  bottom: 75px;
}

.capability-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 92px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 18px 18px 0 0;
  background: rgba(5, 14, 29, 0.84);
  backdrop-filter: blur(14px);
}

.capability-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 20px 14px;
  color: #c1cee1;
  font-size: 0.75rem;
  font-weight: 750;
  text-align: center;
  border-right: 1px solid var(--line);
}

.capability-strip span:last-child {
  border-right: 0;
}

.capability-strip .icon {
  color: var(--blue-light);
}

/* Light intro */
.section--light {
  background: var(--light-bg);
  color: var(--dark-text);
}

.section--light h2,
.section--light h3 {
  color: var(--dark-text);
}

.section--light p {
  color: var(--dark-soft);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 86px;
  align-items: start;
}

.split-intro h2 {
  max-width: 550px;
}

.split-intro > div:last-child p:last-child {
  margin-bottom: 0;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 68px;
}

.outcome-card {
  min-height: 250px;
  padding: 36px;
  border: 1px solid #dce6f2;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 15px 38px rgba(28, 57, 94, 0.06);
}

.outcome-card .icon {
  color: var(--blue);
  margin-bottom: 42px;
}

.outcome-card h3 {
  margin-bottom: 12px;
}

.outcome-card p {
  margin-bottom: 0;
}

/* Product cards */
.section--products,
.section--products-page,
.section--related {
  background:
    radial-gradient(circle at 10% 12%, rgba(0, 97, 239, 0.08), transparent 28%),
    linear-gradient(180deg, #050b16, #030711);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(13, 28, 51, 0.86), rgba(5, 13, 27, 0.92));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(64, 148, 255, 0.44);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26), 0 0 34px rgba(0, 92, 244, 0.08);
}

.product-card[hidden] {
  display: none !important;
}

.product-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 270px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(54, 114, 224, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 114, 224, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 55%, rgba(7, 100, 255, 0.25), transparent 48%),
    #050b16;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.product-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 8, 19, 0.45), transparent 45%);
  pointer-events: none;
}

.product-card__glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(0, 101, 255, 0.2);
  filter: blur(38px);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 300ms ease;
}

.product-card__image.product-image--transparent {
  width: 68%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.45));
}

.product-card:hover .product-card__image {
  transform: scale(1.035);
}

.product-card__type {
  position: absolute;
  z-index: 3;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(119, 174, 255, 0.24);
  border-radius: 999px;
  background: rgba(4, 12, 25, 0.78);
  color: #c8d7ed;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-card__type .icon {
  color: var(--blue-light);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-card__body h3 {
  margin-bottom: 11px;
  font-size: 1.42rem;
}

.product-card__body h3 a:hover {
  color: var(--blue-light);
}

.product-card__body p {
  min-height: 78px;
  margin-bottom: 18px;
  font-size: 0.93rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}

.tag-list span,
.application-chips span {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid rgba(106, 164, 255, 0.17);
  border-radius: 999px;
  background: rgba(24, 83, 171, 0.09);
  color: #9eb4d3;
  font-size: 0.67rem;
  font-weight: 700;
}

.product-card__body .arrow-link {
  margin-top: auto;
  font-size: 0.82rem;
}

/* Software section */
.section--software {
  background:
    radial-gradient(circle at 82% 50%, rgba(0, 101, 255, 0.16), transparent 31%),
    linear-gradient(150deg, #030814, #081222 60%, #030711);
}

.software-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  gap: 70px;
  align-items: center;
}

.software-copy h2 {
  max-width: 670px;
}

.software-copy .lead {
  max-width: 660px;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 34px 0 38px;
}

.feature-list > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-list .icon {
  width: 28px;
  height: 28px;
  margin-top: 2px;
  color: var(--blue-light);
}

.feature-list span,
.feature-list strong {
  display: block;
}

.feature-list span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.feature-list strong {
  color: var(--white);
  margin-bottom: 2px;
}

.dashboard-shell {
  position: relative;
  border: 1px solid rgba(99, 158, 255, 0.28);
  border-radius: 20px;
  background: #08101f;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42), 0 0 80px rgba(0, 77, 230, 0.12);
  overflow: hidden;
  transform: perspective(1500px) rotateY(-3deg) rotateX(1deg);
}

.dashboard-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 35%);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #0b1425;
  color: #8fa0ba;
  font-size: 0.7rem;
}

.dashboard-logo {
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-right: 12px;
}

.dashboard-topbar i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #28415f;
}

.dashboard-topbar i:first-of-type {
  margin-left: auto;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 484px;
}

.dashboard-body aside {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 23px 15px;
  border-right: 1px solid var(--line);
  background: #070f1d;
}

.dashboard-body aside span {
  width: 23px;
  height: 23px;
  border-radius: 7px;
  background: #16243a;
}

.dashboard-body aside span.active {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  box-shadow: 0 0 18px rgba(0, 100, 255, 0.45);
}

.dashboard-main {
  padding: 24px;
}

.dashboard-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.dashboard-heading small,
.dashboard-heading strong {
  display: block;
}

.dashboard-heading small {
  color: #5d7290;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.dashboard-heading strong {
  font-size: 1.12rem;
}

.dashboard-heading button {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d192b;
  color: #9fafc4;
  font-size: 0.66rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-row > div,
.chart-card,
.stock-list,
.donut {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(18, 34, 58, 0.88), rgba(9, 19, 35, 0.92));
}

.metric-row > div {
  padding: 13px;
}

.metric-row small,
.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row small {
  color: #7486a0;
  font-size: 0.58rem;
}

.metric-row strong {
  margin: 5px 0 3px;
  font-size: 0.91rem;
}

.metric-row span {
  color: #7e93b0;
  font-size: 0.58rem;
}

.metric-row .metric-up {
  color: var(--success);
}

.chart-card {
  margin-top: 10px;
  padding: 15px;
}

.chart-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.69rem;
}

.chart-card__head span {
  color: var(--success);
}

.chart-bars {
  display: flex;
  height: 130px;
  align-items: flex-end;
  gap: 7px;
  padding-top: 20px;
  border-bottom: 1px solid var(--line);
  background-image: repeating-linear-gradient(to bottom, rgba(90, 130, 190, 0.08), rgba(90, 130, 190, 0.08) 1px, transparent 1px, transparent 32px);
}

.chart-bars i {
  flex: 1;
  min-width: 8px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, #0648b9, #1e8bff);
  box-shadow: 0 0 10px rgba(0, 113, 255, 0.2);
}

.dashboard-lower {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 10px;
  margin-top: 10px;
}

.stock-list {
  padding: 12px;
}

.stock-list > div {
  display: grid;
  grid-template-columns: 90px 1fr 44px;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  color: #aebbd0;
  font-size: 0.56rem;
}

.stock-list > div + div {
  border-top: 1px solid var(--line);
}

.stock-list i,
.health-row i {
  height: 5px;
  border-radius: 999px;
  background: #172943;
  overflow: hidden;
}

.stock-list b,
.health-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.stock-list em {
  color: #6f86a3;
  font-style: normal;
  text-align: right;
}

.donut {
  display: grid;
  place-items: center;
  padding: 12px;
}

.donut::before {
  content: "";
  grid-area: 1 / 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(var(--blue-bright) 0 78%, #152b48 78% 100%);
  mask: radial-gradient(circle at center, transparent 50%, #000 52%);
}

.donut span {
  grid-area: 1 / 1;
  color: #7890af;
  font-size: 0.5rem;
  text-align: center;
}

.donut strong {
  display: block;
  color: var(--white);
  font-size: 0.78rem;
}

/* Process */
.section--process {
  background: #f6f9fd;
  color: var(--dark-text);
}

.section--process p {
  color: var(--dark-soft);
}

.section--process .eyebrow {
  color: var(--blue);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 55px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b9cee9 12%, #b9cee9 88%, transparent);
}

.process-card {
  position: relative;
  z-index: 1;
  padding: 30px 24px;
  border: 1px solid #dbe5f1;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(23, 58, 105, 0.06);
}

.process-card > span {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #c2d1e4;
  font-weight: 900;
  font-size: 1.9rem;
}

.process-card .icon {
  color: var(--blue);
  margin-bottom: 42px;
}

.process-card h3 {
  margin-bottom: 12px;
}

.process-card p {
  margin-bottom: 0;
  font-size: 0.91rem;
}

/* Industries cards */
.section--industries {
  background:
    radial-gradient(circle at 18% 80%, rgba(0, 100, 255, 0.13), transparent 26%),
    linear-gradient(160deg, #020711, #081322 52%, #030711);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sector-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(14, 31, 56, 0.8), rgba(5, 13, 26, 0.88));
  transition: transform 180ms ease, border-color 180ms ease;
}

.sector-card:hover {
  transform: translateY(-4px);
  border-color: rgba(68, 149, 255, 0.42);
}

.sector-card .icon {
  margin-bottom: 48px;
  color: var(--blue-light);
}

.sector-card h3 {
  margin-bottom: 12px;
}

.sector-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

/* Experience */
.section--experience {
  background: var(--light-bg);
  color: var(--dark-text);
}

.section--experience p {
  color: var(--dark-soft);
}

.section--experience .eyebrow {
  color: var(--blue);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 76px;
  align-items: center;
}

.experience-copy h2 {
  max-width: 700px;
}

.experience-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0;
}

.experience-points span {
  padding: 16px;
  border: 1px solid #dce6f2;
  border-radius: 12px;
  background: var(--white);
  color: var(--dark-soft);
  font-size: 0.74rem;
}

.experience-points strong {
  display: block;
  color: var(--blue-dark);
  font-size: 0.93rem;
  margin-bottom: 4px;
}

.section--experience .button--ghost {
  color: var(--blue-dark);
  border-color: #bfd3ed;
  background: var(--white);
}

.experience-panel {
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 46px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(60, 120, 230, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 120, 230, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 40% 25%, rgba(0, 103, 255, 0.35), transparent 35%),
    #030813;
  background-size: 38px 38px, 38px 38px, auto, auto;
  box-shadow: var(--shadow);
}

.experience-mark {
  position: absolute;
  top: 40px;
  right: 42px;
  width: 120px;
  opacity: 0.92;
  filter: drop-shadow(0 0 28px rgba(0, 93, 255, 0.38));
}

.experience-panel blockquote {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.experience-panel > p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  color: #aebdd4;
}

.powered-badge {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 12px;
}

.powered-badge span {
  color: #6f84a3;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.powered-badge strong {
  color: var(--blue-light);
  font-size: 1.15rem;
}

/* CTA */
.section--cta {
  padding: 72px 0;
  background: #02060f;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: center;
  gap: 48px;
  padding: 52px 58px;
  overflow: hidden;
  border: 1px solid rgba(111, 173, 255, 0.34);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 91% 20%, rgba(62, 164, 255, 0.36), transparent 28%),
    linear-gradient(135deg, #0646ba, #0868ef 52%, #0343ad);
  box-shadow: 0 24px 70px rgba(0, 70, 210, 0.28);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel .eyebrow {
  color: #cfe8ff;
}

.cta-panel h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 4vw, 4rem);
}

.cta-panel p {
  max-width: 720px;
  margin-bottom: 0;
  color: #d7e8ff;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}

/* Page heroes */
.page-hero,
.product-detail-hero {
  position: relative;
  padding: calc(var(--header-height) + 96px) 0 106px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 35%, rgba(0, 102, 255, 0.2), transparent 28%),
    linear-gradient(155deg, #020611, #091426 58%, #030711);
}

.page-hero::after,
.product-detail-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -320px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(65, 145, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(0, 90, 255, 0.1), inset 0 0 100px rgba(0, 90, 255, 0.06);
}

.page-hero--compact {
  padding-bottom: 78px;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
}

.page-hero__content h1 {
  max-width: 1020px;
  font-size: clamp(3.1rem, 6vw, 6.2rem);
  margin-bottom: 22px;
}

.page-hero__content > p {
  max-width: 780px;
  margin-bottom: 0;
  color: #bac8dd;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: #7890b1;
  font-size: 0.74rem;
}

.breadcrumbs a:hover {
  color: var(--blue-light);
}

.breadcrumbs i {
  color: #435775;
  font-style: normal;
}

.breadcrumbs span {
  color: #b2c1d7;
}

/* Products catalogue */
.product-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-bar button {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #a9b8cf;
  font-size: 0.75rem;
  font-weight: 750;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.filter-bar button:hover,
.filter-bar button.is-active {
  border-color: rgba(72, 152, 255, 0.52);
  background: rgba(10, 97, 239, 0.16);
  color: var(--white);
}

.filter-result {
  margin: 0;
  color: #8092ad;
  font-size: 0.75rem;
}

.product-grid--catalogue {
  row-gap: 26px;
}

.section--comparison {
  background: var(--light-bg);
  color: var(--dark-text);
}

.section--comparison p {
  color: var(--dark-soft);
}

.section--comparison .eyebrow {
  color: var(--blue);
}

.table-scroll {
  margin-top: 44px;
  overflow-x: auto;
  border: 1px solid #dce6f2;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(24, 55, 97, 0.06);
}

.comparison-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  color: var(--dark-soft);
  font-size: 0.88rem;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid #e6edf5;
}

.comparison-table thead th {
  color: var(--dark-text);
  background: #eef4fb;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  color: var(--blue-dark);
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table a:hover {
  color: var(--blue);
}

.section--selection {
  background: linear-gradient(160deg, #071323, #030711);
}

.selection-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: 28px 72px;
  align-items: start;
}

.selection-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  grid-row: span 2;
}

.selection-cards article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.selection-cards .icon {
  color: var(--blue-light);
  margin-bottom: 42px;
}

.selection-cards p {
  font-size: 0.85rem;
}

.selection-layout > .button {
  justify-self: start;
}

/* Product detail */
.product-detail-hero {
  padding-bottom: 90px;
}

.product-detail__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: 70px;
  align-items: center;
}

.product-detail__copy h1 {
  font-size: clamp(3.5rem, 6.4vw, 6.7rem);
  margin-bottom: 20px;
}

.product-detail__strap {
  color: var(--white);
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  font-weight: 650;
  line-height: 1.45;
}

.product-detail__copy > p:not(.product-detail__strap) {
  max-width: 680px;
}

.product-highlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  padding: 0;
  margin: 28px 0 34px;
  list-style: none;
}

.product-highlight-list li {
  display: flex;
  gap: 9px;
  color: #b7c6dc;
  font-size: 0.83rem;
}

.product-highlight-list .icon {
  color: var(--blue-light);
  margin-top: 3px;
}

.product-detail__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 570px;
  padding: 24px;
  border: 1px solid rgba(89, 156, 255, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(58, 118, 226, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 118, 226, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(0, 103, 255, 0.25), transparent 43%),
    rgba(5, 13, 26, 0.78);
  background-size: 40px 40px, 40px 40px, auto, auto;
  box-shadow: var(--shadow-blue);
  overflow: hidden;
}

.product-detail__halo {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(0, 100, 255, 0.22);
  filter: blur(55px);
}

.product-detail__image {
  position: relative;
  z-index: 1;
  width: 92%;
  max-height: 450px;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.4));
}

.product-detail__image--contain {
  width: 70%;
  max-height: 390px;
}

.product-detail__badge {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 270px;
  padding: 13px 16px;
  border: 1px solid rgba(92, 161, 255, 0.28);
  border-radius: 13px;
  background: rgba(3, 11, 24, 0.88);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.product-detail__badge .icon {
  color: var(--blue-light);
}

.product-detail__badge small,
.product-detail__badge span {
  display: block;
}

.product-detail__badge small {
  color: #6e84a4;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-detail__badge span {
  color: #c3d0e3;
  font-size: 0.73rem;
}

.product-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 76px;
  align-items: end;
}

.product-intro-callout {
  display: flex;
  gap: 18px;
  padding: 24px;
  border: 1px solid #d9e5f2;
  border-radius: var(--radius);
  background: var(--white);
}

.product-intro-callout > span {
  flex: 0 0 auto;
  color: var(--blue);
}

.product-intro-callout p,
.product-intro-callout strong {
  display: block;
}

.product-intro-callout p {
  margin: 0;
  font-size: 0.85rem;
}

.product-intro-callout strong {
  margin-bottom: 4px;
  color: var(--dark-text);
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.feature-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid #dce6f2;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(29, 61, 100, 0.05);
}

.feature-card .icon {
  color: var(--blue);
  margin-bottom: 42px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.section--applications {
  background: linear-gradient(150deg, #030711, #081427 54%, #030711);
}

.applications-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 0.78fr);
  gap: 80px;
  align-items: center;
}

.applications-copy h2 {
  max-width: 700px;
}

.application-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.application-chips span {
  padding: 9px 12px;
  color: #b7c7dd;
  font-size: 0.74rem;
}

.spec-panel {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 34, 61, 0.9), rgba(5, 14, 29, 0.95));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.spec-panel__head {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 97, 239, 0.08);
}

.spec-panel__head > span {
  color: var(--blue-light);
}

.spec-panel__head small,
.spec-panel__head strong {
  display: block;
}

.spec-panel__head small {
  color: #6f85a7;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.spec-panel__head strong {
  font-size: 1.1rem;
}

.spec-panel table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.spec-panel th,
.spec-panel td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-panel th {
  width: 32%;
  color: #dbe7f7;
  font-weight: 700;
}

.spec-panel td {
  color: #93a7c3;
}

.spec-panel .arrow-link {
  margin: 20px 24px 24px;
}

.section--integration {
  background: #f3f7fc;
  color: var(--dark-text);
}

.section--integration p {
  color: var(--dark-soft);
}

.integration-layout {
  display: grid;
  grid-template-columns: minmax(500px, 1.05fr) minmax(0, 0.95fr);
  gap: 80px;
  align-items: center;
}

.integration-graphic {
  position: relative;
  height: 500px;
  border: 1px solid #dbe6f2;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(29, 94, 198, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 94, 198, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(0, 100, 255, 0.14), transparent 36%),
    var(--white);
  background-size: 40px 40px, 40px 40px, auto, auto;
  box-shadow: 0 18px 50px rgba(30, 65, 108, 0.07);
}

.integration-graphic > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #aac7ec;
  stroke-width: 1.5;
  stroke-dasharray: 7 7;
}

.integration-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  border: 1px solid #d4e2f2;
  border-radius: 12px;
  background: var(--white);
  color: #2e4059;
  box-shadow: 0 10px 28px rgba(33, 72, 120, 0.1);
  font-size: 0.72rem;
  font-weight: 750;
}

.integration-node .icon {
  color: var(--blue);
}

.integration-node--centre {
  left: 50%;
  top: 50%;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  padding: 21px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border-color: #9fc4f5;
  box-shadow: 0 18px 45px rgba(0, 87, 224, 0.19);
}

.integration-node--centre img {
  width: 84px;
}

.integration-node--one { left: 8%; top: 13%; }
.integration-node--two { right: 8%; top: 15%; }
.integration-node--three { left: 9%; bottom: 14%; }
.integration-node--four { right: 8%; bottom: 15%; }

.integration-copy .eyebrow {
  color: var(--blue);
}

.integration-copy h2 {
  max-width: 680px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 34px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: inherit;
  font-size: 0.9rem;
}

.check-list .icon {
  color: var(--blue-light);
  margin-top: 3px;
}

.section--integration .check-list li {
  color: #43546c;
}

.section--integration .button--ghost {
  color: var(--blue-dark);
  border-color: #bed2ec;
  background: var(--white);
}

/* Solutions page */
.section--solution-pillars {
  padding-top: 0;
  margin-top: -42px;
  z-index: 3;
  overflow: visible;
}

.solution-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.solution-pillar {
  min-height: 255px;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 33, 59, 0.97), rgba(5, 13, 27, 0.98));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.26);
}

.solution-pillar .icon {
  color: var(--blue-light);
  margin-bottom: 44px;
}

.solution-pillar p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.solution-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  gap: 90px;
  align-items: center;
}

.solution-story-copy h2 {
  max-width: 700px;
}

.solution-story-copy .button {
  margin-top: 20px;
}

.solution-map {
  position: relative;
  height: 520px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(24, 86, 183, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 86, 183, 0.08) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(0, 101, 255, 0.17), transparent 37%),
    var(--white);
  background-size: 42px 42px, 42px 42px, auto, auto;
  border: 1px solid #d9e5f1;
  box-shadow: 0 18px 50px rgba(28, 61, 105, 0.07);
}

.solution-map::before,
.solution-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 310px;
  height: 310px;
  border: 1px dashed #b8d0ed;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.solution-map::after {
  width: 430px;
  height: 430px;
  opacity: 0.5;
}

.solution-map__centre {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  padding: 22px;
  border-radius: 50%;
  background: #061021;
  box-shadow: 0 20px 50px rgba(0, 77, 210, 0.25);
  transform: translate(-50%, -50%);
}

.solution-map__item {
  position: absolute;
  z-index: 2;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid #d4e2f2;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(31, 66, 110, 0.1);
  color: var(--blue);
  text-align: center;
}

.solution-map__item span {
  color: #344861;
  font-size: 0.65rem;
  font-weight: 750;
}

.item-a { left: 6%; top: 12%; }
.item-b { left: 37%; top: 4%; }
.item-c { right: 6%; top: 15%; }
.item-d { left: 5%; bottom: 12%; }
.item-e { left: 39%; bottom: 4%; }
.item-f { right: 6%; bottom: 15%; }

.section--control-cycle {
  background: linear-gradient(155deg, #030711, #071426 55%, #030711);
}

.cycle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.cycle-grid article {
  position: relative;
  min-height: 290px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.cycle-grid article > span {
  position: absolute;
  right: 18px;
  top: 16px;
  color: #344967;
  font-size: 1.65rem;
  font-weight: 900;
}

.cycle-grid .icon {
  color: var(--blue-light);
  margin: 38px 0 44px;
}

.cycle-grid p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.section--integrations {
  background: var(--light-bg);
  color: var(--dark-text);
}

.section--integrations p {
  color: var(--dark-soft);
}

.integrations-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
  gap: 76px;
  align-items: center;
}

.section--integrations .eyebrow {
  color: var(--blue);
}

.integration-option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.integration-option-grid article {
  padding: 22px;
  border: 1px solid #dae5f1;
  border-radius: 14px;
  background: var(--white);
}

.integration-option-grid .icon {
  color: var(--blue);
  margin-bottom: 24px;
}

.integration-option-grid h3 {
  font-size: 1.04rem;
  margin-bottom: 8px;
}

.integration-option-grid p {
  font-size: 0.78rem;
  margin-bottom: 0;
}

.integration-code {
  position: relative;
}

.integration-code::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  border-radius: 50%;
  background: rgba(0, 99, 255, 0.2);
  filter: blur(55px);
}

.code-window {
  position: relative;
  z-index: 1;
  border: 1px solid #1f3d65;
  border-radius: 18px;
  background: #07101e;
  box-shadow: 0 28px 70px rgba(14, 42, 80, 0.24);
  overflow: hidden;
}

.code-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 48px;
  padding: 0 15px;
  border-bottom: 1px solid #18304f;
  color: #6d82a0;
  font-size: 0.66rem;
}

.code-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29425f;
}

.code-bar span {
  margin-left: 8px;
}

.code-window pre {
  margin: 0;
  padding: 34px;
  overflow-x: auto;
  color: #c8d5e8;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
  line-height: 2;
}

.code-window code span {
  color: #58aaff;
}

.section--rental {
  padding: 72px 0;
  background: linear-gradient(140deg, #0445b7, #096bf0 55%, #0439a0);
}

.rental-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.rental-icon {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.rental-panel .eyebrow {
  color: #d0e9ff;
  margin-bottom: 12px;
}

.rental-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.rental-panel p {
  max-width: 750px;
  margin-bottom: 0;
  color: #d7e8ff;
}

.section--faq {
  background: #030813;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(540px, 1.25fr);
  gap: 80px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 22px;
  color: var(--white);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--blue-light);
  transition: transform 180ms ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item > div {
  padding: 0 22px 20px;
}

.faq-item p {
  margin: 0;
  font-size: 0.9rem;
}

/* Industries page */
.section--industry-cards {
  background: linear-gradient(165deg, #040a15, #071326 50%, #030711);
}

.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.industry-detail-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 101, 255, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.025);
}

.industry-detail-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  border: 1px solid rgba(89, 158, 255, 0.25);
  border-radius: 16px;
  background: rgba(10, 97, 239, 0.1);
  color: var(--blue-light);
}

.industry-detail-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 16px;
}

.industry-detail-card p {
  max-width: 620px;
}

.industry-detail-card .arrow-link {
  margin-top: auto;
}

.inventory-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.inventory-type {
  min-height: 230px;
  padding: 30px;
  border: 1px solid #dce6f2;
  border-radius: var(--radius);
  background: var(--white);
}

.inventory-type .icon {
  color: var(--blue);
  margin-bottom: 36px;
}

.inventory-type p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.section--use-case {
  background: linear-gradient(145deg, #030711, #09162a 58%, #030711);
}

.use-case-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 76px;
  align-items: center;
}

.site-map {
  position: relative;
  height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(54, 114, 224, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 114, 224, 0.08) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(0, 101, 255, 0.16), transparent 38%),
    rgba(5, 14, 28, 0.7);
  background-size: 40px 40px, 40px 40px, auto, auto;
}

.site-map__line {
  position: absolute;
  left: 50%;
  top: 13%;
  bottom: 13%;
  width: 2px;
  background: linear-gradient(transparent, rgba(38, 126, 255, 0.65) 12%, rgba(38, 126, 255, 0.65) 88%, transparent);
}

.site-map__hub {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(89, 157, 255, 0.46);
  border-radius: 50%;
  background: #040c1a;
  box-shadow: 0 20px 60px rgba(0, 76, 215, 0.26);
  transform: translate(-50%, -50%);
}

.site-map__hub img {
  width: 70px;
}

.site-map__hub span {
  color: #a8b9d0;
  font-size: 0.62rem;
  font-weight: 750;
  text-align: center;
}

.site-map__node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 130px;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(6, 16, 33, 0.94);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  color: var(--blue-light);
}

.site-map__node span {
  color: #c3cfe0;
  font-size: 0.72rem;
  font-weight: 700;
}

.site-map .node-1 { left: 7%; top: 12%; }
.site-map .node-2 { right: 7%; top: 18%; }
.site-map .node-3 { left: 5%; top: 45%; }
.site-map .node-4 { right: 6%; bottom: 24%; }
.site-map .node-5 { left: 10%; bottom: 10%; }

/* About */
.section--about-story {
  background: linear-gradient(160deg, #030711, #091527 58%, #030711);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  gap: 80px;
  align-items: center;
}

.about-story-copy .lead {
  color: #d3deee;
}

.about-stat-panel {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(57, 120, 229, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 120, 229, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 10%, rgba(0, 102, 255, 0.24), transparent 32%),
    #050d1c;
  background-size: 38px 38px, 38px 38px, auto, auto;
  box-shadow: var(--shadow);
}

.about-stat-panel > img {
  width: 330px;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.about-stat-grid div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.about-stat-grid strong,
.about-stat-grid span {
  display: block;
}

.about-stat-grid strong {
  color: var(--blue-light);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 9px;
}

.about-stat-grid span {
  color: #9aaac1;
  font-size: 0.7rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.value-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid #dce6f2;
  border-radius: var(--radius);
  background: var(--white);
}

.value-card .icon {
  color: var(--blue);
  margin-bottom: 45px;
}

.value-card p {
  font-size: 0.86rem;
  margin-bottom: 0;
}

.section--partnership {
  background: linear-gradient(145deg, #030711, #081426 56%, #030711);
}

.partnership-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(0, 1.14fr);
  gap: 80px;
  align-items: center;
}

.partnership-mark {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, rgba(0, 101, 255, 0.24), transparent 42%),
    rgba(255, 255, 255, 0.02);
}

.partnership-mark span {
  color: #7a8da8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.partnership-mark strong {
  color: var(--blue-light);
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
  text-shadow: 0 0 34px rgba(0, 109, 255, 0.25);
}

.partnership-mark p {
  margin: 18px 0 0;
}

.partnership-copy h2 {
  max-width: 700px;
}

.section--regions {
  background: var(--light-bg);
  color: var(--dark-text);
}

.section--regions p {
  color: var(--dark-soft);
}

.section--regions .eyebrow {
  color: var(--blue);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.region-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid #dce6f2;
  border-radius: var(--radius);
  background: var(--white);
}

.region-card > span {
  color: var(--blue);
}

.region-card small {
  display: block;
  margin: 38px 0 8px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.region-card h3 {
  font-size: 2rem;
}

.region-card--wide {
  grid-column: 1 / -1;
  min-height: 260px;
}

/* Support */
.section--support-journey {
  background: linear-gradient(160deg, #030711, #081426 54%, #030711);
}

.support-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.support-step {
  position: relative;
  min-height: 340px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.support-step > span {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #344966;
  font-size: 1.75rem;
  font-weight: 900;
}

.support-step .icon {
  color: var(--blue-light);
  margin: 48px 0 52px;
}

.support-step p {
  font-size: 0.83rem;
  margin-bottom: 0;
}

.support-promise-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: 80px;
  align-items: center;
}

.support-promise-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.support-promise-cards article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid #dce6f2;
  border-radius: var(--radius);
  background: var(--white);
}

.support-promise-cards .icon {
  color: var(--blue);
  margin-bottom: 36px;
}

.support-promise-cards p {
  font-size: 0.82rem;
  margin-bottom: 0;
}

.section--remote-support {
  background: linear-gradient(145deg, #030711, #081427 58%, #030711);
}

.remote-layout {
  display: grid;
  grid-template-columns: minmax(500px, 1.05fr) minmax(0, 0.95fr);
  gap: 80px;
  align-items: center;
}

.remote-screen {
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: #07101e;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.remote-screen__top {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 50px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: #7d91ad;
  font-size: 0.68rem;
}

.remote-screen__top span {
  margin-right: auto;
  color: #c7d4e7;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.remote-screen__top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29415f;
}

.remote-screen__body {
  display: grid;
  justify-items: center;
  padding: 48px;
}

.pulse-ring {
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(73, 148, 255, 0.44);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(0, 101, 255, 0.06), 0 0 0 38px rgba(0, 101, 255, 0.03), 0 0 45px rgba(0, 102, 255, 0.22);
  color: var(--blue-light);
}

.remote-screen__body > strong {
  font-size: 1.3rem;
}

.remote-screen__body > p {
  margin: 4px 0 30px;
  font-size: 0.8rem;
}

.health-row {
  width: 100%;
  display: grid;
  grid-template-columns: 90px 1fr 52px;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: #9fb0c7;
  font-size: 0.67rem;
}

.health-row + .health-row {
  border-top: 1px solid var(--line);
}

.health-row em {
  color: var(--success);
  font-style: normal;
  text-align: right;
}

.section--training {
  padding: 72px 0;
  background: linear-gradient(140deg, #0649bc, #096cf1 55%, #043a9e);
}

.training-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}

.training-panel > div:first-child {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.training-panel .eyebrow {
  color: #d4ebff;
  margin-bottom: 12px;
}

.training-panel h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  margin-bottom: 10px;
}

.training-panel p {
  max-width: 780px;
  margin-bottom: 0;
  color: #d8e8ff;
}

/* Contact */
.section--contact {
  background: linear-gradient(155deg, #030711, #071426 56%, #030711);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(560px, 1.16fr);
  gap: 80px;
  align-items: start;
}

.contact-intro h2 {
  max-width: 650px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin: 32px 0;
}

.contact-methods > a,
.location-stack article {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-methods > a:hover {
  border-color: rgba(75, 151, 255, 0.46);
  background: rgba(10, 97, 239, 0.07);
}

.contact-methods > a > span,
.location-stack article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: rgba(10, 97, 239, 0.12);
  color: var(--blue-light);
}

.contact-methods small,
.contact-methods strong,
.location-stack small,
.location-stack strong {
  display: block;
}

.contact-methods small,
.location-stack small {
  color: #7187a7;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.contact-methods strong,
.location-stack strong {
  color: var(--white);
  margin: 2px 0;
}

.contact-methods p,
.location-stack p {
  margin: 0;
  font-size: 0.73rem;
}

.location-stack {
  display: grid;
  gap: 12px;
}

.contact-form-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(15, 32, 58, 0.96), rgba(5, 14, 29, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-form-card__head {
  padding: 26px 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 92, 224, 0.08);
}

.contact-form-card__head span,
.contact-form-card__head strong {
  display: block;
}

.contact-form-card__head span {
  color: var(--blue-light);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.contact-form-card__head strong {
  margin-top: 3px;
  font-size: 1.5rem;
}

.contact-form {
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #b8c6d9;
  font-size: 0.72rem;
  font-weight: 700;
}

.field label span {
  color: var(--blue-light);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(115, 160, 225, 0.22);
  border-radius: 10px;
  background: #07101e;
  color: var(--white);
  padding: 12px 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  min-height: 47px;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(23, 135, 255, 0.14);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #ff6b77;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #50637e;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: #93a4bc;
  font-size: 0.72rem;
}

.consent input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.consent a {
  color: var(--blue-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  color: #6e829f;
  font-size: 0.66rem;
  text-align: center;
}

.form-status {
  color: var(--success);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.section--contact-next {
  background: var(--light-bg);
  color: var(--dark-text);
}

.section--contact-next .eyebrow {
  color: var(--blue);
}

.next-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.next-step-grid article {
  min-height: 240px;
  padding: 30px;
  border: 1px solid #dce6f2;
  border-radius: var(--radius);
  background: var(--white);
}

.next-step-grid article > span {
  display: block;
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 42px;
}

.next-step-grid p {
  color: var(--dark-soft);
  margin-bottom: 0;
}

/* Legal and 404 */
.section--legal {
  background: var(--light-bg);
  color: var(--dark-text);
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin-top: 48px;
  font-size: 1.8rem;
}

.legal-content p {
  color: var(--dark-soft);
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-notice {
  padding: 22px;
  border: 1px solid #bed5f2;
  border-radius: 14px;
  background: #eaf3ff;
}

.legal-notice strong {
  color: var(--blue-dark);
}

.legal-notice p {
  margin: 5px 0 0;
}

.legal-updated {
  margin-top: 50px;
  font-size: 0.82rem;
}

.not-found {
  position: relative;
  min-height: 780px;
  display: grid;
  place-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(0, 101, 255, 0.17), transparent 34%), #030813;
}

.not-found__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 720px;
  text-align: center;
}

.not-found__content img {
  width: 90px;
  margin-bottom: 20px;
}

.not-found__content > span {
  color: var(--blue-light);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.not-found__content h1 {
  margin: 18px 0;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.not-found__content .hero-actions {
  justify-content: center;
  margin-top: 20px;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 84px 0 24px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #01040b;
}

.footer-glow {
  position: absolute;
  left: 8%;
  bottom: -220px;
  width: 520px;
  height: 420px;
  border-radius: 50%;
  background: rgba(0, 89, 234, 0.12);
  filter: blur(90px);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 1fr;
  gap: 55px;
}

.footer-brand img {
  width: 270px;
  margin-bottom: 24px;
}

.footer-brand > p {
  max-width: 380px;
  font-size: 0.85rem;
}

.footer-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 25px;
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #a8b8ce;
  font-size: 0.8rem;
}

.footer-contact-list a:hover {
  color: var(--white);
}

.footer-contact-list .icon {
  color: var(--blue-light);
}

.footer-heading {
  margin: 11px 0 22px;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links,
.footer-locations {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  color: #899bb4;
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: var(--blue-light);
}

.footer-locations {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.footer-locations li {
  display: flex;
  gap: 10px;
  color: #8698b0;
  font-size: 0.75rem;
}

.footer-locations .icon {
  color: var(--blue-light);
  margin-top: 2px;
}

.footer-locations strong {
  color: #c7d3e3;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  margin-top: 66px;
  border-top: 1px solid var(--line);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #687c98;
  font-size: 0.68rem;
}

.footer-bottom > div {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover {
  color: var(--blue-light);
}

/* Responsive */
@media (max-width: 1180px) {
  .desktop-nav {
    gap: 20px;
  }

  .header-phone {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  }

  .machine--drawer {
    left: 24%;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .software-layout,
  .support-promise-grid,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .solution-pillar-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cycle-grid,
  .support-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .selection-layout {
    grid-template-columns: 1fr;
  }

  .selection-cards {
    grid-row: auto;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .desktop-nav,
  .header-actions > .button,
  .header-phone {
    display: none;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand img {
    width: 185px;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: calc(var(--header-height) + 60px);
  }

  .hero-layout,
  .product-detail__layout,
  .software-layout,
  .experience-layout,
  .applications-layout,
  .integration-layout,
  .solution-story-grid,
  .integrations-layout,
  .use-case-layout,
  .about-story-grid,
  .partnership-layout,
  .support-promise-grid,
  .remote-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
    padding-bottom: 10px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .machine-stage {
    max-width: 680px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
  }

  .capability-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .capability-strip span:nth-child(3) {
    border-right: 0;
  }

  .capability-strip span:nth-child(n+4) {
    border-top: 1px solid var(--line);
  }

  .split-intro,
  .product-intro-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .outcome-grid,
  .process-grid,
  .inventory-type-grid,
  .next-step-grid,
  .feature-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .product-grid,
  .product-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-shell {
    transform: none;
  }

  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-points {
    max-width: 700px;
  }

  .experience-panel {
    min-height: 420px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .product-detail__visual {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }

  .product-intro-callout {
    max-width: 620px;
  }

  .integration-graphic,
  .solution-map,
  .site-map {
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }

  .cycle-grid,
  .support-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .rental-panel,
  .training-panel {
    grid-template-columns: auto 1fr;
  }

  .rental-panel .button,
  .training-panel .button {
    grid-column: 2;
    justify-self: start;
  }

  .industry-detail-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-panel,
  .remote-visual,
  .contact-form-card {
    max-width: 720px;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1.35fr repeat(2, 0.7fr);
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .section-topline {
    display: block;
  }

  .arrow-link--top {
    margin-top: 22px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-copy h1 {
    font-size: clamp(3.05rem, 14vw, 4.8rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 220px;
  }

  .hero-proof {
    display: grid;
  }

  .hero-visual {
    min-height: 500px;
  }

  .machine-stage {
    transform: translateX(-50%) scale(0.82);
    transform-origin: center bottom;
  }

  .data-card--stock {
    right: -15px;
  }

  .data-card--access {
    left: -15px;
  }

  .capability-strip {
    grid-template-columns: 1fr;
    border-radius: 14px 14px 0 0;
  }

  .capability-strip span {
    justify-content: flex-start;
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 14px 20px;
  }

  .capability-strip span:first-child {
    border-top: 0;
  }

  .split-intro {
    gap: 32px;
  }

  .outcome-grid,
  .product-grid,
  .product-grid--three,
  .process-grid,
  .sector-grid,
  .experience-points,
  .feature-card-grid,
  .solution-pillar-grid,
  .cycle-grid,
  .integration-option-grid,
  .industry-detail-grid,
  .inventory-type-grid,
  .value-grid,
  .region-grid,
  .support-steps,
  .support-promise-cards,
  .next-step-grid,
  .selection-cards {
    grid-template-columns: 1fr;
  }

  .product-card__visual {
    height: 300px;
  }

  .product-card__body p {
    min-height: 0;
  }

  .software-layout {
    gap: 48px;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-body aside {
    display: none;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .dashboard-lower {
    grid-template-columns: 1fr;
  }

  .stock-list > div {
    grid-template-columns: 76px 1fr 42px;
  }

  .experience-panel {
    padding: 32px;
  }

  .experience-mark {
    width: 90px;
    top: 28px;
    right: 28px;
  }

  .cta-panel {
    padding: 38px 28px;
  }

  .cta-actions {
    align-items: stretch;
  }

  .cta-actions .button {
    width: 100%;
  }

  .page-hero,
  .product-detail-hero {
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 75px;
  }

  .page-hero__content h1,
  .product-detail__copy h1 {
    font-size: clamp(2.9rem, 13vw, 4.7rem);
  }

  .product-filter-wrap {
    display: block;
  }

  .filter-result {
    margin-top: 14px;
  }

  .product-highlight-list {
    grid-template-columns: 1fr;
  }

  .product-detail__visual {
    min-height: 440px;
  }

  .product-detail__badge {
    left: 18px;
    right: 18px;
    max-width: none;
  }

  .applications-layout,
  .integration-layout {
    gap: 48px;
  }

  .spec-panel th,
  .spec-panel td {
    display: block;
    width: 100%;
    border-bottom: 0;
  }

  .spec-panel th {
    padding-bottom: 3px;
  }

  .spec-panel td {
    padding-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .integration-graphic,
  .solution-map,
  .site-map {
    height: 430px;
  }

  .integration-node {
    padding: 10px;
    font-size: 0.62rem;
  }

  .integration-node--centre {
    width: 100px;
    height: 100px;
  }

  .integration-node--one { left: 3%; top: 9%; }
  .integration-node--two { right: 3%; top: 11%; }
  .integration-node--three { left: 3%; bottom: 10%; }
  .integration-node--four { right: 3%; bottom: 11%; }

  .solution-map__item {
    width: 84px;
    height: 84px;
  }

  .solution-map__centre {
    width: 105px;
    height: 105px;
  }

  .item-a { left: 2%; top: 8%; }
  .item-b { left: 38%; top: 2%; }
  .item-c { right: 2%; top: 10%; }
  .item-d { left: 2%; bottom: 8%; }
  .item-e { left: 39%; bottom: 2%; }
  .item-f { right: 2%; bottom: 10%; }

  .rental-panel,
  .training-panel {
    grid-template-columns: 1fr;
  }

  .rental-icon,
  .training-panel > div:first-child {
    width: 76px;
    height: 76px;
  }

  .rental-panel .button,
  .training-panel .button {
    grid-column: auto;
  }

  .site-map__node {
    min-width: 105px;
    padding: 10px;
  }

  .site-map__node span {
    font-size: 0.62rem;
  }

  .site-map .node-1 { left: 3%; top: 7%; }
  .site-map .node-2 { right: 3%; top: 14%; }
  .site-map .node-3 { left: 2%; top: 42%; }
  .site-map .node-4 { right: 2%; bottom: 18%; }
  .site-map .node-5 { left: 4%; bottom: 6%; }

  .about-stat-panel {
    min-height: auto;
    padding: 28px;
    gap: 50px;
  }

  .about-stat-grid {
    grid-template-columns: 1fr;
  }

  .partnership-mark {
    min-height: 320px;
  }

  .region-card--wide {
    grid-column: auto;
  }

  .remote-screen__body {
    padding: 38px 22px;
  }

  .contact-form {
    padding: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 164px;
  }

  .hero-copy h1 {
    font-size: 2.9rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .machine-stage {
    transform: translateX(-50%) scale(0.68);
    width: 690px;
  }

  .data-card {
    min-width: 172px;
  }

  .product-card__visual {
    height: 270px;
  }

  .dashboard-main {
    padding: 14px;
  }

  .chart-bars {
    gap: 4px;
  }

  .page-hero__content h1,
  .product-detail__copy h1 {
    font-size: 2.75rem;
  }

  .product-detail__visual {
    min-height: 390px;
    padding: 12px;
  }

  .integration-graphic,
  .solution-map,
  .site-map {
    height: 390px;
  }

  .integration-node--one span,
  .integration-node--two span,
  .integration-node--three span,
  .integration-node--four span,
  .solution-map__item span,
  .site-map__node span {
    display: none;
  }

  .integration-node {
    min-width: 48px;
    min-height: 48px;
    display: grid;
    place-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
