/* =================================================================
   ROOT TOKENS
   ================================================================= */
:root {
  --cream: #F4EFE6;
  --cream-2: #EFE8DA;
  --cream-3: #E8DFCC;
  --pastel: #E8EEF3;
  --pastel-2: #DEE6EE;
  --navy: #0A1828;
  --navy-2: #0F1F33;
  --navy-3: #142844;
  --gold: #D4A574;
  --gold-bright: #E8BE85;
  --gold-deep: #A8814A;
  --gold-soft: rgba(212, 165, 116, 0.12);
  --ink: #0A1828;
  --ink-2: #1F2D44;
  --ink-3: #4A5568;
  --ink-muted: #6B7280;
  --ink-faint: rgba(10, 24, 40, 0.45);
  --ink-on-dark: #F4EFE6;
  --ink-muted-on-dark: rgba(244, 239, 230, 0.6);
  --ink-faint-on-dark: rgba(244, 239, 230, 0.4);
  --line: rgba(10, 24, 40, 0.08);
  --line-strong: rgba(10, 24, 40, 0.15);
  --line-on-dark: rgba(244, 239, 230, 0.1);
  --line-on-dark-strong: rgba(244, 239, 230, 0.18);
  --font-sans: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cabinet Grotesk', 'Satoshi', sans-serif;
  --shadow-1: 0 1px 2px rgba(10, 24, 40, 0.04), 0 4px 12px rgba(10, 24, 40, 0.06);
  --shadow-2: 0 4px 12px rgba(10, 24, 40, 0.08), 0 20px 40px rgba(10, 24, 40, 0.10);
  --shadow-3: 0 10px 40px rgba(10, 24, 40, 0.12), 0 30px 80px rgba(10, 24, 40, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--pastel);
  color: var(--ink);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.55;
}

/* Italic accent uses Cabinet Grotesk italic, not Fraunces */
em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: 1280px;
}

.header-inner {
  background: rgba(244, 239, 230, 0.94);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(10, 24, 40, 0.06);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 2px 8px rgba(10, 24, 40, 0.04), 0 16px 40px rgba(10, 24, 40, 0.06);
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-bahria { height: 28px; width: auto; }
.logo-dao { height: 22px; width: auto; }
.logo-separator {
  font-size: 13px;
  color: var(--ink-faint);
  font-weight: 400;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(10, 24, 40, 0.04);
  border-radius: 999px;
  padding: 4px;
}
.header-nav a {
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  transition: all 0.2s ease;
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}
.header-nav a.active {
  background: var(--navy);
  color: var(--cream);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--cream);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px 10px 18px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
}
.header-cta:hover {
  background: var(--navy-3);
  transform: translateY(-1px);
}
.header-cta-arrow {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

/* =================================================================
   PHASE LAYOUT BASE
   ================================================================= */
.phase {
  position: relative;
  padding: 100px 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.phase-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.phase-card {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.phase-card-cream { background: var(--cream); }
.phase-card-light { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.phase-card-final { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%); color: var(--ink-on-dark); }
.card-inner { width: 100%; max-width: 1100px; margin: 0 auto; }

/* =================================================================
   PHASE HEADERS
   ================================================================= */
.phase-header { margin-bottom: 64px; }
.phase-header-center { text-align: center; }
.phase-header-center .phase-headline { margin-left: auto; margin-right: auto; }

.chapter-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(168, 129, 74, 0.3);
  border-radius: 999px;
  background: rgba(212, 165, 116, 0.06);
}
.chapter-tag-dark {
  color: var(--gold);
  border-color: rgba(212, 165, 116, 0.35);
  background: rgba(212, 165, 116, 0.04);
}
.chapter-tag-final {
  color: var(--gold-bright);
  border-color: rgba(232, 190, 133, 0.3);
  background: rgba(232, 190, 133, 0.06);
}

.phase-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 18ch;
}
.phase-headline em {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  color: var(--gold-deep);
}
.phase-headline-light { color: var(--ink-on-dark); }
.phase-headline-light em { color: var(--gold-bright); }
.phase-headline-large {
  font-size: clamp(48px, 6.5vw, 88px);
}

.phase-sub, .phase-question {
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 56ch;
  font-weight: 400;
}
.phase-header-center .phase-sub,
.phase-header-center .phase-question {
  margin-left: auto;
  margin-right: auto;
}
.phase-sub-light { color: var(--ink-muted-on-dark); }

/* =================================================================
   PHASE 1: THE FILE
   ================================================================= */
.phase-file {
  background: linear-gradient(180deg, var(--pastel) 0%, var(--pastel-2) 100%);
  padding-top: 140px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 36px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-soft 2.5s ease-in-out infinite;
}
@keyframes pulse-soft {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 36px;
}
.hero-headline em {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  color: var(--gold-deep);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 50ch;
  margin-bottom: 64px;
  font-weight: 400;
}

.hero-image-stage {
  position: relative;
  margin: 80px auto;
  width: fit-content;
  max-width: 100%;
}

.file-photograph {
  position: relative;
  width: 480px;
  max-width: 100%;
  margin: 0 auto;
  transform: rotate(-2deg);
  transition: transform 0.6s ease;
}
.file-photograph:hover { transform: rotate(0deg) scale(1.02); }
.file-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(10, 24, 40, 0.12)) drop-shadow(0 24px 60px rgba(10, 24, 40, 0.18));
}

.pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(10, 24, 40, 0.08);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  z-index: 2;
}
.pin-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.2);
}
.pin-stamp { top: 15%; right: -15%; transform: rotate(3deg); }
.pin-signature { top: 50%; left: -22%; transform: rotate(-3deg); }
.pin-plot { bottom: 10%; left: 30%; transform: rotate(2deg); }

.hero-footer {
  margin-top: 80px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-footer-divider {
  width: 1px;
  background: var(--line);
}
.stat-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-num {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.num-suffix {
  color: var(--gold-deep);
  margin-left: 2px;
}
.num-slash {
  color: var(--gold-deep);
  margin: 0 4px;
  font-weight: 700;
}
.stat-label {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.45;
  max-width: 22ch;
}

.hero-tag {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 90ch;
}
.hero-tag-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
  flex-shrink: 0;
}
.hero-tag-mark svg { width: 18px; height: 18px; }

/* =================================================================
   PHASE 2: SEED / SLIDER
   ================================================================= */
.phase-seed { background: linear-gradient(180deg, var(--pastel-2) 0%, var(--cream-2) 100%); }

.seed-interactive {
  margin-top: 64px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-2);
}
.seed-stage {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.seed-file-side, .seed-tiles-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.seed-file-img { width: 180px; height: auto; filter: drop-shadow(0 8px 24px rgba(10, 24, 40, 0.12)); transform: rotate(-3deg); }
.seed-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
}
.seed-label span { color: var(--ink); font-weight: 700; }

.seed-arrow { color: var(--gold-deep); }
.seed-arrow svg { width: 80px; height: 40px; }

.tile-grid {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 3px;
  width: 100%;
  aspect-ratio: 5 / 3;
  background: var(--cream-3);
  padding: 12px;
  border-radius: var(--radius-md);
}
.tile {
  background: var(--gold);
  border-radius: 2px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
}
.tile.tile-off {
  background: rgba(168, 129, 74, 0.12);
}

.seed-controls { display: flex; flex-direction: column; gap: 16px; }
.control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.control-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.control-value {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.control-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-left: 4px;
}
.seed-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--cream-3);
  border-radius: 999px;
  outline: none;
}
.seed-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(168, 129, 74, 0.4);
  border: 3px solid var(--cream);
}
.seed-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--cream);
}
.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 500;
}
.control-row-bottom {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.control-price { display: flex; flex-direction: column; gap: 2px; }
.price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.price-value {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.control-settle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
}
.settle-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38a169;
  box-shadow: 0 0 0 4px rgba(56, 161, 105, 0.2);
  animation: pulse-soft 2s ease-in-out infinite;
}

/* =================================================================
   PHASE 3: RECEIPTS
   ================================================================= */
.phase-receipts { background: var(--cream-2); }

.receipts-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

.receipt-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-1);
}
.receipt-card-big { display: flex; flex-direction: column; gap: 32px; }
.receipt-num-wrap { display: flex; flex-direction: column; gap: 6px; }
.receipt-num {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(64px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.receipt-subnum {
  font-size: 15px;
  color: var(--ink-muted);
  font-weight: 500;
}
.receipt-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-3);
}
.receipt-partners {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.partner-with-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}
.partner-logo {
  height: 24px;
  width: auto;
  opacity: 0.85;
}
.partner-stat {
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 500;
}

.persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.persona-tile {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-1);
}
.persona-ratio {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.ratio-divider {
  color: var(--gold-deep);
  margin: 0 2px;
  font-weight: 700;
}
.persona-label {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.45;
}

/* Proof bar — additional credibility stats, sits between persona grid and confession card */
.proof-bar {
  margin: 64px auto 80px;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 48px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(168, 129, 74, 0.18);
}
.proof-bar-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.proof-bar-num {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.proof-bar-num .num-suffix { color: var(--gold-deep); }
.proof-bar-label {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.45;
}
.proof-bar-divider {
  width: 1px;
  height: 60px;
  background: var(--line);
}

/* Confession card with Pakistan maps */
.confession-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.confession-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
}
.confession-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
}
.warning-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--cream);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
}
.confession-body { display: flex; flex-direction: column; gap: 20px; max-width: 70ch; }
.confession-headline {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.confession-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
}
.confession-text strong { color: var(--ink); font-weight: 700; }

