/* ============================================================
   Real Market Color — Closing Bell Edition
   March 17, 2026 · 18:17 EDT · St. Patrick's Day (Evening)
   Design: The Ledger — warm forest editorial on deep green-black.
   A lucky green close on a day loaded with tension.
   Gold at records. Tomorrow is the test.
   ============================================================ */

:root {
  --bg-primary: #050d06;
  --bg-secondary: #080f09;
  --bg-surface: #0d1a0e;
  --bg-elevated: #112014;
  --text-primary: #e6f0e7;
  --text-secondary: #8da990;
  --text-muted: #3d5840;
  --accent-red: #e84545;
  --accent-red-dim: rgba(232, 69, 69, 0.13);
  --accent-green: #2ac96b;
  --accent-green-dim: rgba(42, 201, 107, 0.12);
  --accent-gold: #e8a930;
  --accent-gold-dim: rgba(232, 169, 48, 0.13);
  --accent-teal: #4db89d;
  --accent-amber: #e89c20;
  --glass: rgba(5, 13, 6, 0.94);
  --glass-border: rgba(42, 201, 107, 0.14);
  --glass-highlight: rgba(42, 201, 107, 0.26);
  --rule: rgba(42, 201, 107, 0.07);
  --rule-gold: rgba(232, 169, 48, 0.1);
  --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 ── */
*, *::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;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  overflow-x: hidden;
}

/* Grain noise overlay — subtle texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9998;
}

/* ── Ticker Strip ── */
.ticker-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 46px;
  background: rgba(5, 13, 6, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42, 201, 107, 0.1);
  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;
}

/* ── Common Utilities ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.eyebrow--green  { color: var(--accent-green); }
.eyebrow--red    { color: var(--accent-red); }
.eyebrow--gold   { color: var(--accent-gold); }
.eyebrow--amber  { color: var(--accent-amber); }
.eyebrow--teal   { color: var(--accent-teal); }
.eyebrow--muted  { color: var(--text-muted); }

.sec-hed {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.sec-hed--large { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.sec-hed--sm    { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

.body-text {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 64ch;
}
.body-text + .body-text { margin-top: 1rem; }

.src-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: 2rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(61, 88, 64, 0.4);
  border-radius: 4px;
  min-height: 44px;
  transition: color 0.2s, border-color 0.2s;
}
.src-link:hover { color: var(--accent-green); border-color: var(--accent-green); }
.src-link::before { content: '↗'; font-size: 0.8rem; }

.fade-up { opacity: 0; transform: translateY(30px); }

/* ── Section Layout ── */
.section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 6rem);
  position: relative;
}
.section + .section {
  border-top: 1px solid var(--rule);
}

/* ── HERO: Broadsheet Split Layout ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(46px + env(safe-area-inset-top) + 3rem) clamp(1.5rem, 5vw, 6rem) 3rem;
  overflow: hidden;
  background: var(--bg-primary);
}

/* Diagonal line pattern background */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(42, 201, 107, 0.025) 0px,
      rgba(42, 201, 107, 0.025) 1px,
      transparent 1px,
      transparent 60px
    );
  pointer-events: none;
}

/* Bottom vignette */
.hero-vignette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1500px;
}

/* ── Hero Left: Editorial Headline ── */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-dateline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.hdl-session { color: var(--accent-green); font-weight: 700; }
.hdl-rule { opacity: 0.3; }

