:root {
  --ink: #07152d;
  --ink-2: #0b2145;
  --paper: #f3f6fb;
  --paper-2: #e5ebf5;
  --lime: #54adff;
  --lime-soft: #9bd4ff;
  --mint: #a9d8ff;
  --line-dark: rgba(7, 21, 45, 0.16);
  --line-light: rgba(255, 255, 255, 0.14);
  --muted: #617086;
  --white-muted: #a8b9cf;
  --radius: 1.25rem;
  --container: 1216px;
  --header-height: 84px;
  --shadow: 0 30px 80px rgba(3, 12, 29, 0.2);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

::selection { color: var(--ink); background: var(--lime); }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }

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

.section { padding: clamp(92px, 10vw, 152px) 0; }
.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: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: #fff;
  background: rgba(7, 21, 45, 0.2);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  transition: background 250ms ease, border-color 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 21, 45, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.brand > span:last-child { display: grid; gap: 5px; }
.brand strong { font-size: 0.9rem; letter-spacing: 0.15em; }
.brand small { color: var(--white-muted); font-size: 0.54rem; letter-spacing: 0.28em; }
.brand-mark { display: grid; grid-template-columns: repeat(3, 6px); gap: 3px; align-items: end; width: 24px; height: 24px; transform: skew(-12deg); }
.brand-mark i { display: block; background: var(--lime); border-radius: 1px; }
.brand-mark i:nth-child(1) { height: 11px; }
.brand-mark i:nth-child(2) { height: 18px; }
.brand-mark i:nth-child(3) { height: 24px; }

.main-nav { display: flex; align-items: center; gap: 34px; font-size: 0.83rem; font-weight: 650; letter-spacing: 0.02em; }
.main-nav > a:not(.nav-cta) { color: #d8e5f3; transition: color 180ms ease; }
.main-nav > a:not(.nav-cta):hover { color: var(--lime); }
.nav-cta { padding: 11px 16px; color: var(--ink); background: var(--lime); border: 1px solid var(--lime); border-radius: 999px; transition: transform 180ms ease, background 180ms ease; }
.nav-cta:hover { background: #fff; transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 35%, rgba(48, 127, 205, 0.3), transparent 29%),
    radial-gradient(circle at 6% 105%, rgba(84, 173, 255, 0.12), transparent 28%),
    var(--ink);
  padding: calc(var(--header-height) + 82px) 0 48px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -260px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(84, 173, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(84, 173, 255, 0.035), 0 0 0 180px rgba(84, 173, 255, 0.02);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent 3%, #000 36%, #000 100%);
}

.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(24px, 5vw, 80px); align-items: center; min-height: 610px; }
.hero-copy { padding-top: 24px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--mint); font-size: 0.69rem; font-weight: 750; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: var(--lime); }
.eyebrow.dark { color: #536a86; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { line-height: 0.99; letter-spacing: -0.055em; }
h1 { max-width: 720px; margin-bottom: 28px; font-size: clamp(3.3rem, 6.1vw, 6.5rem); font-weight: 610; }
h1 em, h2 em { color: var(--lime); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-lead { max-width: 650px; margin-bottom: 34px; color: #c4d2e3; font-size: clamp(1.02rem, 1.5vw, 1.19rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 760;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.button-primary:hover { background: #fff; border-color: #fff; }
.button-ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,.25); }
.button-ghost:hover { border-color: var(--lime); color: var(--lime); }
.button span { font-size: 1.1rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; padding: 0; margin: 34px 0 0; list-style: none; color: #91a5bd; font-size: 0.71rem; letter-spacing: 0.03em; }
.hero-trust li { display: flex; align-items: center; gap: 7px; }
.hero-trust span { display: grid; width: 17px; height: 17px; place-items: center; color: var(--ink); background: var(--mint); border-radius: 50%; font-size: 0.67rem; font-weight: 800; }

.product-stage { position: relative; min-height: 540px; perspective: 1100px; }
.hero-product-photo { position: absolute; z-index: 2; top: 122px; left: 50%; width: min(94%, 520px); aspect-ratio: 1672 / 941; overflow: hidden; margin: 0; background: #0b2145; border: 1px solid rgba(255,255,255,.2); border-radius: 28px; box-shadow: 0 42px 85px rgba(0,0,0,.48); transform: translateX(-50%); }
.hero-product-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 62%, rgba(3,10,25,.7)); }
.hero-product-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }
.hero-product-photo figcaption { position: absolute; z-index: 1; right: 18px; bottom: 14px; left: 18px; color: rgba(255,255,255,.82); font-size: .58rem; font-weight: 700; letter-spacing: .05em; }
.orbit { position: absolute; border: 1px solid rgba(169, 216, 255, 0.18); border-radius: 50%; }
.orbit::after { content: ""; position: absolute; width: 9px; height: 9px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 24px var(--lime); }
.orbit-one { inset: 40px 10px 45px 10px; transform: rotate(-11deg); }
.orbit-one::after { top: 27%; right: 3%; }
.orbit-two { inset: 88px 62px 92px; transform: rotate(22deg); }
.orbit-two::after { bottom: 14%; left: 13%; width: 6px; height: 6px; }