.confession-comparison {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.compare-side { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.compare-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
}
.compare-map {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 400 / 480;
}
.pakistan-svg {
  width: 100%;
  height: 100%;
  color: rgba(10, 24, 40, 0.25);
}
.compare-map-bahria .pakistan-svg { color: rgba(168, 129, 74, 0.55); }
.map-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.map-dots div {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink-muted);
  opacity: 0;
  animation: dot-pop 0.4s ease forwards;
}
.map-dots-dense div {
  background: var(--gold);
  width: 4px;
  height: 4px;
}
@keyframes dot-pop {
  to { opacity: 1; transform: scale(1); }
  from { opacity: 0; transform: scale(0); }
}

.compare-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.compare-stat-num {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.compare-stat-label {
  font-size: 13px;
  color: var(--ink-muted);
}

.compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
.divider-versus {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-deep);
  font-weight: 600;
}

.confession-conclusion {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 28px;
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  color: var(--ink-2);
}
.conclusion-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--cream);
  flex-shrink: 0;
}
.conclusion-arrow svg { width: 16px; height: 16px; }

/* =================================================================
   PHASE 4: TIMELINE (DARK)
   ================================================================= */
.phase-timeline {
  background: var(--navy);
  color: var(--ink-on-dark);
}

.timeline-stage {
  margin-top: 64px;
}
.timeline-track {
  position: relative;
  padding: 80px 0 40px;
}
.track-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(244, 239, 230, 0.1);
}
.track-progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 100%);
  width: 0;
  transition: width 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-events {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.tl-event {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  position: relative;
  padding-top: 8px;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}
.tl-event-bright, .tl-event-now { opacity: 1; }

.tl-flag {
  width: 32px;
  height: 20px;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.tl-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink-on-dark);
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 1px var(--line-on-dark-strong);
  position: relative;
  z-index: 2;
}
.tl-marker-bright {
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 0 0 6px rgba(212, 165, 116, 0.15);
}
.tl-marker-now {
  background: var(--gold-bright);
  box-shadow: 0 0 0 1px var(--gold-bright), 0 0 20px rgba(232, 190, 133, 0.5);
  animation: pulse-strong 2s ease-in-out infinite;
}
@keyframes pulse-strong {
  0%, 100% { box-shadow: 0 0 0 1px var(--gold-bright), 0 0 20px rgba(232, 190, 133, 0.5); }
  50% { box-shadow: 0 0 0 1px var(--gold-bright), 0 0 40px rgba(232, 190, 133, 0.8); }
}

.tl-year {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink-on-dark);
}
.tl-event-bright .tl-year, .tl-event-now .tl-year { color: var(--gold-bright); }
.tl-label {
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-muted-on-dark);
  max-width: 18ch;
}

.diaspora-flow {
  margin-top: 80px;
  background: var(--navy-2);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.diaspora-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 24px;
}
.diaspora-bars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.dflow {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 24px;
  align-items: center;
}
.dflow-bar {
  height: 14px;
  background: rgba(244, 239, 230, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.dflow-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 100%);
  border-radius: 999px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.dflow-fill-dim {
  background: linear-gradient(90deg, rgba(244, 239, 230, 0.3) 0%, rgba(244, 239, 230, 0.4) 100%);
}
.dflow-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-on-dark);
  display: block;
  margin-bottom: 2px;
}
.dflow-val {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
}
.dflow-pakistan .dflow-val { color: var(--ink-muted-on-dark); }
.diaspora-note {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-on-dark);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-muted-on-dark);
  text-align: center;
  line-height: 1.4;
}

/* =================================================================
   PHASE 5: PRODUCT (PHONE + SECTOR)
   ================================================================= */
.phase-product { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-3) 30%, var(--pastel) 60%); padding-top: 140px; }

.product-stage {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 700px;
}

/* Sector — fills its column with proper aspect ratio, no awkward mesh */
.sector-stage {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sector-image-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: visible;
}
.sector-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(10, 24, 40, 0.15));
}

/* Active pulsing plot pins */
.sector-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.sector-pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.25), 0 2px 8px rgba(10, 24, 40, 0.2);
  animation: pin-pulse 2.4s ease-in-out infinite;
}
.sector-pin-2 .sector-pin-dot { animation-delay: 0.4s; }
.sector-pin-3 .sector-pin-dot { animation-delay: 0.8s; }
.sector-pin-4 .sector-pin-dot { animation-delay: 1.2s; }
@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.25), 0 2px 8px rgba(10, 24, 40, 0.2); }
  50%      { box-shadow: 0 0 0 10px rgba(212, 165, 116, 0.05), 0 2px 8px rgba(10, 24, 40, 0.2); }
}