.hero-hed {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hh-line {
  display: block;
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.hh-line--1 { color: var(--accent-green); }
.hh-line--2 { color: var(--text-primary); }
.hh-line--3 {
  color: transparent;
  -webkit-text-stroke: 2px var(--text-muted);
}

.hero-deck {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 52ch;
}

/* ── Hero Right: Numbers ── */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.hero-primary-stat {
  padding: 2rem 2.2rem;
  border: 1px solid rgba(42, 201, 107, 0.18);
  border-radius: 8px;
  background: rgba(42, 201, 107, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hps-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hps-number {
  font-family: var(--font-mono);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent-green);
}
.hps-change {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.hps-pct {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
}
.hps-pct--up { color: var(--accent-green); }
.hps-pts {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-index-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
}
.hir-item {
  padding: 0.9rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  background: var(--bg-surface);
}
.hir-divider {
  width: 1px;
  height: 100%;
  background: var(--rule);
}
.hir-name {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hir-val {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 700;
  color: var(--text-primary);
}
.hir-chg {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
}
.hir-chg--up   { color: var(--accent-green); }
.hir-chg--down { color: var(--accent-red); }

.hero-fomc-alert {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.2rem;
  background: rgba(232, 169, 48, 0.06);
  border: 1px solid rgba(232, 169, 48, 0.2);
  border-radius: 4px;
  min-height: 44px;
}
.hfa-icon {
  color: var(--accent-amber);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.hfa-text {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-amber);
  text-transform: uppercase;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  opacity: 0.35;
  animation: scrollBob 2.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.25; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.45; }
}

/* ── Section 01: Lululemon Miss ── */
.s-lulu { background: var(--bg-secondary); }

.lulu-wrap { max-width: 1300px; }

.lulu-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
  margin-top: 2rem;
}

.lulu-impact-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem;
  background: rgba(232, 69, 69, 0.05);
  border: 1px solid rgba(232, 69, 69, 0.18);
  border-radius: 8px;
}
.lic-ticker {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-red);
  opacity: 0.8;
}
.lic-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.lic-eps-delta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}
.led-year {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.led-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.led-val {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.led-val--old { color: var(--text-muted); text-decoration: line-through; }
.led-val--new { color: var(--accent-red); }
.led-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.led-arrow {
  font-size: 1.5rem;
  color: var(--accent-red);
  text-align: center;
  opacity: 0.6;
}

.lic-margin-hit {
  padding: 0.9rem 1rem;
  background: rgba(232, 69, 69, 0.08);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.lmh-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.lmh-val {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-red);
}
.lmh-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.lulu-analysis-col { display: flex; flex-direction: column; gap: 1rem; }

.lulu-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.5rem;
}
.lmg-item {
  padding: 0.9rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--rule);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-left: 2px solid var(--rule);
}
.lmg-item--up   { border-left-color: var(--accent-green); }
.lmg-item--down { border-left-color: var(--accent-red); }
.lmg-item--warn { border-left-color: var(--accent-gold); }
.lmg-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.lmg-val {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.lmg-item--up .lmg-val   { color: var(--accent-green); }
.lmg-item--down .lmg-val { color: var(--accent-red); }
.lmg-item--warn .lmg-val { color: var(--accent-gold); }
.lmg-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ── Section 02: The Ledger ── */
.s-ledger { background: var(--bg-primary); }

.ledger-wrap { max-width: 1400px; }

.ledger-table {
  margin-top: 2.5rem;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--font-mono);
}

.lt-header {
  display: grid;
  grid-template-columns: 18rem 8rem 7rem 1fr;
  gap: 0;
  padding: 0.6rem 1.4rem;
  background: rgba(42, 201, 107, 0.05);
  border-bottom: 1px solid var(--rule);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lt-row {
  display: grid;
  grid-template-columns: 18rem 8rem 7rem 1fr;
  gap: 0;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  min-height: 56px;
  transition: background 0.15s;
}
.lt-row:last-child { border-bottom: none; }
.lt-row:hover { background: rgba(42, 201, 107, 0.025); }

.lt-asset {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.lt-ticker {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-green);
  min-width: 4.5rem;
}
.lt-name {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-weight: 400;
}
.lt-close {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}
.lt-day {
  font-size: 0.85rem;
  font-weight: 700;
}
.lt-day--up   { color: var(--accent-green); }
.lt-day--down { color: var(--accent-red); }
.lt-day--flat { color: var(--text-muted); }
.lt-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  font-family: var(--font-sans);
  font-weight: 400;
  padding-left: 1rem;
}
.lt-h-day, .lt-h-note { padding-left: 0; }

/* ── Section 03: Tomorrow's Convergence ── */
.s-tomorrow { background: var(--bg-secondary); }

.tomorrow-wrap { max-width: 1300px; }

.tomorrow-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
  margin-top: 2.5rem;
}

