/* ============================================================
   REAL MARKET COLOR — PRE-MARKET DAWN — MARCH 12, 2026 — 06:00 EDT
   Palette: Pre-dawn navy depths bleeding into amber horizon light
   Mood: Quiet gravity of a war economy waking — before the chaos of open
   Layout: Editorial morning brief — vast typography, open air, amber dawn
   ============================================================ */

:root {
  --bg-primary: #030710;
  --bg-secondary: #060e1c;
  --bg-surface: #0a1525;
  --bg-elevated: #0f1e35;
  --text-primary: #dde8f4;
  --text-secondary: #6e8aaa;
  --text-muted: #253650;
  --accent-red: #e83a3a;
  --accent-red-dim: rgba(232, 58, 58, 0.08);
  --accent-green: #1ecf72;
  --accent-green-dim: rgba(30, 207, 114, 0.07);
  --accent-gold: #f0a020;
  --accent-gold-dim: rgba(240, 160, 32, 0.08);
  --accent-blue: #5fa8e8;
  --accent-blue-dim: rgba(95, 168, 232, 0.08);
  --glass: rgba(3, 7, 16, 0.96);
  --glass-border: rgba(240, 160, 32, 0.08);
  --glass-highlight: rgba(240, 160, 32, 0.14);
  --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.85' 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(3, 7, 16, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(240, 160, 32, 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 — PRE-DAWN HORIZON ─── */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(46px + env(safe-area-inset-top));
  overflow: hidden;
}

.hero__sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 40% at 50% 105%, rgba(240, 120, 10, 0.22) 0%, rgba(200, 80, 10, 0.10) 35%, transparent 65%),
    radial-gradient(ellipse 80% 30% at 50% 100%, rgba(240, 160, 32, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(95, 168, 232, 0.04) 0%, transparent 60%),
    linear-gradient(to bottom, #030710 0%, #060e1c 70%, #0c1a30 100%);
}

/* The amber horizon line */
.hero__horizon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(240, 130, 20, 0.4) 20%, rgba(240, 160, 32, 0.7) 50%, rgba(240, 130, 20, 0.4) 80%, transparent 100%);
  z-index: 2;
  opacity: 0;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 2rem max(2rem, 4vw) 0;
}

.hero__session-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: clamp(0.5rem, 0.85vw, 0.65rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0;
  margin-bottom: 2rem;
}

.hero__session-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-gold);
  animation: dawnPulse 2.5s ease-in-out infinite;
}

@keyframes dawnPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(240, 160, 32, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(240, 160, 32, 0); }
}

.hero__title {
  font-size: clamp(4rem, 16vw, 14rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--text-primary);
  opacity: 0;
  margin-bottom: 1.5rem;
}

.hero__title span {
  display: block;
}

.hero__title .hero__title-accent {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(240, 160, 32, 0.5);
}

