/* ============================================================
   AAIS — FUTURISTIC SCROLL-DRIVEN SITE
   ============================================================ */

:root {
  --ink-0:  #05080F;
  --ink-1:  #0A0E1A;
  --ink-2:  #0E1424;
  --ink-3:  #141B30;
  --line:   rgba(120, 170, 230, 0.12);
  --line-b: rgba(120, 170, 230, 0.22);
  --blue:   #378ADD;
  --blue-d: #185FA5;
  --blue-g: #6BAEE8;
  --cyan:   #7CD6FF;
  --silver: #8892A6;
  --ice:    #E8EEF8;
  --white:  #FAFAF7;
  --nav-h:  64px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:  cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  background: var(--ink-0);
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ink-0);
  color: var(--ice);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
em { font-family: 'Instrument Serif', 'EB Garamond', Georgia, serif; font-style: italic; font-weight: 400; }
ul { list-style: none; }

::selection { background: rgba(55,138,221,0.35); color: var(--white); }

/* ============================================================
   NOISE GRAIN + SCAN LINE (subtle)
   ============================================================ */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.scanline {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.5;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 3px,
      rgba(120,170,230,0.012) 3px,
      rgba(120,170,230,0.012) 4px
    );
}

/* ============================================================
   CURSOR
   ============================================================ */
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1px solid rgba(124, 214, 255, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
              border-color 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 4px; height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring.is-hover {
  width: 56px; height: 56px;
  border-color: var(--cyan);
  background: rgba(124,214,255,0.06);
}
@media (pointer: coarse) {
  .cursor-ring, .cursor-dot { display: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 8px 32px 6px;
  background: linear-gradient(to bottom, rgba(5,8,15,0.85), rgba(5,8,15,0));
  backdrop-filter: blur(0px);
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 52px;
}
.nav-links-wrap {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(124,214,255,0.35) transparent;
}
.nav-links-wrap::-webkit-scrollbar { height: 4px; }
.nav-links-wrap::-webkit-scrollbar-thumb {
  background: rgba(124,214,255,0.25);
  border-radius: 4px;
}
.nav-progress {
  width: 100%;
  height: 2px;
  margin-top: 6px;
  background: rgba(120, 170, 230, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.nav-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 0.12s linear;
}
.nav-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-b);
  background: rgba(10,14,26,0.55);
  color: var(--ice);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.nav-menu-btn:hover { border-color: rgba(124,214,255,0.35); background: rgba(14,20,36,0.85); }
.nav-menu-bars {
  width: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-menu-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ice);
  border-radius: 1px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}
.nav-menu-btn[aria-expanded="true"] .nav-menu-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-menu-btn[aria-expanded="true"] .nav-menu-bars span:nth-child(2) { opacity: 0; }
.nav-menu-btn[aria-expanded="true"] .nav-menu-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 91;
  background: rgba(5,8,15,0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out);
}
.nav-drawer-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 92;
  width: min(360px, 92vw);
  height: 100vh;
  height: 100dvh;
  background: rgba(8,12,22,0.96);
  border-left: 1px solid var(--line);
  padding: 24px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  overflow-y: auto;
  pointer-events: none;
}
.nav-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-drawer-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
}
.nav-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ice);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.nav-drawer-close:hover { border-color: var(--cyan); color: var(--white); }
.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,238,248,0.75);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.nav-drawer-links a:hover,
.nav-drawer-links a.active {
  color: var(--cyan);
  background: rgba(55,138,221,0.1);
  border-color: rgba(124,214,255,0.15);
}
.nav-cta-drawer { justify-content: center; margin-top: auto; }
.nav.scrolled {
  background: rgba(5,8,15,0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,14,26,0.35);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 4px;
  backdrop-filter: blur(12px);
}
.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(232,238,248,0.65);
  padding: 8px 12px;
  border-radius: 100px;
  transition: all 0.2s;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}
.nav-links a.active {
  color: var(--cyan);
  background: rgba(55,138,221,0.12);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}
.nav-cta:hover::before { transform: translateX(100%); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(55,138,221,0.3); }
.nav-cta svg { transition: transform 0.25s var(--ease-out); }
.nav-cta:hover svg { transform: translateX(3px); }

/* ============================================================
   HUD CORNER BRACKETS (decorative)
   ============================================================ */
.hud-corners {
  position: fixed;
  inset: 16px;
  pointer-events: none;
  z-index: 50;
}
.hud-corners::before, .hud-corners::after,
.hud-corners > span::before, .hud-corners > span::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid rgba(124,214,255,0.22);
}
.hud-corners::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.hud-corners::after  { top: 0; right: 0; border-left: none; border-bottom: none; }
.hud-corners > span::before { bottom: 0; left: 0; border-right: none; border-top: none; }
.hud-corners > span::after  { bottom: 0; right: 0; border-left: none; border-top: none; }

/* ============================================================
   WEBGL STAGE — pinned canvas for scroll-driven scenes
   ============================================================ */
.stage {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.95;
}
.stage canvas {
  width: 100%; height: 100%;
  display: block;
}
body.stage-disabled .stage,
body.stage-disabled .stage-tint,
body.reduce-motion .stage,
body.reduce-motion .stage-tint {
  display: none;
}
.stage-tint {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(55,138,221,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 0%, rgba(24,95,165,0.08) 0%, transparent 40%);
}

/* ============================================================
   SECTIONS — layered above stage
   ============================================================ */
section, footer {
  position: relative;
  z-index: 3;
  isolation: isolate;
}
/* Sections that should reveal the pinned 3D canvas behind them */
.sec-transparent { background: transparent; }
/* Sections that should block the 3D stage with an opaque backdrop */
.sec-solid {
  background: linear-gradient(180deg, rgba(5,8,15,0.96), rgba(10,14,26,0.98));
  backdrop-filter: blur(2px);
}

