/* ============================================================
   TRADE ARGO — DESIGN SYSTEM
   Tokens → primitives → layout → components → motion
   Maps to: styles/tokens.css + tailwind.config.ts theme extension
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  /* color */
  --navy:        #071525;
  --graphite:    #111A22;
  --cobalt:      #236BFE;
  --cobalt-ink:  #1B54C8;
  --lime:        #B9F227;
  --soft:        #F6F8FA;
  --grey:        #A5ADB7;
  --ink:         #0B1520;

  --line-dark:   rgba(255,255,255,.10);
  --line-light:  rgba(11,21,32,.10);
  --hair-dark:   rgba(255,255,255,.055);
  --dim:         rgba(255,255,255,.62);
  --dim-2:       rgba(255,255,255,.42);
  --ink-2:       rgba(11,21,32,.66);
  --ink-3:       rgba(11,21,32,.46);

  /* type */
  --display: "Manrope", "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --body:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:    ui-monospace, "SFMono-Regular", "JetBrains Mono", Menlo, monospace;

  --t-hero:  clamp(2.75rem, 6.4vw, 6.0rem);   /* 44 → 96 */
  --t-h1:    clamp(2.4rem, 4.8vw, 4.25rem);
  --t-h2:    clamp(2rem, 3.6vw, 3.25rem);
  --t-h3:    clamp(1.375rem, 1.9vw, 1.75rem);
  --t-h4:    clamp(1.0625rem, 1.2vw, 1.1875rem);
  --t-lead:  clamp(1.0625rem, 1.35vw, 1.3125rem);
  --t-body:  1rem;
  --t-sm:    .9375rem;
  --t-xs:    .8125rem;
  --t-label: .6875rem;

  /* layout */
  --container: 1240px;
  --container-wide: 1400px;
  --gutter: clamp(20px, 4.5vw, 56px);
  --section: clamp(72px, 9vw, 136px);
  --section-sm: clamp(56px, 6vw, 88px);

  /* radius + elevation */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(7,21,37,.06), 0 4px 14px rgba(7,21,37,.05);
  --shadow: 0 2px 6px rgba(7,21,37,.05), 0 18px 44px -18px rgba(7,21,37,.22);
  --shadow-lg: 0 40px 90px -34px rgba(7,21,37,.42);

  /* motion */
  --fast: 180ms;
  --std: 320ms;
  --slow: 600ms;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* z-index */
  --z-nav: 90;
  --z-menu: 95;
  --z-overlay: 120;
  --z-widget: 110;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--t-body);
  line-height: 1.62;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, canvas { display: block; max-width: 100%; }
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.032em;
  margin: 0;
  text-wrap: balance;
}
h3, h4 { font-weight: 700; letter-spacing: -.022em; line-height: 1.18; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 4px;
}
.dark :focus-visible { outline-color: var(--lime); }
::selection { background: var(--cobalt); color: #fff; }

.skip {
  position: absolute; left: 12px; top: -60px;
  background: var(--navy); color: #fff; padding: 12px 18px;
  border-radius: var(--r-sm); z-index: 200; font-weight: 600;
  transition: top var(--fast) var(--ease);
}
.skip:focus { top: 12px; }

/* ---------- 3. LAYOUT PRIMITIVES ---------- */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: var(--container-wide); }
.section { padding-block: var(--section); position: relative; }
.section-sm { padding-block: var(--section-sm); }
.dark { background: var(--navy); color: #fff; }
.graphite { background: var(--graphite); color: #fff; }
.tint { background: #EDF1F5; }
.grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.g-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.hide { display: none !important; }

/* ---------- 4. TYPE UTILITIES ---------- */
.eyebrow {
  font-family: var(--display);
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 10px;
}
.dark .eyebrow, .graphite .eyebrow { color: var(--dim-2); }
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime); flex: none;
  box-shadow: 0 0 0 4px rgba(185,242,39,.16);
}
.eyebrow.cobalt::before { background: var(--cobalt); box-shadow: 0 0 0 4px rgba(35,107,254,.16); }
.h-hero { font-size: var(--t-hero); letter-spacing: -.042em; }
.h1 { font-size: var(--t-h1); }
.h2 { font-size: var(--t-h2); }
.h3 { font-size: var(--t-h3); }
.lead { font-size: var(--t-lead); line-height: 1.55; color: var(--ink-2); letter-spacing: -.012em; }
.dark .lead, .graphite .lead { color: var(--dim); }
.muted { color: var(--ink-3); }
.dark .muted { color: var(--dim-2); }
.small { font-size: var(--t-sm); }
.xs { font-size: var(--t-xs); }
.mono { font-family: var(--mono); font-size: var(--t-xs); letter-spacing: .04em; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }
.accent { color: var(--cobalt); }
.dark .accent { color: var(--lime); }

.section-head { display: grid; gap: 18px; margin-bottom: clamp(36px, 4.5vw, 64px); }
.section-head .lead { max-width: 58ch; }
.section-head-split {
  display: grid; grid-template-columns: minmax(0,1.25fr) minmax(0,1fr);
  gap: clamp(24px, 4vw, 64px); align-items: end;
}

/* index numbering */
.idx {
  font-family: var(--mono); font-size: var(--t-xs);
  color: var(--cobalt); letter-spacing: .12em;
}
.dark .idx { color: var(--lime); }

/* ---------- 5. BUTTONS ---------- */
.btn {
  --btn-bg: var(--cobalt); --btn-fg: #fff; --btn-bd: var(--cobalt);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  font-family: var(--display); font-weight: 700; font-size: var(--t-sm);
  letter-spacing: -.01em; cursor: pointer;
  transition: background var(--fast) var(--ease), border-color var(--fast) var(--ease),
              color var(--fast) var(--ease), transform var(--fast) var(--ease),
              box-shadow var(--std) var(--ease);
  white-space: nowrap;
}
.btn svg { flex: none; transition: transform var(--std) var(--ease-out); }
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -12px rgba(35,107,254,.6); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0); }
.btn-lime { --btn-bg: var(--lime); --btn-fg: var(--ink); --btn-bd: var(--lime); }
.btn-lime:hover { box-shadow: 0 12px 28px -12px rgba(185,242,39,.55); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-light); }
.btn-ghost:hover { --btn-bd: var(--ink); box-shadow: none; }
.dark .btn-ghost, .graphite .btn-ghost { --btn-fg: #fff; --btn-bd: rgba(255,255,255,.24); }
.dark .btn-ghost:hover { --btn-bd: #fff; background: rgba(255,255,255,.05); }
.btn-sm { padding: 11px 18px; font-size: var(--t-xs); }
.btn-lg { padding: 18px 30px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: var(--t-sm);
  color: var(--cobalt); position: relative; padding-bottom: 2px;
}
.dark .tlink { color: var(--lime); }
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform var(--std) var(--ease-out);
}
.tlink:hover::after { transform: scaleX(1); }
.tlink svg { transition: transform var(--std) var(--ease-out); }
.tlink:hover svg { transform: translateX(4px); }

/* ---------- 6. HEADER / NAV ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  transition: background var(--std) var(--ease), border-color var(--std) var(--ease),
              backdrop-filter var(--std) var(--ease);
  border-bottom: 1px solid transparent;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 76px;
}
.header.scrolled, .header.menu-open {
  background: rgba(7,21,37,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--hair-dark);
}
.header.light-page { background: rgba(246,248,250,.86); border-bottom-color: var(--line-light); }
.header.light-page:not(.scrolled) { background: transparent; border-bottom-color: transparent; }

.logo { display: flex; align-items: center; gap: 12px; color: #fff; }
.light-page .logo { color: var(--ink); }
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: linear-gradient(140deg, var(--cobalt), #0E3FA8 70%);
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.logo-mark span {
  width: 12px; height: 12px; border-radius: 3px;
  background: var(--lime); transform: rotate(45deg);
}
.logo-text { display: grid; line-height: 1; }
.logo-text b { font-family: var(--display); font-weight: 800; font-size: 1.0625rem; letter-spacing: -.02em; }
.logo-text small {
  font-family: var(--display); font-size: .5rem; font-weight: 700;
  letter-spacing: .2em; color: var(--dim-2); margin-top: 4px;
}
.light-page .logo-text small { color: var(--ink-3); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav > li > a, .nav > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 13px; border-radius: 999px; background: none; border: 0;
  font-family: var(--display); font-weight: 600; font-size: .875rem;
  color: rgba(255,255,255,.78); cursor: pointer;
  transition: color var(--fast) var(--ease), background var(--fast) var(--ease);
}
.light-page .nav > li > a, .light-page .nav > li > button { color: var(--ink-2); }
.nav > li > a:hover, .nav > li > button:hover,
.nav > li > a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.07); }
.light-page .nav > li > a:hover, .light-page .nav > li > button:hover { color: var(--ink); background: rgba(11,21,32,.05); }
.nav .chev { transition: transform var(--std) var(--ease); }
.nav [aria-expanded="true"] .chev { transform: rotate(180deg); }
.header-cta { display: flex; align-items: center; gap: 10px; }

/* mega menu */
.mega {
  position: absolute; left: 50%; top: calc(100% - 6px);
  transform: translateX(-50%) translateY(-8px);
  width: min(1180px, calc(100vw - 32px));
  background: #0A1B2E; border: 1px solid var(--hair-dark);
  border-radius: var(--r-lg); padding: 30px;
  box-shadow: 0 50px 100px -40px rgba(0,0,0,.7);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--std) var(--ease), transform var(--std) var(--ease-out), visibility var(--std);
  z-index: var(--z-menu);
}
.mega[data-open="true"] { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 26px; }
.mega-col > .mega-head {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--display); font-weight: 800; font-size: .8125rem;
  letter-spacing: .16em; color: #fff; text-transform: uppercase;
  padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--hair-dark);
}
.mega-head i { font-style: normal; font-family: var(--mono); font-size: .625rem; color: var(--cobalt); }
.mega-col a {
  display: block; padding: 9px 10px; margin-inline: -10px; border-radius: 10px;
  transition: background var(--fast) var(--ease);
}
.mega-col a:hover { background: rgba(255,255,255,.055); }
.mega-col a b { display: block; font-family: var(--display); font-weight: 600; font-size: .9375rem; color: #fff; }
.mega-col a span { display: block; font-size: var(--t-xs); color: var(--dim-2); line-height: 1.45; margin-top: 2px; }
.mega-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--hair-dark);
  font-size: var(--t-sm); color: var(--dim);
}

