/* ============================================================
   Brand→Stage™ — Redesigned Marketing Site
   Tokens: operational (per brand brief)
   Sharpness: poster-scale type, hard hairlines, kingkong cadence
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Barlow:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Backgrounds */
  --bg:            #0A0A0A;
  --surface:       #111111;
  --surface-quiet: #0D0D0D;
  --surface-elev:  #131313;

  /* Borders */
  --border:        #1E1E1E;
  --border-subtle: #1A1A1A;
  --border-faint:  #181818;
  --border-gold:   rgba(201,168,76,0.22);
  --gold-border:   rgba(201,168,76,0.35);
  --gold-border-2: rgba(201,168,76,0.40);

  /* Gold */
  --gold:          #C9A84C;
  --gold-hover:    #d4b357;
  --gold-bg-faint: rgba(201,168,76,0.08);
  --gold-bg-light: rgba(201,168,76,0.15);
  --gold-on:       #0A0A0A;

  /* Text */
  --t-primary:     #FFFFFF;
  --t-readable:    #DDDDDD;
  --t-body:        #AAAAAA;
  --t-muted:       #777777;
  --t-dim:         #555555;
  --t-vdim:        #3A3A3A;

  /* Status */
  --risk:          #E74C3C;
  --warn:          #E67E22;
  --good:          #2ECC71;
  --good-bg:       rgba(46,204,113,0.10);
  --good-border:   rgba(46,204,113,0.30);
  --warn-bg:       rgba(230,126,34,0.10);
  --warn-border:   rgba(230,126,34,0.30);
  --risk-bg:       rgba(231,76,60,0.10);
  --risk-border:   rgba(231,76,60,0.30);

  /* Type */
  --f-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --f-body:    'Barlow', system-ui, -apple-system, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;

  /* Radii */
  --r-1: 2px;
  --r-2: 3px;
  --r-3: 4px;
  --r-pill: 999px;

  /* Spacing */
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 22px;
  --s-7: 28px;
  --s-8: 32px;
  --s-9: 44px;
  --s-10: 64px;
  --s-11: 96px;

  /* Motion */
  --t-fast: 0.12s ease;
  --t:      0.20s ease;
  --t-slow: 0.35s ease;

  --container: 1280px;
  --header-h: 72px;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--t-body);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Selection + scrollbar */
::selection { background: var(--gold); color: var(--gold-on); }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: #1E1E1E; border-radius: 6px; }
*::-webkit-scrollbar-thumb:hover { background: #2A2A2A; }

/* Top gold hairline — runs full bleed under header */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  z-index: 200;
  opacity: 0.55;
  pointer-events: none;
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-7);
}

/* ============================================================
   TYPE
   ============================================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker--mute { color: var(--t-muted); }
.kicker .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; }
.kicker .rule { height: 1px; background: var(--border-subtle); flex: 1; min-width: 40px; }

.data {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--t-muted);
}

/* Big — section-anchor poster headline */
.poster {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(64px, 9vw, 144px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--t-primary);
  text-wrap: balance;
  margin: 0;
}
.poster em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

/* Display H1 — hero */
.display-h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--t-primary);
  margin: 0;
  text-wrap: balance;
}
.display-h1 .arrow { color: var(--gold); display: inline-block; padding: 0 0.06em; }
.display-h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

/* Section H2 — feels like a page header */
.h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(42px, 5.5vw, 84px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--t-primary);
  margin: 0;
  text-wrap: balance;
}
.h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.h2 .arrow { color: var(--gold); padding: 0 0.04em; }

.h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--t-primary);
  margin: 0;
}
.h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--t-body);
  margin: 0;
}
.body--lg {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--t-readable);
  max-width: 60ch;
}
.body em {
  font-style: italic;
  color: var(--t-readable);
}

.system-voice {
  font-family: var(--f-mono);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--t-readable);
}