.pad {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Kicker pill */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue-g);
  padding: 6px 14px;
  border: 1px solid var(--line-b);
  border-radius: 100px;
  background: rgba(55,138,221,0.04);
  backdrop-filter: blur(8px);
}
.kicker::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* Reveal text — char by char */
.reveal-chars {
  display: inline-block;
  overflow: hidden;
  line-height: 1.08;
}
.reveal-chars .ch {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.9s var(--ease-out), opacity 0.9s var(--ease-out);
}
.reveal-chars.in .ch {
  transform: translateY(0);
  opacity: 1;
}
.reveal-chars .sp { display: inline-block; width: 0.28em; }

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-up.in { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.00s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 220px;
  padding-bottom: 0;
}
.hero .pad {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-top: 40px;
  padding-bottom: 40px;
  flex: 1;
  align-content: center;
}
.hero-kicker-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.hero-loc {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}
.hero-h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(56px, 10vw, 180px);
  font-weight: 200;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-h1 em {
  font-family: 'Instrument Serif', 'EB Garamond', Georgia, serif;
  font-weight: 400;
  color: var(--blue-g);
  letter-spacing: -0.02em;
  display: block;
}
.hero-sub {
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(232,238,248,0.62);
  max-width: 620px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-p, .btn-g {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 100px;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-p {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-p::after {
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out);
}
.btn-p:hover::after { transform: translateX(100%); }
.btn-p:hover { box-shadow: 0 12px 40px rgba(55,138,221,0.4); transform: translateY(-2px); }
.btn-g {
  background: rgba(255,255,255,0.02);
  color: var(--ice);
  border-color: var(--line-b);
  backdrop-filter: blur(8px);
}
.btn-g:hover {
  border-color: var(--blue-g);
  color: var(--cyan);
  background: rgba(55,138,221,0.06);
}
.btn-arr {
  display: inline-flex;
  font-size: 14px;
  transition: transform 0.25s var(--ease-out);
}
.btn-p:hover .btn-arr, .btn-g:hover .btn-arr { transform: translateX(4px); }

/* Hero stat strip */
.hero-strip {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding: 28px 48px;
  margin-top: 100px;
  border-top: 1px solid var(--line);
  background: linear-gradient(to top, rgba(5,8,15,0.85), transparent);
  backdrop-filter: blur(6px);
  z-index: 4;
}
.hs-i {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px;
  border-right: 1px solid var(--line);
  max-width: 220px;
}
.hs-i:last-child { border-right: none; }
.hs-i em {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.hs-i em i {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--blue-g);
}
.hs-i span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 200px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
}
.scroll-cue span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver);
  writing-mode: vertical-rl;
}
.scroll-cue-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content:'';
  position: absolute;
  top: -48px;
  width: 1px; height: 48px;
  background: var(--cyan);
  animation: scrollMove 2.4s ease-in-out infinite;
}
@keyframes scrollMove { 0%{top:-48px;opacity:1;} 100%{top:48px;opacity:0;} }

/* ============================================================
   TICKER STRIP
   ============================================================ */
.ticker {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  background: rgba(55,138,221,0.04);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tickRoll 45s linear infinite;
  width: max-content;
}
.ticker-track > span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-g);
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.ticker-track > span::after {
  content: '◆';
  font-size: 7px;
  color: rgba(55,138,221,0.4);
  margin-left: 28px;
}
@keyframes tickRoll { to { transform: translateX(-50%); } }

/* ============================================================
   SCENE SECTIONS (pinned-scroll scenes overlaid on stage)
   ============================================================ */
.scene {
  position: relative;
  padding: 160px 0 180px;
}
.scene-hdr {
  max-width: 920px;
  margin-bottom: 72px;
}
.scene-hdr .kicker { margin-bottom: 24px; }
.scene-hdr h2 {
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 200;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--white);
}
.scene-hdr h2 em {
  color: var(--blue-g);
  display: block;
}
.scene-hdr p {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(232,238,248,0.6);
  margin-top: 28px;
  max-width: 620px;
}

/* ============================================================
   CONSTELLATION SECTION — pinned scroll of orbit scenes
   ============================================================ */
.constellation {
  position: relative;
}
.cns-pin {
  height: 400vh;
  position: relative;
}
.cns-stuck {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 80px;
}
.cns-left {
  padding-top: var(--nav-h);
}
.cns-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(124,214,255,0.25);
  border-radius: 100px;
  background: rgba(124,214,255,0.04);
}
.cns-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cns-panel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  pointer-events: none;
  padding-top: 80px;
}
.cns-panel-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cns-h {
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
}
.cns-h em { color: var(--blue-g); display: block; }
.cns-p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(232,238,248,0.62);
  max-width: 520px;
}
.cns-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 460px;
  margin-top: 16px;
}
.cns-spec {
  background: rgba(10,14,26,0.55);
  padding: 18px 22px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cns-spec em {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}
.cns-spec span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}

/* Progress pips for the scene */
.cns-progress {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 6;
}
.cns-pip {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.15);
  transition: background 0.4s, width 0.4s;
}
.cns-pip.active { background: var(--cyan); width: 48px; }

.cns-right {
  /* right column is where 3D scene primarily shows */
  position: relative;
  height: 100%;
}

/* ============================================================
   AGENT NETWORK SECTION
   ============================================================ */
.agents-sec {
  padding: 180px 0 200px;
  position: relative;
}
.agents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
.ag-left h2 {
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 200;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--white);
  margin: 24px 0 28px;
}
.ag-left h2 em { color: var(--blue-g); display: block; }
.ag-left p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(232,238,248,0.62);
  margin-bottom: 40px;
  max-width: 520px;
}
.ag-tiers {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ag-tier {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.35s;
}
.ag-tier:hover { padding-left: 10px; }
.ag-tier:last-child { border-bottom: 1px solid var(--line); }
.ag-t-idx {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--blue-g);
  flex-shrink: 0;
  min-width: 40px;
  line-height: 1;
  padding-top: 2px;
}
.ag-t-body { flex: 1; }
.ag-t-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-g);
  opacity: 0.65;
  margin-bottom: 6px;
}
.ag-tier.active .ag-t-tag { opacity: 1; color: var(--cyan); }
.ag-t-name {
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.ag-t-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(232,238,248,0.5);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s, margin-top 0.4s;
  opacity: 0;
}
.ag-tier.active .ag-t-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 4px;
}

.ag-right {
  position: relative;
  aspect-ratio: 1;
  max-width: 560px;
  justify-self: center;
}
.ag-network-svg {
  width: 100%; height: 100%;
}

/* ============================================================
   CAPABILITIES — 3D TILT CARDS
   ============================================================ */
