:root {
  --blue: #1487f7;
  --cyan: #3eb7f7;
  --iris: #6f69f2;
  --violet: #8e4bf5;
  --orange: #fd5e01;
  --ink: #0f1115;
  --ink-soft: #171a20;
  --graphite: #292d33;
  --warm-white: #f8f8f6;
  --cloud: #eef1f5;
  --fog: #e2e6ec;
  --muted: #6f7784;
  --success: #18b77e;
  --risk: #eb5d61;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 22px;
  --shadow: 0 30px 90px rgba(15, 17, 21, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--warm-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }

.sr-only,
.skip-link:not(:focus) {
  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:focus {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 120px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #535b68;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}
.eyebrow > span { width: 7px; height: 7px; border-radius: 2px; background: var(--orange); }
.eyebrow-light { color: #aeb5c0; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.mode-selector button:focus-visible { outline: 3px solid rgba(20, 135, 247, .45); outline-offset: 3px; }
.button-primary { background: var(--orange); color: #fff; box-shadow: 0 15px 35px rgba(253, 94, 1, .22); }
.button-primary:hover { background: #ec5700; box-shadow: 0 18px 40px rgba(253, 94, 1, .3); }
.button-dark { min-height: 42px; border-color: #30343c; background: #242830; color: #fff; }
.button-small { padding: 0 17px; font-size: 12px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled { border-color: rgba(255, 255, 255, .08); background: rgba(15, 17, 21, .88); backdrop-filter: blur(18px); }
.nav-shell { display: grid; min-height: 78px; grid-template-columns: auto 1fr auto; align-items: center; gap: 42px; }
.brand { width: 92px; height: 54px; }
.brand img { width: 92px; height: 68px; object-fit: contain; object-position: center; transform: translateY(-7px); }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 34px; }
.site-nav a { color: #aeb5c0; font-size: 12px; font-weight: 700; transition: color .2s ease; }
.site-nav a:hover { color: #fff; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid #343943; border-radius: 10px; background: #20242b; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; border-radius: 2px; background: #fff; }

.hero {
  position: relative;
  min-height: 870px;
  overflow: hidden;
  padding: 158px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 86% 16%, rgba(111, 105, 242, .16), transparent 30%),
    radial-gradient(circle at 10% 62%, rgba(20, 135, 247, .1), transparent 28%),
    var(--ink);
}
.hero::after { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; content: ""; background: linear-gradient(90deg, transparent, #363b44, transparent); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 70px; }
.hero-copy { padding-bottom: 50px; }
.hero h1 { max-width: 680px; margin-bottom: 26px; font-size: clamp(54px, 6.2vw, 86px); font-weight: 750; letter-spacing: -.065em; line-height: .99; }
.hero h1 em { color: transparent; background: linear-gradient(90deg, var(--cyan), #8d82ff 58%, #af5df6); background-clip: text; -webkit-background-clip: text; font-style: normal; }
.hero-lead { max-width: 610px; margin-bottom: 34px; color: #aeb5c0; font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: #d6dae1; font-size: 13px; font-weight: 700; }
.text-link span { color: var(--cyan); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; padding: 0; margin: 34px 0 0; list-style: none; color: #818a98; font-size: 10px; font-weight: 700; letter-spacing: .02em; }
.hero-trust li { display: flex; align-items: center; gap: 6px; }
.hero-trust span { color: var(--success); }

.motion-field { position: absolute; z-index: 1; inset: 0; pointer-events: none; }
.motion-field i { position: absolute; top: 25%; right: -23%; width: 65%; height: 34%; border: 1px solid rgba(111, 105, 242, .16); border-left-color: transparent; border-radius: 50%; transform: rotate(-9deg); }
.motion-field i:nth-child(2) { top: 34%; right: -18%; width: 48%; height: 25%; border-color: rgba(62, 183, 247, .13); border-left-color: transparent; }
.motion-field i:nth-child(3) { top: 42%; right: -12%; width: 31%; height: 16%; border-color: rgba(142, 75, 245, .16); border-left-color: transparent; }
.motion-field > span { position: absolute; top: 46%; right: 8%; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 32px rgba(253, 94, 1, .65); animation: signalPulse 2.6s ease-in-out infinite; }

.operations-window { position: relative; padding: 24px; border: 1px solid #30353e; border-radius: 24px; background: linear-gradient(145deg, rgba(31, 35, 43, .96), rgba(19, 22, 27, .96)); box-shadow: 0 38px 100px rgba(0, 0, 0, .36); }
.operations-window::before { position: absolute; z-index: -1; inset: -1px; border-radius: inherit; content: ""; filter: blur(40px); background: linear-gradient(135deg, rgba(20, 135, 247, .13), transparent 42%, rgba(142, 75, 245, .13)); }
.window-topbar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid #30353e; }
.window-title { display: flex; align-items: center; gap: 9px; color: #dfe3ea; font-size: 11px; font-weight: 800; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(24, 183, 126, .1); }
.window-status { padding: 5px 8px; border: 1px solid #343943; border-radius: 6px; color: #7e8795; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.portfolio-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 22px 0 18px; }
.portfolio-metrics div { padding: 13px; border: 1px solid #2f343c; border-radius: 12px; background: rgba(15, 17, 21, .48); }
.portfolio-metrics small { display: block; margin-bottom: 8px; color: #747d8b; font-size: 8px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.portfolio-metrics strong { font-size: 25px; font-variant-numeric: tabular-nums; }
.portfolio-metrics .metric-signal strong { color: var(--orange); }
.operation-trails { display: grid; gap: 8px; padding: 12px 0 24px; }
.trail { position: relative; overflow: hidden; height: 7px; border-radius: 99px; background: #2b3038; }
.trail span { display: block; width: var(--trail); height: 100%; border-radius: inherit; background: var(--color); animation: trailMove 4.5s ease-in-out infinite alternate; }
.trail i { position: absolute; top: 50%; left: calc(var(--trail) - 4px); width: 9px; height: 9px; border-radius: 50%; background: var(--dot, var(--color)); transform: translateY(-50%); animation: dotMove 4.5s ease-in-out infinite alternate; }
.trail-blue { --trail: 89%; --color: var(--blue); }
.trail-iris { --trail: 75%; --color: var(--iris); animation-delay: .2s; }
.trail-violet { --trail: 94%; --color: var(--violet); --dot: var(--orange); animation-delay: .4s; }
.window-section-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; color: #dfe3ea; font-size: 10px; font-weight: 800; }
.window-section-title small { color: #656e7b; font-size: 8px; font-weight: 700; }
.move-list { display: grid; gap: 7px; }
.move-list article { display: grid; min-width: 0; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 11px; border: 1px solid #2f343c; border-radius: 10px; background: #181b21; }
.move-icon { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 8px; color: var(--blue); background: rgba(20, 135, 247, .12); font-size: 12px; font-weight: 900; }
.move-icon.is-test { color: var(--violet); background: rgba(142, 75, 245, .12); }
.move-icon.is-ready { color: var(--success); background: rgba(24, 183, 126, .12); }
.move-list strong { display: block; overflow: hidden; margin-bottom: 3px; color: #e8eaf0; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.move-list small { display: block; color: #717a88; font-size: 8px; }
.move-action { padding: 6px 7px; border: 1px solid #343943; border-radius: 6px; color: #aab1bc; font-size: 7px; font-weight: 800; }
.autonomy-rail { display: grid; margin-top: 13px; grid-template-columns: repeat(3, 1fr) auto; align-items: center; gap: 6px; }
.autonomy-rail > span { padding: 8px; border-radius: 7px; color: #68717f; background: #21252d; font-size: 7px; font-weight: 900; text-align: center; text-transform: uppercase; }
.autonomy-rail > span.is-active { color: #c7c1ff; background: rgba(111, 105, 242, .2); box-shadow: inset 0 0 0 1px rgba(111, 105, 242, .2); }
.autonomy-rail small { margin-left: 8px; color: #5f6875; font-size: 7px; font-weight: 700; }
.capability-rail { position: relative; z-index: 2; display: flex; min-height: 98px; align-items: center; justify-content: space-between; margin-top: 88px; border-top: 1px solid #2b2f36; color: #6f7784; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.capability-rail i { width: 3px; height: 3px; border-radius: 50%; background: #444a54; }

.section-intro { max-width: 780px; margin-bottom: 58px; }
.section-intro h2,
.split-heading h2,
.territory-copy h2,
.control-copy h2,
.cta-inner h2 { margin-bottom: 22px; font-size: clamp(38px, 5vw, 62px); font-weight: 750; letter-spacing: -.055em; line-height: 1.04; }
.section-intro > p:last-child,
.split-heading > p,
.territory-copy > p,
.control-copy > p { color: var(--muted); font-size: 16px; line-height: 1.7; }

.problem-section { background: #fff; }
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--fog); border-left: 1px solid var(--fog); }
.problem-card { position: relative; min-height: 360px; padding: 42px; border-right: 1px solid var(--fog); border-bottom: 1px solid var(--fog); }
.card-number { position: absolute; top: 24px; right: 26px; color: #b1b7c0; font-size: 10px; font-weight: 800; }
.problem-card h3 { max-width: 340px; margin-bottom: 14px; font-size: 25px; letter-spacing: -.035em; }
.problem-card > p { max-width: 430px; margin-bottom: 28px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.problem-mark { display: flex; width: 74px; height: 54px; align-items: flex-end; gap: 5px; margin-bottom: 30px; }
.problem-mark i { width: 14px; height: 44px; border-radius: 20px; background: linear-gradient(180deg, var(--cyan), var(--blue)); transform: rotate(22deg); }
.problem-mark i:nth-child(2) { height: 32px; background: linear-gradient(180deg, var(--iris), var(--violet)); }
.problem-mark i:nth-child(3) { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); transform: none; }
.problem-mark.is-leak i:first-child { height: 48px; transform: rotate(0); }
.problem-mark.is-leak i:nth-child(2) { height: 27px; transform: rotate(0); }
.problem-mark.is-leak i:nth-child(3) { align-self: flex-start; margin-top: 7px; }
.problem-mark.is-test { align-items: center; }
.problem-mark.is-test i { width: 19px; height: 19px; border-radius: 50%; transform: none; }
.problem-mark.is-test i:nth-child(2) { box-shadow: 0 0 0 9px rgba(111, 105, 242, .12); }
.problem-mark.is-control i { width: 55px; height: 8px; border-radius: 99px; transform: none; }
.problem-mark.is-control i:nth-child(2) { width: 34px; }
.problem-mark.is-control i:nth-child(3) { width: 10px; height: 10px; }
.response { display: grid; gap: 6px; padding-top: 20px; border-top: 1px solid var(--fog); }
.response small { color: var(--orange); font-size: 9px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.response strong { max-width: 420px; font-size: 12px; line-height: 1.5; }

.workflow-section { background: var(--warm-white); }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 90px; margin-bottom: 70px; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { margin: 0 0 8px; }
.operating-loop { position: relative; display: grid; padding: 0; margin: 0; grid-template-columns: repeat(5, 1fr); list-style: none; }
.operating-loop::before { position: absolute; top: 46px; right: 0; left: 0; height: 2px; content: ""; background: linear-gradient(90deg, var(--blue), var(--cyan), var(--iris), var(--violet), var(--orange)); }
.operating-loop li { position: relative; padding-right: 28px; }
.operating-loop li > span { display: block; margin-bottom: 21px; color: #9aa1ac; font-size: 9px; font-weight: 800; }
.loop-dot { position: relative; z-index: 2; width: 13px; height: 13px; margin-bottom: 30px; border: 3px solid var(--warm-white); border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px rgba(20, 135, 247, .24); }
.operating-loop li:nth-child(2) .loop-dot { background: var(--cyan); }
.operating-loop li:nth-child(3) .loop-dot { background: var(--iris); }
.operating-loop li:nth-child(4) .loop-dot { background: var(--violet); }
.loop-dot.is-signal { background: var(--orange); box-shadow: 0 0 0 5px rgba(253, 94, 1, .09); }
.operating-loop strong { display: block; margin-bottom: 10px; font-size: 21px; }
.operating-loop p { max-width: 180px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.product-section { background: #fff; }
.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.capability-card { position: relative; overflow: hidden; min-height: 310px; padding: 36px; border: 1px solid var(--fog); border-radius: var(--radius); background: #fbfbfa; }
.capability-card h3 { max-width: 470px; margin: 18px 0 13px; font-size: 27px; letter-spacing: -.04em; }
.capability-card > p,
.capability-copy > p { max-width: 490px; color: var(--muted); font-size: 13px; line-height: 1.68; }
.capability-tag { display: inline-flex; padding: 7px 9px; border-radius: 7px; color: #4f55c8; background: #eeefff; font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.capability-wide { display: grid; min-height: 390px; grid-column: 1 / -1; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 54px; padding: 44px; }
.capability-copy ul { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 24px 0 0; list-style: none; }
.capability-copy li { padding: 8px 10px; border: 1px solid var(--fog); border-radius: 8px; color: #5f6671; background: #fff; font-size: 9px; font-weight: 750; }
.readiness-ui { display: grid; padding: 25px; border: 1px solid #dce2ec; border-radius: 17px; grid-template-columns: auto 1fr; align-items: center; gap: 18px; background: #fff; box-shadow: 0 20px 50px rgba(15, 17, 21, .07); }
.score-ring { position: relative; display: grid; width: 86px; height: 86px; place-items: center; border-radius: 50%; background: conic-gradient(var(--orange) 0 83%, #edf0f5 83%); }
.score-ring::before { position: absolute; width: 68px; height: 68px; border-radius: 50%; content: ""; background: #fff; }
.score-ring span { position: relative; z-index: 2; color: #a64205; font-size: 23px; font-weight: 800; }
.readiness-copy small { display: block; margin-bottom: 6px; color: #89919e; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.readiness-copy strong { display: block; font-size: 15px; }
.readiness-copy p { margin: 5px 0 0; color: #8b93a0; font-size: 8px; }
.readiness-bars { display: grid; grid-column: 1 / -1; gap: 7px; margin-top: 4px; }
.readiness-bars i { display: block; width: var(--value); height: 6px; border-radius: 99px; background: linear-gradient(90deg, var(--blue), var(--iris)); }
.readiness-bars i:nth-child(2) { background: linear-gradient(90deg, var(--iris), var(--violet)); }
.readiness-bars i:nth-child(3) { background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.mini-proof { position: absolute; right: 30px; bottom: 28px; left: 30px; display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--fog); }
.mini-proof span { color: #9299a5; font-size: 9px; font-weight: 750; }
.mini-proof strong { font-size: 10px; }
.asset-stack { position: absolute; right: 34px; bottom: 34px; display: flex; align-items: center; }
.asset-stack i { width: 55px; height: 47px; margin-left: -14px; border: 2px solid #fff; border-radius: 11px; background: linear-gradient(135deg, var(--cyan), var(--blue)); box-shadow: 0 8px 25px rgba(15, 17, 21, .1); }
.asset-stack i:nth-child(2) { background: linear-gradient(135deg, var(--iris), var(--violet)); }
.asset-stack i:nth-child(3) { background: linear-gradient(135deg, #2b3038, #555d69); }
.asset-stack span { display: grid; width: 47px; height: 47px; margin-left: -8px; place-items: center; border-radius: 50%; color: #fff; background: var(--orange); font-size: 10px; font-weight: 900; }
.experiment-meter { position: absolute; right: 34px; bottom: 38px; left: 34px; height: 7px; border-radius: 99px; background: #e9ecf1; }
.experiment-meter i { display: block; width: 72%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--violet)); }
.experiment-meter::after { position: absolute; top: 50%; left: 72%; width: 11px; height: 11px; border: 3px solid #fff; border-radius: 50%; content: ""; background: var(--violet); transform: translate(-50%, -50%); }
.experiment-meter span { position: absolute; top: -24px; left: 0; color: #858d99; font-size: 8px; font-weight: 800; }
.capability-dark { color: #fff; border-color: #292e36; background: var(--ink-soft); }
.capability-dark .capability-tag { color: #c9c3ff; background: rgba(111, 105, 242, .16); }
.capability-dark > p { color: #8d95a1; }
.result-row { position: absolute; right: 34px; bottom: 34px; left: 34px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.result-row div { padding: 14px; border: 1px solid #30353e; border-radius: 10px; background: #111419; }
.result-row small { display: block; margin-bottom: 6px; color: #717987; font-size: 8px; font-weight: 800; }
.result-row strong { color: var(--cyan); font-size: 18px; }
.result-row div:last-child strong { color: var(--orange); }

.territory-section { overflow: hidden; background: var(--warm-white); }
.territory-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 80px; }
.check-list { display: grid; gap: 20px; padding: 0; margin: 34px 0 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.check-list > li > span { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; color: var(--success); background: rgba(24, 183, 126, .1); font-size: 10px; font-weight: 900; }
.check-list strong { display: block; margin-bottom: 4px; font-size: 12px; }
.check-list small { color: #848c98; font-size: 10px; line-height: 1.5; }
.territory-panel { position: relative; overflow: hidden; min-height: 530px; padding: 28px; border: 1px solid #dfe4eb; border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.panel-label { display: flex; align-items: center; justify-content: space-between; }
.panel-label span { font-size: 11px; font-weight: 850; }
.panel-label small { color: #9299a4; font-size: 8px; font-weight: 750; }
.territory-map { width: 100%; margin: 24px 0 -4px; }
.map-shape { fill: #f2f4f8; stroke: #dfe4eb; stroke-width: 1.5; }
.map-route { fill: none; stroke: url(#mapLine); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 7 9; animation: mapRoute 9s linear infinite; }
.map-node circle:first-child { fill: var(--blue); }
.map-node circle:last-child { fill: none; stroke: var(--blue); stroke-width: 1; opacity: .28; animation: nodePulse 2.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.node-two circle:first-child { fill: var(--iris); }
.node-two circle:last-child { fill: none; stroke: var(--iris); }
.node-three circle:first-child { fill: var(--violet); }
.node-three circle:last-child { fill: none; stroke: var(--violet); }
.node-signal circle:first-child { fill: var(--orange); }
.node-signal circle:last-child { fill: none; stroke: var(--orange); }
.market-cards { display: grid; gap: 7px; }
.market-cards article { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; padding: 11px 13px; border: 1px solid var(--fog); border-radius: 10px; }
.flag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.flag-dot.is-iris { background: var(--iris); }
.flag-dot.is-orange { background: var(--orange); }
.market-cards strong { display: block; margin-bottom: 3px; font-size: 9px; }
.market-cards small { display: block; color: #9299a4; font-size: 7px; }
.market-cards b { color: #5e6672; font-size: 8px; }

.control-section { position: relative; overflow: hidden; color: #fff; background: var(--ink); }
.control-section::before { position: absolute; top: -300px; right: -150px; width: 650px; height: 650px; border-radius: 50%; content: ""; filter: blur(10px); background: radial-gradient(circle, rgba(111, 105, 242, .16), transparent 68%); }
.control-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.control-copy > p { color: #929aa6; }
.mode-selector { display: inline-flex; gap: 4px; padding: 4px; margin-top: 25px; border: 1px solid #30353e; border-radius: 12px; background: #191c22; }
.mode-selector button { min-width: 92px; min-height: 40px; padding: 0 14px; border: 0; border-radius: 9px; color: #7e8794; background: transparent; cursor: pointer; font-size: 9px; font-weight: 850; text-transform: uppercase; transition: background .2s ease, color .2s ease; }
.mode-selector button.is-active { color: #fff; background: linear-gradient(135deg, #5049c9, var(--iris)); box-shadow: 0 8px 22px rgba(111, 105, 242, .2); }
.control-panel { padding: 32px; border: 1px solid #30353e; border-radius: 22px; background: linear-gradient(145deg, #1b1f25, #15181d); box-shadow: 0 30px 80px rgba(0, 0, 0, .3); }
.control-panel-head { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 23px; border-bottom: 1px solid #30353e; }
.control-panel-head > div { display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 10px; }
.mode-light { width: 9px; height: 9px; grid-row: 1 / 3; border-radius: 50%; background: var(--iris); box-shadow: 0 0 0 5px rgba(111, 105, 242, .12); }
.control-panel-head small { color: #727b88; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.control-panel-head strong { margin-top: 3px; font-size: 17px; }
.scope-pill { padding: 7px 9px; border: 1px solid #343943; border-radius: 7px; color: #8c95a1; font-size: 8px; font-weight: 800; }
.control-panel > p { margin: 24px 0; color: #a0a8b3; font-size: 13px; line-height: 1.65; }
.control-panel ul { display: grid; gap: 11px; padding: 0; margin: 0 0 28px; list-style: none; }
.control-panel li { display: flex; align-items: center; gap: 9px; color: #c7cbd2; font-size: 10px; font-weight: 650; }
.control-panel li span { color: var(--success); }
.control-log { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; padding: 13px; border: 1px solid #2d323a; border-radius: 10px; background: #111419; }
.control-log > span { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.control-log small { display: block; margin-bottom: 3px; color: #68717d; font-size: 7px; }
.control-log strong { display: block; font-size: 9px; }
.control-log time { color: #6f7784; font-size: 8px; font-variant-numeric: tabular-nums; }

.comparison-section { background: #fff; }
.comparison-table { overflow: hidden; border: 1px solid var(--fog); border-radius: 18px; }
.comparison-table > div { display: grid; grid-template-columns: .8fr 1.2fr; }
.comparison-table > div:not(:last-child) { border-bottom: 1px solid var(--fog); }
.comparison-table span,
.comparison-table strong { padding: 22px 26px; font-size: 12px; line-height: 1.5; }
.comparison-table span { color: #777f8b; background: #fafaf9; }
.comparison-table strong { position: relative; padding-left: 52px; }
.comparison-table strong::before { position: absolute; top: 25px; left: 26px; color: var(--success); content: "✓"; }
.comparison-head span { color: #9aa1ac; background: #f1f3f6; font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.comparison-head span:last-child { color: #5b5fc3; }

.final-cta { position: relative; overflow: hidden; padding: 130px 0; color: #fff; background: #111318; text-align: center; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; flex-direction: column; }
.cta-inner > img { width: 145px; height: 72px; margin-bottom: 28px; object-fit: contain; }
.cta-inner h2 { max-width: 800px; }
.cta-inner > p:not(.eyebrow) { max-width: 600px; margin-bottom: 32px; color: #929aa6; font-size: 15px; line-height: 1.6; }
.cta-motion { position: absolute; inset: 0; opacity: .7; }
.cta-motion i { position: absolute; top: 20%; left: 50%; width: 85%; height: 74%; border: 1px solid rgba(20, 135, 247, .13); border-radius: 50%; transform: translateX(-50%); }
.cta-motion i:nth-child(2) { top: 34%; width: 62%; height: 48%; border-color: rgba(111, 105, 242, .14); }
.cta-motion i:nth-child(3) { top: 45%; width: 39%; height: 28%; border-color: rgba(142, 75, 245, .16); }
.cta-motion span { position: absolute; top: 57%; left: 70%; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 30px rgba(253, 94, 1, .5); }

.site-footer { padding: 38px 0; color: #fff; border-top: 1px solid #292d34; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.footer-brand { width: 80px; height: 42px; }
.footer-brand img { width: 80px; height: 58px; object-fit: contain; transform: translateY(-8px); }
.site-footer p { margin: 0; color: #7e8794; font-size: 10px; }
.site-footer nav { display: flex; gap: 23px; }
.site-footer nav a { color: #979faa; font-size: 9px; font-weight: 750; }
.site-footer nav a:hover { color: #fff; }
.site-footer small { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid #292d34; color: #626a76; font-size: 8px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes signalPulse { 50% { transform: scale(1.3); box-shadow: 0 0 46px rgba(253, 94, 1, .8); } }
@keyframes trailMove { from { width: calc(var(--trail) - 4%); } to { width: var(--trail); } }
@keyframes dotMove { from { left: calc(var(--trail) - 4% - 4px); } to { left: calc(var(--trail) - 4px); } }
@keyframes mapRoute { to { stroke-dashoffset: -64; } }
@keyframes nodePulse { 50% { opacity: .08; transform: scale(1.45); } }

@media (max-width: 1020px) {
  :root { --shell: min(100% - 40px, 900px); }
  .section { padding: 100px 0; }
  .hero { min-height: auto; padding-top: 138px; }
  .hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .hero-copy { max-width: 720px; padding-bottom: 0; }
  .operations-window { max-width: 760px; }
  .capability-rail { margin-top: 60px; }
  .territory-grid,
  .control-grid { grid-template-columns: 1fr; gap: 55px; }
  .territory-copy,
  .control-copy { max-width: 700px; }
  .territory-panel { max-width: 760px; }
  .control-panel { max-width: 760px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 32px); --radius: 17px; }
  .section { padding: 78px 0; }
  .site-header .button-dark { display: none; }
  .nav-shell { min-height: 68px; grid-template-columns: auto 1fr auto; gap: 14px; }
  .menu-toggle { display: block; grid-column: 3; }
  .site-nav { position: fixed; z-index: 99; top: 68px; right: 0; left: 0; display: grid; padding: 28px 24px 36px; gap: 6px; border-top: 1px solid #30353e; background: rgba(15, 17, 21, .98); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { padding: 12px; border-radius: 8px; color: #d3d7de; font-size: 14px; }
  .site-nav a:hover { background: #20242b; }
  .hero { padding-top: 115px; }
  .hero h1 { font-size: clamp(45px, 14vw, 66px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-trust { gap: 12px 18px; }
  .operations-window { padding: 16px; border-radius: 18px; }
  .portfolio-metrics strong { font-size: 19px; }
  .portfolio-metrics div { padding: 10px; }
  .move-action { display: none; }
  .autonomy-rail { grid-template-columns: repeat(3, 1fr); }
  .autonomy-rail small { display: none; }
  .capability-rail { overflow: hidden; min-height: 76px; justify-content: flex-start; gap: 18px; white-space: nowrap; }
  .capability-rail i { flex: 0 0 auto; }
  .section-intro { margin-bottom: 42px; }
  .section-intro h2,
  .split-heading h2,
  .territory-copy h2,
  .control-copy h2,
  .cta-inner h2 { font-size: clamp(35px, 10vw, 48px); }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 330px; padding: 32px 26px; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .operating-loop { gap: 0; grid-template-columns: 1fr; }
  .operating-loop::before { top: 5px; bottom: 5px; left: 6px; width: 2px; height: auto; background: linear-gradient(180deg, var(--blue), var(--cyan), var(--iris), var(--violet), var(--orange)); }
  .operating-loop li { display: grid; padding: 0 0 30px 36px; grid-template-columns: auto 1fr; column-gap: 12px; }
  .operating-loop li > span { display: none; }
  .loop-dot { position: absolute; top: 3px; left: 0; margin: 0; }
  .operating-loop strong { margin: 0; }
  .operating-loop p { max-width: none; grid-column: 2; margin-top: 6px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-wide { min-height: 0; grid-column: auto; grid-template-columns: 1fr; gap: 32px; padding: 30px; }
  .capability-card { min-height: 320px; padding: 30px; }
  .capability-wide h3 { font-size: 27px; }
  .readiness-ui { padding: 18px; }
  .territory-panel { min-height: 0; padding: 19px; }
  .territory-map { margin-top: 10px; }
  .control-grid { gap: 38px; }
  .mode-selector { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
  .mode-selector button { min-width: 0; padding-inline: 8px; }
  .control-panel { padding: 24px; }
  .comparison-table > div { grid-template-columns: 1fr; }
  .comparison-table span,
  .comparison-table strong { padding: 17px 20px; }
  .comparison-table strong { padding-left: 46px; }
  .comparison-table strong::before { top: 20px; left: 20px; }
  .comparison-head span:first-child { display: none; }
  .comparison-head span:last-child { grid-column: 1; }
  .final-cta { padding: 90px 0; }
  .footer-grid { grid-template-columns: auto 1fr; }
  .site-footer nav { grid-column: 1 / -1; flex-wrap: wrap; }
}

@media (max-width: 430px) {
  .portfolio-metrics { gap: 6px; }
  .portfolio-metrics small { font-size: 6px; }
  .portfolio-metrics strong { font-size: 16px; }
  .move-list small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .readiness-ui { grid-template-columns: 1fr; }
  .score-ring { width: 76px; height: 76px; }
  .readiness-bars { grid-column: auto; }
  .result-row { right: 25px; bottom: 25px; left: 25px; }
  .control-panel-head { gap: 12px; }
}

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