/*
Theme Name: Lima Xi
Theme URI: https://limaxi.io
Author: BeevR Tech
Author URI: https://beevr.ai
Description: Custom WordPress theme for Lima Xi — Global Trade Intelligence. Dark navy + silver + signal green palette with classified dossier aesthetic.
Version: 1.1.1
License: All Rights Reserved
Text Domain: limaxi
*/

/* ═══════════════════════════════════════════════════════════
   LIMA XI — V3 Visual-First Mockup
   Per Lars's Slack #website brief (Mar 27):
   • Avoid: generic SaaS UI, dashboards, grid cards
   • Use: maps, flows, network diagrams, chokepoints, real-world overlays
   • Think: Bloomberg Terminal · Palantir Gotham · military briefing
   • Tone: "A classified system being revealed to the public"
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy-deep:  #050811;
  --navy:       #0A1020;
  --navy-mid:   #0F1828;
  --navy-raised:#142138;
  --silver:     #FFFFFF;        /* V6 pure white */
  --silver-mid: #C7CFDD;        /* V6 lifted for glare */
  --silver-dim: #B0BACC;        /* V7: was #B0BACC, brightened (was failing 2.9:1 under glare) */
  --signal:     #36D158;        /* V7: was #36D158, brightened (was failing 2.7:1 under glare) */
  --signal-d:   #4AE06B;        /* V7: hover state */
  --alert:      #E8A86B;
  --red:        #D45D5D;
  --grid-line:  rgba(199, 207, 221, 0.14);   /* was 0.08 — stronger dividers */
  --grid-major: rgba(199, 207, 221, 0.22);   /* was 0.14 */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--navy);            /* was --navy-deep — slightly lighter bg reduces pure-black glare issue */
  color: var(--silver);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;                   /* was 300 — thicker strokes, better readability */
  font-size: 16px;                    /* was 15px */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── Global atmosphere: classified dossier grain + scanlines ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; mix-blend-mode: overlay;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none; z-index: 0;
}

/* ─── Typography primitives ─── */
.display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.01em;
  line-height: 0.9;
}
.serif-em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
}
.mono {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
}

/* ─── Classified dossier stamps & marks ─── */
.classified-mark {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--silver-dim);
  text-transform: uppercase;
}
.signal-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--signal), 0 0 20px rgba(54,209,88,0.3);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}

/* ═══════════════════════════════════════════════════
   NAVIGATION — top classification bar
   ═══════════════════════════════════════════════════ */
.classification-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 22px;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--grid-major);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 101;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--silver-dim);
  text-transform: uppercase;
}
.classification-bar .left,
.classification-bar .right {
  display: flex; gap: 1.5rem;
}
.classification-bar .center {
  color: var(--silver);
  display: flex; align-items: center; gap: 0.5rem;
}

nav.main-nav {
  position: fixed;
  top: 22px; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 8, 17, 0.92);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--grid-major);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-brand img.brand-logo {
  height: 26px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(54,209,88,0.25));
}
/* Legacy .nav-mark kept as fallback if image fails, hidden by default */
.nav-mark { display: none; }
.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--signal); }

.btn-nav-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deep) !important;
  background: var(--signal);
  padding: 0.65rem 1.2rem;
  text-decoration: none;
  border: 1px solid var(--signal);
  transition: all 0.2s;
}
.btn-nav-cta:hover {
  background: var(--signal);
  border-color: var(--signal);
}

/* ═══════════════════════════════════════════════════
   CONTAINERS
   ═══════════════════════════════════════════════════ */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 2;
}
section {
  position: relative;
  padding: 8rem 0;
  z-index: 1;
}

/* Shared section classification header */
.sec-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grid-line);
}
.sec-header .sec-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
  letter-spacing: 0.15em;
}
.sec-header .sec-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--silver);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sec-header .sec-name .sec-dot {
  color: var(--signal);
  font-size: 11px;
  filter: drop-shadow(0 0 4px var(--signal));
}
.sec-header .sec-spacer {
  flex: 1;
  height: 1px;
  background: var(--grid-line);
}
.sec-header .sec-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--silver-dim);
  letter-spacing: 0.18em;
}