/* Stat numeral — display-weight, poster-scale */
.stat-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(72px, 11vw, 168px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  display: block;
}
.stat-num--mid { font-size: clamp(56px, 7vw, 108px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--r-2);
  padding: 14px 22px;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  border: 1px solid transparent;
  background: transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn .arrow { font-weight: 400; }

.btn--primary {
  background: var(--gold);
  color: var(--gold-on);
  border-color: var(--gold);
}
.btn--primary:hover { background: var(--gold-hover); border-color: var(--gold-hover); }

.btn--outline {
  background: var(--gold-bg-faint);
  border-color: var(--gold-border-2);
  color: var(--gold);
}
.btn--outline:hover { background: var(--gold-bg-light); border-color: var(--gold); }

.btn--quiet {
  border-color: var(--border);
  color: var(--t-readable);
  padding: 12px 18px;
}
.btn--quiet:hover { border-color: #444; color: var(--t-primary); }

.btn--lg { padding: 18px 28px; font-size: 13px; }
.btn--xl { padding: 22px 32px; font-size: 14px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--s-7);
}
.logo {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--t-primary);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.logo .arrow { color: var(--gold); padding: 0 2px; font-weight: 400; }
.logo sup { font-size: 9px; color: var(--t-muted); margin-left: 2px; font-weight: 400; }

.nav {
  display: flex;
  align-items: center;
  gap: var(--s-7);
  margin-left: auto;
}
.nav a {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-muted);
  transition: color var(--t-fast);
}
.nav a:hover { color: var(--gold); }
.nav a.cta { color: var(--gold); }

.header-cta {
  margin-left: var(--s-5);
}

.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-2);
  width: 40px; height: 40px;
  margin-left: auto;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 16px; height: 1px;
  background: var(--t-primary);
  margin: 4px auto;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: var(--s-11) 0 var(--s-10);
  border-bottom: 1px solid var(--border);
}
.hero-bracket-wrap {
  position: relative;
  padding: var(--s-10) 0;
}
.hero-bracket-wrap::before,
.hero-bracket-wrap::after,
.hero-bracket-wrap .br-tr,
.hero-bracket-wrap .br-bl {
  content: '';
  position: absolute;
  width: 32px; height: 32px;
  border: 1px solid var(--gold-border-2);
  pointer-events: none;
}
.hero-bracket-wrap::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero-bracket-wrap::after  { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.hero-bracket-wrap .br-tr  { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hero-bracket-wrap .br-bl  { bottom: 0; left: 0; border-right: 0; border-top: 0; }

.hero-kicker-row {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: 0 var(--s-7) var(--s-7);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--s-8);
}
.hero-kicker-row .rule { flex: 1; height: 1px; background: var(--border-subtle); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-9);
  align-items: end;
  padding: 0 var(--s-7);
}
.hero-left { display: flex; flex-direction: column; gap: var(--s-7); }
.hero-sub {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.65;
  color: var(--t-readable);
  max-width: 56ch;
  margin: 0;
}
.hero-sub b { color: var(--t-primary); font-weight: 600; }
.hero-ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--s-7);
  padding-top: var(--s-7);
  border-top: 1px solid var(--border-subtle);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-stat .num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.hero-stat .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-muted);
}
.hero-foot {
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--t-muted);
  font-style: italic;
  max-width: 60ch;
}

/* Hero command card */
.command {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-3);
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.command-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--border-subtle);
}
.command-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--good);
}
.command-status .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--good);
  position: relative;
}
.command-status .dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--good);
  opacity: 0.4;
  animation: pulse-out 2s ease-out infinite;
}
@keyframes pulse-out {
  0%   { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}
.command-nodes {
  display: flex;
  flex-direction: column;
}
.node {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.node:last-child { border-bottom: 0; }
.node-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--t-vdim);
  justify-self: center;
}
.node-dot.active { background: var(--gold); box-shadow: 0 0 8px var(--gold-border); }
.node-dot.building { background: var(--warn); }
.node-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--t-readable);
}
.node-status {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t-muted);
}
.node-status.s-active { color: var(--gold); }
.node-status.s-build  { color: var(--warn); }
.command-target {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--surface-quiet);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2);
}
.command-target .l {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-muted);
}
.command-target .v {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}
.command-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border-subtle);
}
.command-flow span:not(.arrow) {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-muted);
}
.command-flow .arrow { color: var(--gold); font-size: 11px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  border-bottom: 1px solid var(--border);
  background: var(--surface-quiet);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  padding: 18px 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-readable);
}
.trust-item .check { color: var(--gold); font-size: 13px; }

/* ============================================================
   PRESS / AS FEATURED IN
   ============================================================ */