.cap-sec {
  padding: 160px 0 180px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
.cap-card {
  position: relative;
  padding: 34px 30px;
  background: linear-gradient(145deg, rgba(20,27,48,0.6) 0%, rgba(10,14,26,0.4) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(18px) saturate(1.2);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
  cursor: default;
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,214,255,0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.cap-card:hover {
  border-color: rgba(124,214,255,0.35);
  box-shadow: 0 20px 60px rgba(55,138,221,0.12);
}
.cap-card:hover::before { opacity: 1; }
.cap-card-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,138,221,0.12) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  transform: translate(-50%, -50%);
}
.cap-card:hover .cap-card-glow { opacity: 1; }

.cap-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-g);
  padding: 4px 10px;
  border: 1px solid rgba(120,170,230,0.2);
  border-radius: 100px;
  align-self: flex-start;
}
.cap-card h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.cap-card h3 em { color: var(--blue-g); }
.cap-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(232,238,248,0.55);
  flex: 1;
}
.cap-card-sep {
  height: 1px;
  background: var(--line);
  margin: 8px 0 6px;
}
.cap-card ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cap-card li {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(232,238,248,0.5);
  font-variant-numeric: tabular-nums;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.cap-card li span:first-child {
  color: var(--silver);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.cap-card li span:last-child {
  color: var(--white);
  font-weight: 500;
}

/* ============================================================
   MARQUEE HEADLINE
   ============================================================ */
.marquee-sec {
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}
.marquee-row {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqRoll 50s linear infinite;
  width: max-content;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(60px, 11vw, 200px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: rgba(232,238,248,0.06);
}
.marquee-row span { padding: 0 40px; display: inline-flex; gap: 40px; align-items: center; }
.marquee-row span::after {
  content: '◆';
  color: rgba(55,138,221,0.18);
  font-size: 0.3em;
  font-family: 'Inter', sans-serif;
  font-style: normal;
}
.marquee-row.rev { animation-direction: reverse; animation-duration: 65s; color: rgba(55,138,221,0.08); }
@keyframes marqRoll { to { transform: translateX(-50%); } }

/* ============================================================
   METRICS — HUGE NUMBERS
   ============================================================ */
.metrics {
  padding: 160px 0 180px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 1400px;
  margin: 0 auto;
}
.metrics-grid > .m-card {
  background: var(--ink-1);
}
.m-card {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  min-height: 280px;
  transition: background 0.4s;
}
.m-card:hover { background: var(--ink-2); }
.m-card-idx {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--silver);
  font-variant-numeric: tabular-nums;
}
.m-val {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--blue-g);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-top: auto;
}
.m-val .pre, .m-val .suf {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 300;
  color: var(--blue-g);
}
.m-val .pre { font-size: 0.35em; align-self: center; }
.m-val .num { font-size: 1em; font-variant-numeric: tabular-nums; }
.m-val .suf { font-size: 0.4em; }
.m-card-big .m-val { font-size: clamp(72px, 8vw, 128px); }
.m-card-md .m-val  { font-size: clamp(56px, 6vw, 96px); }

.m-lbl {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}
.m-sub {
  font-size: 12px;
  color: var(--silver);
  line-height: 1.5;
}
.m-zero .m-val {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(60px, 7vw, 108px);
  letter-spacing: 0.04em;
  color: var(--blue-g);
}

/* ============================================================
   COMPARISON — SPLIT DIAGRAM
   ============================================================ */
.compare {
  padding: 160px 0 180px;
}
.compare-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
.cmp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
  border: 1px solid var(--line);
  background: var(--line);
  position: relative;
}
.cmp-col {
  padding: 48px 40px;
  background: var(--ink-1);
  position: relative;
}
.cmp-col.legacy { background: rgba(180,60,60,0.04); }
.cmp-col.aais {
  background: linear-gradient(145deg, rgba(55,138,221,0.06), rgba(10,14,26,0.9));
}
.cmp-col-hdr {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 6px;
}
.cmp-col.aais .cmp-col-hdr { color: var(--blue-g); }
.cmp-col-h {
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.cmp-col-h em { color: var(--blue-g); }
.cmp-col.legacy .cmp-col-h em { color: #e07070; font-style: italic; }
.cmp-col ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cmp-col li {
  padding: 16px 0;
  font-size: 14px;
  color: rgba(232,238,248,0.7);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
}
.cmp-col li:last-child { border-bottom: none; }
.cmp-col .mk {
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin-top: 1px;
}
.cmp-col.legacy .mk {
  background: rgba(200,80,80,0.12);
  color: #e07070;
  border: 1px solid rgba(200,80,80,0.25);
}
.cmp-col.aais .mk {
  background: rgba(55,138,221,0.12);
  color: var(--cyan);
  border: 1px solid rgba(124,214,255,0.25);
}

/* ============================================================
   SCENARIOS — horizontal scroll rail
   ============================================================ */
.scenarios {
  padding: 160px 0 0;
  position: relative;
}
.scn-rail {
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}
.scn-track {
  display: flex;
  gap: 20px;
  padding: 0 48px 80px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.scn-track::-webkit-scrollbar { display: none; }
.scn-card {
  flex: 0 0 clamp(380px, 42vw, 600px);
  scroll-snap-align: center;
  padding: 44px 38px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(20,27,48,0.7), rgba(5,8,15,0.5));
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}
.scn-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(55,138,221,0.16), transparent 60%);
  pointer-events: none;
}
.scn-idx {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  color: rgba(124,214,255,0.25);
  letter-spacing: -0.04em;
  line-height: 1;
}
.scn-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}
.scn-card h3 {
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}
.scn-card h3 em { color: var(--blue-g); display: block; }
.scn-copy p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(232,238,248,0.6);
  margin-bottom: 14px;
}
.scn-copy p strong {
  color: var(--white);
  font-weight: 500;
}
.scn-meta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}
.scn-m-l {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 4px;
}
.scn-m-v {
  font-size: 12px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.scn-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 0 48px;
  margin-top: -40px;
  position: relative;
  z-index: 4;
}
.scn-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-b);
  background: rgba(10,14,26,0.65);
  color: var(--ice);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}
.scn-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); transform: scale(1.08); }

/* ============================================================
   NEWS
   ============================================================ */
