/* ============================================================
   REAL MARKET COLOR — PRE-MARKET — MARCH 11, 2026 — 07:02 EDT
   Palette: Warm amber earth + charcoal black — pre-dawn vigil
   Mood: Breath held, editorial, waiting for 08:30
   ============================================================ */

:root {
  --bg-primary: #0d0a06;
  --bg-secondary: #161009;
  --bg-surface: #1e170c;
  --bg-elevated: #261e10;
  --text-primary: #f0e8d8;
  --text-secondary: #a89070;
  --text-muted: #5c4a2e;
  --accent-red: #e05c3a;
  --accent-red-dim: rgba(224, 92, 58, 0.12);
  --accent-green: #5cb88b;
  --accent-green-dim: rgba(92, 184, 139, 0.12);
  --accent-gold: #f5a623;
  --accent-gold-dim: rgba(245, 166, 35, 0.12);
  --accent-blue: #7ab8c2;
  --accent-blue-dim: rgba(122, 184, 194, 0.08);
  --glass: rgba(20, 14, 6, 0.75);
  --glass-border: rgba(245, 166, 35, 0.12);
  --glass-highlight: rgba(245, 166, 35, 0.28);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* ─── GRAIN TEXTURE ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ─── TICKER STRIP ─── */
.ticker-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 46px;
  background: rgba(13, 10, 6, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.tradingview-widget-container,
.tradingview-widget-container__widget {
  height: 46px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(46px + env(safe-area-inset-top) + 2rem) 1.5rem 3rem;
  overflow: hidden;
}

.hero__glow-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 40%, rgba(245, 166, 35, 0.06) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 30% 70%, rgba(224, 92, 58, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 512px 512px;
}

.hero__top-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
  opacity: 0;
}

.hero__pill {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
}

.hero__pill--war {
  background: var(--accent-red-dim);
  border: 1px solid rgba(224, 92, 58, 0.25);
  color: var(--accent-red);
}

.hero__pill--session {
  background: var(--accent-gold-dim);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: var(--accent-gold);
}

.hero__pill--date {
  color: var(--text-muted);
  border: 1px solid rgba(92, 74, 46, 0.3);
}

.hero__divider {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.hero__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
}

.hero__time-lock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__big-time {
  display: flex;
  align-items: center;
  gap: 0.15em;
  line-height: 1;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: clamp(5rem, 20vw, 16rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 166, 35, 0.6);
  letter-spacing: -0.02em;
  user-select: none;
}

.hero__dig {
  display: inline-block;
}

.hero__colon {
  display: inline-block;
  color: var(--accent-gold);
  -webkit-text-stroke: 0;
  animation: colonPulse 1.4s ease-in-out infinite;
  margin: 0 0.05em;
  opacity: 0.7;
}

@keyframes colonPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0.2; }
}

.hero__time-label {
  font-family: var(--font-mono);
  font-size: clamp(0.55rem, 1.4vw, 0.75rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0.7;
}

.hero__sub {
  max-width: 640px;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.8;
}

.hero__sub em {
  font-style: italic;
  color: var(--text-primary);
}

.hero__stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2px;
  justify-content: center;
  margin-bottom: 1.5rem;
  opacity: 0;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(8px);
  gap: 0.3rem;
  min-width: 100px;
  min-height: 60px;
}

.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__stat-val {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero__stat-val--up { color: var(--accent-green); }
.hero__stat-val--down { color: var(--accent-red); }
.hero__stat-val--gold { color: var(--accent-gold); }

.hero__countdown-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
}

.hero__countdown-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__countdown-val {
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}

/* ─── SECTIONS BASE ─── */
.section {
  padding: 6rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(92, 74, 46, 0.2);
  opacity: 0;
  transform: translateY(32px);
}

.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.section__headline-lg {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
}

.section__context {
  margin-top: 2rem;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.8;
}

.cite-link {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(92, 74, 46, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  min-height: 44px;
  align-items: center;
}

.cite-link:hover {
  color: var(--accent-gold);
  border-color: rgba(245, 166, 35, 0.4);
}

/* ─── SECTION 1: ASIA BARS ─── */
.asia-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.asia-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-surface);
  border-left: 2px solid transparent;
  transition: background 0.2s;
}

.asia-bar--up { border-left-color: var(--accent-green); }
.asia-bar--down { border-left-color: var(--accent-red); }

.asia-bar--highlight {
  background: var(--bg-elevated);
  border-left-color: var(--accent-gold);
}