.ts-hed-col { display: flex; flex-direction: column; gap: 1.5rem; }

.ts-events-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tse-card {
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}
.tse-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.tse-card--fomc { background: rgba(232, 169, 48, 0.04); }
.tse-card--fomc::before { background: linear-gradient(90deg, var(--accent-amber), transparent); }
.tse-card--mu   { background: rgba(42, 201, 107, 0.03); }
.tse-card--mu::before   { background: linear-gradient(90deg, var(--accent-green), transparent); }

.tsec-time {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tse-card--fomc .tsec-time { color: var(--accent-amber); }
.tse-card--mu   .tsec-time { color: var(--accent-green); }

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

.tsec-event {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
}

.tsec-divider {
  height: 1px;
  background: var(--rule);
  margin: 0.4rem 0;
}

.tsec-detail {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.tsed-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}
.tsed-key { color: var(--text-muted); }
.tsed-val { font-weight: 600; color: var(--text-primary); }
.tsed-val--neutral { color: var(--text-secondary); }
.tsed-val--warn    { color: var(--accent-amber); }
.tsed-val--hot     { color: var(--accent-gold); font-weight: 700; }
.tsed-val--green   { color: var(--accent-green); }

.tsec-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--rule);
  padding-top: 0.7rem;
  margin-top: 0.3rem;
}

/* ── Section 04: Oil ── */
.s-oil { background: var(--bg-primary); }

.oil-wrap { max-width: 1200px; }

.oil-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 2rem;
}

.oil-number-block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 240px;
}

.onb-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.onb-price {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent-red);
}
.onb-brent {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
}
.onb-math {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 1.2rem 1.4rem;
  background: rgba(232, 69, 69, 0.05);
  border: 1px solid rgba(232, 69, 69, 0.15);
  border-radius: 6px;
}
.onb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}
.onb-mkey { color: var(--text-muted); }
.onb-mval { font-weight: 700; color: var(--text-primary); }
.onb-mval--warn  { color: var(--accent-gold); }
.onb-mval--red   { color: var(--accent-red); }
.onb-divider-rule { height: 1px; background: rgba(232, 69, 69, 0.2); }
.onb-row--total .onb-mkey { color: var(--text-secondary); font-weight: 600; }

.oil-story-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Section 05: Airlines ── */
.s-airlines { background: var(--bg-secondary); }

.airlines-wrap { max-width: 1200px; }

.airlines-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 2rem;
}
.al-copy { display: flex; flex-direction: column; gap: 1rem; }

.al-bars {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.alb-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.alb-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.alb-left { display: flex; align-items: baseline; gap: 0.5rem; }
.alb-ticker {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-green);
}
.alb-name {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.alb-pct {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
}
.alb-pct--up   { color: var(--accent-green); }
.alb-pct--down { color: var(--accent-red); }

.alb-track {
  height: 5px;
  background: rgba(42, 201, 107, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.alb-fill {
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-green), rgba(42, 201, 107, 0.45));
  transition: width 1.5s var(--ease-out-expo);
}
.alb-fill--teal {
  background: linear-gradient(90deg, var(--accent-teal), rgba(77, 184, 157, 0.45));
}
.alb-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Section 06: Gold Record ── */
.s-gold { background: var(--bg-primary); }

.gold-wrap { max-width: 1200px; }

.gold-centerpiece {
  text-align: center;
  margin: 2.5rem auto;
  max-width: 600px;
}
.gc-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.gc-price {
  font-family: var(--font-mono);
  font-size: clamp(4.5rem, 14vw, 9rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--accent-gold);
  text-shadow: 0 0 80px rgba(232, 169, 48, 0.25);
}
.gc-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0.6;
  margin-top: 0.6rem;
}