.news-sec {
  padding: 160px 0 180px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 64px auto 0;
  padding: 0 48px;
}
.news-card {
  padding: 32px 28px;
  background: rgba(10,14,26,0.55);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 300px;
  transition: all 0.35s var(--ease-out);
  cursor: default;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,214,255,0.3);
  background: rgba(14,20,36,0.75);
}
.news-card .nc-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-g);
  padding: 4px 10px;
  border: 1px solid rgba(120,170,230,0.2);
  border-radius: 100px;
  align-self: flex-start;
}
.news-card h3 {
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.news-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(232,238,248,0.55);
  flex: 1;
}
.news-card .nc-foot {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--silver);
  text-transform: uppercase;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-sec {
  padding: 180px 0 200px;
  position: relative;
  text-align: center;
}
.cta-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 10px 22px;
  border: 1px solid rgba(124,214,255,0.3);
  border-radius: 100px;
  background: rgba(124,214,255,0.04);
}
.cta-h {
  font-size: clamp(44px, 6vw, 96px);
  font-weight: 200;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
}
.cta-h em { color: var(--blue-g); display: block; }
.cta-p {
  font-size: 16px;
  color: rgba(232,238,248,0.6);
  line-height: 1.7;
  max-width: 560px;
}
.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  width: 100%;
  margin-top: 24px;
}
.cta-spec {
  background: rgba(10,14,26,0.6);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta-spec em {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-g);
}
.cta-spec span {
  font-size: 12px;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer.foot {
  background: var(--ink-0);
  border-top: 1px solid var(--line);
  padding: 72px 0 36px;
  position: relative;
  z-index: 4;
}
.foot-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.foot-brand img { width: 40px; height: 40px; object-fit: contain; object-position: top; }
.foot-brand .nm { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; color: var(--white); }
.foot-brand .sb { font-size: 9px; letter-spacing: 0.28em; color: var(--silver); margin-top: 3px; }
.foot-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-g);
  margin-bottom: 18px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col li {
  font-size: 12px;
  color: rgba(232,238,248,0.55);
  transition: color 0.2s;
}
.foot-col li:hover { color: var(--ice); }
.foot-q blockquote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(232,238,248,0.45);
  max-width: 380px;
}
.foot-q cite {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--silver);
  text-transform: uppercase;
}
.foot-bot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(232,238,248,0.28);
  text-transform: uppercase;
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--ink-0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.loader-logo img {
  width: 72px; height: 72px;
  object-fit: contain; object-position: top;
  animation: loadPulse 1.6s ease-in-out infinite;
}
@keyframes loadPulse {
  0%,100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.0); }
}
.loader-bar {
  width: 120px;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 30%;
  background: var(--cyan);
  animation: loadSlide 1.2s ease-in-out infinite;
}
@keyframes loadSlide {
  0% { left: -30%; }
  100% { left: 100%; }
}
.loader-txt {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .pad { padding: 0 32px; }
  .nav { padding: 8px 24px 6px; }
  .nav-links { display: flex; }
  .nav-links a { padding: 6px 8px; font-size: 9px; }
  .cns-stuck { grid-template-columns: 1fr; gap: 40px; padding: 0 32px; }
  .cns-right { height: 50vh; }
  .agents-grid { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .cmp-split { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .cta-specs { grid-template-columns: repeat(2, 1fr); }
  .hero-strip { flex-wrap: wrap; gap: 16px 0; }
  .scroll-cue { display: none; }
}
@media (max-width: 680px) {
  .pad { padding: 0 20px; }
  .hero-h1 { font-size: 52px; }
  .scene-hdr h2 { font-size: 40px; }
  .cap-grid, .news-grid, .metrics-grid { grid-template-columns: 1fr; }
  .hero-strip { display: none; }
  .scn-card { flex: 0 0 85vw; padding: 32px 24px; }
  .cta-specs { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .cns-stuck { padding: 0 20px; }
  .agents-grid { padding: 0 20px; }
  .m-card { padding: 40px 28px; min-height: 220px; }
  .cmp-col { padding: 32px 24px; }
  .cmp-col-h { font-size: 22px; }
}

@media (max-width: 900px) {
  .nav-links-wrap,
  .nav-cta-desktop { display: none !important; }
  .nav-menu-btn { display: inline-flex; }
}

/* ============================================================
   TRUST STRIP · TIMELINE · READINESS · SIM · PROOF · FAQ
   ============================================================ */
.trust-strip {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: rgba(5,8,15,0.55);
  backdrop-filter: blur(8px);
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  padding: 12px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.trust-strip-inner span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(124,214,255,0.85);
  white-space: nowrap;
}

.timeline-sec {
  padding: 120px 0 140px;
}
.timeline-track {
  list-style: none;
  max-width: 720px;
  margin: 48px auto 0;
  padding: 0 0 0 24px;
  border-left: 1px solid var(--line);
}
.tl-item {
  position: relative;
  padding: 0 0 36px 28px;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(124,214,255,0.15);
}
.tl-date {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}
.tl-body strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.tl-body span {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(232,238,248,0.58);
}

.readiness-sec {
  padding: 100px 0 120px;
}
.readiness-panel {
  max-width: 980px;
  margin: 40px auto 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10,14,26,0.45);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.readiness-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(5,8,15,0.35);
}
.readiness-tab {
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: transparent;
  color: rgba(232,238,248,0.65);
  cursor: pointer;
  transition: all 0.2s;
}
.readiness-tab:hover {
  border-color: rgba(124,214,255,0.35);
  color: var(--white);
}
.readiness-tab.active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(55,138,221,0.12);
}
.readiness-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}
.readiness-card {
  padding: 22px 24px;
  background: rgba(8,12,22,0.92);
}
.rc-lbl {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 10px;
}
.rc-val {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(232,238,248,0.78);
}
.rc-val a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.scn-sim {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 28px 28px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10,14,26,0.55);
  backdrop-filter: blur(10px);
}
.scn-sim-hdr { margin-bottom: 22px; }
.scn-sim-k {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}
.scn-sim-lead {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(232,238,248,0.55);
  max-width: 720px;
}
.scn-sim-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.scn-sim-field span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}
.scn-sim-field select {
  width: 100%;
  font-family: inherit;
  font-size: 13px;
  color: var(--ice);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line-b);
  background: rgba(5,8,15,0.85);
  cursor: pointer;
}
.scn-sim-out {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.scn-sim-metric em {
  display: block;
  font-style: normal;
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.scn-sim-metric em span { color: var(--cyan); font-weight: 500; }
.scn-sim-metric span {
  font-size: 11px;
  color: rgba(232,238,248,0.45);
  letter-spacing: 0.06em;
}

.proof-sec { padding: 120px 0 140px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 48px auto 0;
}
.proof-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10,14,26,0.55);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.proof-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
}
.proof-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(232,238,248,0.55);
  flex: 1;
}
.proof-btn { margin-top: auto; align-self: flex-start; }