/* ═══════════════════════════════════════════════════
   HERO — world map with chokepoints
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* World map SVG fills the hero as background, slightly offset right */
.hero-map {
  display: none; /* SVG map hidden, replaced by globe photo */
}
.hero-globe {
  position: absolute;
  bottom: -5%;
  right: -8%;
  width: 82%;
  height: auto;
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 55% 65%, black 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 55% 65%, black 25%, transparent 70%);
  filter: brightness(0.8) saturate(1.3);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-line {
  width: 42px; height: 1px;
  background: var(--signal);
}
.hero-eyebrow-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
}
.hero-headline {
  font-size: clamp(48px, 7.2vw, 108px);
  margin-bottom: 2.5rem;
  color: var(--silver);
  text-shadow: 0 0 60px rgba(5,8,17,0.8);
}
.hero-headline em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--signal);
  font-size: 0.94em;
}
.hero-sub {
  max-width: 560px;
  font-size: 17px;
  color: var(--silver-mid);
  font-weight: 400;
  margin-bottom: 3rem;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero chokepoint labels — floating over map */
.hero-chokepoint-labels {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.chokepoint-label {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.chokepoint-label.alert { color: var(--signal); }
.chokepoint-label .cp-dot {
  width: 7px; height: 7px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--signal), 0 0 20px rgba(54,209,88,0.4);
  animation: pulse 2.4s ease-in-out infinite;
}
.chokepoint-label .cp-line {
  width: 28px; height: 1px; background: var(--signal);
}

/* Bottom telemetry bar — "live" feel */
.hero-telemetry {
  position: absolute;
  bottom: 2rem; left: 2.5rem; right: 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-dim);
  padding-top: 1rem;
  border-top: 1px solid var(--grid-line);
  z-index: 3;
  flex-wrap: wrap;
}
.telemetry-item { display: flex; gap: 0.5rem; }
.telemetry-item .k { color: var(--silver-dim); }
.telemetry-item .v { color: var(--silver); }
.telemetry-item .v.signal { color: var(--signal); }

/* Buttons */
.btn-primary {
  background: var(--signal);
  color: var(--navy-deep);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--signal);
  transition: all 0.2s;
  position: relative;
}
.btn-primary::before {
  content: '▸';
  color: var(--navy-deep);
  font-size: 10px;
}
.btn-primary:hover {
  background: var(--signal-d);
  border-color: var(--signal-d);
}
.btn-primary:hover::before { color: var(--navy-deep); }

.btn-ghost {
  color: var(--silver);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2rem;
  border: 1px solid var(--silver-dim);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}
.btn-ghost:hover {
  border-color: var(--signal);
  color: var(--signal);
  background: rgba(54,209,88,0.06);
}

/* ═══════════════════════════════════════════════════
   SECTION 1: REALITY — signal-to-impact flow diagram
   ═══════════════════════════════════════════════════ */
.reality { background: var(--navy-deep); }
.reality-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 0.95;
  color: var(--silver);
  max-width: 900px;
  margin-bottom: 1.5rem;
}
.reality-headline em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--signal);
}
.reality-body {
  max-width: 620px;
  color: var(--silver-mid);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 4rem;
}
.reality-body p { margin-bottom: 1.2rem; }
.reality-body strong { color: var(--silver); font-weight: 500; }

/* Signal-to-impact flow diagram */
.signal-flow {
  margin: 4rem 0 3rem;
  padding: 3rem 0;
  border-top: 1px solid var(--grid-line);
  border-bottom: 1px solid var(--grid-line);
  position: relative;
}
.signal-flow::before {
  content: 'FLOW.01 · SIGNAL → CASCADE MAPPING';
  position: absolute;
  top: -9px;
  left: 0;
  background: var(--navy-deep);
  padding: 0 1rem 0 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--silver-dim);
}