.press {
  padding: var(--s-10) 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface-quiet);
  position: relative;
}
.press::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border) 30%, var(--gold-border) 70%, transparent);
  opacity: 0.6;
}
.press-head {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding-bottom: var(--s-7);
}
.press-head .rule { flex: 1; height: 1px; background: var(--border-subtle); }
.press-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.press-track {
  display: flex;
  width: max-content;
  animation: scroll 42s linear infinite;
}
.press-marquee:hover .press-track { animation-play-state: paused; }
.press-group {
  display: flex;
  align-items: center;
  gap: var(--s-10);
  padding: 0 var(--s-10);
}
.press-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: var(--s-10);
}
.press-logo-wrap::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.45;
}
.press-logo-wrap:last-child::after { display: none; }
.press-logo {
  height: 42px;
  width: auto;
  filter: grayscale(0.65) brightness(1.55) contrast(0.95);
  opacity: 0.82;
  transition: opacity var(--t-slow), filter var(--t-slow), transform var(--t-slow);
}
.press-logo:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1.15) contrast(1);
  transform: translateY(-2px);
}
.press-logo--lg { height: 52px; }
.press-logo--sm { height: 36px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section {
  padding: var(--s-11) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.section--tight { padding: var(--s-10) 0; }

.sec-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-9);
  align-items: end;
  padding-bottom: var(--s-9);
  margin-bottom: var(--s-9);
  border-bottom: 1px solid var(--border-subtle);
}
.sec-head-l {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.sec-head-r {
  padding-bottom: 14px;
}

/* Numbered tag — kingkong-style "section 04" */
.sec-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-muted);
}
.sec-tag .num {
  color: var(--gold);
  font-weight: 600;
}
.sec-tag .rule { flex: 0 0 60px; height: 1px; background: var(--gold-border); }

/* ============================================================
   DIAGNOSIS (four cards)
   ============================================================ */
.diag-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--border-subtle);
  border-top: 1px solid var(--border-subtle);
}
.diag-card {
  padding: var(--s-8);
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  background: var(--surface);
  transition: background var(--t-fast);
}
.diag-card:hover { background: var(--surface-elev); }
.diag-card .num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 80px;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.diag-card .h {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--t-primary);
}
.diag-card .p {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--t-body);
  margin-top: auto;
}

.callout {
  margin-top: var(--s-9);
  padding: var(--s-7) var(--s-8);
  background: var(--surface);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-2) var(--r-2) 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--t-primary);
}
.callout em { font-style: italic; color: var(--gold); font-weight: 500; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  padding: var(--s-10) 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface-quiet);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-cell {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: 0 var(--s-7);
  border-right: 1px solid var(--border-subtle);
}
.stats-cell:last-child { border-right: 0; }
.stats-cell:first-child { padding-left: 0; }
.stats-cell .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-muted);
}
.stats-cell .desc {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--t-readable);
  line-height: 1.55;
}

/* ============================================================
   MARKET SHIFT
   ============================================================ */
.shift {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
.shift-col {
  padding: var(--s-9) var(--s-8);
  border-radius: var(--r-3);
  border: 1px solid var(--border);
  background: var(--surface);
}
.shift-col.noise {
  background: rgba(180,30,30,0.04);
  border-color: rgba(180,30,30,0.20);
}
.shift-col h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--t-primary);
  margin: 0 0 var(--s-7);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
}
.shift-col h3 .tag {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: var(--r-1);
  background: var(--gold-bg-faint);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.shift-col.noise h3 .tag {
  background: rgba(231,76,60,0.10);
  color: var(--risk);
  border-color: rgba(231,76,60,0.25);
}
.shift-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.shift-list li {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--t-primary);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--border-faint);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.shift-list li:last-child { border-bottom: 0; }
.shift-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 400;
}
.shift-col.noise .shift-list li::before { content: '—'; color: var(--risk); }

.pull-quote {
  margin: var(--s-10) auto 0;
  padding: var(--s-9) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.pull-quote p {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--t-primary);
  text-wrap: balance;
}
.pull-quote em { font-style: italic; font-weight: 500; color: var(--gold); }

/* ============================================================
   REFRAME (centered)
   ============================================================ */
.reframe {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-9);
  align-items: end;
}
.reframe-l { display: flex; flex-direction: column; gap: var(--s-5); }
.reframe-r { display: flex; flex-direction: column; gap: var(--s-6); }