/* mobile nav */
.burger {
  display: none; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); background: none; cursor: pointer;
  place-items: center; color: #fff;
}
.light-page .burger { border-color: var(--line-light); color: var(--ink); }
.burger i { display: block; width: 16px; height: 1.5px; background: currentColor; transition: transform var(--std) var(--ease), opacity var(--fast); }
.burger i + i { margin-top: 4px; }
.burger[aria-expanded="true"] i:first-child { transform: translateY(2.75px) rotate(45deg); }
.burger[aria-expanded="true"] i:last-child { transform: translateY(-2.75px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 76px 0 0 0; z-index: var(--z-menu);
  background: var(--navy); overflow-y: auto; padding: 8px var(--gutter) 40px;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity var(--std) var(--ease), transform var(--std) var(--ease-out), visibility var(--std);
}
.drawer[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
.drawer details { border-bottom: 1px solid var(--hair-dark); }
.drawer summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-family: var(--display); font-weight: 700; font-size: 1.125rem; color: #fff;
  display: flex; justify-content: space-between; align-items: center;
}
.drawer summary::-webkit-details-marker { display: none; }
.drawer summary::after { content: "+"; color: var(--lime); font-weight: 400; font-size: 1.25rem; }
.drawer details[open] summary::after { content: "–"; }
.drawer details ul { padding: 0 0 16px; display: grid; gap: 2px; }
.drawer details ul a { display: block; padding: 9px 0; color: var(--dim); font-size: var(--t-sm); }
.drawer > a {
  display: flex; justify-content: space-between; padding: 18px 0;
  border-bottom: 1px solid var(--hair-dark);
  font-family: var(--display); font-weight: 700; font-size: 1.125rem; color: #fff;
}
.drawer-cta { display: grid; gap: 10px; margin-top: 26px; }
.drawer-meta { margin-top: 28px; display: grid; gap: 6px; color: var(--dim-2); font-size: var(--t-sm); }

/* ---------- 7. HERO ---------- */
.hero {
  position: relative; background: var(--navy); color: #fff;
  padding-top: clamp(120px, 16vh, 168px); padding-bottom: clamp(56px, 8vw, 96px);
  overflow: hidden; isolation: isolate;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(7,21,37,.9));
  pointer-events: none; z-index: -1;
}
#heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: -2; opacity: 0; transition: opacity 1.2s var(--ease);
}
#heroCanvas.on { opacity: 1; }
.hero-veil {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 12% 30%, rgba(7,21,37,.94) 0%, rgba(7,21,37,.72) 42%, rgba(7,21,37,.15) 100%),
    radial-gradient(70% 60% at 88% 12%, rgba(35,107,254,.16), transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--hair-dark) 1px, transparent 1px),
                    linear-gradient(90deg, var(--hair-dark) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(90% 70% at 50% 30%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(90% 70% at 50% 30%, #000 20%, transparent 100%);
}
.hero-inner { display: grid; gap: 30px; max-width: 900px; }
.hero h1 { font-size: var(--t-hero); }
.hero h1 em {
  font-style: normal; position: relative; display: inline-block;
  background: linear-gradient(96deg, #fff 12%, #BFD6FF 46%, var(--lime) 96%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: 3px;
  background: linear-gradient(90deg, var(--cobalt), var(--lime));
  transform-origin: left; transform: scaleX(0);
  animation: swipe 1.1s var(--ease-out) 1.05s forwards; border-radius: 2px;
}
@keyframes swipe { to { transform: scaleX(1); } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 28px;
  margin-top: clamp(40px, 7vw, 76px); padding-top: 22px;
  border-top: 1px solid var(--hair-dark);
}
.hero-strip li {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: var(--t-sm); color: var(--dim);
}
.hero-strip li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--cobalt);
  box-shadow: 0 0 8px var(--cobalt);
}
.hero-strip li:last-child::before { background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.hero-strip .note { margin-left: auto; font-size: var(--t-xs); color: var(--dim-2); }

/* staged entrance */
[data-enter] { opacity: 0; transform: translateY(14px); }
.loaded [data-enter] { animation: enter .8s var(--ease-out) forwards; }
.loaded [data-enter="1"] { animation-delay: .05s; }
.loaded [data-enter="2"] { animation-delay: .18s; }
.loaded [data-enter="3"] { animation-delay: .34s; }
.loaded [data-enter="4"] { animation-delay: .5s; }
.loaded [data-enter="5"] { animation-delay: .64s; }
@keyframes enter { to { opacity: 1; transform: none; } }

/* ---------- 8. REVEAL ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-d="1"] { transition-delay: .08s; }
[data-reveal][data-d="2"] { transition-delay: .16s; }
[data-reveal][data-d="3"] { transition-delay: .24s; }
[data-reveal][data-d="4"] { transition-delay: .32s; }

/* ---------- 9. AUDIENCE ROUTER ---------- */
.router { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.route-card {
  position: relative; display: flex; flex-direction: column; gap: 16px;
  padding: clamp(24px, 2.6vw, 36px); border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line-light);
  box-shadow: var(--shadow-sm); overflow: hidden; isolation: isolate;
  transition: transform var(--std) var(--ease), box-shadow var(--std) var(--ease), border-color var(--std) var(--ease);
  min-height: 300px;
}
.route-card::before {
  content: ""; position: absolute; inset: -1px; z-index: -1; opacity: 0;
  background: radial-gradient(340px 240px at var(--mx, 50%) var(--my, 0%), rgba(35,107,254,.13), transparent 70%);
  transition: opacity var(--std) var(--ease);
}
.route-card:hover { transform: translateY(-4px); border-color: rgba(35,107,254,.36); box-shadow: var(--shadow); }
.route-card:hover::before { opacity: 1; }
.route-card .num {
  font-family: var(--mono); font-size: var(--t-xs); color: var(--ink-3); letter-spacing: .14em;
}
.route-card h3 { font-size: 1.5rem; letter-spacing: -.03em; }
.route-card p { color: var(--ink-2); font-size: var(--t-sm); }
.route-card .tlink { margin-top: auto; }
.route-card .tag {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  padding: 5px 11px; border-radius: 999px; background: rgba(35,107,254,.09);
  color: var(--cobalt-ink); font-size: var(--t-xs); font-weight: 600;
}
.route-card.is-lime .tag { background: rgba(88,125,10,.1); color: #4C6E06; }

/* ---------- 10. JOURNEY ---------- */
.journey { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(30px, 5vw, 80px); align-items: start; }
.journey-track { position: relative; }
.journey-line {
  position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px;
  background: var(--line-light); overflow: hidden; border-radius: 2px;
}
.journey-line b {
  position: absolute; inset: 0 0 auto 0; display: block; height: 0%;
  background: linear-gradient(to bottom, var(--cobalt), var(--lime));
  transition: height .5s var(--ease);
}
.journey-step {
  display: grid; grid-template-columns: 32px 1fr; gap: 18px; align-items: start;
  padding-block: clamp(12px, 1.4vw, 18px);
}
.journey-dot {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line-light); position: relative; z-index: 1;
  transition: border-color var(--std) var(--ease), background var(--std) var(--ease), transform var(--std) var(--ease);
}
.journey-dot i { width: 7px; height: 7px; border-radius: 50%; background: var(--grey); transition: background var(--std) var(--ease); }
.journey-step.on .journey-dot { border-color: var(--cobalt); transform: scale(1.08); }
.journey-step.on .journey-dot i { background: var(--cobalt); box-shadow: 0 0 0 4px rgba(35,107,254,.16); }
.journey-step h4 {
  font-size: 1.0625rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-3); transition: color var(--std) var(--ease);
}
.journey-step.on h4 { color: var(--ink); }
.journey-step p { font-size: var(--t-sm); color: var(--ink-3); margin-top: 4px; max-width: 46ch; }
.journey-aside {
  position: sticky; top: 108px; border-radius: var(--r-lg);
  border: 1px solid var(--line-light); background: #fff; padding: clamp(22px, 2.4vw, 34px);
  box-shadow: var(--shadow-sm);
}
.journey-aside .stage-label { font-family: var(--mono); font-size: var(--t-xs); color: var(--cobalt); letter-spacing: .14em; }
.journey-aside h3 { margin-top: 10px; font-size: 1.75rem; }
.journey-aside p { margin-top: 12px; color: var(--ink-2); font-size: var(--t-sm); }
.journey-aside ul { margin-top: 18px; display: grid; gap: 8px; }
.journey-aside li { display: flex; gap: 10px; align-items: baseline; font-size: var(--t-sm); color: var(--ink-2); }
.journey-aside li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--lime); flex: none; }