.gold-two-col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule-gold);
}
.g2c-left {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.g2c-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--rule-gold);
}
.g2c-stat:last-child { border-bottom: none; padding-bottom: 0; }
.g2c-key {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.g2c-val {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}
.g2c-val--gold { color: var(--accent-gold); }

.g2c-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.g2c-quote {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
  border-left: 3px solid rgba(232, 169, 48, 0.35);
  padding-left: 1.5rem;
  max-width: 54ch;
}
.g2c-attr {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ── Section 07: Bitcoin ── */
.s-btc { background: var(--bg-secondary); }

.btc-wrap { max-width: 1200px; }

.btc-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 2rem;
}

/* Vertical price range bar */
.btc-range-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  min-width: 120px;
}
.brv-top, .brv-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.brv-mark {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}
.brv-mark--high { color: var(--accent-green); }
.brv-mark--low  { color: var(--text-muted); }
.brv-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.brv-bar {
  position: relative;
  width: 6px;
  height: 180px;
  background: rgba(42, 201, 107, 0.1);
  border-radius: 3px;
  overflow: visible;
}
.brv-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, var(--accent-green), rgba(42, 201, 107, 0.4));
  border-radius: 3px;
  transition: height 1.8s var(--ease-out-expo);
}
.brv-close-marker {
  position: absolute;
  right: 12px;
  bottom: calc(92% - 2px);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.brv-close-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--accent-gold);
  white-space: nowrap;
}

.btc-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btc-fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  margin: 0.5rem 0;
}
.bfs-item {
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-right: 1px solid var(--rule);
  background: var(--bg-surface);
}
.bfs-item:last-child { border-right: none; }
.bfs-k {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.bfs-v {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}
.bfs-v--green { color: var(--accent-green); }
.bfs-v--gold  { color: var(--accent-gold); }
.bfs-v--red   { color: var(--accent-red); }

/* ── Section 08: Eli Lilly ── */
.s-lly { background: var(--bg-primary); }

.lly-wrap { max-width: 1200px; }

.lly-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
  margin-top: 2rem;
}