/* ============================================================
   THE SYSTEM
   ============================================================ */
.pathway-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: var(--s-7);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  background: var(--surface);
  margin-bottom: var(--s-9);
}
.pathway-strip span:not(.arrow) {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--t-readable);
}
.pathway-strip .arrow { color: var(--gold); font-size: 13px; }
.pathway-strip span.active { color: var(--gold); }

.system-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-subtle);
  border-left: 1px solid var(--border-subtle);
}
.system-card {
  padding: var(--s-8) var(--s-7);
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  background: var(--surface);
  position: relative;
  transition: background var(--t-fast);
  min-height: 320px;
}
.system-card:hover { background: var(--surface-elev); }
.system-card .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--t-muted);
  margin-bottom: var(--s-4);
}
.system-card .num b { color: var(--gold); }
.system-card .h {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--t-primary);
  margin: 0;
}
.system-card .sh {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.system-card .p {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--t-body);
  margin-top: auto;
}

/* ============================================================
   STAGE INTELLIGENCE
   ============================================================ */
.intel {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-9);
  align-items: start;
}
.intel-features {
  display: flex;
  flex-direction: column;
}
.feature {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--s-5);
  padding: var(--s-7) 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: start;
}
.feature:last-child { border-bottom: 0; }
.feature:first-child { padding-top: 0; }
.feature .ico {
  width: 56px; height: 56px;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-2);
  background: var(--gold-bg-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.feature .h {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--t-primary);
  margin: 0 0 8px;
}
.feature .p {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--t-body);
  margin: 0;
}

.intel-side {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: sticky;
  top: calc(var(--header-h) + var(--s-5));
}
.intel-quote {
  padding: var(--s-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-3) var(--r-3) 0;
}
.intel-quote blockquote {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--t-primary);
}
.intel-quote blockquote em { font-style: italic; color: var(--gold); font-weight: 500; }
.intel-engine {
  padding: var(--s-7);
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-3);
}
.intel-engine .h {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.intel-engine p {
  margin: 0 0 var(--s-5);
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--t-body);
}

.product-cta {
  margin-top: var(--s-10);
  padding: var(--s-8);
  background: var(--surface-quiet);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: var(--s-7);
  align-items: center;
}
.product-cta .h {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--t-primary);
  margin: 0 0 10px;
}
.product-cta p {
  margin: 0;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--t-body);
}

/* ============================================================
   MONTHLY RHYTHM
   ============================================================ */
.rhythm {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-subtle);
  border-left: 1px solid var(--border-subtle);
  margin-bottom: var(--s-7);
}
.rhythm-cell {
  padding: var(--s-8);
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  background: var(--surface);
  position: relative;
}
.rhythm-cell .num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 60px;
  line-height: 0.85;
  color: var(--t-vdim);
  letter-spacing: -0.02em;
}
.rhythm-cell:nth-child(1) .num { color: var(--gold); }
.rhythm-cell .wk {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-muted);
}
.rhythm-cell .act {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--t-primary);
  line-height: 1.15;
}

/* ============================================================
   COMPARE
   ============================================================ */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
.compare-col {
  padding: var(--s-9) var(--s-8);
  border-radius: var(--r-3);
  border: 1px solid var(--border);
  background: var(--surface);
}
.compare-col.old {
  background: var(--surface-quiet);
  border-color: var(--border-subtle);
}
.compare-col h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 var(--s-7);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--border-subtle);
  color: var(--t-primary);
}
.compare-col.old h3 { color: var(--t-muted); }
.compare-col.old h3::after {
  content: 'Legacy';
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 500;
  margin-left: 14px;
  color: var(--t-dim);
  background: var(--surface);
  padding: 4px 8px;
  border-radius: var(--r-1);
  border: 1px solid var(--border);
}
.compare-col.new h3::after {
  content: 'The system';
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 500;
  margin-left: 14px;
  color: var(--gold);
  background: var(--gold-bg-faint);
  padding: 4px 8px;
  border-radius: var(--r-1);
  border: 1px solid var(--gold-border);
}
.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.compare-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-faint);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.compare-list li:last-child { border-bottom: 0; }
.compare-list li::before {
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--gold);
  width: 22px;
}
.compare-col.old .compare-list li { color: var(--t-body); }
.compare-col.old .compare-list li::before { content: '✕'; color: var(--risk); opacity: 0.6; }
.compare-col.new .compare-list li { color: var(--t-readable); }
.compare-col.new .compare-list li::before { content: '→'; }
.compare-close {
  margin-top: var(--s-9);
  text-align: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--t-primary);
}
.compare-close em { font-style: italic; color: var(--gold); font-weight: 500; }