/* ---------- 11. PILLARS ---------- */
.pillars-stage { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: clamp(28px, 5vw, 76px); align-items: start; }
.pillars-sticky { position: sticky; top: clamp(96px, 16vh, 150px); }
.pillars-word {
  font-family: var(--display); font-weight: 800; letter-spacing: -.05em;
  font-size: clamp(2.75rem, 7vw, 5.5rem); line-height: .96; display: grid; gap: 2px;
}
.pillars-word span {
  color: rgba(255,255,255,.16); transition: color var(--slow) var(--ease), transform var(--slow) var(--ease);
  display: flex; align-items: baseline; gap: 14px; transform-origin: left;
}
.pillars-word span i {
  font-style: normal; font-family: var(--mono); font-size: .75rem;
  letter-spacing: .16em; color: rgba(255,255,255,.2); transform: translateY(-.9em);
}
.pillars-word span.on { color: #fff; }
.pillars-word span.on i { color: var(--lime); }
.pillar-panel {
  border: 1px solid var(--hair-dark); border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 38px); margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  transition: border-color var(--std) var(--ease), background var(--std) var(--ease);
}
.pillar-panel.on { border-color: rgba(35,107,254,.4); }
.pillar-panel h3 { font-size: 1.5rem; color: #fff; }
.pillar-panel > p { margin-top: 12px; color: var(--dim); font-size: var(--t-sm); max-width: 46ch; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chip {
  padding: 7px 13px; border-radius: 999px; font-size: var(--t-xs); font-weight: 500;
  background: rgba(255,255,255,.05); border: 1px solid var(--hair-dark); color: rgba(255,255,255,.8);
  transition: border-color var(--fast) var(--ease), background var(--fast) var(--ease);
}
.pillar-panel.on .chip { border-color: rgba(255,255,255,.14); }
.chip-light { background: rgba(11,21,32,.035); border-color: var(--line-light); color: var(--ink-2); }

/* ---------- 12. NETWORK MAP ---------- */
.netwrap { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: clamp(26px, 4vw, 60px); align-items: center; }
.netmap { position: relative; border: 1px solid var(--hair-dark); border-radius: var(--r-lg); padding: 18px; background: rgba(255,255,255,.02); }
.netmap svg { width: 100%; height: auto; }
.node { cursor: pointer; }
.node circle.halo { fill: rgba(35,107,254,.16); transform-box: fill-box; transform-origin: center; }
.node.on circle.halo, .node:hover circle.halo { fill: rgba(185,242,39,.2); }
.node circle.core { fill: var(--cobalt); }
.node.on circle.core { fill: var(--lime); }
.node text { font-family: var(--display); font-size: 11px; font-weight: 700; fill: rgba(255,255,255,.72); letter-spacing: .06em; }
.node.on text { fill: #fff; }
.route { fill: none; stroke: rgba(35,107,254,.5); stroke-width: 1.25; stroke-dasharray: 4 6; }
.route.on { stroke: rgba(185,242,39,.75); stroke-dasharray: none; }
.netpanel { border-left: 2px solid var(--lime); padding-left: 22px; }
.netpanel h3 { font-size: 1.75rem; color: #fff; }
.netpanel .role { font-family: var(--mono); font-size: var(--t-xs); color: var(--lime); letter-spacing: .12em; margin-top: 8px; display: block; }
.netpanel ul { margin-top: 18px; display: grid; gap: 9px; }
.netpanel li { font-size: var(--t-sm); color: var(--dim); display: flex; gap: 10px; align-items: baseline; }
.netpanel li::before { content: "→"; color: var(--cobalt); font-size: .75rem; }
.net-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.net-tab {
  padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.04);
  border: 1px solid var(--hair-dark); color: var(--dim); font-size: var(--t-xs);
  font-weight: 600; cursor: pointer; transition: all var(--fast) var(--ease);
}
.net-tab[aria-selected="true"] { background: var(--lime); color: var(--ink); border-color: var(--lime); }

/* ---------- 13. PRODUCT CARDS ---------- */
.pcard {
  display: flex; flex-direction: column; overflow: hidden; border-radius: var(--r-lg);
  border: 1px solid var(--line-light); background: #fff;
  transition: transform var(--std) var(--ease), box-shadow var(--std) var(--ease), border-color var(--std) var(--ease);
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(35,107,254,.3); }
.pcard-media {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(150deg, #E3EAF2, #CFD9E5);
  display: grid; place-items: center; text-align: center; padding: 20px;
}
.pcard:hover .pcard-media > .ph { transform: scale(1.03); }
.pcard-media > .ph { transition: transform var(--slow) var(--ease-out); }
.ph {
  font-family: var(--mono); font-size: var(--t-xs); color: rgba(11,21,32,.42);
  line-height: 1.5; letter-spacing: .02em;
}
.ph b { display: block; font-family: var(--display); font-size: var(--t-sm); color: rgba(11,21,32,.6); margin-bottom: 4px; letter-spacing: .08em; }
.pcard-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(11,21,32,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(11,21,32,.05) 1px, transparent 1px);
  background-size: 34px 34px;
}
.pcard-body { padding: 22px; display: grid; gap: 10px; flex: 1; }
.pcard-body h3 { font-size: 1.1875rem; transition: transform var(--std) var(--ease); }
.pcard:hover .pcard-body h3 { transform: translateX(3px); }
.pcard-body p { font-size: var(--t-sm); color: var(--ink-3); }
.pcard-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.pcard-tags span {
  font-size: .6875rem; padding: 4px 9px; border-radius: 999px;
  background: rgba(11,21,32,.045); color: var(--ink-2); font-weight: 500;
}
.pcard-foot {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-light);
  display: flex; justify-content: space-between; align-items: center;
}
.pcard-foot .mono { color: var(--ink-3); }
.pcard-foot .arrow { color: var(--cobalt); transition: transform var(--std) var(--ease-out); }
.pcard:hover .pcard-foot .arrow { transform: translateX(4px); }

/* ---------- 14. CARDS / GENERIC ---------- */
.card {
  padding: clamp(22px, 2.4vw, 32px); border-radius: var(--r-lg);
  border: 1px solid var(--line-light); background: #fff; display: grid; gap: 12px;
  align-content: start;
  transition: transform var(--std) var(--ease), box-shadow var(--std) var(--ease), border-color var(--std) var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(35,107,254,.28); }
.card h3 { font-size: 1.1875rem; }
.card p { font-size: var(--t-sm); color: var(--ink-2); }
.card .kicker { font-family: var(--mono); font-size: var(--t-xs); color: var(--cobalt); letter-spacing: .12em; }
.dark .card, .graphite .card { background: rgba(255,255,255,.035); border-color: var(--hair-dark); }
.dark .card p { color: var(--dim); }
.dark .card:hover { border-color: rgba(185,242,39,.35); }

.icon-badge {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(35,107,254,.09); color: var(--cobalt); flex: none;
}
.dark .icon-badge { background: rgba(185,242,39,.1); color: var(--lime); }

/* ---------- 15. BRIDGE (manufacturer section) ---------- */
.bridge { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(16px, 2.5vw, 34px); align-items: stretch; }
.bridge-box {
  border: 1px solid var(--hair-dark); border-radius: var(--r-lg); padding: clamp(20px, 2.2vw, 30px);
  background: rgba(255,255,255,.03); display: grid; gap: 14px; align-content: start;
}
.bridge-box.core {
  background: linear-gradient(170deg, rgba(35,107,254,.2), rgba(35,107,254,.05));
  border-color: rgba(35,107,254,.45);
  box-shadow: 0 30px 70px -40px rgba(35,107,254,.9);
}
.bridge-box h4 { font-family: var(--mono); font-size: var(--t-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--dim-2); font-weight: 500; }
.bridge-box.core h4 { color: var(--lime); }
.bridge-box strong { font-family: var(--display); font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.bridge-box ul { display: grid; gap: 7px; }
.bridge-box li { font-size: var(--t-sm); color: var(--dim); }
.bridge-arrow { display: grid; place-items: center; color: rgba(255,255,255,.3); }
.bridge-arrow svg { animation: nudge 2.6s var(--ease) infinite; }
@keyframes nudge { 0%,100% { transform: translateX(0); opacity: .45 } 50% { transform: translateX(5px); opacity: 1 } }

/* ---------- 16. ENGINE ---------- */
.engine { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 10px; }
.engine-step {
  position: relative; padding: 22px 16px; border-radius: var(--r);
  border: 1px solid var(--line-light); background: #fff; display: grid; gap: 8px; align-content: start;
  transition: border-color var(--std) var(--ease), transform var(--std) var(--ease), background var(--std) var(--ease);
}
.engine-step:hover { transform: translateY(-3px); border-color: var(--cobalt); }
.engine-step b { font-family: var(--display); font-size: .9375rem; letter-spacing: -.01em; }
.engine-step span { font-size: var(--t-xs); color: var(--ink-3); line-height: 1.5; }
.engine-step i {
  position: absolute; top: 14px; right: 14px; font-style: normal;
  font-family: var(--mono); font-size: .625rem; color: var(--grey);
}
.engine-step::after {
  content: ""; position: absolute; right: -6px; top: 50%; width: 6px; height: 1px;
  background: var(--line-light);
}
.engine-step:last-child::after { display: none; }

/* ---------- 17. MARQUEE ---------- */
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: slide 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.mq-item {
  display: flex; align-items: center; gap: 10px; padding: 13px 22px;
  border: 1px solid var(--line-light); border-radius: 999px; white-space: nowrap;
  font-family: var(--display); font-weight: 600; font-size: var(--t-sm); background: #fff;
}
.mq-item::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--cobalt); }

/* ---------- 18. PROCESS ---------- */
.steps { counter-reset: s; display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 90px minmax(0,1fr) minmax(0,1.2fr);
  gap: clamp(16px, 3vw, 44px); padding-block: clamp(24px, 3vw, 38px);
  border-top: 1px solid var(--line-light); align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line-light); }