.faq-sec { padding: 100px 0 120px; }
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(10,14,26,0.35);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding-right: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--cyan);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-a {
  padding: 0 22px 20px;
}
.faq-a p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(232,238,248,0.58);
}

.a11y-dock {
  position: fixed;
  z-index: 85;
  left: 16px;
  bottom: 16px;
}
.a11y-motion-btn {
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 100px;
  border: 1px solid var(--line-b);
  background: rgba(8,12,22,0.88);
  color: rgba(232,238,248,0.75);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s, color 0.2s;
}
.a11y-motion-btn:hover { border-color: var(--cyan); color: var(--white); }
.a11y-motion-btn[aria-pressed="true"] {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(55,138,221,0.12);
}

.anim-paused .ticker-track,
.anim-paused .marquee-row {
  animation-play-state: paused !important;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .marquee-row,
  .scroll-cue-line::after,
  .loader-logo img,
  .loader-bar::after {
    animation: none !important;
  }
}
body.reduce-motion .ticker-track,
body.reduce-motion .marquee-row,
body.reduce-motion .scroll-cue-line::after,
body.reduce-motion .loader-logo img,
body.reduce-motion .loader-bar::after {
  animation: none !important;
}
body.reduce-motion .cap-card { transition: none !important; }

@media (max-width: 900px) {
  .scn-sim-controls,
  .scn-sim-out { grid-template-columns: 1fr; }
  .readiness-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { justify-content: flex-start; }
}

/* ============================================================
   BRIEFING PAGE
   ============================================================ */
.brief-hero {
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 180px 0 80px;
}
.brief-h1 {
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 220;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--white);
  max-width: 840px;
}
.brief-h1 em {
  color: var(--blue-g);
  display: block;
}
.brief-sub {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1.75;
  color: rgba(232,238,248,0.62);
}
.brief-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.brief-hero-tags span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--line-b);
  border-radius: 100px;
  padding: 9px 14px;
  background: rgba(10,14,26,0.48);
}

.brief-form-sec {
  padding: 110px 0 140px;
}
.brief-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-top: 40px;
}
.brief-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10,14,26,0.55);
  backdrop-filter: blur(12px);
}
.brief-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.brief-field-full {
  grid-column: 1 / -1;
}
.brief-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.brief-field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--silver);
}
.brief-field input,
.brief-field select,
.brief-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  color: var(--ice);
  background: rgba(5,8,15,0.92);
  border: 1px solid var(--line-b);
  border-radius: 10px;
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.brief-field textarea {
  resize: vertical;
  min-height: 130px;
}
.brief-field input:focus,
.brief-field select:focus,
.brief-field textarea:focus {
  border-color: rgba(124,214,255,0.45);
  box-shadow: 0 0 0 3px rgba(55,138,221,0.14);
}
.brief-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.brief-note {
  font-size: 12px;
  color: rgba(232,238,248,0.48);
}
.brief-status {
  font-size: 13px;
  color: var(--cyan);
  min-height: 1.4em;
}
.brief-status-error {
  color: #f0a8a8;
}

.brief-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10,14,26,0.55);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.brief-panel-block {
  border: 1px solid rgba(120,170,230,0.16);
  border-radius: 12px;
  background: rgba(8,12,22,0.78);
  padding: 16px;
}
.brief-panel-block .k {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 9px;
}
.brief-panel-block h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
}
.brief-panel-block p,
.brief-panel-block li {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(232,238,248,0.58);
}
.brief-panel-block ol,
.brief-panel-block ul {
  display: grid;
  gap: 8px;
  margin-left: 18px;
}

@media (max-width: 980px) {
  .brief-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .brief-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .brief-row {
    grid-template-columns: 1fr;
  }
  .brief-hero {
    min-height: 64vh;
    padding: 160px 0 70px;
  }
}

/* ============================================================
   INVESTOR ACCESS + PRIVATE DECK
   ============================================================ */
.investor-hero,
.investor-deck-hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 90px;
  overflow: hidden;
}
.investor-lock-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 240px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 52px;
  align-items: center;
}
.investor-hero-copy {
  max-width: 760px;
}
.investor-gate {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(124,214,255,0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(124,214,255,0.16), transparent 34%),
    linear-gradient(145deg, rgba(55,138,221,0.12), rgba(5,8,15,0.82));
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0,0,0,0.42);
}
.investor-gate::before {
  content: '';
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(124,214,255,0.08);
  border-radius: 16px;
}
.investor-lock-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  margin: 0 auto 24px;
  border: 1px solid rgba(124,214,255,0.24);
  border-radius: 50%;
  background: rgba(5,8,15,0.6);
}
.investor-lock-orb::before,
.investor-lock-orb::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(124,214,255,0.16);
  border-radius: 50%;
  animation: investorSpin 18s linear infinite;
}
.investor-lock-orb::after {
  inset: 28px;
  animation-duration: 11s;
  animation-direction: reverse;
}
.investor-lock-orb span {
  width: 34px;
  height: 42px;
  border: 2px solid var(--cyan);
  border-radius: 7px;
  position: relative;
}
.investor-lock-orb span::before {
  content: '';
  position: absolute;
  left: 6px;
  right: 6px;
  top: -18px;
  height: 22px;
  border: 2px solid var(--cyan);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}