/* ============================================================
   PROOF GRID
   ============================================================ */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}
.proof-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  overflow: hidden;
  transition: border-color var(--t-slow), transform var(--t-slow);
}
.proof-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}
.proof-img-link {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface-quiet);
  overflow: hidden;
  display: block;
}
.proof-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform var(--t-slow);
}
.proof-card:hover .proof-img { transform: scale(1.04); }
.proof-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.92));
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity var(--t-slow);
}
.proof-card:hover .proof-overlay { opacity: 1; }
.proof-overlay span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
}
.proof-meta {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border-subtle);
}
.proof-meta .idx {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.proof-meta .cap {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--t-primary);
}

/* ============================================================
   WHO THIS IS FOR
   ============================================================ */
.who {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-subtle);
  border-left: 1px solid var(--border-subtle);
}
.who-cell {
  padding: var(--s-8);
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  min-height: 280px;
  transition: background var(--t-fast);
}
.who-cell:hover { background: var(--surface-elev); }
.who-cell .ico {
  width: 48px; height: 48px;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0;
  margin-bottom: var(--s-5);
}
.who-cell .h {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--t-primary);
}
.who-cell .p {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--t-body);
  margin-top: auto;
}

/* ============================================================
   BUILD TIMELINE
   ============================================================ */
.timeline {
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  background: var(--surface);
  overflow: hidden;
}
.tl-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: var(--s-7);
  align-items: center;
  padding: var(--s-7) var(--s-8);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--t-fast);
}
.tl-row:last-child { border-bottom: 0; }
.tl-row:hover { background: var(--surface-elev); }
.tl-row .wk {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.tl-row .h {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--t-primary);
  margin: 0 0 8px;
}
.tl-row .p {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--t-body);
  margin: 0;
  max-width: 60ch;
}
.tl-row .ind {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-muted);
}
.tl-row.bonus { background: var(--surface-quiet); border-top: 1px solid var(--gold-border); }
.tl-row.bonus .wk { color: var(--t-primary); background: var(--gold); padding: 4px 8px; border-radius: var(--r-1); color: var(--gold-on); display: inline-block; }
.tl-row.bonus .ind { color: var(--gold); }

/* ============================================================
   STRATEGY SESSION
   ============================================================ */
.strategy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--s-9);
  align-items: start;
}
.strategy-steps {
  display: flex;
  flex-direction: column;
}
.strategy-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-5);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
}
.strategy-step:last-child { border-bottom: 0; }
.strategy-step .n {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
}
.strategy-step .t {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--t-readable);
}
.strategy-book {
  padding: var(--s-8);
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-3);
  position: relative;
}
.strategy-book .br-tr-cal,
.strategy-book .br-bl-cal {
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--gold-border-2);
  pointer-events: none;
}
.strategy-book .br-tr-cal { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.strategy-book .br-bl-cal { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }

.strategy-book-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--s-5);
  margin-bottom: var(--s-5);
  border-bottom: 1px solid var(--border-subtle);
}