/* Stats on real-world overlay */
.stats-overlay {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.stat-block {
  padding: 2rem 2.5rem;
  border-left: 1px solid var(--grid-major);
  position: relative;
}
.stat-block:first-child { border-left: none; }
.stat-block::before {
  content: attr(data-tag);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: var(--silver-dim);
  letter-spacing: 0.15em;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 84px;
  line-height: 0.95;
  color: var(--silver);
  margin-bottom: 0.6rem;
  letter-spacing: 0;
}
.stat-num .accent { color: var(--signal); }
.stat-label {
  font-size: 13px;
  color: var(--silver);
  font-weight: 500;
  line-height: 1.6;
  max-width: 260px;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════
   SECTION 2: SHIFT — split diagram (linear vs network)
   ═══════════════════════════════════════════════════ */
.shift { background: var(--navy-deep); }
.shift-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 3rem 0;
  border: 1px solid var(--grid-major);
  position: relative;
}
.shift-visual::before {
  content: 'DIAGRAM.02 · STRUCTURAL COMPARISON';
  position: absolute;
  top: -9px;
  left: 1rem;
  background: var(--navy-deep);
  padding: 0 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--silver-dim);
}
.shift-col {
  padding: 2.5rem;
  border-right: 1px solid var(--grid-major);
  position: relative;
}
.shift-col.then-col { background: rgba(212,93,93,0.04); }
.shift-col:last-child { border-right: none; background: rgba(54,209,88,0.06); border-left: 2px solid rgba(54,209,88,0.3); }
.shift-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  padding: 0.3rem 0.7rem;
  display: inline-block;
}
.shift-label.then { color: var(--red); background: rgba(212,93,93,0.12); }
.shift-label.now { color: var(--signal); background: rgba(54,209,88,0.12); }
.shift-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--silver);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

/* SVG diagram inside each column (250px tall) */
.shift-diagram {
  height: 220px;
  margin: 1.5rem 0 2rem;
}

.shift-list { list-style: none; }
.shift-list li {
  padding: 0.8rem 0;
  border-bottom: 0.5px solid var(--grid-line);
  font-size: 14px;
  color: var(--silver-mid);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.shift-list li:last-child { border-bottom: none; }
.shift-col.now-col .shift-list li { color: var(--silver); }
.dot { width: 4px; height: 4px; border-radius: 50%; flex-shrink: 0; }
.dot.dim { background: var(--silver-dim); }
.dot.signal { background: var(--signal); box-shadow: 0 0 6px var(--signal); }

.shift-consequence {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  border-left: 2px solid var(--signal);
  background: linear-gradient(90deg, rgba(54,209,88,0.08), transparent 80%);
}
.shift-consequence p {
  font-size: 20px;
  line-height: 1.5;
  color: var(--silver);
  max-width: 720px;
}
.shift-consequence em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--signal);
}

/* ═══════════════════════════════════════════════════
   SECTION 3: WHAT LIMA XI IS — three-layer network diagram
   ═══════════════════════════════════════════════════ */
.product { background: var(--navy); }
.product-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
  align-items: start;
}
.product-claim {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.2;
  color: var(--silver);
  font-weight: 400;
}
.product-claim em {
  font-style: italic;
  color: var(--signal);
}
.product-desc {
  font-size: 14px;
  color: var(--silver-mid);
  line-height: 1.85;
}
.product-desc p { margin-bottom: 1rem; }
.product-desc strong { color: var(--silver); font-weight: 500; }

/* THE BIG NETWORK DIAGRAM */
.network-diagram-wrap {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid var(--grid-major);
  background: var(--navy-deep);
  position: relative;
}
.network-diagram-wrap::before {
  content: 'DIAGRAM.03 · AWARENESS → ANTICIPATION → ORCHESTRATION';
  position: absolute;
  top: -9px;
  left: 1rem;
  background: var(--navy-deep);
  padding: 0 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--silver-dim);
}
.network-diagram { width: 100%; height: 420px; }