.step-n { font-family: var(--mono); font-size: var(--t-xs); color: var(--cobalt); letter-spacing: .14em; padding-top: 6px; }
.step h3 { font-size: 1.375rem; }
.step-list { display: flex; flex-wrap: wrap; gap: 7px; }

/* ---------- 19. STATS / PROOF ---------- */
.proof { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); border-radius: var(--r-lg); overflow: hidden; }
.proof-item { background: var(--soft); padding: clamp(22px, 2.4vw, 32px); display: grid; gap: 8px; align-content: start; }
.proof-item b { font-family: var(--display); font-size: 1.25rem; font-weight: 800; letter-spacing: -.025em; line-height: 1.15; }
.proof-item span { font-size: var(--t-sm); color: var(--ink-3); }
.badge-demo {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 9px; border-radius: 6px;
  background: rgba(185,242,39,.2); border: 1px solid rgba(120,160,10,.3); color: #4C6E06;
  font-family: var(--mono); font-size: .625rem; letter-spacing: .1em; text-transform: uppercase;
}
.badge-req {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 9px; border-radius: 6px;
  background: rgba(35,107,254,.1); color: var(--cobalt-ink);
  font-family: var(--mono); font-size: .625rem; letter-spacing: .1em; text-transform: uppercase;
}

/* ---------- 20. FORMS ---------- */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--display); font-size: var(--t-xs); font-weight: 600; letter-spacing: .02em; }
.field .hint { font-size: var(--t-xs); color: var(--ink-3); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--r-sm);
  border: 1px solid var(--line-light); background: #fff; font-size: var(--t-sm);
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cobalt); box-shadow: 0 0 0 3px rgba(35,107,254,.14);
}
.field[data-error="true"] input, .field[data-error="true"] select, .field[data-error="true"] textarea { border-color: #D2402A; }
.err { color: #B8321E; font-size: var(--t-xs); display: none; }
.field[data-error="true"] .err { display: block; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: var(--t-xs); color: var(--ink-3); }
.consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--cobalt); flex: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-panel {
  border: 1px solid var(--line-light); border-radius: var(--r-lg); background: #fff;
  padding: clamp(22px, 2.6vw, 34px); box-shadow: var(--shadow-sm);
}
.form-success { display: none; text-align: left; }
.form-success[data-on="true"] { display: grid; gap: 16px; }
.form-success h3 { font-size: 1.5rem; }
.success-mark {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(185,242,39,.28);
  display: grid; place-items: center; color: #3F5C05;
}

/* sticky RFQ */
.rfq-sticky { position: sticky; top: 100px; }

/* ---------- 21. ACCORDION ---------- */
.faq { border-top: 1px solid var(--line-light); }
.faq details { border-bottom: 1px solid var(--line-light); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 40px 20px 0; position: relative;
  font-family: var(--display); font-weight: 700; font-size: 1.0625rem; letter-spacing: -.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 11px; height: 11px;
  border-right: 1.5px solid var(--cobalt); border-bottom: 1.5px solid var(--cobalt);
  transform: translateY(-70%) rotate(45deg); transition: transform var(--std) var(--ease);
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq details p { padding: 0 0 22px; color: var(--ink-2); font-size: var(--t-sm); max-width: 70ch; }
.dark .faq, .dark .faq details { border-color: var(--hair-dark); }
.dark .faq details p { color: var(--dim); }

/* ---------- 22. CTA SPLIT ---------- */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hair-dark); border: 1px solid var(--hair-dark); border-radius: var(--r-xl); overflow: hidden; }
.cta-half {
  background: var(--navy); padding: clamp(30px, 4.2vw, 62px); display: grid; gap: 18px; align-content: center;
  position: relative; transition: background var(--std) var(--ease);
}
.cta-half:hover { background: #0A1E33; }
.cta-half h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: #fff; }
.cta-half h2 span { display: block; color: var(--dim-2); font-weight: 700; }
.cta-half .btn { justify-self: start; }
.cta-contact {
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center;
  margin-top: 30px; font-size: var(--t-sm); color: var(--dim);
}
.cta-contact a { display: inline-flex; align-items: center; gap: 8px; }
.cta-contact a:hover { color: #fff; }

/* ---------- 23. PAGE HERO (inner) ---------- */
.phero { background: var(--navy); color: #fff; padding-top: clamp(112px, 15vh, 156px); padding-bottom: clamp(48px, 6vw, 84px); position: relative; overflow: hidden; }
.phero .hero-grid { opacity: .35; }
.phero h1 { font-size: var(--t-h1); max-width: 18ch; }
.phero .lead { max-width: 60ch; margin-top: 22px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: var(--t-xs); color: var(--dim-2); margin-bottom: 26px; }
.crumbs a:hover { color: #fff; }
.crumbs li { display: flex; gap: 8px; align-items: center; }
.crumbs li + li::before { content: "/"; color: rgba(255,255,255,.22); }

/* ---------- 24. FOOTER ---------- */
.footer { background: var(--graphite); color: #fff; padding-top: clamp(56px, 6vw, 88px); padding-bottom: 32px; }
.footer-top { display: grid; grid-template-columns: minmax(0,1.35fr) repeat(4, minmax(0,1fr)); gap: clamp(24px, 3vw, 48px); padding-bottom: 48px; border-bottom: 1px solid var(--hair-dark); }
.footer-brand { display: grid; gap: 18px; align-content: start; }
.footer-brand .frame { font-family: var(--display); font-weight: 800; font-size: 1.125rem; letter-spacing: -.02em; }
.footer-brand .frame span { color: var(--dim-2); }
.footer-col h4 { font-family: var(--display); font-size: var(--t-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--dim-2); font-weight: 700; margin-bottom: 16px; }
.footer-col li a { display: block; padding: 6px 0; font-size: var(--t-sm); color: rgba(255,255,255,.72); transition: color var(--fast) var(--ease), transform var(--fast) var(--ease); }
.footer-col li a:hover { color: #fff; transform: translateX(3px); }
.footer-contact { display: grid; gap: 10px; font-size: var(--t-sm); color: var(--dim); }
.footer-contact a:hover { color: var(--lime); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: space-between; align-items: center; padding-top: 26px; font-size: var(--t-xs); color: var(--dim-2); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- 25. TALK WIDGET ---------- */
.talk { position: fixed; right: clamp(14px, 2vw, 26px); bottom: clamp(14px, 2vw, 26px); z-index: var(--z-widget); display: grid; justify-items: end; gap: 10px; }
.talk-menu {
  display: grid; gap: 4px; padding: 8px; border-radius: var(--r); min-width: 216px;
  background: #0A1B2E; border: 1px solid var(--hair-dark); box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(8px) scale(.98); visibility: hidden;
  transition: opacity var(--std) var(--ease), transform var(--std) var(--ease-out), visibility var(--std);
  transform-origin: bottom right;
}
.talk-menu[data-open="true"] { opacity: 1; transform: none; visibility: visible; }
.talk-menu a { display: flex; align-items: center; gap: 11px; padding: 11px 12px; border-radius: 9px; font-size: var(--t-sm); color: rgba(255,255,255,.85); }
.talk-menu a:hover { background: rgba(255,255,255,.06); color: #fff; }
.talk-menu a i { font-style: normal; margin-left: auto; font-family: var(--mono); font-size: .625rem; color: var(--dim-2); }
.talk-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px; border-radius: 999px;
  background: var(--navy); color: #fff; border: 1px solid rgba(255,255,255,.14); cursor: pointer;
  font-family: var(--display); font-weight: 700; font-size: var(--t-sm);
  box-shadow: var(--shadow-lg); transition: transform var(--fast) var(--ease);
}
.talk-btn:hover { transform: translateY(-2px); }
.talk-btn .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(185,242,39,.5) } 60% { box-shadow: 0 0 0 8px rgba(185,242,39,0) } }

/* ---------- 26. SEARCH OVERLAY ---------- */
.search-overlay {
  position: fixed; inset: 0; z-index: var(--z-overlay); display: grid; place-items: start center;
  padding: clamp(60px, 12vh, 140px) 20px; background: rgba(7,21,37,.72);
  backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity var(--std) var(--ease), visibility var(--std);
}
.search-overlay[data-open="true"] { opacity: 1; visibility: visible; }
.search-box { width: min(640px, 100%); background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.search-box input { width: 100%; border: 0; padding: 20px 22px; font-size: 1.0625rem; border-bottom: 1px solid var(--line-light); }
.search-box input:focus { outline: none; }
.search-results { max-height: 52vh; overflow-y: auto; padding: 8px; }
.search-results a { display: grid; gap: 2px; padding: 12px 14px; border-radius: 10px; }
.search-results a:hover, .search-results a.active { background: rgba(35,107,254,.07); }
.search-results b { font-family: var(--display); font-size: var(--t-sm); }
.search-results span { font-size: var(--t-xs); color: var(--ink-3); }
.search-empty { padding: 26px 14px; font-size: var(--t-sm); color: var(--ink-3); }
.search-foot { padding: 12px 16px; border-top: 1px solid var(--line-light); font-size: var(--t-xs); color: var(--ink-3); display: flex; gap: 16px; }
kbd { font-family: var(--mono); font-size: .625rem; padding: 3px 6px; border: 1px solid var(--line-light); border-radius: 5px; background: var(--soft); }

/* ---------- 27. COOKIE ---------- */
.cookie {
  position: fixed; left: clamp(14px, 2vw, 26px); bottom: clamp(14px, 2vw, 26px); z-index: var(--z-widget);
  max-width: 400px; background: #fff; border: 1px solid var(--line-light); border-radius: var(--r-lg);
  padding: 20px; box-shadow: var(--shadow-lg); display: none; gap: 14px;
}
.cookie[data-on="true"] { display: grid; }
.cookie p { font-size: var(--t-xs); color: var(--ink-2); }
.cookie div { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- 28. MISC ---------- */
.divider { height: 1px; background: var(--line-light); border: 0; margin: 0; }
.dark .divider { background: var(--hair-dark); }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.spec { display: grid; grid-template-columns: 150px 1fr; gap: 12px 20px; }
.spec dt { font-family: var(--mono); font-size: var(--t-xs); color: var(--ink-3); letter-spacing: .06em; text-transform: uppercase; padding-top: 3px; }
.spec dd { margin: 0; font-size: var(--t-sm); }
.spec > div { display: contents; }
.note-strip {
  display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px;
  border-radius: var(--r); background: rgba(35,107,254,.06); border: 1px solid rgba(35,107,254,.16);
  font-size: var(--t-xs); color: var(--ink-2);
}
.dark .note-strip { background: rgba(255,255,255,.04); border-color: var(--hair-dark); color: var(--dim); }

/* ---------- 29. RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .nav, .header-cta .btn { display: none; }
  .burger { display: grid; }
  .header-cta { gap: 6px; }
  .journey, .netwrap, .pillars-stage { grid-template-columns: 1fr; }
  .journey-aside, .pillars-sticky { position: static; }
  .footer-top { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .engine { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .engine-step::after { display: none; }
  .g-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .proof { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .router, .g-3 { grid-template-columns: 1fr; }
  .section-head-split { grid-template-columns: 1fr; align-items: start; }
  .bridge { grid-template-columns: 1fr; }
  .bridge-arrow { transform: rotate(90deg); padding: 6px 0; }
  .cta-split { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .step-n { padding-top: 0; }
  .netmap { padding: 8px; }
}
@media (max-width: 640px) {
  .g-2, .f2, .footer-top { grid-template-columns: 1fr; }
  .proof { grid-template-columns: 1fr; }
  .engine { grid-template-columns: 1fr; }
  .spec { grid-template-columns: 1fr; gap: 4px 0; }
  .spec dd { margin-bottom: 12px; }
  .hero-strip .note { margin-left: 0; width: 100%; }
  .talk-btn span.label { display: none; }
  .talk-btn { padding: 14px; }
  .route-card { min-height: 0; }
}

/* ---------- 30. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal], [data-enter] { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  .hero h1 em::after { transform: scaleX(1); }
}