.cal-frame {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2);
  overflow: hidden;
  position: relative;
}
.cal-frame .calendly-inline-widget {
  position: relative;
  z-index: 1;
}
/* Calendly iframe — kill the white fringe + match radius */
.cal-frame iframe {
  background: var(--bg) !important;
  border-radius: var(--r-2) !important;
}
.strategy-book .micro {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--border-subtle);
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--t-muted);
  font-style: italic;
  text-align: center;
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee {
  text-align: center;
  padding: var(--s-10);
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-3);
  position: relative;
  overflow: hidden;
}
.guarantee::before,
.guarantee::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--gold-border-2);
  pointer-events: none;
}
.guarantee::before { top: var(--s-5); left: var(--s-5); border-right: 0; border-bottom: 0; }
.guarantee::after  { bottom: var(--s-5); right: var(--s-5); border-left: 0; border-top: 0; }
.guarantee .seal {
  width: 80px; height: 80px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-6);
  position: relative;
}
.guarantee .seal::before,
.guarantee .seal::after {
  content: '';
  position: absolute;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
}
.guarantee .seal::before { inset: -8px; opacity: 0.6; }
.guarantee .seal::after  { inset: -18px; opacity: 0.3; }
.guarantee .seal-n {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
}
.guarantee .seal-n sub { font-size: 12px; vertical-align: baseline; margin-left: -2px; }
.guarantee h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--t-primary);
  margin: 0 0 var(--s-5);
}
.guarantee p {
  max-width: 60ch;
  margin: 0 auto var(--s-3);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--t-readable);
}
.guarantee .note {
  font-family: var(--f-mono);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--t-muted);
  margin-top: var(--s-5);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-7) 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--t-primary);
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--gold); }
.faq-q .ic {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--gold);
  transition: transform var(--t-fast), background var(--t-fast);
}
.faq-q[aria-expanded="true"] .ic {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--gold-on);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}
.faq-q[aria-expanded="true"] + .faq-a { max-height: 600px; }
.faq-a p {
  padding: 0 0 var(--s-7);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--t-body);
  max-width: 70ch;
  margin: 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  text-align: center;
  padding: var(--s-11) 0;
  position: relative;
}
.final-inner {
  position: relative;
  padding: var(--s-10) 0;
}
.final-inner::before,
.final-inner::after,
.final-inner .br-tr,
.final-inner .br-bl {
  content: '';
  position: absolute;
  width: 32px; height: 32px;
  border: 1px solid var(--gold-border-2);
  pointer-events: none;
}
.final-inner::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.final-inner::after  { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.final-inner .br-tr  { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.final-inner .br-bl  { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.final h2 { margin-bottom: var(--s-5); }
.final p { max-width: 60ch; margin: 0 auto var(--s-7); color: var(--t-readable); font-size: 17px; }
.final-ctas {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}
.final-foot {
  margin-top: var(--s-8);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  font-style: italic;
  color: var(--t-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface-quiet);
  padding: var(--s-10) 0 var(--s-7);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--border-subtle);
}
.footer-mark {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--t-primary);
}
.footer-mark .arrow { color: var(--gold); padding: 0 2px; }
.footer-mark sup { font-size: 10px; color: var(--t-muted); margin-left: 2px; }
.footer-nav {
  display: flex;
  gap: var(--s-7);
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--t-muted);
  transition: color var(--t-fast);
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: var(--s-5);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t-dim);
}

/* ============================================================
   STICKY CTA BAR
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  bottom: 18px;
  z-index: 90;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-3);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: var(--s-5);
  transition: transform var(--t-slow);
  box-shadow: 0 6px 40px rgba(0,0,0,0.75);
  max-width: calc(100vw - 36px);
}
.sticky-cta.visible { transform: translateX(-50%) translateY(0); }
.sticky-cta .txt {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-readable);
}
.sticky-cta .txt em { color: var(--gold); font-style: normal; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  :root { --header-h: 60px; }
  .nav { display: none; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; flex-direction: column; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); align-items: start; }
  .sec-head { grid-template-columns: 1fr; gap: var(--s-5); }
  .diag-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
  .stats-cell { padding: 0 0 var(--s-5); border-right: 0; border-bottom: 1px solid var(--border-subtle); }
  .shift, .compare { grid-template-columns: 1fr; }
  .pathway-strip { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; }
  .system-cards { grid-template-columns: repeat(2, 1fr); }
  .intel { grid-template-columns: 1fr; }
  .intel-side { position: static; }
  .rhythm { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .who { grid-template-columns: repeat(2, 1fr); }
  .tl-row { grid-template-columns: 1fr; gap: var(--s-3); }
  .strategy { grid-template-columns: 1fr; }
  .product-cta { grid-template-columns: 1fr; gap: var(--s-5); }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .reframe { grid-template-columns: 1fr; gap: var(--s-7); align-items: start; }
}

@media (max-width: 600px) {
  .container { padding: 0 var(--s-5); }
  .diag-cards { grid-template-columns: 1fr; }
  .system-cards { grid-template-columns: 1fr; }
  .rhythm { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .who { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
}