/* ═══════════════════════════════════════════════════
   SECTION 4: ARCHITECTURE — Sankey-style flow
   ═══════════════════════════════════════════════════ */
.architecture { background: var(--navy); }
.architecture-flow-wrap {
  margin-top: 3rem;
  border: 1px solid var(--grid-major);
  background: var(--navy-deep);
  padding: 2rem;
  position: relative;
}
.architecture-flow-wrap::before {
  content: 'DIAGRAM.04 · SENSING → PREDICTION → DECISION';
  position: absolute;
  top: -9px;
  left: 1rem;
  background: var(--navy-deep);
  padding: 0 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--silver-dim);
}
.architecture-flow { width: 100%; height: 460px; }

/* Product screenshot embed */
.product-shot {
  margin-top: 4rem;
  border: 1px solid rgba(54,209,88,0.35);
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(54,209,88,0.12), 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(0);
  transition: box-shadow 0.3s;
}
.product-shot:hover {
  box-shadow: 0 0 60px rgba(54,209,88,0.2), 0 12px 48px rgba(0,0,0,0.5);
}
.shot-header {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--grid-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(20,33,56,0.5);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.shot-header .l { color: var(--silver-dim); }
.shot-header .r { color: var(--signal); display: flex; align-items: center; gap: 0.5rem; }
.shot-body {
  display: block;
  position: relative;
  line-height: 0;
  background: var(--navy);
}
.shot-body img.shot-image {
  display: block;
  width: 100%;
  height: auto;
}
/* Scan-line overlay on top of screenshot for dossier feel */
.shot-body::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(0,0,0,0.12) 3px,
    rgba(0,0,0,0.12) 4px
  );
}
/* Legacy placeholder classes (kept but hidden) */
.shot-body .ph-tag,
.shot-body .ph-title,
.shot-body .ph-desc { display: none; }

/* ═══════════════════════════════════════════════════
   SECTION 5: SCENARIO — Strait of Hormuz FLAGSHIP
   Cascade map + timeline waveform
   ═══════════════════════════════════════════════════ */
.scenario {
  background: var(--navy-deep);
  border-top: 1px solid var(--grid-major);
  border-bottom: 1px solid var(--grid-major);
  position: relative;
}
.scenario::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 15%, rgba(54,209,88,0.06), transparent 55%);
  pointer-events: none;
}
.scenario-header {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.scenario-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.92;
  color: var(--silver);
}
.scenario-headline em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--signal);
  display: block;
  margin-top: 0.1em;
}
.scenario-trigger {
  padding-top: 1.2rem;
  border-top: 1px solid var(--grid-major);
  font-size: 15px;
  color: var(--silver-mid);
  font-weight: 400;
  line-height: 1.75;
}
.scenario-trigger strong {
  display: block;
  margin-bottom: 0.8rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signal);
}

/* CASCADE MAP — SVG with Hormuz zoom + propagation rings */
.cascade-map-wrap {
  position: relative;
  border: 1px solid var(--grid-major);
  background: var(--navy);
  margin-bottom: 3rem;
}
.cascade-map-wrap::before {
  content: 'MAP.05 · HORMUZ → GLOBAL PROPAGATION';
  position: absolute;
  top: -9px;
  left: 1rem;
  background: var(--navy-deep);
  padding: 0 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--silver-dim);
  z-index: 2;
}
.cascade-map { width: 100%; height: 500px; display: block; }

/* Timeline as a signal waveform */
.timeline-wave-wrap {
  border: 1px solid var(--grid-major);
  background: var(--navy);
  padding: 2rem 0 0;
  position: relative;
  margin-bottom: 3rem;
}
.timeline-wave-wrap::before {
  content: 'CHART.06 · 72-HOUR CASCADE TIMELINE';
  position: absolute;
  top: -9px;
  left: 1rem;
  background: var(--navy-deep);
  padding: 0 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--silver-dim);
}
.timeline-wave { width: 100%; height: 280px; }
.timeline-events {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--grid-line);
}
.t-event {
  padding: 1.5rem 1.5rem;
  border-right: 1px solid var(--grid-line);
}
.t-event:last-child { border-right: none; }
.t-event .t-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--silver);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.t-event ul { list-style: none; }
.t-event li {
  font-size: 12px;
  color: var(--silver-mid);
  font-weight: 400;
  padding: 0.45rem 0;
  border-bottom: 0.5px solid var(--grid-line);
  line-height: 1.5;
}
.t-event li:last-child { border-bottom: none; }
.t-event li.alert { color: var(--alert); }