.sector-pin-tooltip {
  position: absolute;
  left: 22px;
  top: -8px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  box-shadow: var(--shadow-2);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pin-tooltip-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.pin-tooltip-meta {
  font-size: 11px;
  color: var(--ink-muted);
}

.sector-meta-strip {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-1);
}
.sector-meta-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.sector-meta-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
}
.meta-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}
.meta-stat-num {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.meta-stat-label {
  font-size: 10px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.meta-stat-divider {
  width: 1px;
  height: 26px;
  background: var(--line);
}

/* Phone */
.phone-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
}
.phone-mockup {
  position: relative;
  width: 320px;
  perspective: 1200px;
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
}
.phone-frame {
  position: relative;
  width: 100%;
  background: var(--navy);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 
    inset 0 0 0 2px rgba(244, 239, 230, 0.1),
    0 30px 80px rgba(10, 24, 40, 0.35),
    0 8px 24px rgba(10, 24, 40, 0.2);
  transform: rotateY(-8deg) rotateX(4deg);
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: var(--navy);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 620px;
  background: var(--cream);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-shadow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(10, 24, 40, 0.25) 0%, transparent 70%);
  filter: blur(8px);
  z-index: -1;
}

.phone-view {
  display: none;
  flex-direction: column;
  height: 100%;
}
.phone-view-active { display: flex; }

.app-header { padding: 36px 18px 12px; }
.app-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.status-icons { display: flex; gap: 3px; }
.signal-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink); }
.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-logo { height: 24px; width: auto; }
.app-balance { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.balance-label { font-size: 10px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.balance-value {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
}
.app-greeting { margin-top: 14px; }
.greeting-line {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.greeting-sub {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 2px;
}

.app-tabs {
  display: flex;
  gap: 6px;
  padding: 8px 18px;
  border-bottom: 1px solid var(--line);
}
.app-tab {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-muted);
  border-radius: 999px;
  transition: all 0.2s ease;
}
.app-tab-active {
  background: var(--navy);
  color: var(--cream);
}

.listings {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.listings::-webkit-scrollbar { display: none; }

.listing {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(244, 239, 230, 0.6);
  border-radius: 12px;
  text-align: left;
  transition: all 0.2s ease;
  width: 100%;
}
.listing:hover {
  background: rgba(212, 165, 116, 0.15);
  transform: translateY(-1px);
}
.listing-thumb {
  width: 48px;
  height: 36px;
  border-radius: 6px;
  background: rgba(212, 165, 116, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.listing-thumb svg { width: 36px; height: 28px; }
.listing-body { flex: 1; min-width: 0; }
.listing-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.listing-loc {
  font-size: 10px;
  color: var(--ink-muted);
  margin-top: 1px;
}
.listing-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.listing-price {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  color: var(--ink);
}
.listing-pulse {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: var(--gold-deep);
  font-weight: 600;
}
.pulse-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-soft 1.8s ease-in-out infinite;
}
.listing-buy {
  background: var(--navy);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  flex-shrink: 0;
}

.app-cta-bar {
  padding: 14px 18px;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta-counter { display: flex; flex-direction: column; gap: 1px; }
.cta-count-num {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 16px;
}
.cta-count-label {
  font-size: 9px;
  color: var(--ink-muted-on-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.app-cta-button {
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.app-cta-button:hover { background: var(--gold-bright); transform: scale(1.05); }

/* Detail view */
.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 18px 12px;
}
.detail-back {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-deep);
}
.detail-back::before { content: '← '; }
.detail-share {
  font-size: 11px;
  color: var(--ink-muted);
}
.detail-hero {
  margin: 0 18px;
  padding: 24px;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-hero-svg { width: 120px; height: 90px; }
.detail-body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.detail-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.detail-meta {
  font-size: 11px;
  color: var(--ink-muted);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
.detail-cell {
  background: rgba(244, 239, 230, 0.5);
  padding: 8px 10px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.detail-cell-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.detail-cell-value {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
}
.detail-stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(244, 239, 230, 0.5);
  border-radius: 10px;
}
.stepper-label { font-size: 11px; color: var(--ink-muted); }
.stepper-control {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stepper-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stepper-value {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  min-width: 36px;
  text-align: center;
}
.detail-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--gold-soft);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 10px;
}
.total-label {
  font-size: 11px;
  color: var(--ink-muted);
}
.total-value {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.detail-confirm {
  margin-top: auto;
  background: var(--navy);
  color: var(--cream);
  padding: 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Confirmed view */
.confirm-stage {
  padding: 60px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  height: 100%;
}
.confirm-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: check-pop 0.5s ease;
}
.confirm-check svg { width: 36px; height: 36px; }
@keyframes check-pop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.confirm-text { text-align: center; }
.confirm-line-1 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.confirm-line-2 {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 4px;
}
.confirm-detail {
  width: 100%;
  background: rgba(244, 239, 230, 0.5);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}
.confirm-row span:first-child {
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.confirm-row span:last-child {
  font-weight: 700;
  color: var(--ink);
}
.confirm-hash {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 10px !important;
  color: var(--gold-deep) !important;
}
.confirm-cta {
  margin-top: auto;
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  padding: 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}

.phone-caption {
  text-align: center;
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 30ch;
}
.phone-caption em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 600;
}

/* Redemption */
.redemption-stage {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.redemption-header { margin-bottom: 48px; text-align: center; }
.redemption-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.redemption-flow {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}
.redemption-source { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.source-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 80px;
  height: 80px;
}
.src-tile {
  background: var(--gold);
  border-radius: 4px;
}
.source-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
}
.redemption-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold-deep);
}
.arrow-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.redemption-arrow svg { width: 60px; }

.redemption-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.redeem-option {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  transition: all 0.3s ease;
}
.redeem-option:hover, .redeem-option-active {
  border-color: var(--gold);
  background: var(--gold-soft);
  transform: translateY(-2px);
}
.redeem-svg { width: 56px; height: 42px; }
.redeem-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.redeem-detail {
  font-size: 12px;
  color: var(--ink-muted);
}

.redemption-tagline {
  text-align: center;
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--ink-2);
  font-weight: 500;
  margin-top: 32px;
}
.redemption-tagline em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 600;
}

/* =================================================================
   PHASE 6: ANTIFRAGILE (CRISIS SCENARIOS)
   ================================================================= */
.phase-antifragile {
  background: linear-gradient(180deg, var(--pastel) 0%, var(--navy) 30%, var(--navy) 100%);
  color: var(--ink-on-dark);
  padding-top: 160px;
}

.resilience-scenarios {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.scenario {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: var(--navy-2);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.scenario.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.scenario:hover {
  background: var(--navy-3);
  border-color: rgba(212, 165, 116, 0.3);
}

.scenario-attack {
  display: flex;
  align-items: center;
  gap: 16px;
}
.scenario-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(244, 239, 230, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted-on-dark);
  flex-shrink: 0;
}
.scenario-icon svg { width: 28px; height: 28px; }
.scenario-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-muted-on-dark);
  line-height: 1.4;
}

.scenario-arrow {
  color: var(--gold);
  opacity: 0.6;
}
.scenario-arrow svg { width: 60px; height: 16px; }

.scenario-outcome {
  display: flex;
  align-items: center;
  gap: 16px;
}
.outcome-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15);
}
.outcome-check svg { width: 20px; height: 20px; }
.outcome-text { display: flex; flex-direction: column; gap: 2px; }
.outcome-headline {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-on-dark);
  letter-spacing: -0.01em;
}
.outcome-sub {
  font-size: 13px;
  color: var(--ink-muted-on-dark);
  line-height: 1.4;
}