.hero__subtitle {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 1.4vw, 0.95rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero__lead-stat {
  opacity: 0;
  margin-bottom: 2rem;
}

.hero__lead-stat-label {
  font-family: var(--font-mono);
  font-size: clamp(0.5rem, 0.8vw, 0.62rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.hero__lead-stat-value {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent-red);
}

.hero__lead-stat-delta {
  font-family: var(--font-mono);
  font-size: clamp(0.8rem, 1.6vw, 1.1rem);
  font-weight: 600;
  color: var(--accent-red);
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__lead-stat-delta::before {
  content: '▲';
  font-size: 0.75em;
  animation: riseFlicker 2s ease-in-out infinite;
}

@keyframes riseFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Futures strip at bottom of hero */
.hero__futures-strip {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(240, 160, 32, 0.1);
  opacity: 0;
}

.hero__fut-cell {
  flex: 1;
  min-width: 110px;
  padding: 1.1rem 1.5rem;
  border-right: 1px solid rgba(240, 160, 32, 0.06);
  background: rgba(3, 7, 16, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__fut-cell:last-child { border-right: none; }

.hero__fut-label {
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  display: block;
}

.hero__fut-val {
  font-family: var(--font-mono);
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  font-weight: 700;
  display: block;
}

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

/* ─── SECTION BASE ─── */
.section {
  opacity: 0;
  transform: translateY(20px);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-inner--narrow { max-width: 740px; }
.section-inner--wide { max-width: 1300px; }

.section--dark { background: var(--bg-secondary); }
.section--surface { background: var(--bg-surface); }
.section--elevated { background: var(--bg-elevated); }

.s-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.s-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.s-eyebrow--gold { color: var(--accent-gold); opacity: 0.8; }
.s-eyebrow--red { color: var(--accent-red); opacity: 0.8; }
.s-eyebrow--green { color: var(--accent-green); opacity: 0.8; }
.s-eyebrow--blue { color: var(--accent-blue); opacity: 0.8; }

.s-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.s-headline--xl {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.0;
}

.s-body {
  font-size: clamp(0.95rem, 1.4vw, 1.07rem);
  color: var(--text-secondary);
  line-height: 1.8;
}

.s-body p + p { margin-top: 1.2em; }
.s-body strong { color: var(--text-primary); font-weight: 600; }
.s-body em { color: var(--accent-gold); font-style: normal; }

.s-divider {
  width: 100%;
  height: 1px;
  background: rgba(37, 54, 80, 0.6);
  margin-bottom: 3rem;
}

.s-divider--gold { background: rgba(240, 160, 32, 0.15); }
.s-divider--red { background: rgba(232, 58, 58, 0.15); }

.cite {
  display: inline-flex;
  align-items: center;
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 54, 80, 0.5);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  min-height: 44px;
  line-height: 44px;
}

.cite:hover {
  color: var(--accent-gold);
  border-color: rgba(240, 160, 32, 0.35);
}

/* ─── SECTION 1: MORNING SNAPSHOT — Asymmetric wide grid ─── */
.morning-snapshot {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}

.ms-label-col {
  position: sticky;
  top: calc(46px + 2rem);
}

.ms-session-block {
  margin-bottom: 3rem;
}

.ms-session-name {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.ms-session-detail {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
}

.ms-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(240, 160, 32, 0.4), transparent);
  margin: 1.5rem 0;
}

.ms-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Right column: 5 stat rows */
.ms-stats-col {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(37, 54, 80, 0.15);
}

.ms-stat-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  background: var(--bg-surface);
  padding: 1.5rem 2rem;
  border-left: 2px solid transparent;
  transition: background 0.15s;
}

.ms-stat-row:hover { background: var(--bg-elevated); }

.ms-stat-row--oil { border-left-color: var(--accent-red); }
.ms-stat-row--gold { border-left-color: var(--accent-gold); }
.ms-stat-row--spx { border-left-color: var(--accent-blue); }
.ms-stat-row--fed { border-left-color: rgba(37, 54, 80, 0.6); }
.ms-stat-row--vix { border-left-color: rgba(232, 58, 58, 0.4); }

.ms-stat-name {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.ms-stat-headline {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.ms-stat-note {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

.ms-stat-val {
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 800;
  white-space: nowrap;
  text-align: right;
}

.ms-stat-val--red { color: var(--accent-red); }
.ms-stat-val--gold { color: var(--accent-gold); }
.ms-stat-val--blue { color: var(--accent-blue); }
.ms-stat-val--dim { color: var(--text-secondary); }

/* ─── SECTION 2: OIL STAIRCASE — price journey ─── */
.oil-journey {
  display: flex;
  align-items: flex-end;
  gap: 0;
  height: 240px;
  border-bottom: 1px solid rgba(37, 54, 80, 0.4);
  margin-bottom: 2.5rem;
  overflow-x: auto;
}

.oj-step {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 1px;
  position: relative;
}

.oj-bar {
  background: linear-gradient(to top, rgba(232, 58, 58, 0.6), rgba(232, 58, 58, 0.2));
  border-top: 2px solid var(--accent-red);
  border-radius: 2px 2px 0 0;
  transition: height 1.5s var(--ease-out-expo);
  height: 0;
  position: relative;
}

.oj-step--peak .oj-bar {
  background: linear-gradient(to top, rgba(232, 58, 58, 0.8), rgba(232, 58, 58, 0.3));
  border-top-color: var(--accent-red);
}

.oj-step--threat .oj-bar {
  background: linear-gradient(to top, rgba(240, 160, 32, 0.15), transparent);
  border-top: 2px dashed rgba(240, 160, 32, 0.4);
}

.oj-price {
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 1.5vw, 0.95rem);
  font-weight: 800;
  color: var(--accent-red);
  text-align: center;
  padding: 0.35rem 0.5rem;
  white-space: nowrap;
}

.oj-step--threat .oj-price { color: var(--accent-gold); }

.oj-label {
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding: 0.5rem 0.25rem 0;
  line-height: 1.4;
}

/* ─── SECTION 3: BLOCKADE EDITORIAL — editorial pull-quote layout ─── */
.blockade-editorial {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 6rem;
  align-items: start;
}

.be-quote-zone {
  padding: 4rem 0;
}

.be-giant-symbol {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(8rem, 20vw, 18rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 58, 58, 0.2);
  user-select: none;
  margin-bottom: -2rem;
  position: relative;
  z-index: 0;
}

.be-quote {
  position: relative;
  z-index: 1;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.be-attr {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-red);
  opacity: 0.65;
}

.be-sidebar {
  border-left: 1px solid rgba(37, 54, 80, 0.5);
  padding-left: 3rem;
  padding-top: 2rem;
}

.be-sidebar-stat {
  margin-bottom: 2.5rem;
}

.be-sidebar-stat:last-child { margin-bottom: 0; }

.be-sidebar-label {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.be-sidebar-val {
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

.be-sidebar-sub {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
  line-height: 1.5;
}

/* ─── SECTION 4: CPI SPLIT — before/after with annotation ─── */
.cpi-compare {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: stretch;
  gap: 0;
  margin-bottom: 2.5rem;
}

.cpi-panel {
  padding: 3rem 2.5rem;
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cpi-panel--future { background: var(--bg-elevated); }

.cpi-era {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cpi-big {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.cpi-big--clean { color: var(--accent-green); }
.cpi-big--warning { color: var(--accent-red); }

.cpi-note {
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  color: var(--text-secondary);
  line-height: 1.65;
}

.cpi-components {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(37, 54, 80, 0.2);
  margin-top: 0.5rem;
}

.cpi-comp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-primary);
  padding: 0.65rem 0.9rem;
}

.cpi-comp-row--elevated { background: var(--bg-secondary); }

.cpi-comp-key {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.cpi-comp-val--up { color: var(--accent-red); }
.cpi-comp-val--ok { color: var(--accent-green); }
.cpi-comp-val--warn { color: var(--accent-gold); }

.cpi-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: var(--bg-secondary);
  border-top: 1px solid rgba(37, 54, 80, 0.3);
  border-bottom: 1px solid rgba(37, 54, 80, 0.3);
}

/* ─── SECTION 5: FOMC COUNTDOWN — ring + timeline ─── */
.fomc-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 5rem;
  align-items: center;
}

.fomc-ring-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.fomc-ring-svg {
  width: 200px;
  height: 200px;
}

.fomc-ring-bg {
  fill: none;
  stroke: rgba(37, 54, 80, 0.4);
  stroke-width: 8;
}

.fomc-ring-fill {
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 502;
  stroke-dashoffset: 502;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 2s var(--ease-out-expo);
}

.fomc-ring-center {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 800;
  fill: var(--accent-gold);
  text-anchor: middle;
  dominant-baseline: middle;
}

.fomc-ring-sub {
  font-family: var(--font-mono);
  font-size: 0.45rem;
  fill: var(--text-muted);
  text-anchor: middle;
  dominant-baseline: middle;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fomc-ring-label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  text-align: center;
  opacity: 0.75;
}

/* FOMC countdown items */
.fomc-timeline {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(37, 54, 80, 0.2);
}

.ft-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-surface);
  padding: 1.1rem 1.5rem;
  border-left: 2px solid transparent;
}

.ft-row--key { border-left-color: var(--accent-gold); }
.ft-row--warn { border-left-color: var(--accent-red); }
.ft-row--note { border-left-color: rgba(37, 54, 80, 0.6); }

.ft-date {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.ft-item-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.ft-item-note {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

/* ─── SECTION 6: GOLD MONOLITH — big number, almost typographic ─── */
.gold-monolith {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.gold-monolith::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(240, 160, 32, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.gm-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0.65;
  margin-bottom: 1.5rem;
}

.gm-number {
  font-family: var(--font-mono);
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--accent-gold);
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.gm-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: clamp(10rem, 35vw, 32rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 160, 32, 0.04);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.gm-caption {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.gm-milestones {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.gm-milestone {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
}

.gm-milestone-val {
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: var(--accent-gold);
}

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

/* ─── SECTION 7: TARIFF TIMELINE — horizontal event cards ─── */
.tariff-chain {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(37, 54, 80, 0.2);
  margin-bottom: 2rem;
}

.tc-card {
  background: var(--bg-surface);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 2px solid transparent;
  transition: background 0.15s;
}

.tc-card:hover { background: var(--bg-elevated); }

.tc-card--past { border-top-color: rgba(37, 54, 80, 0.6); }
.tc-card--current { border-top-color: var(--accent-gold); }
.tc-card--coming { border-top-color: rgba(232, 58, 58, 0.5); }

.tc-date {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tc-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.tc-detail {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.tc-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.46rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  align-self: flex-start;
}

.tc-badge--active { background: rgba(240, 160, 32, 0.12); color: var(--accent-gold); border: 1px solid rgba(240, 160, 32, 0.2); }
.tc-badge--past { background: rgba(37, 54, 80, 0.3); color: var(--text-muted); border: 1px solid rgba(37, 54, 80, 0.4); }
.tc-badge--incoming { background: rgba(232, 58, 58, 0.1); color: var(--accent-red); border: 1px solid rgba(232, 58, 58, 0.2); }

/* ─── SECTION 8: THE GREAT ROTATION — side-by-side comparison ─── */
.rotation-split {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 2rem;
}

.rot-panel {
  padding: 2.5rem 2rem;
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rot-panel--winner { background: var(--bg-elevated); }

.rot-panel-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.rot-index-name {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.rot-big-num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.rot-big-num--up { color: var(--accent-green); }
.rot-big-num--down { color: var(--accent-red); }

.rot-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rot-bar-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.rot-bar-track {
  height: 6px;
  background: rgba(37, 54, 80, 0.4);
  border-radius: 3px;
  overflow: hidden;
}

.rot-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.5s var(--ease-out-expo);
}

.rot-bar-fill--green { background: linear-gradient(90deg, var(--accent-green), rgba(30, 207, 114, 0.5)); }
.rot-bar-fill--red { background: linear-gradient(90deg, var(--accent-red), rgba(232, 58, 58, 0.4)); }
.rot-bar-fill--blue { background: linear-gradient(90deg, var(--accent-blue), rgba(95, 168, 232, 0.4)); }

.rot-stat-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(37, 54, 80, 0.2);
}

.rot-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-primary);
  padding: 0.6rem 0.9rem;
}

.rot-stat-key {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.rot-stat-val {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

.rotation-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-left: 1px solid rgba(37, 54, 80, 0.3);
  border-right: 1px solid rgba(37, 54, 80, 0.3);
}

.rotation-vs-text {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.rotation-context {
  background: var(--bg-surface);
  padding: 2rem;
  border-top: 1px solid rgba(37, 54, 80, 0.3);
}

.rotation-context .s-body { margin: 0; }

/* ─── SECTION 9: JOBS TALLY — compact sector momentum bars ─── */
.jobs-tally-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.jt-big {
  font-family: var(--font-mono);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  color: var(--accent-red);
  line-height: 1;
  letter-spacing: -0.04em;
}

.jt-context {
  flex: 1;
  min-width: 200px;
}

.jt-context-head {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.jt-context-body {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.jobs-bars {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.jb-row {
  display: grid;
  grid-template-columns: 190px 1fr 70px;
  align-items: center;
  gap: 1rem;
}

.jb-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: right;
}

.jb-track {
  height: 9px;
  background: rgba(37, 54, 80, 0.35);
  border-radius: 5px;
  overflow: hidden;
}

.jb-fill {
  height: 100%;
  border-radius: 5px;
  background: var(--accent-red);
  opacity: 0.7;
  transition: width 1.3s var(--ease-out-expo);
}

.jb-fill--large { opacity: 1; }
.jb-fill--small { opacity: 0.4; }

.jb-val {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-red);
  text-align: right;
  white-space: nowrap;
}

/* ─── SECTION 10: ASIA OVERNIGHT — compact signal board ─── */
.asia-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(37, 54, 80, 0.2);
  margin-bottom: 2rem;
}

.ab-cell {
  background: var(--bg-surface);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 2px solid transparent;
  transition: background 0.15s;
}

.ab-cell:hover { background: var(--bg-elevated); }
.ab-cell--hot { border-top-color: var(--accent-red); }
.ab-cell--warm { border-top-color: var(--accent-gold); }
.ab-cell--cool { border-top-color: var(--accent-blue); }
.ab-cell--neutral { border-top-color: rgba(37, 54, 80, 0.5); }

.ab-market {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ab-index {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.ab-change {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.ab-change--down { color: var(--accent-red); }
.ab-change--up { color: var(--accent-green); }
.ab-change--flat { color: var(--text-secondary); }

.ab-note {
  font-size: 0.66rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: 0.2rem;
}

/* ─── SECTION 11: WATCH LIST — what to watch today ─── */
.watch-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(37, 54, 80, 0.2);
  margin-bottom: 2rem;
}

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

.wl-item:hover { background: var(--bg-elevated); }
.wl-item--major { border-left-color: var(--accent-gold); }
.wl-item--watch { border-left-color: var(--accent-blue); }
.wl-item--fed { border-left-color: rgba(37, 54, 80, 0.6); }

.wl-time {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--accent-gold);
  white-space: nowrap;
}

.wl-event {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.wl-note {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

.wl-impact {
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  white-space: nowrap;
  align-self: flex-start;
}

.wl-impact--high { background: rgba(232, 58, 58, 0.12); color: var(--accent-red); border: 1px solid rgba(232, 58, 58, 0.2); }
.wl-impact--med { background: rgba(240, 160, 32, 0.1); color: var(--accent-gold); border: 1px solid rgba(240, 160, 32, 0.18); }
.wl-impact--low { background: rgba(37, 54, 80, 0.3); color: var(--text-muted); border: 1px solid rgba(37, 54, 80, 0.4); }

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

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

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

@keyframes footerPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 207, 114, 0.4); }
  50% { opacity: 0.6; transform: scale(0.8); box-shadow: 0 0 0 5px rgba(30, 207, 114, 0); }
}

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

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

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

.source {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid rgba(37, 54, 80, 0.45);
  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(240, 160, 32, 0.35);
}

/* ─── REVEAL BASE STATES ─── */
.section { opacity: 0; transform: translateY(20px); }
.reveal-hero { opacity: 0; }

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

  .morning-snapshot { grid-template-columns: 1fr; gap: 2rem; }
  .ms-label-col { position: static; }

  .blockade-editorial { grid-template-columns: 1fr; gap: 2rem; }
  .be-sidebar { border-left: none; border-top: 1px solid rgba(37, 54, 80, 0.4); padding-left: 0; padding-top: 2rem; }

  .cpi-compare { grid-template-columns: 1fr; }
  .cpi-arrow { display: none; }

  .fomc-layout { grid-template-columns: 1fr; gap: 3rem; }
  .fomc-ring-wrap { flex-direction: row; justify-content: flex-start; gap: 2rem; align-items: center; }

  .rotation-split { grid-template-columns: 1fr; }
  .rotation-vs { display: none; }
  .rot-panel { padding: 2rem 1.5rem; }

  .jb-row { grid-template-columns: 120px 1fr 60px; }
  .jb-label { font-size: 0.52rem; }

  .wl-item { grid-template-columns: 70px 1fr; }
  .wl-impact { display: none; }

  .oil-journey { height: 180px; }
}

@media (max-width: 480px) {
  .hero__fut-cell { min-width: 50%; }

  .ms-stats-col .ms-stat-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .ms-stat-val { text-align: left; }

  .asia-board { grid-template-columns: 1fr 1fr; }

  .tariff-chain { grid-template-columns: 1fr; }

  .jb-row { grid-template-columns: 90px 1fr 52px; }

  .gm-milestones { gap: 1.5rem; }

  .oil-journey { height: 140px; overflow-x: auto; }
}