/* Outcome split */
.outcome-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--grid-major);
  position: relative;
}
.outcome-col {
  padding: 2.5rem;
  border-right: 1px solid var(--grid-major);
}
.outcome-col:last-child {
  border-right: none;
  background: linear-gradient(135deg, rgba(54,209,88,0.12), transparent 80%);
  border-left: 1px solid rgba(54,209,88,0.35);
  margin-left: -1px;
}
.outcome-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.outcome-label.without { color: var(--silver-dim); }
.outcome-label.with { color: var(--signal); }
.outcome-list { list-style: none; }
.outcome-list li {
  padding: 0.8rem 0;
  border-bottom: 0.5px solid var(--grid-line);
  font-size: 14px;
  color: var(--silver-mid);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.outcome-list li:last-child { border-bottom: none; }
.outcome-list.with li { color: var(--silver); }
.icon-x { color: var(--red); font-size: 13px; }
.icon-arrow { color: var(--signal); font-size: 13px; }

/* CLASSIFIED DOWNLOAD HOOK */
.download-hook {
  margin-top: 3rem;
  padding: 2.5rem 3rem;
  border: 1px solid rgba(54,209,88,0.35);
  background:
    linear-gradient(135deg, rgba(54,209,88,0.08), rgba(20,33,56,0.6)),
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(230,234,242,0.015) 20px, rgba(230,234,242,0.015) 40px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.download-hook::before {
  content: 'CLASSIFIED · INTELLIGENCE BRIEF';
  position: absolute;
  top: -8px;
  left: 2rem;
  background: var(--navy-deep);
  padding: 0 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--signal);
}
.download-hook h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--silver);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.download-hook p {
  font-size: 13px;
  color: var(--silver-mid);
  line-height: 1.6;
}
.download-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.download-form input {
  background: var(--navy-deep);
  border: 1px solid var(--grid-major);
  color: var(--silver);
  padding: 0.9rem 1rem;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.download-form input::placeholder { color: var(--silver-dim); }
.download-form input:focus { border-color: var(--signal); }
.download-form button {
  background: var(--signal);
  color: var(--navy-deep);
  border: none;
  padding: 0.95rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.download-form button:hover { background: var(--signal-d); }

/* ═══════════════════════════════════════════════════
   SECTION 6: WHY NOW — three forces vertical
   ═══════════════════════════════════════════════════ */
.why-now { background: var(--navy-deep); }
.why-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  color: var(--silver);
  max-width: 820px;
  margin-bottom: 4rem;
}
.why-headline em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--signal);
}
.forces-stack {
  border-top: 1px solid var(--grid-major);
}
.force {
  display: grid;
  grid-template-columns: 140px 1fr 1.6fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--grid-major);
  align-items: start;
}
.force-id {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(54,209,88,0.2);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: -0.5rem;
}
.force-id-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--silver);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.force-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--silver);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.force-body {
  font-size: 15px;
  color: var(--silver-mid);
  font-weight: 400;
  line-height: 1.75;
}
.why-closer {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--grid-line);
  text-align: center;
}
.why-closer p {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.55;
  color: var(--silver);
  max-width: 760px;
  margin: 0 auto;
}
.why-closer em {
  font-style: italic;
  color: var(--signal);
}

/* ═══════════════════════════════════════════════════
   SECTION 7: ADVANTAGE — compound interest visual
   ═══════════════════════════════════════════════════ */
