:root {
  color-scheme: dark;
  --bg: #05070a;
  --surface: #0b1016;
  --surface-soft: rgba(13, 18, 24, 0.76);
  --line: rgba(164, 194, 214, 0.15);
  --line-bright: rgba(126, 226, 255, 0.34);
  --text: #f1f6f9;
  --muted: #8d9ba6;
  --blue: #2d7dff;
  --cyan: #60e6ff;
  --mint: #88ffd4;
  --danger: #ff7886;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
button:focus-visible, a:focus-visible, [tabindex="0"]:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}
img { display: block; max-width: 100%; }

.ambient { position: fixed; inset: 0; z-index: -1; width: 100%; max-width: 100%; overflow: hidden; contain: strict; pointer-events: none; }
.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: linear-gradient(rgba(111,167,195,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(111,167,195,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
}
.ambient__glow { position: absolute; width: 560px; height: 560px; border-radius: 50%; filter: blur(120px); opacity: .12; }
.ambient__glow--one { top: -260px; right: -100px; background: var(--blue); }
.ambient__glow--two { top: 55vh; left: -400px; background: var(--cyan); }
.ambient__cursor {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38,139,255,.08), transparent 68%);
  transform: translate3d(var(--cursor-x, 70vw), var(--cursor-y, 10vh), 0);
  transition: transform .35s ease-out;
}

.section-shell { width: var(--shell); margin-inline: auto; }
.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, calc(100vw - 32px));
  min-height: 64px;
  padding: 10px 12px 10px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7,10,14,.78);
  backdrop-filter: blur(24px);
  transform: translateX(-50%);
}
.wordmark { display: inline-flex; align-items: center; gap: 12px; width: max-content; font-size: 14px; font-weight: 780; letter-spacing: .22em; }
.wordmark__signal { display: flex; align-items: center; gap: 2px; height: 20px; }
.wordmark__signal i { display: block; width: 2px; height: var(--signal-height, 8px); border-radius: 2px; background: var(--cyan); }
.wordmark__signal i:nth-child(2), .wordmark__signal i:nth-child(4) { --signal-height: 14px; }
.wordmark__signal i:nth-child(3) { --signal-height: 20px; }
.site-nav { display: flex; gap: 30px; color: var(--muted); font-size: 13px; }
.site-nav a { transition: color 180ms ease; }
.site-nav a:hover { color: var(--text); }
.header-action {
  justify-self: end;
  min-height: 40px;
  padding: 11px 18px;
  border: 1px solid var(--line-bright);
  border-radius: 11px;
  color: #dce9ef;
  background: rgba(45,125,255,.09);
  font-size: 12px;
  letter-spacing: .04em;
}