.asia-bar__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.asia-bar__name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.asia-bar__region {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.asia-bar__track {
  width: 160px;
  height: 4px;
  background: rgba(92, 74, 46, 0.2);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.asia-bar--highlight .asia-bar__track { width: 200px; }

.asia-bar__fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1.2s var(--ease-out-expo);
}

.asia-bar--up .asia-bar__fill { background: var(--accent-green); }
.asia-bar--down .asia-bar__fill { background: var(--accent-red); }
.asia-bar--highlight .asia-bar__fill { background: var(--accent-gold); }

.asia-bar__val {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-green);
  min-width: 60px;
  text-align: right;
}

.asia-bar--down .asia-bar__val { color: var(--accent-red); }
.asia-bar--highlight .asia-bar__val { color: var(--accent-gold); }

/* ─── SECTION 2: IRAN QUOTE WALL ─── */
.section--iran {
  background: var(--bg-secondary);
  max-width: 100%;
  padding-left: max(1.5rem, calc((100vw - 1100px) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100vw - 1100px) / 2 + 1.5rem));
}

.section--iran .section__eyebrow,
.section--iran .section__context,
.section--iran .cite-link {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.quote-wall {
  position: relative;
  padding: 3rem 2rem 3rem 5rem;
  margin-bottom: 3rem;
  border-left: 3px solid var(--accent-red);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.quote-wall__mark {
  position: absolute;
  left: 0.5rem;
  top: 1.5rem;
  font-size: 6rem;
  line-height: 1;
  color: var(--accent-red);
  opacity: 0.3;
  font-family: Georgia, serif;
  user-select: none;
}

.quote-wall__text {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.quote-wall__cite {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-red);
  opacity: 0.8;
}

.iran-counter-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(92, 74, 46, 0.15);
  max-width: 1100px;
  margin: 0 auto 1rem;
}

.iran-counter {
  background: var(--bg-surface);
  padding: 2rem 1.5rem;
  text-align: center;
}

.iran-counter__val {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent-red);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.iran-counter__val--warn { color: var(--text-muted); }

.iran-counter__plus {
  font-size: 0.55em;
  vertical-align: super;
}

.iran-counter__label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── SECTION 3: OIL TIMELINE ─── */
.oil-timeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.oil-node {
  flex: 1;
  min-width: 160px;
  padding: 2rem 1.5rem;
  background: var(--bg-surface);
  border-bottom: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.oil-node--low { border-color: var(--text-muted); }
.oil-node--peak { border-color: var(--accent-red); background: var(--bg-elevated); }
.oil-node--now { border-color: var(--accent-gold); }

.oil-node__date {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.oil-node__price {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.oil-node--peak .oil-node__price { color: var(--accent-red); }
.oil-node--now .oil-node__price { color: var(--accent-gold); }

.oil-node__note {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.oil-connector {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0.5rem;
  min-width: 80px;
}

.oil-connector span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 0.5rem;
}

.oil-connector--up span { color: var(--accent-red); }
.oil-connector--down span { color: var(--accent-gold); }

.iea-callout {
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--accent-gold);
  padding: 2rem;
  margin-top: 2rem;
}

.iea-callout__badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.iea-callout__body {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--text-primary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.iea-callout__stakes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
}

.iea-callout__stake {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-red);
}

.iea-callout__dot {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ─── SECTION 4: ORACLE ─── */
.oracle-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.oracle-big-num {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.oracle-big-num__prefix {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent-green);
}

.oracle-big-num__val {
  font-family: var(--font-mono);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  color: var(--accent-green);
  letter-spacing: -0.03em;
}

.oracle-big-num__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.oracle-substat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(92, 74, 46, 0.15);
}

.oracle-substat {
  background: var(--bg-surface);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.oracle-substat__val {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-green);
}

.oracle-substat__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.oracle-block__headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.oracle-block__body {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.oracle-pre-mkt {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--accent-green-dim);
  border: 1px solid rgba(92, 184, 139, 0.25);
}

.oracle-pre-mkt__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.oracle-pre-mkt__val {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-green);
}

.oracle-pre-mkt__close {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ─── SECTION 5: GOLD CINEMATIC ─── */
.section--gold {
  text-align: center;
  background: var(--bg-secondary);
  max-width: 100%;
  padding-left: max(1.5rem, calc((100vw - 1100px) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100vw - 1100px) / 2 + 1.5rem));
  border-top: 1px solid rgba(245, 166, 35, 0.15);
}

.gold-cinematic {
  max-width: 900px;
  margin: 0 auto;
}

.gold-cinematic__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.gold-cinematic__price {
  font-family: var(--font-mono);
  font-size: clamp(4rem, 14vw, 12rem);
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.gold-cinematic__sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.gold-cinematic__ribbon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding: 1rem;
  background: var(--bg-surface);
  border-top: 1px solid rgba(245, 166, 35, 0.1);
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0.75;
}

.gold-cinematic__sep { opacity: 0.3; }

.gold-cinematic__body {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.85;
  text-align: left;
}

/* ─── SECTION 6: CPI SCENARIOS ─── */
.cpi-note {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 3rem;
}

.cpi-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(92, 74, 46, 0.15);
  margin-bottom: 2rem;
}