.device-shadow { position: absolute; top: 310px; left: 50%; width: 330px; height: 130px; background: rgba(1, 7, 18, .7); border-radius: 50%; filter: blur(30px); transform: translateX(-54%) rotate(-17deg); }
.device-wrap { position: absolute; top: 135px; left: 50%; width: min(62%, 330px); aspect-ratio: 1.08; transform: translateX(-55%) rotateX(57deg) rotateZ(-24deg); transform-style: preserve-3d; filter: drop-shadow(20px 46px 44px rgba(0,0,0,.52)); }
.device-top { position: absolute; inset: 0; overflow: hidden; background: linear-gradient(135deg, #2b3547 0%, #0a101b 51%, #1a2840 100%); border: 1px solid rgba(255,255,255,.14); border-radius: 30px; box-shadow: inset 0 2px 2px rgba(255,255,255,.14), inset -36px -36px 70px rgba(0,0,0,.4); }
.device-top::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(105deg, transparent 0 13px, rgba(255,255,255,.022) 13px 14px); }
.device-top::after { content: ""; position: absolute; right: 28px; bottom: 24px; width: 80px; height: 34px; opacity: .18; background: repeating-linear-gradient(90deg, #a8b7cb 0 3px, transparent 3px 8px); border-radius: 6px; }
.device-logo { position: absolute; top: 38px; left: 34px; color: #8798ae; font-weight: 900; font-size: 1.05rem; letter-spacing: 0.28em; }
.device-edition { position: absolute; right: 32px; top: 40px; color: var(--lime); font-size: 0.5rem; font-weight: 750; line-height: 1.45; letter-spacing: 0.18em; text-align: right; }
.device-light { position: absolute; left: 36px; bottom: 28px; width: 7px; height: 7px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 12px var(--lime); }
.device-front { position: absolute; top: 94%; left: 4%; width: 92%; height: 52px; overflow: hidden; background: linear-gradient(#10182a, #040812); border: 1px solid rgba(255,255,255,.08); border-radius: 0 0 19px 19px; transform: rotateX(-90deg); transform-origin: top; }
.device-display { position: absolute; top: 12px; left: 50%; color: #61bfff; font: 800 1.08rem/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; text-shadow: 0 0 10px rgba(84,173,255,.9); transform: translateX(-50%); }
.device-ir { position: absolute; right: 35px; top: 17px; width: 20px; height: 8px; background: #02050a; border: 1px solid rgba(255,255,255,.06); border-radius: 2px; }
.device-status { position: absolute; left: 31px; top: 18px; width: 5px; height: 5px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 9px var(--lime); }
.device-side { position: absolute; top: 7%; left: 96%; width: 52px; height: 84%; padding: 42px 10px; background: linear-gradient(90deg, #111a2a, #050a14); border: 1px solid rgba(255,255,255,.08); border-radius: 0 18px 18px 0; transform: rotateY(90deg); transform-origin: left; }
.side-port { display: block; margin: 0 auto 22px; background: #02050b; border: 2px solid #33435a; }
.side-port.usb { width: 27px; height: 12px; border-radius: 2px; }
.side-port.card { width: 31px; height: 4px; border-width: 1px; }
.device-foot { position: absolute; bottom: -7px; width: 40px; height: 12px; background: #03060d; border-radius: 50%; transform: translateZ(-25px); }
.foot-one { left: 36px; }
.foot-two { right: 36px; }

.remote { position: absolute; z-index: 3; top: 225px; right: 5%; width: 68px; height: 230px; padding: 18px 12px; background: linear-gradient(140deg, #2b3547, #0a111e 58%); border: 1px solid rgba(255,255,255,.13); border-radius: 24px; box-shadow: 20px 35px 38px rgba(0,0,0,.45); transform: rotate(12deg); }
.remote-power { display: block; width: 9px; height: 9px; margin: 0 auto 17px; border: 1px solid #e66d61; border-radius: 50%; }
.remote-mic { display: grid; width: 22px; height: 22px; margin: 0 auto 13px; place-items: center; color: var(--lime); border: 1px solid rgba(84,173,255,.55); border-radius: 50%; font-weight: 800; }
.remote-ring { display: block; width: 42px; height: 42px; margin: 0 auto 17px; border: 5px solid #40506a; border-radius: 50%; box-shadow: inset 0 0 0 7px #111c30; }
.remote-button { display: inline-block; width: 13px; height: 7px; margin: 4px 2px; background: #40506a; border-radius: 5px; }
.remote-button.wide { display: block; width: 31px; margin: 14px auto; }

.spec-float { position: absolute; z-index: 4; min-width: 112px; padding: 13px 15px; color: var(--ink); background: rgba(243, 246, 251, .95); border-radius: 10px; box-shadow: var(--shadow); }
.spec-float span { display: block; color: #5e7089; font-size: 0.5rem; font-weight: 800; letter-spacing: .17em; }
.spec-float strong { font-size: 1.55rem; letter-spacing: -.05em; }
.spec-float small { margin-left: 4px; color: #60728c; font-size: .56rem; font-weight: 750; }
.spec-float-top { top: 76px; right: 4%; }
.spec-float-bottom { left: 1%; bottom: 72px; background: var(--lime); }
.product-caption { position: absolute; right: 7%; bottom: 3px; margin: 0; color: #98abc2; font-size: .7rem; line-height: 1.5; letter-spacing: .04em; }
.product-caption span { margin-right: 8px; color: var(--lime); }
.product-caption strong { color: #e2ebf5; font-size: .76rem; }

.spec-rail { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr repeat(4, 1fr); margin-top: 42px; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.spec-rail div { padding: 18px 22px; border-right: 1px solid var(--line-light); }
.spec-rail div:last-child { border-right: 0; }
.spec-rail span, .spec-rail strong { display: block; }
.spec-rail span { margin-bottom: 5px; color: #7194bb; font-size: .52rem; font-weight: 800; letter-spacing: .17em; }
.spec-rail strong { color: #e4edf8; font-size: .78rem; font-weight: 660; }

.section-heading h2, .capabilities-intro h2, .display-copy h2, .value-copy h2, .faq-heading h2, .pilot-copy h2 { margin-bottom: 0; font-size: clamp(2.7rem, 5vw, 5.2rem); font-weight: 580; }
.section-heading h2 em, .capabilities-intro h2 em, .faq-heading h2 em { color: #2d73ba; }
.split-heading, .compare-heading { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); gap: 8vw; align-items: end; margin-bottom: 64px; }
.split-heading > p, .compare-heading > p { max-width: 390px; margin-bottom: 8px; color: var(--muted); line-height: 1.75; }

.intro { background: var(--paper); }
.outcome-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, 310px); gap: 16px; }
.outcome-card { position: relative; display: flex; min-width: 0; overflow: hidden; flex-direction: column; justify-content: flex-end; padding: 28px; background: #dbe4f1; border: 1px solid rgba(7, 21, 45, .08); border-radius: var(--radius); }
.outcome-card-main { grid-row: 1 / 3; min-height: 636px; color: #fff; background: var(--ink-2); }
.card-index { position: absolute; top: 24px; left: 28px; color: #6d83a0; font-size: .55rem; font-weight: 800; letter-spacing: .16em; }
.card-copy { position: relative; z-index: 3; max-width: 510px; }
.card-copy h3 { margin-bottom: 11px; font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.16; letter-spacing: -.035em; }
.card-copy p { margin-bottom: 0; color: #617086; line-height: 1.68; }
.outcome-card-main .card-copy p { color: #a8b9cf; }

.ui-demo { position: absolute; top: 70px; left: 50%; width: 72%; height: 330px; overflow: hidden; background: #112a4b; border: 8px solid #29476b; border-radius: 12px; box-shadow: 0 35px 60px rgba(0,0,0,.35); transform: translateX(-50%) perspective(800px) rotateX(2deg); }
.ui-demo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(125deg, transparent 30%, rgba(255,255,255,.08), transparent 60%); }
.ui-top { display: flex; align-items: center; justify-content: flex-end; gap: 8px; height: 34px; padding: 0 15px; color: #9db7d2; background: #0b1a31; font-size: .52rem; }
.ui-top i { width: 7px; height: 7px; background: var(--lime); border-radius: 50%; }
.ui-hero { height: 205px; padding: 40px 34px; background: radial-gradient(circle at 75% 40%, rgba(84,173,255,.34), transparent 35%), linear-gradient(125deg, #13538d, #091a30); }
.ui-hero small { display: block; color: var(--lime); font-size: .48rem; letter-spacing: .2em; }
.ui-hero strong { display: block; margin: 7px 0 15px; font-family: Georgia, serif; font-size: 2.5rem; font-weight: 400; }
.ui-hero span { display: inline-flex; gap: 18px; padding: 7px 10px; color: var(--ink); background: var(--lime); border-radius: 3px; font-size: .52rem; font-weight: 800; }
.ui-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 15px; }
.ui-row i { height: 52px; background: linear-gradient(135deg, #244c78, #173557); border-radius: 5px; }

.signal-visual { position: absolute; top: 70px; right: 26px; left: 26px; height: 125px; }
.signal-visual i { position: absolute; top: 50%; left: 48%; border: 1px solid rgba(7,21,45,.18); border-radius: 50%; transform: translate(-50%, -50%); }
.signal-visual i:nth-child(1) { width: 150px; height: 150px; }
.signal-visual i:nth-child(2) { width: 100px; height: 100px; }
.signal-visual i:nth-child(3) { width: 52px; height: 52px; background: var(--lime); border: 0; }
.signal-visual b { position: absolute; z-index: 2; top: 50%; left: 48%; transform: translate(-50%, -50%); font-size: .72rem; }
.reset-visual { position: absolute; top: 65px; right: 28px; left: 28px; display: grid; grid-template-columns: 1fr 62px 1fr; align-items: center; height: 110px; }
.reset-visual span, .reset-visual strong { display: grid; height: 74px; place-items: center; border: 1px solid var(--line-dark); border-radius: 8px; font-size: .62rem; letter-spacing: .12em; text-align: center; }
.reset-visual strong { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.reset-visual i { text-align: center; font-size: 1.55rem; font-style: normal; }

.compare { color: #fff; background: var(--ink); }
.compare .eyebrow { color: var(--mint); }
.compare-heading h2 em { color: var(--lime); }
.compare-heading > p { color: var(--white-muted); }
.comparison-shell { overflow: hidden; border: 1px solid var(--line-light); border-radius: var(--radius); }
.comparison-scroll { overflow-x: auto; outline-offset: -3px; }
.comparison-scroll:focus-visible { outline: 2px solid var(--lime); }
.comparison-scroll::-webkit-scrollbar { height: 8px; }
.comparison-scroll::-webkit-scrollbar-thumb { background: #3e628b; border-radius: 99px; }
.comparison-scroll table { width: 100%; min-width: 950px; border-collapse: collapse; table-layout: fixed; }
.comparison-scroll th, .comparison-scroll td { padding: 18px 20px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); text-align: left; vertical-align: middle; }
.comparison-scroll tr > *:last-child { border-right: 0; }
.comparison-scroll tbody tr:last-child > * { border-bottom: 0; }
.comparison-scroll thead th { height: 132px; background: #0b1e38; vertical-align: bottom; }
.comparison-scroll thead th:first-child { width: 18%; color: #7c96b5; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.comparison-scroll thead strong { display: block; margin: 11px 0 4px; font-size: 1.12rem; }
.comparison-scroll thead small { display: block; color: #8299b5; font-size: .68rem; font-weight: 500; }
.comparison-scroll tbody th { width: 18%; color: #8ca2ba; background: #08182d; font-size: .72rem; font-weight: 600; }
.comparison-scroll tbody td { color: #c4d2e2; background: #0a1b33; font-size: .79rem; }
.comparison-scroll tbody td b { color: #f3f6f5; }
.comparison-scroll tbody td small { display: block; margin-top: 3px; color: #748da9; font-size: .62rem; }
.comparison-scroll .winner { background: rgba(84, 173, 255, .1); }
.comparison-scroll thead .winner { position: relative; background: var(--lime); color: var(--ink); }
.comparison-scroll thead .winner small { color: #244c70; }
.best-tag { display: inline-block; padding: 4px 6px; color: var(--lime); background: var(--ink); border-radius: 3px; font-size: .48rem; letter-spacing: .14em; }
.advantage { position: relative; }
.advantage span { display: inline-block; margin-left: 9px; padding: 3px 6px; color: var(--ink); background: var(--lime); border-radius: 3px; font-size: .52rem; font-weight: 800; }
.status-yes { white-space: nowrap; }
.status-yes > span { display: inline-grid; width: 19px; height: 19px; margin-right: 7px; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: .65rem; }
.comparison-summary { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 25px 28px; color: #a9bed4; background: #102944; }
.comparison-summary p { max-width: 700px; margin: 0; font-size: .84rem; }
.comparison-summary strong { color: #fff; }
.comparison-summary a { flex: 0 0 auto; color: var(--lime); font-size: .74rem; font-weight: 750; }
.comparison-summary a span { margin-left: 12px; }
.sources { margin: 20px 0 0; color: #6c87a5; font-size: .62rem; line-height: 1.7; }
.sources a { color: #9db9d7; border-bottom: 1px solid #476d96; }
.table-note-mobile { display: none; }

.capabilities { background: var(--paper-2); }
.capabilities-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 130px); align-items: start; }
.capabilities-intro { position: sticky; top: 130px; }
.capabilities-intro h2 { margin-bottom: 25px; }
.capabilities-intro > p { max-width: 400px; color: var(--muted); line-height: 1.75; }
.firmware-stamp { display: grid; width: 168px; height: 168px; margin-top: 46px; place-content: center; color: var(--ink); border: 1px solid #8799b0; border-radius: 50%; text-align: center; transform: rotate(-8deg); }
.firmware-stamp span, .firmware-stamp small { font-size: .46rem; font-weight: 800; letter-spacing: .18em; }
.firmware-stamp strong { color: #2e75b7; font-family: Georgia, serif; font-size: 3.2rem; font-weight: 400; line-height: 1.1; }
.capability-list { border-top: 1px solid var(--line-dark); }
.capability-item { display: grid; grid-template-columns: 46px 1fr 30px; gap: 18px; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--line-dark); }
.cap-num { padding-top: 5px; color: #6c8fb3; font-size: .59rem; font-weight: 750; letter-spacing: .1em; }
.capability-item h3 { margin-bottom: 8px; font-size: clamp(1.25rem, 2vw, 1.75rem); letter-spacing: -.035em; }
.capability-item p { max-width: 600px; margin-bottom: 0; color: var(--muted); line-height: 1.65; }
.capability-item i { color: #6d8bad; font-style: normal; text-align: right; }

.display-bonus { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, #07152d, #0b2c5c); }
.display-bonus::before { content: ""; position: absolute; top: -35%; right: -12%; width: 680px; height: 680px; border: 1px solid rgba(84,173,255,.2); border-radius: 50%; box-shadow: 0 0 0 90px rgba(84,173,255,.025), 0 0 0 180px rgba(84,173,255,.015); }
.display-layout { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(54px, 8vw, 120px); align-items: center; }
.display-copy h2 { margin-bottom: 26px; }
.display-copy h2 em { color: var(--lime); }
.display-copy > p { max-width: 510px; color: #acc0d7; line-height: 1.75; }
.display-app { display: inline-flex; align-items: center; gap: 13px; margin-top: 24px; padding: 10px 14px 10px 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; }
.display-app > span { display: grid; width: 40px; height: 40px; place-items: center; color: var(--ink); background: var(--lime); border-radius: 8px; font-size: .69rem; font-weight: 900; }
.display-app div { display: grid; gap: 3px; }
.display-app small { color: #7897b9; font-size: .48rem; font-weight: 800; letter-spacing: .16em; }
.display-app strong { font-size: .86rem; }
.display-demo { padding: 24px 28px 30px; background: rgba(5,17,38,.7); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); box-shadow: 0 38px 90px rgba(1,7,19,.3); }
.display-device-shot { position: relative; overflow: hidden; width: 100%; aspect-ratio: 1672 / 941; margin: 0 auto 28px; background: #07152d; border-radius: 14px; }
.display-device-shot img { width: 100%; height: 100%; object-fit: cover; }
.display-live-value { position: absolute; top: 79.1%; left: 58.4%; width: 22%; color: #fff; font: 800 clamp(.68rem, 1.45vw, 1.25rem)/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .1em; text-align: center; text-shadow: 0 0 6px rgba(255,255,255,.95), 0 0 16px rgba(84,173,255,.65); transform: translate(-50%, -50%) rotate(-2.4deg) skewY(-1.5deg); }
.display-timeline { display: grid; grid-template-columns: 1fr 1.15fr 1.45fr; padding: 0; margin: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.display-timeline li { min-height: 106px; padding: 17px 15px; color: #7890ac; border-right: 1px solid rgba(255,255,255,.12); transition: background 220ms ease, color 220ms ease; }
.display-timeline li:last-child { border-right: 0; }
.display-timeline li > span { display: block; margin-bottom: 15px; color: #6d88a7; font-size: .55rem; font-weight: 800; letter-spacing: .08em; }
.display-timeline strong, .display-timeline small { display: block; }
.display-timeline strong { color: #dfeaf7; font-size: .75rem; }
.display-timeline small { margin-top: 4px; color: #7188a3; font-size: .55rem; }
.display-timeline li.is-active { color: #fff; background: rgba(84,173,255,.16); box-shadow: inset 0 3px var(--lime); }
.display-timeline li.is-active > span, .display-timeline li.is-active small { color: #9dceff; }
.display-cycle-note { display: flex; align-items: center; gap: 9px; margin: 16px 0 0; color: #7087a2; font-size: .61rem; }
.display-cycle-note span { color: var(--lime); font-size: .9rem; }

.lifecycle { background: var(--paper); }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.process-list li { position: relative; min-height: 360px; padding: 28px 24px 30px; border-right: 1px solid var(--line-dark); }
.process-list li:last-child { border-right: 0; }
.process-list li > span { display: inline-grid; width: 38px; height: 38px; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: .68rem; font-weight: 850; }
.process-list li > div { position: absolute; right: 24px; bottom: 30px; left: 24px; }
.process-list small { color: #6d86a3; font-size: .51rem; font-weight: 800; letter-spacing: .18em; }
.process-list h3 { margin: 10px 0 13px; font-size: 1.35rem; letter-spacing: -.035em; }
.process-list p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }
.process-list li > b { position: absolute; top: 32px; right: 24px; color: #7d91aa; font-size: 1.2rem; font-weight: 400; }
.process-list li:last-child > b { color: #2e75b7; }

.value { position: relative; overflow: hidden; color: #fff; background: #0b2b55; }
.value::before { content: ""; position: absolute; top: -240px; left: -180px; width: 610px; height: 610px; border: 1px solid rgba(84,173,255,.2); border-radius: 50%; box-shadow: 0 0 0 80px rgba(84,173,255,.025), 0 0 0 160px rgba(84,173,255,.015); }
.value-layout { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.value-copy h2 { margin-bottom: 26px; }
.value-copy h2 em { color: var(--lime); }
.value-copy > p { max-width: 460px; color: #a9bdd5; line-height: 1.75; }
.text-link { display: inline-flex; gap: 24px; margin-top: 16px; padding-bottom: 6px; color: var(--lime); border-bottom: 1px solid rgba(84,173,255,.55); font-size: .78rem; font-weight: 760; }
.value-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.value-card { min-height: 190px; padding: 24px; background: rgba(4, 19, 43, .38); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; }
.value-card > span { display: grid; width: 42px; height: 42px; margin-bottom: 28px; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 1.2rem; }
.value-card strong { display: block; margin-bottom: 7px; font-size: 1.03rem; }
.value-card p { margin: 0; color: #91a9c5; font-size: .78rem; line-height: 1.6; }

.faq { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(50px, 9vw, 140px); align-items: start; }
.faq-heading { position: sticky; top: 130px; }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; font-size: 1.06rem; font-weight: 680; letter-spacing: -.02em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; width: 31px; height: 31px; flex: 0 0 auto; place-items: center; color: var(--ink); border: 1px solid var(--line-dark); border-radius: 50%; font-size: 1.05rem; font-weight: 400; transition: transform 180ms ease, background 180ms ease; }
.faq-list details[open] summary span { background: var(--lime); transform: rotate(45deg); }
.faq-list details p { max-width: 700px; padding: 0 50px 26px 0; margin: -5px 0 0; color: var(--muted); line-height: 1.75; }

.pilot { position: relative; overflow: hidden; color: #fff; background: var(--ink); }
.pilot-noise { position: absolute; inset: 0; opacity: .3; background: radial-gradient(circle at 78% 31%, rgba(84,173,255,.16), transparent 25%), linear-gradient(135deg, transparent 72%, rgba(169,216,255,.08)); }
.pilot-layout { position: relative; display: grid; grid-template-columns: 1fr .85fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.pilot-copy h2 { margin-bottom: 28px; }
.pilot-copy h2 em { color: var(--lime); }
.pilot-copy > p { max-width: 540px; color: var(--white-muted); line-height: 1.75; }
.pilot-points { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; color: #8198b3; font-size: .68rem; }
.pilot-points span { display: flex; gap: 8px; }
.pilot-points b { color: var(--lime); }
.brief-form { padding: 30px; color: var(--ink); background: var(--paper); border-radius: var(--radius); box-shadow: 0 45px 100px rgba(0,0,0,.35); }
.form-head { display: flex; justify-content: space-between; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line-dark); }
.form-head span { color: #3f73a8; font-size: .58rem; font-weight: 850; letter-spacing: .16em; }
.form-head small { color: var(--muted); font-size: .63rem; }
.brief-form label { display: grid; gap: 7px; margin-bottom: 16px; color: #52647b; font-size: .67rem; font-weight: 720; }
.brief-form input, .brief-form select, .brief-form textarea { width: 100%; min-width: 0; padding: 12px 13px; color: var(--ink); background: #fff; border: 1px solid #c7d0dc; border-radius: 7px; outline: none; font-size: .86rem; transition: border-color 150ms ease, box-shadow 150ms ease; }
.brief-form input, .brief-form select { height: 46px; }
.brief-form textarea { resize: vertical; }
.brief-form input:focus, .brief-form select:focus, .brief-form textarea:focus { border-color: #397fc2; box-shadow: 0 0 0 3px rgba(57,127,194,.16); }
.form-row { display: grid; grid-template-columns: .62fr 1.38fr; gap: 12px; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.brief-form .form-consent { display: flex; align-items: flex-start; gap: 9px; margin: 3px 0 15px; font-weight: 580; line-height: 1.45; }
.brief-form .form-consent input { flex: 0 0 auto; width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--ink); }
.form-submit { width: 100%; margin-top: 2px; background: var(--ink); border-color: var(--ink); color: #fff; }
.form-submit:hover { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.form-submit:disabled { cursor: wait; opacity: .66; transform: none; }
.brief-result { margin-top: 20px; padding: 16px; background: #e4f1ff; border: 1px solid #aacdec; border-radius: 8px; }
.brief-result > p { display: flex; align-items: center; gap: 8px; margin: 0; font-size: .8rem; }
.brief-result > p span { display: grid; width: 20px; height: 20px; place-items: center; background: var(--lime); border-radius: 50%; font-size: .65rem; }
.brief-result.is-error { background: #fff0ed; border-color: #e2b2a8; }
.brief-result.is-error > p span { color: #fff; background: #a43f35; }

.site-footer { padding: 54px 0 26px; color: #fff; background: #040b18; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 30px; padding-bottom: 38px; border-bottom: 1px solid var(--line-light); }
.brand-footer { width: max-content; }
.footer-top > p { margin: 0; color: #7f95ae; font-size: .74rem; line-height: 1.6; }
.back-top { display: flex; align-items: center; gap: 14px; color: #afc0d3; font-size: .72rem; }
.back-top span { display: grid; width: 36px; height: 36px; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 1rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 30px; padding-top: 22px; color: #5f748d; font-size: .55rem; }

.reveal { opacity: 1; transform: none; transition: opacity 600ms ease, transform 600ms cubic-bezier(.22,.7,.22,1); transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-pending { opacity: 0; transform: translateY(18px); }
.reveal.is-pending.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; }

@media (max-width: 1050px) {
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-stage { min-height: 480px; transform: scale(.9); transform-origin: center right; }
  .spec-rail { grid-template-columns: repeat(5, 1fr); }
  .spec-rail div { padding-inline: 12px; }
  .split-heading, .compare-heading { gap: 5vw; }
  .outcome-grid { grid-template-rows: repeat(2, 280px); }
  .outcome-card-main { min-height: 576px; }
  .ui-demo { width: 80%; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li { min-height: 300px; border-bottom: 1px solid var(--line-dark); }
  .process-list li:nth-child(2) { border-right: 0; }
  .process-list li:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 820px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header { background: rgba(7,21,45,.9); border-color: rgba(255,255,255,.1); backdrop-filter: blur(18px); }
  .menu-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 6px; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 1px; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav { position: fixed; top: var(--header-height); right: 0; left: 0; display: grid; gap: 0; padding: 20px 16px 28px; background: rgba(7,21,45,.99); border-top: 1px solid rgba(255,255,255,.08); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform 240ms ease, opacity 200ms ease; }
  .main-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav > a { padding: 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-cta { margin-top: 14px; text-align: center; }
  .hero { padding-top: calc(var(--header-height) + 56px); }
  .hero-layout { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3.3rem, 12vw, 5.6rem); }
  .hero-copy { max-width: 690px; }
  .product-stage { width: min(100%, 620px); min-height: 470px; margin: 10px auto 0; transform: none; }
  .spec-rail { grid-template-columns: repeat(2, 1fr); }
  .spec-rail div { border-bottom: 1px solid var(--line-light); }
  .spec-rail div:nth-child(2n) { border-right: 0; }
  .spec-rail div:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .split-heading, .compare-heading, .capabilities-layout, .display-layout, .value-layout, .faq-layout, .pilot-layout { grid-template-columns: 1fr; gap: 34px; }
  .split-heading, .compare-heading { margin-bottom: 46px; }
  .split-heading > p, .compare-heading > p { max-width: 600px; }
  .outcome-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .outcome-card-main { grid-column: 1 / -1; grid-row: auto; min-height: 580px; }
  .outcome-card:not(.outcome-card-main) { min-height: 310px; }
  .capabilities-intro, .faq-heading { position: static; }
  .firmware-stamp { display: none; }
  .display-copy { max-width: 680px; }
  .display-demo { max-width: 760px; }
  .value-copy { margin-bottom: 18px; }
  .faq-layout { gap: 46px; }
  .pilot-copy { max-width: 680px; }
  .brief-form { max-width: 640px; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 78px 0; }
  .brand strong { font-size: .78rem; }
  .brand small { font-size: .47rem; }
  .hero { padding-bottom: 28px; }
  .hero-copy { padding-top: 8px; }
  .eyebrow { margin-bottom: 18px; font-size: .59rem; }
  h1 { font-size: clamp(3.05rem, 15vw, 4.4rem); }
  .hero-lead { font-size: .97rem; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .product-stage { min-height: 380px; }
  .orbit-one { inset: 30px 0 40px; }
  .orbit-two { inset: 68px 38px 80px; }
  .device-shadow { top: 245px; width: 250px; height: 95px; }
  .device-wrap { top: 105px; width: 64%; }
  .remote { top: 190px; right: 2%; width: 56px; height: 190px; padding: 14px 8px; }
  .remote-ring { width: 36px; height: 36px; }
  .spec-float { min-width: 95px; padding: 10px 12px; }
  .spec-float strong { font-size: 1.25rem; }
  .spec-float-top { top: 40px; }
  .spec-float-bottom { bottom: 42px; }
  .product-caption { display: none; }
  .spec-rail { margin-top: 20px; }
  .section-heading h2, .capabilities-intro h2, .display-copy h2, .value-copy h2, .faq-heading h2, .pilot-copy h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .split-heading, .compare-heading { gap: 25px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-card-main { min-height: 510px; }
  .outcome-card:not(.outcome-card-main) { min-height: 300px; }
  .ui-demo { top: 65px; width: 88%; height: 280px; }
  .ui-hero { height: 165px; padding: 28px 25px; }
  .ui-hero strong { font-size: 2rem; }
  .table-note-mobile { display: flex; align-items: center; gap: 8px; margin: -16px 0 12px; color: #6d8bad; font-size: .66rem; }
  .comparison-scroll table { min-width: 820px; }
  .comparison-scroll th, .comparison-scroll td { padding: 15px 13px; }
  .comparison-summary { display: grid; padding: 22px 18px; }
  .comparison-summary a { white-space: normal; }
  .capability-item { grid-template-columns: 34px 1fr; gap: 12px; }
  .capability-item i { display: none; }
  .capability-item p { font-size: .84rem; }
  .display-demo { padding: 22px 14px; }
  .display-demo { padding: 14px 10px 22px; }
  .display-device-shot { margin-bottom: 18px; border-radius: 9px; }
  .display-live-value { font-size: clamp(.48rem, 3.2vw, .82rem); }
  .display-timeline { grid-template-columns: 1fr; }
  .display-timeline li { display: grid; grid-template-columns: 68px 1fr; gap: 10px; min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .display-timeline li:last-child { border-bottom: 0; }
  .display-timeline li > span { margin-bottom: 0; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 270px; border-right: 0; border-bottom: 1px solid var(--line-dark) !important; }
  .process-list li:last-child { border-bottom: 0 !important; }
  .value-cards { grid-template-columns: 1fr; }
  .value-card { min-height: auto; }
  .faq-list summary { min-height: 82px; font-size: .94rem; }
  .faq-list details p { padding-right: 0; font-size: .87rem; }
  .pilot-points { display: grid; }
  .brief-form { padding: 22px 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-bottom { display: grid; }
}

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

/* Strict light presentation theme */
:root {
  --ink: #12243a;
  --ink-2: #173a63;
  --paper: #fff;
  --paper-2: #f3f7fc;
  --lime: #2678d4;
  --lime-soft: #dcecff;
  --mint: #2678d4;
  --line-dark: #d8e2ee;
  --line-light: #d8e2ee;
  --muted: #52657a;
  --white-muted: #52657a;
  --radius: .875rem;
  --shadow: 0 18px 48px rgba(35, 67, 104, .12);
}

body { color: var(--ink); background: var(--paper); font-family: Inter, "Segoe UI", Arial, sans-serif; line-height: 1.6; }
.section { padding: clamp(76px, 8vw, 116px) 0; }

.site-header,
.site-header.is-scrolled { color: var(--ink); background: rgba(255,255,255,.96); border-color: var(--line-dark); backdrop-filter: blur(16px); }
.brand strong { font-size: .86rem; letter-spacing: .04em; }
.brand small { color: #61758c; font-size: .62rem; letter-spacing: .04em; }
.main-nav { gap: 28px; font-size: .86rem; letter-spacing: 0; }
.main-nav > a:not(.nav-cta) { color: #354b63; }
.nav-cta { color: #fff; background: var(--lime); border-color: var(--lime); border-radius: 7px; }
.nav-cta:hover { color: #fff; background: #185fae; }

.hero { min-height: 860px; color: var(--ink); background: radial-gradient(circle at 78% 33%, rgba(38,120,212,.14), transparent 30%), linear-gradient(180deg, #f5f9fe 0%, #eaf3fc 100%); }
.hero::after { border-color: rgba(38,120,212,.14); box-shadow: none; }
.hero-grid { opacity: .32; background-image: linear-gradient(rgba(38,120,212,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(38,120,212,.08) 1px, transparent 1px); }
.eyebrow { margin-bottom: 20px; color: #316fae; font-size: .78rem; font-weight: 700; letter-spacing: .035em; text-transform: none; }
.eyebrow.dark { color: #316fae; }
.eyebrow > span { width: 22px; }
h1, h2 { line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 690px; font-size: clamp(3rem, 5vw, 5.25rem); font-weight: 650; }
h1 em, h2 em, .ui-hero strong, .firmware-stamp strong { color: var(--lime); font-family: inherit; font-style: normal; font-weight: inherit; }
.section-heading h2, .capabilities-intro h2, .display-copy h2, .value-copy h2, .faq-heading h2, .pilot-copy h2 { font-size: clamp(2.35rem, 4vw, 4.25rem); font-weight: 630; }
.hero-lead { color: #52677e; font-size: clamp(1rem, 1.35vw, 1.14rem); line-height: 1.65; }
.button { min-height: 50px; gap: 20px; border-radius: 7px; font-size: .88rem; }
.button-primary { color: #fff; background: var(--lime); }
.button-primary:hover { color: #fff; background: #185fae; border-color: #185fae; }
.button-ghost { color: #24435f; background: #fff; border-color: #b9c9d9; }
.button-ghost:hover { color: var(--lime); border-color: var(--lime); }
.hero-trust { color: #52677e; font-size: .78rem; letter-spacing: 0; }
.hero-trust span { color: #fff; background: var(--lime); }
.hero-product-photo { border-color: #cbd9e8; box-shadow: 0 28px 65px rgba(35,67,104,.2); }
.orbit { border-color: rgba(38,120,212,.2); }
.spec-float { background: #fff; border: 1px solid #d8e2ee; box-shadow: var(--shadow); }
.spec-float-bottom { color: #fff; background: var(--lime); }
.spec-float-bottom span, .spec-float-bottom small { color: #eaf4ff; }
.product-caption { color: #60778f; }
.product-caption strong { color: #274764; }
.spec-rail, .spec-rail div { border-color: #cbd9e8; }
.spec-rail span { color: #54708c; letter-spacing: .04em; }
.spec-rail strong { color: #213c57; }

.split-heading, .compare-heading { margin-bottom: 48px; }
.outcome-card { background: #f6f9fc; border-color: #d8e2ee; }
.outcome-card-main { color: var(--ink); background: #eaf3fc; }
.outcome-card-main .card-copy p { color: var(--muted); }
.card-index, .cap-num { letter-spacing: .04em; }
.card-copy h3, .capability-item h3, .process-list h3 { letter-spacing: -.015em; }
.outcome-grid { grid-template-rows: repeat(2, 340px); }
.outcome-card-main { min-height: 696px; }
.outcome-card-reset { min-height: 340px; padding-top: 160px; }
.outcome-card-reset .reset-visual { top: 66px; height: 66px; grid-template-columns: 1fr 48px 1fr; }
.outcome-card-reset .reset-visual span,
.outcome-card-reset .reset-visual strong { height: 58px; padding: 0 8px; }
.outcome-card-reset .reset-visual i { font-size: 1.2rem; }

.compare { color: var(--ink); background: #f3f7fc; }
.compare .eyebrow, .compare-heading h2 em { color: var(--lime); }
.compare-heading > p { color: var(--muted); }
.comparison-shell { background: #fff; border-color: #ccd8e5; box-shadow: 0 12px 36px rgba(35,67,104,.07); }
.comparison-scroll th, .comparison-scroll td { border-color: #dfe7f0; }
.comparison-scroll thead th { color: var(--ink); background: #edf3f9; }
.comparison-scroll thead th:first-child { color: #5c7188; letter-spacing: .04em; text-transform: none; }
.comparison-scroll thead small { color: #63788e; }
.comparison-scroll tbody th { color: #415971; background: #f6f9fc; }
.comparison-scroll tbody td { color: #40566d; background: #fff; }
.comparison-scroll tbody td b { color: #173550; }
.comparison-scroll tbody td small { color: #6a7e92; }
.comparison-scroll .winner { background: #edf6ff; }
.comparison-scroll thead .winner { color: #fff; background: var(--lime); }
.comparison-scroll thead .winner small { color: #e9f4ff; }
.best-tag { color: #fff; background: #185fae; letter-spacing: .04em; }
.status-yes > span { color: #fff; }
.comparison-summary { color: #496179; background: #e7f1fb; }
.comparison-summary strong { color: var(--ink); }
.comparison-summary a { color: #185fae; }
.sources { color: #657a90; }
.sources a { color: #285f96; border-color: #9bbbd9; }

.capabilities, .lifecycle, .faq { background: #fff; }
.firmware-stamp { border-color: #9eb3c8; transform: none; }
.firmware-stamp span, .firmware-stamp small, .process-list small { letter-spacing: .04em; }
.process-list li > span { color: #fff; }

.display-bonus { color: var(--ink); background: #eef5fc; }
.display-bonus::before { border-color: rgba(38,120,212,.12); box-shadow: none; }
.display-copy > p { color: var(--muted); }
.display-app { background: #fff; border-color: #cddbe9; }
.display-app > span { color: #fff; }
.display-app small { color: #56718d; letter-spacing: .04em; }
.display-demo { background: #fff; border-color: #cfdae7; box-shadow: var(--shadow); }
.display-timeline, .display-timeline li { border-color: #d8e2ee; }
.display-timeline li, .display-timeline small, .display-cycle-note { color: #657a90; }
.display-timeline li > span { color: #637a91; letter-spacing: .03em; }
.display-timeline strong { color: #213d59; }
.display-timeline li.is-active { color: var(--ink); background: #e8f3ff; }
.display-timeline li.is-active > span, .display-timeline li.is-active small { color: #2867a6; }

.value { color: var(--ink); background: #f3f7fc; }
.value::before { border-color: rgba(38,120,212,.12); box-shadow: none; }
.value-copy > p { color: var(--muted); }
.text-link { color: #185fae; border-color: #8cb6dd; }
.value-card { background: #fff; border-color: #d4dfeb; box-shadow: 0 8px 26px rgba(35,67,104,.06); }
.value-card > span { color: #fff; }
.value-card p { color: var(--muted); }

.pilot { color: var(--ink); background: #eaf3fc; }
.pilot-noise { opacity: .5; background: radial-gradient(circle at 78% 31%, rgba(38,120,212,.09), transparent 28%); }
.pilot-copy > p, .pilot-points { color: var(--muted); }
.pilot-points b { color: #185fae; }
.brief-form { background: #fff; border: 1px solid #d0dce8; box-shadow: var(--shadow); }
.form-head span { letter-spacing: .04em; }

/* One readable scale for supporting text */
.spec-float span,
.spec-float small,
.spec-rail span,
.card-index,
.cap-num,
.comparison-scroll thead th:first-child,
.comparison-scroll thead small,
.comparison-scroll tbody th,
.comparison-scroll tbody td small,
.best-tag,
.advantage span,
.sources,
.firmware-stamp span,
.firmware-stamp small,
.display-app small,
.display-timeline li > span,
.display-timeline strong,
.display-timeline small,
.display-cycle-note,
.process-list small,
.pilot-points,
.form-head span,
.form-head small,
.brief-form label,
.footer-bottom { font-size: .7rem; letter-spacing: .02em; }

.comparison-scroll tbody td,
.comparison-summary p,
.process-list p,
.value-card p,
.text-link,
.footer-top > p { font-size: .84rem; }

@media (max-width: 820px) {
  .site-header { color: var(--ink); background: rgba(255,255,255,.98); border-color: var(--line-dark); }
  .menu-toggle { color: var(--ink); border-color: #bdccda; }
  .main-nav { background: #fff; border-color: var(--line-dark); box-shadow: 0 18px 32px rgba(35,67,104,.12); }
  .main-nav > a { border-color: #e2e9f0; }
  h1 { font-size: clamp(2.8rem, 12vw, 4.25rem); }
  .section-heading h2, .capabilities-intro h2, .display-copy h2, .value-copy h2, .faq-heading h2, .pilot-copy h2 { font-size: clamp(2.35rem, 10vw, 3.5rem); }
  .outcome-grid { grid-template-rows: auto; }
  .outcome-card-reset { min-height: 370px; padding-top: 165px; }
}

@media (max-width: 600px) {
  .section { padding: 68px 0; }
  h1 { font-size: clamp(2.65rem, 13vw, 3.65rem); }
  .eyebrow { font-size: .72rem; }
  .display-timeline li { border-color: #d8e2ee; }
  .outcome-card-reset { min-height: 365px; }
}

/* Floating choice prompts */
.floating-prompts {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: min(205px, calc(100vw - 28px));
  justify-items: end;
  gap: 10px;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-prompt {
  position: relative;
  display: grid;
  width: 190px;
  min-height: 190px;
  align-content: center;
  gap: 2px;
  padding: 27px;
  color: var(--ink);
  background:
    radial-gradient(circle at 29% 22%, rgba(255,255,255,.82) 0 7%, rgba(255,255,255,.46) 18%, rgba(239,248,255,.32) 43%, rgba(194,220,243,.26) 72%, rgba(100,142,181,.2) 100%);
  border: 1px solid rgba(125,164,201,.58);
  border-radius: 50%;
  box-shadow:
    0 13px 30px rgba(26,59,94,.14),
    inset 11px 13px 22px rgba(255,255,255,.52),
    inset -16px -18px 28px rgba(54,96,137,.2),
    inset 0 0 0 5px rgba(255,255,255,.12);
  backdrop-filter: blur(9px);
  cursor: pointer;
  font: inherit;
  text-align: center;
  pointer-events: auto;
  transition: border-color 160ms ease, box-shadow 160ms ease, opacity 180ms ease, transform 180ms ease;
}

.floating-prompt span { color: #4d657d; font-size: .67rem; line-height: 1.32; }
.floating-prompt strong { font-size: .79rem; line-height: 1.28; }
.floating-prompt i { position: absolute; top: 24px; right: 29px; color: #66809a; font-size: .86rem; font-style: normal; }
.floating-prompt:hover { border-color: #77a8d7; box-shadow: 0 18px 40px rgba(26,59,94,.21), inset 11px 13px 22px rgba(255,255,255,.58), inset -16px -18px 28px rgba(54,96,137,.22), inset 0 0 0 5px rgba(255,255,255,.15); }
.floating-prompt-action { width: 205px; min-height: 205px; color: #fff; background: radial-gradient(circle at 29% 22%, rgba(151,211,255,.62) 0 6%, rgba(77,157,226,.54) 20%, rgba(28,104,187,.58) 48%, rgba(16,77,137,.66) 75%, rgba(7,49,94,.73) 100%); border-color: rgba(118,186,245,.62); box-shadow: 0 15px 34px rgba(17,72,125,.2), inset 12px 14px 24px rgba(188,224,255,.2), inset -17px -20px 30px rgba(5,39,76,.28), inset 0 0 0 5px rgba(190,226,255,.07); }
.floating-prompt-action span, .floating-prompt-action i { color: #d8ebff; }
.floating-prompt.is-caught { border-color: #5f9fdc; box-shadow: 0 20px 44px rgba(26,59,94,.23), inset 11px 13px 22px rgba(255,255,255,.58), inset -16px -18px 28px rgba(54,96,137,.22), inset 0 0 0 5px rgba(255,255,255,.15); }
.floating-prompt-action:hover,
.floating-prompt-action.is-caught { border-color: #92c9f7; box-shadow: 0 20px 44px rgba(17,72,125,.28), inset 12px 14px 24px rgba(203,233,255,.3), inset -17px -20px 30px rgba(5,39,76,.38), inset 0 0 0 5px rgba(190,226,255,.11); }
.floating-prompt.is-dismissed,
.floating-prompts.is-dismissed { opacity: 0; transform: translateY(12px); pointer-events: none; }

.floating-prompts.is-physics {
  inset: 0;
  display: block;
  width: auto;
}

.floating-prompts.is-physics .floating-prompt {
  position: absolute;
  top: 0;
  left: 0;
  width: 190px;
  min-height: 190px;
  align-content: center;
  padding: 27px;
  border-radius: 50%;
  will-change: transform;
  transition: border-color 160ms ease, box-shadow 160ms ease, opacity 180ms ease;
}

.floating-prompts.is-physics .floating-prompt-action {
  width: 205px;
  min-height: 205px;
}

.floating-prompts.is-physics .floating-prompt::after {
  content: "";
  position: absolute;
  right: 21px;
  bottom: 9px;
  width: 13px;
  height: 13px;
  background: inherit;
  border-right: inherit;
  border-bottom: inherit;
  border-radius: 50%;
}

/* Alternative offer */
.alternative { background: #eaf3fc; }
.alternative-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(42px, 8vw, 110px); align-items: center; }
.alternative-copy h2 { margin-bottom: 24px; font-size: clamp(2.35rem, 4vw, 4.25rem); font-weight: 630; line-height: 1.08; letter-spacing: -.035em; }
.alternative-copy h2 em { color: var(--lime); font-style: normal; }
.alternative-lead { max-width: 540px; margin-bottom: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.72; }
.alternative-offer { padding: clamp(26px, 4vw, 44px); color: #fff; background: #12365d; border-radius: var(--radius); box-shadow: 0 24px 60px rgba(26,59,94,.18); }
.alternative-offer-head { display: grid; padding-bottom: 24px; margin-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.16); }
.alternative-offer-head span { color: #b8d6f3; font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
.alternative-offer-head strong { margin-top: 8px; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 680; line-height: 1; letter-spacing: -.055em; }
.alternative-offer-head small { margin-top: 6px; color: #aac6e2; font-size: .76rem; }
.alternative-offer h3 { margin-bottom: 20px; font-size: clamp(1.6rem, 2.7vw, 2.55rem); line-height: 1.14; letter-spacing: -.025em; }
.alternative-offer ul { display: grid; gap: 9px; padding: 0; margin: 0 0 22px; list-style: none; }
.alternative-offer li { position: relative; padding-left: 23px; color: #d2e2f2; font-size: .86rem; }
.alternative-offer li::before { content: "✓"; position: absolute; left: 0; color: #78baff; font-weight: 800; }
.alternative-offer > p { margin-bottom: 24px; color: #b8cde1; font-size: .86rem; line-height: 1.65; }
.alternative-offer .button-primary { background: #fff; border-color: #fff; color: #174f88; }
.alternative-offer .button-primary:hover { background: #dcecff; border-color: #dcecff; color: #174f88; }

@media (max-width: 820px) {
  .floating-prompts { right: 14px; bottom: 14px; width: min(185px, calc(100vw - 28px)); }
  .floating-prompt { width: 170px; min-height: 170px; padding: 22px; }
  .floating-prompt-action { width: 185px; min-height: 185px; }
  .floating-prompt span { font-size: .62rem; }
  .floating-prompt strong { font-size: .73rem; }
  .alternative-layout { grid-template-columns: 1fr; }
  .alternative-copy { max-width: 680px; }
}

@media (max-height: 620px), (max-width: 420px) {
  .floating-prompts { width: min(170px, calc(100vw - 28px)); }
  .floating-prompt-muted { display: none; }
  .floating-prompt-action { width: 170px; min-height: 170px; }
}

@media (prefers-reduced-motion: reduce) {
  .floating-prompt { animation: none; }
}