.advantage { background: var(--navy-deep); }
.adv-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: start;
}
.adv-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98;
  color: var(--silver);
  margin-bottom: 2rem;
}
.adv-headline em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--signal);
}
.adv-body {
  font-size: 15px;
  color: var(--silver-mid);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.adv-compound-chart {
  width: 100%; height: 180px;
  margin-top: 2rem;
  border: 1px solid var(--grid-major);
  padding: 1rem;
  background: var(--navy);
  position: relative;
}
.adv-compound-chart::before {
  content: 'CHART.07 · TIME → COMPOUNDING ADVANTAGE';
  position: absolute;
  top: -9px;
  left: 0.75rem;
  background: var(--navy-deep);
  padding: 0 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--silver-dim);
}

.adv-gains {
  list-style: none;
  border-top: 1px solid var(--grid-line);
}
.adv-gains li {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--grid-line);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  align-items: start;
}
.gain-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--silver);
  letter-spacing: 0.04em;
}
.gain-desc {
  font-size: 14px;
  color: var(--silver-mid);
  font-weight: 400;
  line-height: 1.6;
}
.adv-closer {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  border-left: 2px solid var(--signal);
  background: rgba(54,209,88,0.05);
}
.adv-closer p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
}
.adv-closer em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--signal);
}

/* ═══════════════════════════════════════════════════
   SECTION 8: ACCESS
   ═══════════════════════════════════════════════════ */