.resilience-tagline {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px;
  text-align: center;
}
.resilience-tagline-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.1);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(212, 165, 116, 0.3);
}
.resilience-tagline-mark svg { width: 36px; height: 36px; }
.resilience-tagline-text {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink-on-dark);
  text-align: left;
}
.resilience-tagline-text em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 800;
}

/* =================================================================
   PHASE 7: ECOSYSTEM WHEEL
   ================================================================= */
.phase-ecosystem {
  background: linear-gradient(180deg, var(--navy) 0%, var(--pastel) 30%);
  padding-top: 140px;
}

.wheel-stage {
  margin: 80px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 600px;
}

.wheel {
  position: relative;
  width: 520px;
  height: 520px;
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.wheel-center-disc {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 0 12px rgba(212, 165, 116, 0.12),
    0 20px 60px rgba(168, 129, 74, 0.4);
  position: relative;
}
.wheel-center-disc::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(244, 239, 230, 0.35);
}
.wheel-crest {
  width: 96px;
  height: 96px;
  object-fit: contain;
  opacity: 0.85;
  mix-blend-mode: multiply;
}
.wheel-center-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
}

.wheel-orbit {
  position: absolute;
  inset: 0;
}
.wheel-orbit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 460px;
  height: 460px;
  margin-top: -230px;
  margin-left: -230px;
  border: 1px dashed rgba(168, 129, 74, 0.2);
  border-radius: 50%;
}