.cpi-case {
  background: var(--bg-surface);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 3px solid transparent;
}

.cpi-case--hot { border-top-color: var(--accent-red); }
.cpi-case--inline { border-top-color: var(--accent-blue); }
.cpi-case--cool { border-top-color: var(--accent-green); }

.cpi-case__header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cpi-case__tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.cpi-case--hot .cpi-case__tag { color: var(--accent-red); }
.cpi-case--inline .cpi-case__tag { color: var(--accent-blue); }
.cpi-case--cool .cpi-case__tag { color: var(--accent-green); }

.cpi-case__range {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cpi-case__ring-wrap {
  position: relative;
  width: 80px;
  height: 80px;
}

.cpi-ring { width: 80px; height: 80px; }

.cpi-ring__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cpi-case__outcomes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cpi-case__outcomes li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.cpi-case__outcomes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-size: 0.7rem;
}

/* ─── SECTION 7: FED MINIMAL ─── */
.fed-minimal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fed-minimal__days {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(92, 74, 46, 0.2);
}

.fed-minimal__days-num {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1;
}

.fed-minimal__days-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
}

.fed-minimal__rate { display: flex; flex-direction: column; gap: 1rem; }

.fed-minimal__rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(92, 74, 46, 0.15);
}

.fed-minimal__rate-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.fed-minimal__rate-val {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.fed-minimal__rate-val--hold { color: var(--accent-blue); }

.fed-ring-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
}

.fed-ring-svg { width: 160px; height: 160px; }

.fed-ring-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.fed-ring-pct {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
}

.fed-ring-sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.fed-minimal__note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─── SECTION 8: HORMUZ ─── */
.hormuz-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hormuz-pull__num {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--accent-red);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hormuz-pull__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-red);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.hormuz-pull__context {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.hormuz-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(92, 74, 46, 0.15);
  margin-bottom: 1.5rem;
}

.hormuz-stat {
  background: var(--bg-surface);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hormuz-stat__val {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-red);
}

.hormuz-stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.hormuz-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-left: 2px solid rgba(245, 166, 35, 0.3);
  padding-left: 1rem;
}

/* ─── SECTION 9: LABOR ─── */
.labor-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid rgba(92, 74, 46, 0.2);
  border-bottom: 1px solid rgba(92, 74, 46, 0.2);
  margin-bottom: 2rem;
}

.labor-block__number {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.labor-block__val {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
}

.labor-block__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 120px;
}

.labor-context-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(92, 74, 46, 0.12);
}

.labor-context-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 140px;
}