.access {
  background: var(--navy-deep);
  padding: 9rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.access::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(54,209,88,0.07), transparent 65%);
}
.access-content { position: relative; z-index: 2; }
.access-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7.5vw, 118px);
  line-height: 0.93;
  color: var(--silver);
  max-width: 900px;
  margin: 0 auto 2.5rem;
}
.access-headline em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--signal);
}
.access-sub {
  max-width: 580px;
  margin: 0 auto 1rem;
  font-size: 17px;
  color: var(--silver-mid);
  font-weight: 400;
  line-height: 1.75;
}
.access-qualifier {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--silver);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.access-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.access-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  width: 100%;
}
.access-form input {
  flex: 1;
  background: var(--navy-mid);
  border: 1px solid var(--grid-major);
  border-right: none;
  color: var(--silver);
  padding: 1.1rem 1.25rem;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.access-form input::placeholder { color: var(--silver-dim); }
.access-form input:focus { border-color: var(--signal); }
.access-form .btn-primary {
  border-left: none;
  white-space: nowrap;
}
.access-form .btn-primary::before { content: ''; }
.access-secondary {
  margin-top: 0.5rem;
  border: none;
  border-bottom: 1px solid var(--silver-dim);
  padding: 0.4rem 0;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
footer {
  background: var(--navy-deep);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--grid-major);
}
.footer-mission {
  text-align: center;
  padding-bottom: 3rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--grid-line);
}
.footer-mission p {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
  color: var(--silver);
  max-width: 780px;
  margin: 0 auto;
  font-weight: 400;
}
.footer-mission em {
  font-style: italic;
  color: var(--signal);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--silver-dim);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  section { padding: 5rem 0; }
  .container { padding: 0 1.25rem; }

  /* ─── Hero ─── */
  .hero { padding: 7rem 0 3rem; min-height: auto; flex-direction: column; }
  .hero-globe { width: 160%; right: -30%; opacity: 0.3; bottom: -5%; }
  .hero-headline { font-size: clamp(36px, 10vw, 56px); }
  .hero-sub { font-size: 14px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100%; text-align: center; justify-content: center; box-sizing: border-box; }
  .hero-telemetry {
    position: static;
    margin-top: 2rem;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 8px;
    width: 100%;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--grid-line);
  }

  /* ─── Nav ─── */
  .nav-links { display: none; }
  .classification-bar { padding: 0 0.75rem; font-size: 7px; letter-spacing: 0.1em; }
  .classification-bar .left .c-hide,
  .classification-bar .right .c-hide { display: none; }
  .classification-bar .center { font-size: 7px; }

  /* ─── Section headers ─── */
  .sec-header { flex-wrap: wrap; gap: 0.5rem; }
  .sec-header .sec-spacer { display: none; }

  /* ─── Grid stacking ─── */
  .shift-visual,
  .stats-overlay,
  .product-intro,
  .scenario-header,
  .timeline-events,
  .outcome-split,
  .download-hook,
  .adv-grid { grid-template-columns: 1fr; }
  .force { grid-template-columns: 1fr; gap: 0.75rem; }
  .adv-gains li { grid-template-columns: 1fr; gap: 0.5rem; }
  .shift-col,
  .stat-block,
  .outcome-col,
  .t-event {
    border-right: none;
    border-bottom: 1px solid var(--grid-line);
    border-left: none !important;
  }

  /* ─── Stats ─── */
  .stat-num { font-size: 56px; }
  .stat-block { padding: 1.5rem 1.25rem; }

  /* ─── Shift ─── */
  .shift-col { padding: 1.5rem 1.25rem; overflow-x: auto; }
  .shift-diagram { height: 160px; }
  .shift-consequence { padding: 1.5rem; }
  .shift-consequence p { font-size: 16px; }

  /* ─── Product ─── */
  .product-claim { font-size: clamp(22px, 5.5vw, 32px); }
  .product-intro { gap: 2rem; }

  /* ─── SVG diagrams — allow horizontal scroll on mobile ─── */
  .network-diagram-wrap,
  .architecture-flow-wrap,
  .cascade-map-wrap,
  .timeline-wave-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
  }
  .network-diagram,
  .architecture-flow,
  .cascade-map,
  .timeline-wave {
    min-width: 100%;
    height: auto;
  }

  /* ─── Product shot ─── */
  .product-shot { margin-top: 2rem; }
  .shot-header { font-size: 7px; padding: 0.6rem 0.8rem; }

  /* ─── Scenario ─── */
  .scenario-headline { font-size: clamp(40px, 12vw, 72px); }
  .scenario-trigger { font-size: 13px; }
  .scenario-header { gap: 2rem; }

  /* ─── Timeline events ─── */
  .timeline-events { grid-template-columns: 1fr 1fr; }
  .t-event { padding: 1rem; }

  /* ─── Download hook ─── */
  .download-hook { padding: 1.5rem; gap: 1.5rem; }
  .download-hook h3 { font-size: 24px; }

  /* ─── Why Now ─── */
  .why-headline { font-size: clamp(32px, 8vw, 52px); }
  .force-id { font-size: 48px; }
  .force-title { font-size: 22px; }
  .force-body { font-size: 13px; }
  .why-closer p { font-size: 18px; }

  /* ─── Advantage ─── */
  .adv-headline { font-size: clamp(32px, 8vw, 48px); }
  .adv-compound-chart { height: 140px; }
  .adv-closer { padding: 1.25rem; }

  /* ─── Access ─── */
  .access { padding: 5rem 0; }
  .access-headline { font-size: clamp(40px, 11vw, 72px); }
  .access-sub { font-size: 14px; }
  .access-form { flex-direction: column; }
  .access-form input { border-right: 1px solid var(--grid-major); }
  .access-form .btn-primary {
    border-left: 1px solid var(--signal);
    width: 100%;
    justify-content: center;
  }

  /* ─── Footer ─── */
  .footer-mission p { font-size: clamp(18px, 4.5vw, 26px); }
  .footer-grid { flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; font-size: 8px; }
}

/* ═══════════════════════════════════════════════════
   FORM STATES
   ═══════════════════════════════════════════════════ */
.form-message {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 1rem;
}
.form-message.success {
  color: var(--signal);
  background: rgba(46,160,67,0.1);
  border: 1px solid rgba(46,160,67,0.3);
}
.form-message.error {
  color: var(--red);
  background: rgba(212,93,93,0.1);
  border: 1px solid rgba(212,93,93,0.3);
}
.btn-primary:disabled,
.download-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