.lly-left {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 2rem;
  background: rgba(232, 69, 69, 0.05);
  border: 1px solid rgba(232, 69, 69, 0.18);
  border-radius: 8px;
  text-align: center;
}
.lly-ticker-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-red);
  opacity: 0.7;
}
.lly-big-change {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--accent-red);
  line-height: 1;
  letter-spacing: -0.03em;
}
.lly-price-context {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.lly-target-shift {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: rgba(232, 69, 69, 0.06);
  border-radius: 4px;
  margin-top: 0.4rem;
}
.lts-old, .lts-new {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.lts-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.lts-val {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 800;
}
.lts-val--old { color: var(--text-muted); text-decoration: line-through; }
.lts-val--new { color: var(--accent-red); }
.lts-arrow { font-family: var(--font-mono); font-size: 1rem; color: var(--text-muted); }
.lly-prior-close {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.lly-right { display: flex; flex-direction: column; gap: 1rem; }

.lly-debate {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.lld-side {
  flex: 1;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.lld-side--bull { background: rgba(42, 201, 107, 0.04); }
.lld-side--bear { background: rgba(232, 69, 69, 0.04); }
.lld-header {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.lld-side--bull .lld-header { color: var(--accent-green); }
.lld-side--bear .lld-header { color: var(--accent-red); }
.lld-market {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1;
}
.lld-side--bull .lld-market { color: var(--accent-green); }
.lld-side--bear .lld-market { color: var(--accent-red); }
.lld-sub { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }
.lld-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-surface);
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  white-space: nowrap;
}

/* ── Section 09: Nvidia ── */
.s-nvda { background: var(--bg-secondary); }

.nvda-wrap { max-width: 1200px; }

.nvda-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 2rem;
}
.nvda-quote-col { display: flex; flex-direction: column; gap: 1.5rem; }
.nvda-data-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}
.ndc-item {
  padding: 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.ndc-item:last-child { border-bottom: none; }
.ndc-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
}
.ndc-item--announced::before { background: var(--accent-green); }
.ndc-item--reaction::before  { background: var(--text-muted); }
.ndc-item--analyst::before   { background: var(--accent-teal); }
.ndc-item--announced { background: rgba(42, 201, 107, 0.03); }
.ndc-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ndc-item--announced .ndc-tag { color: var(--accent-green); }
.ndc-item--analyst   .ndc-tag { color: var(--accent-teal); }
.ndc-val {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.ndc-item--announced .ndc-val { color: var(--accent-green); }
.ndc-item--reaction  .ndc-val { color: var(--text-secondary); }
.ndc-item--analyst   .ndc-val { color: var(--accent-teal); }
.ndc-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Section 10: Evening Analysis ── */
.s-analysis { background: var(--bg-primary); }

.analysis-wrap { max-width: 1100px; }

.anw-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.anw-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.anw-hed-col {
  position: sticky;
  top: calc(46px + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.anw-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
.anw-headline em {
  font-style: italic;
  color: var(--accent-green);
}
.anw-byline {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.anw-body-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.anw-body-col p {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.78;
  color: var(--text-secondary);
}

/* ── Footer ── */
.site-footer {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 6rem);
  padding-bottom: calc(clamp(3rem, 6vw, 5rem) + env(safe-area-inset-bottom));
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-footer__pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 0 rgba(42, 201, 107, 0.4);
  animation: fpulse 2.5s ease-in-out infinite;
}
@keyframes fpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(42, 201, 107, 0.4); }
  50%       { box-shadow: 0 0 0 7px rgba(42, 201, 107, 0); }
}
.site-footer__regen {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 38ch;
}
.site-footer__session {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-green);
}
.site-footer__timestamp {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.site-footer .source {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--rule);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  min-height: 44px;
  letter-spacing: 0.06em;
  transition: color 0.2s, border-color 0.2s;
}
.site-footer .source:hover { color: var(--accent-green); border-color: var(--accent-green); }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hh-line { font-size: clamp(4rem, 12vw, 8rem); }
  .hero-index-row {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  }
  .lt-header, .lt-row {
    grid-template-columns: 14rem 7rem 6rem 1fr;
  }
  .anw-layout { grid-template-columns: 1fr; gap: 2rem; }
  .anw-hed-col { position: static; }
}

@media (max-width: 1000px) {
  .lulu-layout   { grid-template-columns: 1fr; gap: 2.5rem; }
  .tomorrow-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .oil-layout    { grid-template-columns: 1fr; gap: 2.5rem; }
  .airlines-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .gold-two-col  { grid-template-columns: 1fr; gap: 2rem; }
  .btc-layout    { grid-template-columns: 1fr; gap: 2rem; }
  .lly-layout    { grid-template-columns: 1fr; gap: 2rem; }
  .nvda-layout   { grid-template-columns: 1fr; gap: 2rem; }
  .btc-range-visual { flex-direction: row; min-width: unset; }
  .brv-bar { width: 180px; height: 6px; }
  .brv-fill { height: 100%; width: 0; bottom: 0; top: 0; }
}

@media (max-width: 768px) {
  .hero-index-row {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .hir-divider { display: none; }
  .hir-item:nth-child(2n) { border-left: 1px solid var(--rule); }
  .hir-item:nth-child(n+3) { border-top: 1px solid var(--rule); }
  .lulu-metrics-grid { grid-template-columns: 1fr; }
  .btc-fact-strip { grid-template-columns: 1fr 1fr; }
  .bfs-item:nth-child(2n) { border-right: none; }
  .bfs-item:nth-child(n+3) { border-top: 1px solid var(--rule); }
  .lt-header, .lt-row { grid-template-columns: 12rem 6rem 5rem; }
  .lt-h-note, .lt-note { display: none; }
}

@media (max-width: 480px) {
  .hero-fomc-alert { flex-direction: column; gap: 0.4rem; }
  .hfa-text { font-size: 0.58rem; }
  .lt-header, .lt-row { grid-template-columns: 1fr 5.5rem 4.5rem; }
  .lt-h-day, .lt-day { font-size: 0.78rem; }
  .lly-target-shift { flex-direction: column; gap: 0.8rem; }
  .lld-vs { padding: 0.5rem; border: none; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .lly-debate { flex-direction: column; }
  .btc-fact-strip { grid-template-columns: 1fr; }
  .bfs-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .bfs-item:last-child { border-bottom: none; }
  .gc-price { font-size: clamp(3.5rem, 18vw, 6rem); }
}