.orbit-spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--angle));
}
.orbit-spoke::before {
  content: '';
  position: absolute;
  top: 0;
  left: 70px;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, rgba(168, 129, 74, 0.4) 0%, rgba(168, 129, 74, 0.05) 100%);
}
.orbit-node {
  position: absolute;
  top: -52px;
  left: 230px;
  width: 124px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: rotate(calc(-1 * var(--angle)));
  box-shadow: var(--shadow-1);
  transition: all 0.3s ease;
}
.orbit-node:hover {
  border-color: var(--gold);
  transform: rotate(calc(-1 * var(--angle))) translateY(-4px);
  box-shadow: var(--shadow-2);
}
.orbit-icon {
  width: 28px;
  height: 28px;
  color: var(--gold-deep);
}
.orbit-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.orbit-flow {
  font-size: 11px;
  color: var(--gold-deep);
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.005em;
}

/* Leakage callout — the "Bahria does not capture secondary trades today" insight */
.leakage-callout {
  margin: 64px auto;
  max-width: 1100px;
  background: var(--cream);
  border: 1px solid rgba(10, 24, 40, 0.08);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.leakage-callout::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF7A7A 0%, var(--gold) 50%, #38a169 100%);
}
.leakage-header { margin-bottom: 40px; }
.leakage-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(168, 129, 74, 0.3);
  border-radius: 999px;
  background: rgba(212, 165, 116, 0.06);
}
.leakage-headline {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.leakage-headline em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 800;
}
.leakage-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 70ch;
}

.leakage-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.leakage-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border-radius: var(--radius-md);
}
.leakage-today {
  background: rgba(255, 122, 122, 0.04);
  border: 1px solid rgba(255, 122, 122, 0.15);
}
.leakage-chain {
  background: rgba(56, 161, 105, 0.05);
  border: 1px solid rgba(56, 161, 105, 0.18);
}
.leakage-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.leakage-today .leakage-col-title { color: #C24747; }
.leakage-chain .leakage-col-title { color: #2F8D5C; }

.leakage-rows { display: flex; flex-direction: column; gap: 8px; }
.leakage-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  background: var(--cream-2);
}
.leakage-row-on { background: rgba(56, 161, 105, 0.08); }
.leakage-row-off { background: rgba(255, 122, 122, 0.06); opacity: 0.6; }
.leakage-step {
  font-weight: 700;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.leakage-status { font-weight: 500; color: var(--ink-2); font-size: 13px; }
.leakage-row-on .leakage-status::after {
  content: ' ✓';
  color: #2F8D5C;
  font-weight: 700;
  margin-left: 2px;
}

.leakage-result {
  margin-top: auto;
  padding: 14px 16px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  letter-spacing: -0.01em;
}
.leakage-result-loss {
  background: rgba(255, 122, 122, 0.12);
  color: #B23838;
}
.leakage-result-win {
  background: rgba(56, 161, 105, 0.12);
  color: #2F8D5C;
}

.leakage-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.leakage-divider span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-deep);
}

.leakage-conclusion {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 500;
}
.leakage-conclusion em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--gold-deep);
}

.ecosystem-shift {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px;
  background: var(--gold-soft);
  border-radius: var(--radius-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 500;
  color: var(--ink);
  text-align: center;
}
.shift-before { color: var(--ink-muted); }
.shift-after { color: var(--ink); font-weight: 700; }
.shift-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--cream);
}
.shift-arrow svg { width: 18px; height: 18px; }

/* =================================================================
   PHASE 8: NUMBERS
   ================================================================= */
.phase-numbers {
  background: var(--navy);
  color: var(--ink-on-dark);
}

.unlock-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.unlock-card {
  background: var(--navy-2);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
}
.unlock-card:hover {
  border-color: rgba(212, 165, 116, 0.4);
  transform: translateY(-4px);
}
.unlock-card-hero {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy-3) 100%);
  border-color: rgba(212, 165, 116, 0.3);
  padding: 48px;
}
.unlock-card-loss { border-color: rgba(255, 100, 100, 0.2); }
.unlock-card-velocity { background: linear-gradient(135deg, var(--navy-3) 0%, rgba(168, 129, 74, 0.15) 100%); }
.unlock-card-revenue { border-color: rgba(212, 165, 116, 0.3); }

.unlock-num {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink-on-dark);
}
.unlock-card-hero .unlock-num { color: var(--gold-bright); }
.unlock-card-loss .unlock-num { color: #FF7A7A; }
.unlock-card-velocity .unlock-num { color: var(--gold-bright); }
.unlock-card-revenue .unlock-num { color: var(--gold-bright); }
.unlock-num .num-suffix { color: var(--gold); }
.unlock-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-on-dark);
  margin-top: 8px;
  line-height: 1.4;
}
.unlock-sub {
  font-size: 13px;
  color: var(--ink-muted-on-dark);
  line-height: 1.5;
}

.bet-callout {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(168, 129, 74, 0.08) 100%);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.bet-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
}
.bet-left { display: flex; flex-direction: column; gap: 8px; }
.bet-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.bet-text {
  font-size: 18px;
  color: var(--ink-on-dark);
  font-weight: 500;
}
.bet-amount {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.bet-num {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gold-bright);
}
.bet-time {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
}
.bet-right { text-align: right; display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.bet-roi-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.bet-roi-value {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink-on-dark);
}