@keyframes investorSpin {
  to { transform: rotate(360deg); }
}
.investor-gate-kicker,
.investor-preview-card span,
.investor-metric-card span,
.investor-option-card span,
.investor-runway-card span {
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}
.investor-gate h2 {
  margin-top: 14px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 250;
  letter-spacing: -0.045em;
  color: var(--white);
}
.investor-gate p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(232,238,248,0.62);
}
.investor-gate label {
  display: block;
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}
.investor-gate input {
  width: 100%;
  margin-bottom: 16px;
  padding: 14px 14px;
  border: 1px solid rgba(120,170,230,0.18);
  border-radius: 10px;
  background: rgba(5,8,15,0.7);
  color: var(--white);
  font: inherit;
  outline: none;
}
.investor-gate input:focus {
  border-color: rgba(124,214,255,0.45);
  box-shadow: 0 0 0 3px rgba(55,138,221,0.14);
}
.investor-preview-grid,
.investor-metric-grid,
.investor-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.investor-preview-card,
.investor-metric-card,
.investor-option-card,
.investor-runway-card,
.investor-close-panel,
.investor-security-panel,
.investor-thesis-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(55,138,221,0.1), transparent 46%),
    rgba(10,14,26,0.62);
  backdrop-filter: blur(12px);
}
.investor-preview-card h3 {
  margin-top: 14px;
  font-size: 21px;
  font-weight: 430;
  color: var(--white);
  letter-spacing: -0.02em;
}
.investor-preview-card p,
.investor-metric-card p,
.investor-option-card p,
.investor-runway-card p,
.investor-thesis-panel p,
.investor-security-panel p,
.investor-close-panel li {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(232,238,248,0.6);
}
.investor-security-panel {
  max-width: 980px;
  margin: 0 auto;
}
.investor-security-panel h2,
.investor-thesis-panel h2,
.investor-close-panel h2 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 250;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--white);
}
.investor-security-panel h2 em { color: var(--blue-g); }
.investor-resource-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.investor-resource-card {
  padding: 18px;
  border: 1px solid rgba(120,170,230,0.16);
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
}
.investor-resource-card > span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}
.investor-resource-card p {
  margin: 10px 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(232,238,248,0.64);
}
.investor-resource-card .btn-g {
  width: 100%;
  justify-content: center;
}
.investor-security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}
.investor-security-grid div {
  padding: 18px;
  background: rgba(8,12,22,0.88);
}
.investor-security-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}
.investor-security-grid span {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(232,238,248,0.68);
}
.investor-loading a,
.investor-deck-body .brief-sub a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.investor-metric-card strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 240;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--white);
}
.investor-thesis-panel {
  margin-top: 28px;
}
.investor-option-grid {
  grid-template-columns: repeat(4, 1fr);
}
.investor-runway {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.investor-runway-card h3 {
  margin-top: 16px;
  font-size: clamp(32px, 5vw, 62px);
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
}
.investor-close-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.investor-close-panel ul {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  padding-left: 18px;
}
.investor-final-cta {
  margin-top: 28px;
  text-align: center;
  padding: 58px 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(124,214,255,0.16), transparent 42%),
    rgba(10,14,26,0.62);
}
.investor-logout {
  font-family: inherit;
  cursor: pointer;
}
.investor-market-grid {
  grid-template-columns: repeat(5, 1fr);
}
.investor-projection-table {
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(10,14,26,0.62);
}
.investor-projection-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  border-bottom: 1px solid rgba(120,170,230,0.12);
}
.investor-projection-row:last-child {
  border-bottom: 0;
}
.investor-projection-row span,
.investor-projection-row strong {
  padding: 18px;
  color: rgba(232,238,248,0.7);
  font-size: 14px;
  line-height: 1.45;
}
.investor-projection-row strong {
  color: var(--white);
  font-size: 22px;
  font-weight: 350;
  letter-spacing: -0.03em;
}
.investor-projection-head {
  background: rgba(55,138,221,0.1);
}
.investor-projection-head span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.investor-intake-form {
  padding: 26px;
  border: 1px solid rgba(124,214,255,0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(124,214,255,0.12), transparent 42%),
    rgba(10,14,26,0.72);
  backdrop-filter: blur(12px);
}
.investor-intake-wide {
  grid-column: 1 / -1;
}
.investor-intake-form h2 {
  margin-top: 14px;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 240;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--white);
}
.investor-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 22px 0 18px;
}
.investor-form-grid label {
  display: grid;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
}
.investor-form-grid input,
.investor-form-grid select,
.investor-form-grid textarea {
  width: 100%;
  padding: 13px 12px;
  border: 1px solid rgba(120,170,230,0.18);
  border-radius: 10px;
  background: rgba(5,8,15,0.72);
  color: var(--white);
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
  outline: none;
}
.investor-form-grid input:focus,
.investor-form-grid select:focus,
.investor-form-grid textarea:focus {
  border-color: rgba(124,214,255,0.45);
  box-shadow: 0 0 0 3px rgba(55,138,221,0.14);
}
.investor-form-full {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .investor-lock-grid,
  .investor-close-grid {
    grid-template-columns: 1fr;
  }
  .investor-preview-grid,
  .investor-metric-grid,
  .investor-option-grid,
  .investor-runway,
  .investor-market-grid,
  .investor-security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .investor-projection-row {
    grid-template-columns: 1fr;
  }
  .investor-projection-head {
    display: none;
  }
}
@media (max-width: 680px) {
  .investor-hero,
  .investor-deck-hero {
    padding: 135px 0 70px;
  }
  .investor-preview-grid,
  .investor-metric-grid,
  .investor-option-grid,
  .investor-runway,
  .investor-market-grid,
  .investor-security-grid {
    grid-template-columns: 1fr;
  }
  .investor-form-grid {
    grid-template-columns: 1fr;
  }
  .investor-gate {
    padding: 22px;
  }
}

body.reduce-motion .investor-lock-orb::before,
body.reduce-motion .investor-lock-orb::after {
  animation: none;
}

/* ============================================================
   ADMIN DASHBOARD
   ============================================================ */
.admin-body {
  background: var(--ink-0);
}
.admin-login-sec {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px;
  overflow: hidden;
}
.admin-login-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
}
.admin-login-card {
  padding: 34px;
  border: 1px solid rgba(124,214,255,0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(124,214,255,0.15), transparent 42%),
    rgba(10,14,26,0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0,0,0,0.42);
}
.admin-login-card img {
  margin-bottom: 18px;
}
.admin-login-card h1 {
  margin-top: 14px;
  font-size: clamp(38px, 7vw, 78px);
  font-weight: 230;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--white);
}
.admin-login-card h1 em {
  display: block;
  color: var(--blue-g);
}
.admin-login-card p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(232,238,248,0.62);
}
.admin-login-card label {
  display: block;
  margin-top: 26px;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}