.eyebrow, .section-index {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow > span { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
h1 em, h2 em { color: transparent; font-style: normal; background: linear-gradient(110deg, #f4fbff 10%, var(--cyan) 52%, var(--blue)); background-clip: text; -webkit-background-clip: text; }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(900px, 100svh);
  padding-block: 160px 110px;
}
.hero::before {
  position: absolute;
  top: -18%;
  right: -34%;
  width: min(78vw, 1100px);
  height: min(78vw, 1100px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 93, 194, .13), rgba(5, 7, 10, 0) 67%);
  content: "";
  pointer-events: none;
}
.hero__copy { position: relative; z-index: 1; width: 100%; text-align: center; }
.hero h1 { margin: 0 auto 36px; max-width: 1100px; font-size: clamp(66px, 8.4vw, 124px); font-weight: 520; line-height: .91; letter-spacing: -.07em; }
.hero__lead { max-width: 920px; margin: 0 auto; color: #aebbc5; font-size: clamp(18px, 1.8vw, 23px); line-height: 1.55; }
.hero__actions { display: flex; justify-content: center; align-items: center; gap: 28px; margin-top: 42px; }
.primary-action {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  min-width: 245px;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid var(--line-bright);
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(45,125,255,.3), rgba(96,230,255,.08));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 14px 50px rgba(0,83,190,.12);
}
.hero-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(100%, 980px);
  margin: 72px auto 0;
  padding: 0;
  list-style: none;
}
.hero-path::before { position: absolute; top: 27px; right: 10%; left: 10%; height: 1px; background: linear-gradient(90deg, rgba(96,230,255,.34), rgba(45,125,255,.28)); content: ""; }
.hero-path::after { position: absolute; top: 21px; left: calc(10% - 6px); width: 13px; height: 13px; border-radius: 50%; background: #d9faff; box-shadow: 0 0 12px var(--cyan), 0 0 34px rgba(96,230,255,.65); content: ""; animation: hero-signal 5.4s cubic-bezier(.55,.05,.2,1) infinite; }
.hero-path li { position: relative; display: flex; flex-direction: column; align-items: center; gap: 28px; color: #c8d4da; font: 11px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; letter-spacing: .11em; text-align: center; text-transform: uppercase; }
.hero-path li::before { position: absolute; z-index: 1; top: 23px; left: 50%; width: 9px; height: 9px; border: 2px solid var(--bg); border-radius: 50%; background: var(--cyan); box-shadow: 0 0 15px rgba(96,230,255,.6); content: ""; transform: translateX(-50%); }
.hero-path li:last-child::before { background: var(--blue); }
.hero-path span { color: #536470; font-size: 9px; }
.hero-proof { display: flex; justify-content: center; align-items: center; gap: 10px; margin: 25px 0 0; color: #60717d; font: 10px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; letter-spacing: .09em; text-transform: uppercase; }
.hero-proof span { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px rgba(136,255,212,.6); }

.problem, .product, .roles, .case-study, .difference, .pilot { padding-block: 130px; border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: 70px; align-items: end; margin: 28px 0 64px; }
.section-heading h2, .case-study h2, .difference h2, .final-cta h2 { margin: 0; font-size: clamp(40px, 5vw, 70px); font-weight: 520; line-height: 1.04; letter-spacing: -.05em; }
.section-heading p, .case-study__intro > p:last-child { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 20px; background: rgba(9,13,18,.5); }
.problem-grid article { min-height: 285px; padding: 28px; border-right: 1px solid var(--line); }
.problem-grid article:last-child { border: 0; }
.problem-grid span, .pilot-steps span { color: var(--cyan); font: 11px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; letter-spacing: .1em; }
.problem-grid h3 { margin: 105px 0 10px; font-size: 22px; font-weight: 520; letter-spacing: -.02em; }
.problem-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.workflow { padding-block: 130px; overflow: hidden; border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(8,12,17,.98), rgba(5,7,10,.88)); }
.workflow-intro { text-align: center; }
.workflow-intro h2 { max-width: 1050px; margin: 30px auto 24px; font-size: clamp(47px, 6.2vw, 84px); font-weight: 520; line-height: .98; letter-spacing: -.06em; }
.workflow-intro > p:last-child { max-width: 670px; margin: 0 auto; color: #9aa9b3; font-size: 17px; line-height: 1.6; }
.workflow-groups { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 76px; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--line); list-style: none; }
.workflow-group { position: relative; min-width: 0; background: #080c11; }
.workflow-group:not(:last-child) { border-right: 1px solid var(--line); }
.workflow-group--focus { background: linear-gradient(155deg, rgba(18,35,50,.98), #080c11 72%); box-shadow: inset 0 2px 0 rgba(96,230,255,.45); }
.workflow-group::before { position: absolute; top: 31px; right: -5px; z-index: 2; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px rgba(96,230,255,.75); content: ""; }
.workflow-group:last-child::before { display: none; }
.workflow-group__head { min-height: 190px; padding: 30px; border-bottom: 1px solid var(--line); }
.workflow-group__head span { color: var(--cyan); font: 10px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; letter-spacing: .13em; }
.workflow-group__head h3 { max-width: 310px; margin: 82px 0 0; font-size: clamp(25px, 2.7vw, 37px); font-weight: 520; line-height: 1.05; letter-spacing: -.04em; }
.workflow-group > ol { margin: 0; padding: 0; list-style: none; }
.workflow-action { display: grid; grid-template-columns: 34px 1fr; gap: 15px; min-height: 190px; padding: 28px 30px; border-bottom: 1px solid var(--line); }
.workflow-action:last-child { border-bottom: 0; }
.workflow-action > span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line-bright); border-radius: 50%; color: var(--cyan); font: 9px ui-monospace, monospace; }
.workflow-action strong { display: block; color: #dce6eb; font-size: 16px; font-weight: 540; line-height: 1.35; }
.workflow-action p { margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.workflow-device { display: grid; grid-template-columns: 1fr .72fr; gap: 8vw; align-items: center; margin-top: 86px; padding: 64px; border: 1px solid var(--line); border-radius: 28px; background: radial-gradient(circle at 78% 30%, rgba(45,125,255,.13), transparent 36%), linear-gradient(145deg, rgba(12,18,25,.96), rgba(6,9,13,.92)); }
.workflow-device__copy h3 { max-width: 650px; margin: 28px 0 22px; font-size: clamp(37px, 4.4vw, 61px); font-weight: 520; line-height: 1.02; letter-spacing: -.055em; }
.workflow-device__copy > p:not(.section-index) { max-width: 610px; margin: 0; color: #9aa8b2; font-size: 16px; line-height: 1.7; }
.workflow-device__copy ul { display: grid; gap: 13px; margin: 38px 0 0; padding: 0; color: #b6c3cb; font-size: 13px; list-style: none; }
.workflow-device__copy li::before { margin-right: 10px; color: var(--mint); content: "●"; }
.app-phone { justify-self: end; width: min(100%, 354px); padding: 9px; border: 1px solid rgba(177,209,228,.26); border-radius: 45px; background: #030609; box-shadow: 0 45px 100px rgba(0,0,0,.55), 0 0 80px rgba(45,125,255,.09); }
.app-phone__screen { position: relative; min-height: 680px; overflow: hidden; border-radius: 37px; color: #172138; background: #f2f5fa; font-family: Inter, ui-sans-serif, sans-serif; }
.app-phone__status { display: flex; justify-content: space-between; padding: 13px 23px 8px; color: #1c2637; font-size: 9px; font-weight: 700; }
.app-phone__brand { display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center; padding: 10px 18px 12px; border-bottom: 1px solid #e1e6ed; background: #fff; }
.app-phone__brand i { display: grid; place-items: center; width: 42px; height: 42px; color: #fff; background: #1755c7; font-size: 21px; font-style: normal; }
.app-phone__brand strong { font-size: 17px; font-weight: 700; }
.app-phone__brand > span { color: #718099; font-size: 22px; }
.app-phone__user { display: flex; justify-content: space-between; align-items: center; padding: 17px 18px 12px; }
.app-phone__user strong { font-size: 15px; font-weight: 540; }
.app-phone__user small { color: #8793a5; font-size: 7px; letter-spacing: .05em; text-transform: uppercase; }
.app-phone__ready { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; margin: 0 14px 10px; padding: 15px; border-radius: 14px; background: #e7edf5; }
.app-phone__ready > span { color: #1dac64; font-size: 14px; }
.app-phone__ready strong { font-size: 14px; font-weight: 520; }
.app-phone__ready i { color: #6e7b90; font-size: 18px; font-style: normal; }
.app-phone__tabs { display: grid; grid-template-columns: 1fr 1fr; margin: 0 14px; overflow: hidden; border: 1px solid #d3dce8; border-radius: 12px; text-align: center; }
.app-phone__tabs > * { padding: 10px; font-size: 12px; }
.app-phone__tabs strong { color: #fff; background: #1778ed; }
.app-phone__tabs span { color: #77849a; }
.app-phone__caption { margin: 15px 18px 9px; font-size: 12px; font-weight: 700; }
.app-record { position: relative; margin: 0 14px 8px; padding: 12px 13px; border: 1px solid #d9e1eb; border-radius: 12px; background: #fff; box-shadow: 0 5px 14px rgba(38,57,82,.04); }
.app-record > div { display: flex; justify-content: space-between; padding-right: 18px; }
.app-record > div strong { font-size: 11px; }
.app-record > div small { color: #7a8799; font-size: 9px; }
.app-record > span { position: absolute; top: 10px; right: 10px; color: #6e7c91; font-size: 11px; writing-mode: vertical-rl; }
.app-record p { margin: 11px 0 7px; font-size: 11px; }
.app-record > small { font-size: 8px; }
.app-record .is-ready { color: #148653; }
.app-record .is-processing { color: #b47713; }
.app-record--muted { opacity: .84; }
.app-phone__record-button { position: absolute; right: 14px; bottom: 29px; left: 14px; display: flex; justify-content: center; align-items: center; gap: 10px; min-height: 58px; border-radius: 16px; color: #fff; background: linear-gradient(135deg, #0864a9, #087fc8); box-shadow: 0 10px 25px rgba(0,91,166,.25); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.app-phone__record-button span { width: 9px; height: 9px; border: 2px solid rgba(255,255,255,.6); border-radius: 50%; background: #fff; }
.app-phone__home { position: absolute; bottom: 9px; left: 50%; width: 80px; height: 4px; border-radius: 4px; background: #29313c; transform: translateX(-50%); }

.product-showcase { overflow: hidden; border: 1px solid var(--line-bright); border-radius: 26px; background: #090e14; box-shadow: 0 34px 90px rgba(0,0,0,.32); }
.product-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.product-tabs button { display: flex; align-items: center; gap: 12px; min-height: 64px; padding: 0 20px; border: 0; border-right: 1px solid var(--line); color: #71818d; background: transparent; cursor: pointer; text-align: left; }
.product-tabs button:last-child { border: 0; }
.product-tabs button span { font: 10px ui-monospace, monospace; }
.product-tabs button[aria-selected="true"] { color: var(--text); background: rgba(45,125,255,.1); box-shadow: inset 0 -2px 0 var(--cyan); }
.product-tabs button[aria-selected="true"] span { color: var(--cyan); }
.product-stage { min-height: 560px; }
.product-panel { display: grid; grid-template-columns: .34fr .66fr; min-height: 560px; }
.product-panel[hidden] { display: none; }
.product-panel__copy { align-self: center; padding: 50px 20px 50px 44px; }
.product-panel__copy > p { margin: 0 0 16px; color: var(--cyan); font: 10px ui-monospace, monospace; letter-spacing: .13em; text-transform: uppercase; }
.product-panel__copy h3 { margin: 0; font-size: clamp(25px, 3vw, 39px); font-weight: 520; line-height: 1.08; letter-spacing: -.04em; }
.product-panel__copy ul { display: grid; gap: 13px; margin: 32px 0 0; padding: 0; color: var(--muted); font-size: 13px; list-style: none; }
.product-panel__copy li::before { margin-right: 9px; color: var(--mint); content: "●"; }
.product-panel figure { display: flex; align-items: center; min-width: 0; margin: 28px 0 28px 28px; overflow: hidden; border: 1px solid rgba(164,194,214,.22); border-right: 0; border-radius: 16px 0 0 16px; background: #f4f7fb; box-shadow: -24px 30px 70px rgba(0,0,0,.3); }
.product-panel img { width: 100%; max-height: 500px; object-fit: cover; object-position: left top; }
.product-panel[data-product-panel="records"] img { object-position: left center; }
.infrastructure { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 16px; border: 1px solid var(--line); border-radius: 14px; }
.infrastructure span { padding: 18px; border-right: 1px solid var(--line); color: #82919c; font-size: 12px; text-align: center; }
.infrastructure span:last-child { border: 0; }

.roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; }
.roles-grid article { min-height: 340px; padding: 30px; border-block: 1px solid var(--line); border-right: 1px solid var(--line); }
.roles-grid article:last-child { border-right: 0; }
.roles-grid__employee { background: linear-gradient(145deg, rgba(24, 83, 122, .13), rgba(5, 7, 10, 0)); box-shadow: inset 0 -2px 0 rgba(96,230,255,.36); }
.roles-grid span { color: var(--cyan); font: 10px ui-monospace, monospace; letter-spacing: .13em; }
.roles-grid h3 { margin: 120px 0 12px; font-size: clamp(23px, 2.6vw, 34px); font-weight: 520; line-height: 1.08; letter-spacing: -.04em; }
.roles-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.case-study { display: grid; grid-template-columns: .72fr 1.28fr; gap: 7vw; align-items: start; }
.case-study__intro { position: sticky; top: 120px; }
.case-study h2 { margin: 30px 0 28px; font-size: clamp(39px, 4.5vw, 63px); }
.case-evidence { overflow: hidden; border: 1px solid var(--line-bright); border-radius: 24px; background: linear-gradient(145deg, rgba(14,20,27,.9), rgba(7,10,14,.8)); }
.case-evidence__top { display: flex; justify-content: space-between; gap: 30px; padding: 26px; border-bottom: 1px solid var(--line); }
.case-evidence__top span { color: #637480; font: 9px ui-monospace, monospace; letter-spacing: .12em; }
.case-evidence__top strong { max-width: 310px; font-size: 18px; font-weight: 520; line-height: 1.35; }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.case-stats > div { min-height: 145px; padding: 25px; border-right: 1px solid var(--line); }
.case-stats > div:last-child { border-right: 0; }
.case-stats strong { display: block; color: var(--cyan); font-size: clamp(42px, 5vw, 66px); font-weight: 480; line-height: 1; letter-spacing: -.06em; }
.case-stats span { display: block; margin-top: 17px; color: #778792; font: 9px ui-monospace, monospace; letter-spacing: .1em; text-transform: uppercase; }
.case-finding { padding: 34px 30px; border-bottom: 1px solid var(--line); background: linear-gradient(110deg, rgba(255,120,134,.07), transparent 58%); box-shadow: inset 3px 0 0 rgba(255,120,134,.72); }
.case-finding > span, .case-action > span, .case-verification > span { color: var(--danger); font: 9px ui-monospace, monospace; letter-spacing: .13em; }
.case-finding h3 { margin: 18px 0 12px; font-size: clamp(22px, 2.5vw, 31px); font-weight: 520; line-height: 1.15; letter-spacing: -.035em; }
.case-finding p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.case-action { padding: 32px 30px; border-bottom: 1px solid var(--line); }
.case-action > span { color: var(--cyan); }
.case-action__flow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 20px; }
.case-action__flow i { padding: 9px 11px; border: 1px solid var(--line-bright); border-radius: 8px; color: #cbd7dd; background: rgba(45,125,255,.06); font-size: 10px; font-style: normal; }
.case-action__flow b { color: #52636e; font-weight: 400; }
.case-verification { display: grid; grid-template-columns: 100px 1fr; gap: 18px; align-items: center; padding: 24px 30px; background: rgba(96,230,255,.035); }
.case-verification > span { color: var(--mint); }
.case-verification p { margin: 0; color: #93a3ad; font-size: 12px; line-height: 1.55; }

.difference { display: grid; grid-template-columns: .82fr 1.18fr; gap: 7vw; }
.difference__intro h2 { margin-top: 34px; font-size: clamp(33px, 4vw, 56px); }
.difference__intro h2 span { color: #75838e; }
.comparison { align-self: end; border-block: 1px solid var(--line); }
.comparison__head, .comparison__row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 20px 18px; border-bottom: 1px solid var(--line); }
.comparison__head { color: #657581; font: 10px ui-monospace, monospace; letter-spacing: .1em; text-transform: uppercase; }
.comparison__head span:last-child { color: var(--cyan); }
.comparison__row span, .comparison__row strong { font-size: 14px; line-height: 1.45; }
.comparison__row span { color: #687782; }
.comparison__row strong { font-weight: 520; }

.pilot-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border: 1px solid var(--line); border-radius: 18px; list-style: none; background: rgba(9,13,18,.5); }
.pilot-steps li { min-height: 265px; padding: 24px; border-right: 1px solid var(--line); }
.pilot-steps li:last-child { border: 0; }
.pilot-steps strong { display: block; margin-top: 82px; font-size: 17px; font-weight: 520; line-height: 1.35; }
.pilot-steps p { margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.support-promise { margin-top: 18px; overflow: hidden; border: 1px solid var(--line-bright); border-radius: 22px; background: radial-gradient(circle at 85% 0, rgba(45,125,255,.16), transparent 35%), #080d13; }
.support-promise__intro { padding: 50px 40px 44px; }
.support-promise__intro > p { display: flex; align-items: center; gap: 10px; margin: 0; color: #7d8f9b; font: 10px ui-monospace, monospace; letter-spacing: .12em; text-transform: uppercase; }
.support-promise__intro > p span { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 15px var(--mint); }
.support-promise__intro h3 { max-width: 870px; margin: 32px 0 22px; font-size: clamp(37px, 5vw, 68px); font-weight: 520; line-height: 1.02; letter-spacing: -.055em; }
.support-promise__intro small { display: block; max-width: 760px; color: #94a4ae; font-size: 16px; line-height: 1.65; }
.support-directions { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.support-directions article { min-height: 220px; padding: 27px; border-right: 1px solid var(--line); }
.support-directions article:last-child { border-right: 0; }
.support-directions span { color: var(--cyan); font: 9px ui-monospace, monospace; }
.support-directions strong { display: block; margin-top: 66px; font-size: 17px; font-weight: 520; }
.support-directions p { margin: 11px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.support-promise__human { display: flex; align-items: center; gap: 11px; margin: 0; padding: 23px 30px; color: #aab8c0; font-size: 13px; }
.support-promise__human span { color: var(--mint); text-shadow: 0 0 12px var(--mint); }

.final-cta { display: flex; flex-direction: column; align-items: center; padding-block: 160px 145px; border-top: 1px solid var(--line); text-align: center; }
.final-cta h2 { max-width: 950px; margin: 34px 0 24px; }
.final-cta > p:not(.eyebrow) { max-width: 620px; margin: 0 0 42px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.final-cta small { margin-top: 14px; color: #596873; }
.site-footer { display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 30px; padding-block: 34px; border-top: 1px solid var(--line); color: #64737e; font-size: 11px; }
.site-footer p { max-width: 360px; margin: 0; line-height: 1.5; }
.site-footer .wordmark { color: var(--text); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes hero-signal {
  0%, 8% { left: calc(10% - 6px); opacity: 0; }
  14% { opacity: 1; }
  78% { left: calc(90% - 6px); opacity: 1; }
  88%, 100% { left: calc(90% - 6px); opacity: 0; }
}

@media (max-width: 980px) {
  :root { --shell: min(calc(100% - 36px), 760px); }
  .site-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { padding-top: 150px; }
  .section-heading, .difference, .case-study { grid-template-columns: 1fr; }
  .problem-grid, .roles-grid { grid-template-columns: 1fr; }
  .problem-grid article, .roles-grid article { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .problem-grid article:last-child, .roles-grid article:last-child { border-bottom: 0; }
  .problem-grid h3, .roles-grid h3 { margin-top: 65px; }
  .workflow-groups { grid-template-columns: 1fr; }
  .workflow-group:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); }
  .workflow-group::before { display: none; }
  .workflow-device { grid-template-columns: 1fr; gap: 54px; }
  .app-phone { justify-self: center; }
  .product-panel { grid-template-columns: 1fr; }
  .product-panel__copy { padding: 38px; }
  .product-panel figure { min-height: 380px; margin: 0 0 28px 28px; }
  .product-panel img { max-height: 420px; }
  .case-study__intro { position: static; }
  .pilot-steps { grid-template-columns: repeat(2, 1fr); }
  .pilot-steps li:nth-child(2) { border-right: 0; }
  .pilot-steps li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  html { scroll-padding-top: 90px; }
  main { max-width: 100%; overflow-x: hidden; overflow-x: clip; }
  .ambient__cursor { display: none; }
  .ambient__glow { width: 320px; height: 320px; filter: blur(90px); }
  .ambient__glow--one { right: -80px; }
  .ambient__glow--two { left: -180px; }
  .site-header { right: 8px; left: 8px; top: 8px; width: auto; min-height: 56px; padding-left: 14px; border-radius: 14px; transform: none; }
  .header-action { min-height: 34px; padding: 9px 12px; }
  .wordmark { font-size: 12px; }
  .wordmark__signal { display: none; }
  .hero { padding-block: 125px 74px; }
  .hero h1 { font-size: clamp(39px, 9.8vw, 48px); line-height: .96; letter-spacing: -.055em; }
  .hero__lead { font-size: 17px; }
  .hero__actions { align-items: center; flex-direction: column; gap: 18px; }
  .hero-path { margin-top: 56px; }
  .hero-path li { gap: 24px; font-size: 8px; letter-spacing: .04em; }
  .hero-path::before { top: 25px; }
  .hero-path li::before { top: 21px; }
  .hero-path::after { top: 19px; width: 11px; height: 11px; }
  .hero-proof { font-size: 8px; line-height: 1.5; }
  .problem, .workflow, .product, .roles, .case-study, .difference, .pilot { padding-block: 88px; }
  .section-heading { gap: 24px; margin-bottom: 44px; }
  .section-heading h2, .case-study h2, .final-cta h2 { font-size: clamp(36px, 11vw, 52px); }
  .problem-grid article { padding: 24px; }
  .workflow-intro h2 { font-size: clamp(39px, 11vw, 54px); }
  .workflow-device { gap: 42px; margin-top: 54px; padding: 34px 20px; border-radius: 20px; }
  .workflow-device__copy h3 { font-size: clamp(35px, 11vw, 49px); }
  .app-phone { width: min(100%, 340px); }
  .workflow-groups { margin-top: 54px; border-radius: 18px; }
  .workflow-group__head { min-height: 160px; padding: 24px; }
  .workflow-group__head h3 { margin-top: 55px; }
  .workflow-action { min-height: 0; padding: 24px; }
  .product-showcase { border-radius: 18px; }
  .product-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; }
  .product-tabs button { width: 100%; min-width: 0; min-height: 56px; padding-inline: 14px; }
  .product-tabs button:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-tabs button:nth-child(2) { border-right: 0; }
  .product-showcase, .product-stage, .product-panel { min-width: 0; max-width: 100%; }
  .product-stage { min-height: 0; }
  .product-panel { min-height: 0; }
  .product-panel__copy { padding: 32px 22px; }
  .product-panel figure {
    width: calc(100% - 28px);
    min-height: 0;
    margin: 0 14px 20px;
    overflow: hidden;
    border-right: 1px solid rgba(164,194,214,.22);
    border-radius: 14px;
  }
  .product-panel img { flex: 0 0 auto; width: 100%; max-width: 100%; height: auto; max-height: none; object-fit: contain; }
  .infrastructure { grid-template-columns: repeat(2, 1fr); }
  .infrastructure span:nth-child(2) { border-right: 0; }
  .infrastructure span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .roles-grid article { padding: 24px; }
  .case-evidence__top { flex-direction: column; }
  .case-stats > div { min-height: 125px; padding: 20px 14px; }
  .case-stats span { font-size: 7px; line-height: 1.4; }
  .case-finding, .case-action { padding: 28px 22px; }
  .case-verification { grid-template-columns: 1fr; padding: 22px; }
  .case-action__flow b { display: none; }
  .comparison__head, .comparison__row { gap: 14px; padding-inline: 8px; }
  .comparison__row span, .comparison__row strong { font-size: 12px; }
  .pilot-steps { grid-template-columns: 1fr; }
  .pilot-steps li { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line); }
  .pilot-steps li:nth-child(2) { border-bottom: 1px solid var(--line); }
  .pilot-steps strong { margin-top: 55px; }
  .support-promise { margin-top: 14px; border-radius: 18px; }
  .support-promise__intro { padding: 36px 22px 32px; }
  .support-promise__intro h3 { font-size: clamp(35px, 11vw, 50px); }
  .support-promise__intro small { font-size: 14px; }
  .support-directions { grid-template-columns: 1fr; }
  .support-directions article { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--line); }
  .support-directions article:last-child { border-bottom: 0; }
  .support-directions strong { margin-top: 48px; }
  .support-promise__human { align-items: flex-start; padding: 22px; font-size: 12px; line-height: 1.5; }
  .final-cta { padding-block: 110px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { grid-column: 1 / -1; grid-row: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