/* Build cost breakdown bar */
.bet-breakdown {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
}
.breakdown-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
}
.breakdown-bar {
  display: flex;
  width: 100%;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(244, 239, 230, 0.06);
}
.bd-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  transition: filter 0.3s ease;
}
.bd-seg:hover { filter: brightness(1.15); }
.bd-seg-1 { background: var(--gold); color: var(--navy); }
.bd-seg-2 { background: var(--gold-bright); color: var(--navy); }
.bd-seg-3 { background: #C49866; color: var(--navy); }
.bd-seg-4 { background: #B08552; color: var(--cream); }
.bd-seg-5 { background: #8C6840; color: var(--cream); }
.bd-seg-pct {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.bd-seg-5 .bd-seg-pct { font-size: 11px; }

.breakdown-legend {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.bd-legend-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 14px;
  position: relative;
}
.bd-dot {
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
}
.bd-dot-1 { background: var(--gold); }
.bd-dot-2 { background: var(--gold-bright); }
.bd-dot-3 { background: #C49866; }
.bd-dot-4 { background: #B08552; }
.bd-dot-5 { background: #8C6840; }
.bd-legend-label {
  font-size: 12px;
  color: var(--ink-muted-on-dark);
  line-height: 1.4;
}
.bd-legend-pct {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink-on-dark);
  letter-spacing: -0.01em;
}

/* =================================================================
   PHASE 9: WORLD GRID
   ================================================================= */
.phase-world {
  background: var(--navy);
  color: var(--ink-on-dark);
  padding-top: 120px;
}

.world-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.world-tile {
  background: var(--navy-2);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: all 0.3s ease;
}
.world-tile:hover {
  border-color: rgba(212, 165, 116, 0.4);
  transform: translateY(-4px);
}
.world-tile-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-faint-on-dark);
}
.world-tile-flag {
  width: 32px;
  height: 20px;
  border-radius: 3px;
  margin-bottom: 4px;
}
.world-tile-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.world-tile-headline {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink-on-dark);
}
.world-tile-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-muted-on-dark);
  flex: 1;
}
.world-tile-date {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 12px;
  border-top: 1px solid var(--line-on-dark);
}
.world-tile-self {
  background: linear-gradient(135deg, var(--navy-2) 0%, rgba(168, 129, 74, 0.1) 100%);
  border-color: rgba(212, 165, 116, 0.3);
}
.world-tile-self .world-tile-headline { color: var(--gold-bright); }
.world-tile-empty {
  background: transparent;
  border: 2px dashed rgba(244, 239, 230, 0.2);
}
.world-tile-empty .world-tile-headline { color: var(--gold-bright); }
.world-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line-on-dark);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-bright);
}
.world-tile-cta svg { width: 16px; height: 16px; }

/* =================================================================
   PHASE 10: ACTIVATE
   ================================================================= */
.phase-activate {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 50%, var(--navy-3) 100%);
  padding-top: 120px;
  padding-bottom: 120px;
}

.activate-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.activate-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink-on-dark);
  max-width: 18ch;
}
.activate-headline em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 800;
}

.activate-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-muted-on-dark);
  max-width: 60ch;
}

.activate-pillars {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}
.activate-pillar {
  background: rgba(244, 239, 230, 0.04);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-md);
  padding: 24px 24px 24px 64px;
  position: relative;
  transition: all 0.3s ease;
}
.activate-pillar:hover {
  background: rgba(212, 165, 116, 0.08);
  border-color: rgba(212, 165, 116, 0.3);
}
.pillar-num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold-bright);
}
.pillar-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-on-dark);
  margin-bottom: 6px;
}
.pillar-body {
  font-size: 13px;
  color: var(--ink-muted-on-dark);
  line-height: 1.5;
}

.activate-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 18px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.activate-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(212, 165, 116, 0.3);
}
.cta-arrow {
  display: inline-flex;
  align-items: center;
  width: 20px;
  height: 20px;
}
.cta-arrow svg { width: 100%; height: 100%; }

.activate-tagline {
  margin-top: 48px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.5;
  color: var(--gold-bright);
}

/* =================================================================
   FORM
   ================================================================= */
.phase-form {
  background: linear-gradient(180deg, var(--navy-3) 0%, var(--cream) 100%);
  padding-top: 120px;
  padding-bottom: 80px;
}

.form-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
  background: var(--cream);
  padding: 64px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-3);
}