.admin-login-card input {
  width: 100%;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(120,170,230,0.18);
  border-radius: 10px;
  background: rgba(5,8,15,0.7);
  color: var(--white);
  font: inherit;
  outline: none;
}
.admin-login-card input:focus {
  border-color: rgba(124,214,255,0.45);
  box-shadow: 0 0 0 3px rgba(55,138,221,0.14);
}
.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(5,8,15,0.88);
  backdrop-filter: blur(18px);
}
.admin-topbar strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  font-weight: 350;
  letter-spacing: -0.03em;
  color: var(--white);
}
.admin-topbar-actions {
  display: flex;
  gap: 10px;
}
.admin-dashboard {
  width: min(1480px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 90px;
}
.admin-alert {
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(240,168,168,0.32);
  border-radius: 12px;
  background: rgba(160,45,45,0.12);
  color: rgba(255,230,230,0.82);
  font-size: 13px;
  line-height: 1.6;
}
.admin-alert code {
  color: var(--white);
}
.admin-metric-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.admin-metric-grid article,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(55,138,221,0.08), transparent 48%),
    rgba(10,14,26,0.64);
  backdrop-filter: blur(12px);
}
.admin-metric-grid article {
  padding: 20px;
}
.admin-metric-grid span,
.admin-panel-head h2,
.admin-panel h3 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}
.admin-metric-grid strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 230;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--white);
}
.admin-metric-grid p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(232,238,248,0.56);
}
.admin-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.admin-panel {
  padding: 22px;
  overflow: hidden;
}
.admin-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}
.admin-panel-head a,
.admin-table a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.admin-list,
.admin-feed {
  display: grid;
  gap: 8px;
}
.admin-list div,
.admin-feed div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(120,170,230,0.1);
}
.admin-list span,
.admin-feed span {
  color: rgba(232,238,248,0.7);
  font-size: 13px;
  line-height: 1.5;
}
.admin-list strong,
.admin-feed strong {
  color: var(--white);
  font-weight: 500;
}
.admin-feed div {
  grid-template-columns: 0.55fr 1fr auto;
}
.admin-feed em {
  font-style: normal;
  color: var(--silver);
  font-size: 12px;
}
.admin-table-wrap {
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
}
.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(120,170,230,0.1);
  text-align: left;
  vertical-align: top;
  font-size: 12px;
  color: rgba(232,238,248,0.68);
}
.admin-table th {
  color: var(--cyan);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.admin-table select,
.admin-table textarea {
  width: 100%;
  padding: 9px;
  border: 1px solid rgba(120,170,230,0.18);
  border-radius: 8px;
  background: rgba(5,8,15,0.75);
  color: var(--white);
  font: inherit;
}
.admin-lead-detail td {
  color: rgba(232,238,248,0.48);
  font-size: 12px;
  line-height: 1.6;
  background: rgba(5,8,15,0.34);
}
.admin-empty {
  padding: 18px;
  border: 1px dashed rgba(120,170,230,0.18);
  border-radius: 12px;
  color: rgba(232,238,248,0.52);
  font-size: 13px;
}
.admin-panel h3 {
  margin: 22px 0 8px;
}

@media (max-width: 1200px) {
  .admin-metric-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 820px) {
  .admin-topbar,
  .admin-grid-2 {
    grid-template-columns: 1fr;
  }
  .admin-topbar {
    display: grid;
  }
  .admin-metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-feed div {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .admin-dashboard {
    width: min(100% - 24px, 1480px);
  }
  .admin-metric-grid {
    grid-template-columns: 1fr;
  }
  .admin-login-card {
    padding: 24px;
  }
}

/* ============================================================
   STATIC EXTENSION PAGES + TECH / VEHICLE COMPONENTS
   ============================================================ */
.brief-booking-cta {
  margin-top: 10px;
  padding: 18px;
  border: 1px solid rgba(124,214,255,0.22);
  border-radius: 14px;
  background: rgba(55,138,221,0.08);
}
.brief-booking-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}
.brief-booking-sub {
  margin: 7px 0 14px;
  font-size: 13px;
  color: rgba(232,238,248,0.6);
}

.contract-grid,
.axioms-grid,
.agent-cards,
.hardware-grid,
.compliance-grid,
.scenario-grid,
.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.contract-card,
.axiom-card,
.agent-card,
.hardware-card,
.compliance-card,
.scenario-card,
.about-proof,
.about-road {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(55,138,221,0.08), transparent 42%),
    rgba(10,14,26,0.66);
  backdrop-filter: blur(12px);
}
.contract-card::before,
.axiom-card::before,
.agent-card::before,
.hardware-card::before,
.compliance-card::before,
.scenario-card::before,
.about-proof::before,
.about-road::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at 18% 0%, rgba(124,214,255,0.16), transparent 38%);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}
.contract-card:hover::before,
.axiom-card:hover::before,
.agent-card:hover::before,
.hardware-card:hover::before,
.compliance-card:hover::before,
.scenario-card:hover::before,
.about-proof:hover::before,
.about-road:hover::before { opacity: 1; }

.contract-label,
.axiom-num,
.agent-code,
.compliance-card span,
.scenario-card span,
.about-proof span,
.about-road span,
.runway-phase-num,
.engage-num {
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}
.contract-val {
  margin-top: 16px;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 250;
  letter-spacing: -0.04em;
  color: var(--white);
}
.contract-sub,
.axiom-card p,
.agent-desc,
.hardware-card p,
.compliance-card p,
.scenario-card p,
.about-proof p,
.about-road p,
.engage-body p,
.runway-phase p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(232,238,248,0.58);
}
.axiom-card h3,
.agent-card h3,
.hardware-card h3,
.compliance-card h3,
.scenario-card h3,
.about-proof strong,
.about-road h3,
.engage-body h3,
.runway-phase h3 {
  display: block;
  margin-top: 16px;
  font-size: 20px;
  font-weight: 450;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
}