.labor-context-val {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.labor-context-badge {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.labor-context-badge--beat {
  background: var(--accent-green-dim);
  color: var(--accent-green);
  border: 1px solid rgba(92, 184, 139, 0.2);
}

.labor-context-badge--warn {
  background: var(--accent-red-dim);
  color: var(--accent-red);
  border: 1px solid rgba(224, 92, 58, 0.2);
}

.labor-context-badge:not(.labor-context-badge--beat):not(.labor-context-badge--warn) {
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid rgba(92, 74, 46, 0.2);
}

.labor-block__note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─── SECTION 10: BITCOIN ─── */
.btc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 2.5rem 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
}

.btc-price {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.btc-change {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.btc-change--up { color: var(--accent-green); }

.btc-range-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.btc-range {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btc-range__low,
.btc-range__high {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.btc-range__track {
  flex: 1;
  height: 6px;
  background: rgba(92, 74, 46, 0.2);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.btc-range__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-green));
  border-radius: 3px;
  transition: width 1.2s var(--ease-out-expo);
}

.btc-range__cursor {
  position: absolute;
  top: -2px;
  width: 10px;
  height: 10px;
  background: var(--text-primary);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: left 1.2s var(--ease-out-expo);
}

.btc-etf-header {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.btc-etf-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(92, 74, 46, 0.15);
}

.btc-etf-val {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.btc-etf-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btc-note {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── SECTION 11: YIELD GRID ─── */
.yield-grid {
  border: 1px solid rgba(92, 74, 46, 0.2);
  margin-bottom: 2rem;
  font-family: var(--font-mono);
}

.yield-grid__head,
.yield-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 1fr;
}

.yield-grid__head {
  background: var(--bg-elevated);
  border-bottom: 1px solid rgba(92, 74, 46, 0.2);
}

.yield-col {
  padding: 0.85rem 1.25rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-right: 1px solid rgba(92, 74, 46, 0.15);
}

.yield-col:last-child { border-right: none; }

.yield-col--label { color: var(--text-secondary); font-weight: 700; }
.yield-col--hot { color: var(--accent-red); }
.yield-col--cool { color: var(--accent-green); }

.yield-row {
  border-bottom: 1px solid rgba(92, 74, 46, 0.1);
}

.yield-row--emphasis { background: var(--bg-surface); }

.yield-col--now {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.yield-row .yield-col--hot {
  color: var(--accent-red);
  opacity: 0.8;
  font-size: 0.8rem;
}

.yield-row .yield-col--cool {
  color: var(--accent-green);
  opacity: 0.8;
  font-size: 0.8rem;
}

/* ─── FOOTER ─── */
.site-footer {
  text-align: center;
  padding: 5rem 2rem calc(3rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(92, 74, 46, 0.2);
  margin-top: 3rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.site-footer__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: footerPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes footerPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(92, 184, 139, 0.4); }
  50% { opacity: 0.7; transform: scale(0.85); box-shadow: 0 0 0 6px rgba(92, 184, 139, 0); }
}

.site-footer__regen {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.site-footer__session {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  opacity: 0.75;
}

.site-footer__timestamp {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.source {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid rgba(92, 74, 46, 0.25);
  padding: 0.6rem 1.2rem;
  min-height: 44px;
  transition: color 0.2s, border-color 0.2s;
}

.source:hover {
  color: var(--accent-gold);
  border-color: rgba(245, 166, 35, 0.35);
}

/* ─── REVEAL ANIMATIONS (pre-animated state) ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
}

.reveal-hero {
  opacity: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .section { padding: 4rem 1.25rem; }

  .iran-counter-row { grid-template-columns: 1fr 1fr; }

  .oracle-block { grid-template-columns: 1fr; gap: 2rem; }
  .oracle-substat-row { grid-template-columns: 1fr 1fr; }

  .fed-minimal { grid-template-columns: 1fr; gap: 2rem; }

  .hormuz-layout { grid-template-columns: 1fr; gap: 2rem; }

  .btc-row { grid-template-columns: 1fr; gap: 2rem; }

  .cpi-scenarios { grid-template-columns: 1fr; }

  .asia-bar__track { width: 100px; }
  .asia-bar--highlight .asia-bar__track { width: 120px; }

  .oil-timeline { flex-direction: column; }
  .oil-connector { flex-direction: row; }
  .oil-connector span { writing-mode: horizontal-tb; }

  .labor-block { grid-template-columns: 1fr; gap: 2rem; }

  .yield-grid__head,
  .yield-row { grid-template-columns: 60px 1fr 1fr 1fr; }
  .yield-col { padding: 0.65rem 0.75rem; font-size: 0.55rem; }

  .hero__stat-bar { gap: 1px; }
  .hero__stat { min-width: 80px; padding: 0.6rem 0.75rem; }
}

@media (max-width: 480px) {
  .iran-counter-row { grid-template-columns: 1fr 1fr; }
  .hormuz-stats { grid-template-columns: 1fr; }
  .oracle-substat-row { grid-template-columns: 1fr; }

  .hero__big-time {
    font-size: clamp(3.5rem, 22vw, 8rem);
  }

  .yield-grid__head,
  .yield-row {
    grid-template-columns: 48px 1fr 1fr 1fr;
  }

  .quote-wall {
    padding: 2rem 1.25rem 2rem 3rem;
  }

  .quote-wall__mark {
    font-size: 4rem;
    left: 0.25rem;
  }
}