.form-intro { display: flex; flex-direction: column; gap: 16px; }
.form-headline {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.form-sub {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.form-meta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}
.form-meta-label { color: var(--ink-muted); }
.form-meta-value { color: var(--ink-2); font-weight: 600; text-align: right; }

.activation-form {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
  position: relative;
  min-height: 480px;
}

.form-body { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field-full { grid-column: span 2; }
.form-field label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15);
}
.form-field textarea { resize: vertical; min-height: 100px; font-family: var(--font-sans); }
.form-field select { cursor: pointer; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-muted) 50%), linear-gradient(135deg, var(--ink-muted) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }

.form-submit {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy);
  color: var(--cream);
  padding: 16px 24px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--navy-3);
  transform: translateY(-1px);
}
.form-submit:disabled { opacity: 0.5; cursor: wait; }
.submit-arrow { display: inline-flex; align-items: center; width: 18px; height: 18px; }
.submit-arrow svg { width: 100%; height: 100%; color: var(--gold); }

.form-success {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 16px;
}
.form-success.is-visible { display: flex; }
.form-success-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success-check svg { width: 36px; height: 36px; }
.form-success-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.form-success-text {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
  background: var(--navy);
  color: var(--ink-on-dark);
  padding: 80px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer-col { display: flex; flex-direction: column; gap: 20px; }
.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo-lockup img:first-child {
  height: 36px;
  filter: invert(1) brightness(0.92);
}
.footer-logo-lockup img:last-child {
  height: 24px;
  filter: brightness(1.4) contrast(1.1);
}
.footer-logo-lockup span {
  color: var(--ink-muted-on-dark);
  font-weight: 300;
  font-size: 14px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-muted-on-dark);
  line-height: 1.5;
}

.footer-col-stats { gap: 16px; }
.footer-stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.footer-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
.footer-stat { display: flex; flex-direction: column; gap: 4px; }
.footer-stat-num {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink-on-dark);
  letter-spacing: -0.02em;
}
.footer-stat-num .num-suffix { color: var(--gold); }
.footer-stat-text {
  font-size: 12px;
  color: var(--ink-muted-on-dark);
}

.footer-col-partners { align-items: flex-start; }
.partners-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.partners-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.partners-row img {
  height: 22px;
  width: auto;
  filter: brightness(1.6) saturate(0);
  opacity: 0.75;
}
.partners-meta {
  font-size: 12px;
  color: var(--ink-muted-on-dark);
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-faint-on-dark);
}

/* =================================================================
   SCROLL ANIMATIONS
   ================================================================= */
[data-target] { display: inline-block; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .receipts-grid { grid-template-columns: 1fr; }
  .proof-bar { grid-template-columns: 1fr; gap: 16px; padding: 28px; }
  .proof-bar-divider { display: none; }
  .product-stage { grid-template-columns: 1fr; gap: 32px; }
  .sector-stage { height: 320px; }
  .unlock-grid { grid-template-columns: repeat(2, 1fr); }
  .unlock-card-hero { grid-column: span 2; }
  .world-grid { grid-template-columns: repeat(2, 1fr); }
  .form-wrap { grid-template-columns: 1fr; padding: 40px; }
  .confession-comparison { grid-template-columns: 1fr; }
  .leakage-compare { grid-template-columns: 1fr; }
  .leakage-divider { padding: 8px 0; }
  .compare-divider { padding: 16px 0; }
  .bet-row { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .bet-right { align-items: center; text-align: center; }
  .breakdown-legend { grid-template-columns: repeat(2, 1fr); }
  .timeline-events { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .track-line, .track-progress { display: none; }
  .activate-pillars { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .phase { padding: 60px 16px; }
  .phase-card { padding: 48px 24px; border-radius: var(--radius-lg); }
  .header-nav { display: none; }
  .hero-headline { font-size: 48px; }
  .hero-footer { flex-direction: column; gap: 24px; }
  .hero-footer-divider { display: none; }
  .seed-stage { grid-template-columns: 1fr; }
  .seed-arrow { transform: rotate(90deg); }
  .persona-grid { grid-template-columns: 1fr; }
  .unlock-grid { grid-template-columns: 1fr; }
  .unlock-card-hero { grid-column: span 1; }
  .world-grid { grid-template-columns: 1fr; }
  .wheel { width: 100%; max-width: 360px; height: auto; aspect-ratio: 1; }
  .wheel-orbit::before { width: 80%; height: 80%; margin-top: -40%; margin-left: -40%; }
  .orbit-node { width: 96px; padding: 12px 10px; }
  .form-row { grid-template-columns: 1fr; }
  .form-field-full { grid-column: span 1; }
  .scenario { grid-template-columns: 1fr; text-align: center; gap: 12px; }
  .scenario-arrow { transform: rotate(90deg); margin: 0 auto; }
  .scenario-attack, .scenario-outcome { flex-direction: column; }
  .resilience-tagline { flex-direction: column; }
  .resilience-tagline-text { text-align: center; }
  .footer-stats { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