.engage-steps,
.runway-phases,
.safety-stack,
.about-roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}
.engage-step,
.runway-phase,
.safety-stack > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10,14,26,0.58);
}
.engage-note {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(124,214,255,0.2);
  border-radius: 14px;
  background: rgba(55,138,221,0.08);
  color: rgba(232,238,248,0.66);
  font-size: 14px;
  line-height: 1.7;
}

.arch-diagram {
  display: grid;
  gap: 14px;
  max-width: 1080px;
  margin: 46px auto 0;
}
.arch-tier {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr 42px;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8,12,22,0.78);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.arch-tier:hover,
.arch-tier.is-active {
  transform: translateY(-2px);
  border-color: rgba(124,214,255,0.38);
  background: rgba(10,20,38,0.9);
}
.arch-tier-label { display: grid; gap: 8px; }
.arch-tier-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
}
.arch-tier-name {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--white);
}
.arch-tier-note,
.arch-tier-desc,
.arch-consensus-list,
.arch-command-note {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(232,238,248,0.58);
}
.arch-sensor-row,
.arch-agent-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.arch-sensor,
.arch-agent {
  padding: 7px 10px;
  border: 1px solid rgba(124,214,255,0.18);
  border-radius: 100px;
  color: var(--cyan);
  background: rgba(55,138,221,0.08);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.arch-flow-arrow::before {
  content: '↓';
  color: var(--cyan);
  font-size: 22px;
}
.arch-consensus-note,
.arch-ela-schema,
.arch-command-note {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(120,170,230,0.15);
  border-radius: 12px;
  background: rgba(5,8,15,0.5);
}
.arch-consensus-label {
  display: block;
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}
.arch-consensus-list { margin-left: 18px; }
.arch-schema-row,
.agent-spec-row,
.ddil-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(120,170,230,0.1);
}
.arch-schema-row:last-child,
.agent-spec-row:last-child,
.ddil-row:last-child { border-bottom: none; }
.arch-schema-row span:first-child,
.agent-spec-row span:first-child,
.ddil-row span:first-child {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.arch-schema-row span:last-child,
.agent-spec-row span:last-child,
.ddil-row span:last-child {
  color: rgba(232,238,248,0.64);
  font-size: 12px;
  line-height: 1.55;
}

.agent-cards { grid-template-columns: repeat(2, 1fr); }
.agent-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.agent-full {
  font-size: 11px;
  line-height: 1.4;
  color: rgba(232,238,248,0.54);
  text-align: right;
}
.agent-spec {
  margin-top: 18px;
  border-top: 1px solid rgba(120,170,230,0.12);
}
.ddil-table {
  max-width: 1050px;
  margin: 42px auto 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10,14,26,0.58);
  overflow: hidden;
}
.ddil-row {
  grid-template-columns: 0.7fr 1fr 1fr;
  padding: 14px 18px;
}
.ddil-header {
  background: rgba(55,138,221,0.12);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.oos-grid,
.engineering-primitives {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.oos-item,
.engineering-primitive {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10,14,26,0.55);
}
.oos-x {
  color: #f0a8a8;
  font-weight: 700;
}

.about-sec,
.scenario-sec,
.compliance-sec { padding: 110px 0 130px; }
.about-split,
.compliance-split,
.about-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.about-location,
.scenario-map,
.data-panel {
  max-width: 940px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(10,14,26,0.58);
}
.about-location h2,
.scenario-map h2,
.data-panel h2 {
  margin-top: 18px;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 250;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--white);
}
.about-location h2 em,
.scenario-map h2 em,
.data-panel h2 em { display: block; color: var(--blue-g); }
.about-location p,
.scenario-map p,
.data-panel p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(232,238,248,0.62);
}
.about-matrix,
.scenario-domain-grid,
.data-rules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}
.about-matrix > div,
.scenario-domain-grid > div,
.data-rules > div {
  padding: 20px;
  background: rgba(8,12,22,0.88);
}
.about-matrix span,
.scenario-domain-grid span,
.data-rules strong {
  display: block;
  margin-bottom: 9px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}
.about-matrix strong,
.scenario-domain-grid strong,
.data-rules span {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(232,238,248,0.68);
}
.about-roadmap { grid-template-columns: repeat(3, 1fr); }
.about-contact-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10,14,26,0.66);
}
.about-contact-card strong {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}
.about-contact-card a:not(.btn-p),
.data-panel a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.scenario-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.scenario-filter {
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232,238,248,0.64);
  padding: 10px 16px;
  border: 1px solid var(--line-b);
  border-radius: 100px;
  background: rgba(10,14,26,0.55);
  cursor: pointer;
}
.scenario-filter:hover,
.scenario-filter.is-active {
  color: var(--cyan);
  border-color: rgba(124,214,255,0.42);
  background: rgba(55,138,221,0.12);
}
.scenario-card[hidden] { display: none; }
.scenario-card em {
  display: block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(120,170,230,0.12);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(124,214,255,0.72);
}
.compliance-grid { grid-template-columns: repeat(3, 1fr); }
.safety-stack { grid-template-columns: 1fr; margin-top: 0; }
.safety-stack span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.safety-stack strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
}
.safety-stack p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(232,238,248,0.58);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1100px) {
  .contract-grid,
  .axioms-grid,
  .hardware-grid,
  .compliance-grid,
  .scenario-grid,
  .about-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .engage-steps,
  .runway-phases {
    grid-template-columns: repeat(2, 1fr);
  }
  .arch-tier {
    grid-template-columns: 1fr;
  }
  .arch-flow-arrow { display: none; }
  .about-split,
  .compliance-split,
  .about-contact {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .contract-grid,
  .axioms-grid,
  .agent-cards,
  .hardware-grid,
  .compliance-grid,
  .scenario-grid,
  .about-proof-grid,
  .about-roadmap,
  .engage-steps,
  .runway-phases,
  .oos-grid,
  .engineering-primitives,
  .about-matrix,
  .scenario-domain-grid,
  .data-rules {
    grid-template-columns: 1fr;
  }
  .ddil-row,
  .arch-schema-row,
  .agent-spec-row {
    grid-template-columns: 1fr;
  }
  .about-sec,
  .scenario-sec,
  .compliance-sec { padding: 80px 0 96px; }
  .about-location,
  .scenario-map,
  .data-panel { padding: 24px; }
}
