/* =============================================================
   THE READINESS REPORT — Shared Newsletter Styles
   Learnlytica · Light + Dark themes
   ============================================================= */

:root[data-theme="light"] {
  --bg: #f5f4f8; --bg-elev: #ffffff; --bg-soft: #f0ecf6;
  --ink: #111128; --ink-soft: #2d2152; --ink-muted: #6a6a7e;
  --rule: #e0dbe8; --rule-strong: #111128;
  --brand: #8009b3; --brand-deep: #6a0799; --brand-soft: #f3e8fa;
  --brand-glow: rgba(128, 9, 179, 0.12);
  --accent: #a855f7; --accent-soft: #f0e4ff;
  --warn: #d63384;
  --chart-1: #111128; --chart-2: #8009b3; --chart-3: #a855f7; --chart-4: #9b96b3;
  --shadow: 0 1px 0 rgba(17,17,40,0.04), 0 8px 24px -8px rgba(128,9,179,0.10);
}
:root[data-theme="dark"] {
  --bg: #0f0f14; --bg-elev: #1a1a22; --bg-soft: #242430;
  --ink: #ededf2; --ink-soft: #c8c8d6; --ink-muted: #8888a0;
  --rule: rgba(255,255,255,0.09); --rule-strong: #ededf2;
  --brand: #b46efa; --brand-deep: #c98dfc; --brand-soft: rgba(180,110,250,0.14);
  --brand-glow: rgba(180, 110, 250, 0.15);
  --accent: #c98dfc; --accent-soft: rgba(180,110,250,0.10);
  --warn: #f472b6;
  --chart-1: #ededf2; --chart-2: #b46efa; --chart-3: #8840d4; --chart-4: #8888a0;
  --shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 8px 32px -8px rgba(0,0,0,0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
  background-image:
    radial-gradient(ellipse at top right, var(--brand-glow), transparent 50%),
    radial-gradient(ellipse at bottom left, var(--brand-glow), transparent 50%);
  background-attachment: fixed; min-height: 100vh;
}
::selection { background: var(--brand); color: #fff; }
.container { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* TOP BAR */
.topbar {
  position: sticky; top: 0; background: var(--bg);
  border-bottom: 1px solid var(--rule); z-index: 100;
  backdrop-filter: blur(8px); transition: background 0.3s, border-color 0.3s;
}
.topbar-inner {
  max-width: 720px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand-mark { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-logo {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Geist', sans-serif; font-weight: 700; font-size: 16px;
  box-shadow: 0 2px 8px var(--brand-glow);
}
.brand-name { font-family: 'Geist', sans-serif; font-weight: 600; font-size: 15px; }
.brand-name .pub { color: var(--ink-muted); font-weight: 400; margin-left: 6px; }
.topbar-actions { display: flex; align-items: center; gap: 16px; }
.theme-toggle {
  background: none; border: 1px solid var(--rule); color: var(--ink);
  padding: 7px 12px; border-radius: 6px; cursor: pointer;
  font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; display: flex; align-items: center; gap: 6px;
}
.theme-toggle:hover { border-color: var(--ink); background: var(--bg-soft); }
.theme-toggle svg { width: 14px; height: 14px; }
.theme-toggle .icon-dark { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-light { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-dark { display: block; }
.subscribe-btn {
  background: var(--ink); color: var(--bg); border: none;
  padding: 8px 14px; border-radius: 6px;
  font-family: 'Geist', sans-serif; font-weight: 500; font-size: 13px;
  text-decoration: none; transition: all 0.2s;
}
.subscribe-btn:hover { background: var(--brand); }

/* Share button & dropdown */
.share-wrapper { position: relative; }
.share-btn {
  background: none; border: 1px solid var(--rule); color: var(--ink);
  padding: 7px 12px; border-radius: 6px; cursor: pointer;
  font-family: 'Geist', sans-serif; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 6px; transition: all 0.2s;
}
.share-btn:hover { border-color: var(--ink); background: var(--bg-soft); }
.share-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.share-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg-elev); border: 1px solid var(--rule);
  border-radius: 10px; box-shadow: var(--shadow);
  min-width: 200px; z-index: 200; overflow: hidden;
}
.share-dropdown.open { display: block; }
.share-dropdown a, .share-dropdown button {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 10px 16px; border: none; background: none;
  font-family: 'Geist', sans-serif; font-size: 13px;
  color: var(--ink-soft); text-decoration: none; cursor: pointer;
  transition: background 0.15s;
}
.share-dropdown a:hover, .share-dropdown button:hover { background: var(--bg-soft); }
.share-dropdown svg { width: 16px; height: 16px; flex-shrink: 0; }
.share-dropdown .share-sep { height: 1px; background: var(--rule); margin: 0; }
.share-copied {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--brand); padding: 8px 16px; text-align: center; display: none;
}
.share-copied.show { display: block; }

/* MASTHEAD */
.masthead { padding: 64px 0 40px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-soft); color: var(--brand);
  padding: 5px 11px; border-radius: 999px;
  font-family: 'Geist', sans-serif; font-size: 12px; font-weight: 500;
  margin-bottom: 24px;
}
.badge::before { content: ''; width: 6px; height: 6px; background: var(--brand); border-radius: 50%; }
.masthead h1 {
  font-family: 'Instrument Serif', Georgia, serif; font-weight: 400;
  font-size: clamp(44px, 6.5vw, 64px);
  line-height: 1.02; letter-spacing: -0.025em;
  margin-bottom: 18px; color: var(--ink);
}
.masthead h1 em { font-style: italic; color: var(--brand); }
.masthead .standfirst {
  font-family: 'Geist', sans-serif; font-size: 19px;
  line-height: 1.5; color: var(--ink-soft); max-width: 600px;
}
.meta-row {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: 'Geist Mono', monospace; font-size: 12px;
  color: var(--ink-muted); letter-spacing: 0.02em; flex-wrap: wrap;
}
.meta-row .sep { color: var(--rule); }
.meta-row .pill {
  background: var(--bg-soft); color: var(--ink);
  padding: 3px 9px; border-radius: 4px; font-weight: 500;
}
.recap {
  margin: 24px 0 0; padding: 16px 20px;
  background: var(--bg-soft); border-radius: 8px;
  border: 1px solid var(--rule);
  font-family: 'Geist', sans-serif; font-size: 13px;
  color: var(--ink-soft); line-height: 1.55;
}
.recap strong { color: var(--ink); font-weight: 600; }
.recap a { color: var(--brand); text-decoration: none; font-weight: 500; border-bottom: 1px solid transparent; }
.recap a:hover { border-color: var(--brand); }

/* HERO / ARTICLE */
.hero { padding: 56px 0 8px; }
.section-tag {
  display: inline-block;
  font-family: 'Geist Mono', monospace; font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--brand); margin-bottom: 16px;
}
.hero h2, .story h2 {
  font-family: 'Instrument Serif', Georgia, serif; font-weight: 400;
  font-size: clamp(32px, 4.5vw, 42px);
  line-height: 1.12; letter-spacing: -0.018em;
  margin-bottom: 24px; color: var(--ink);
}
.hero p, .story p {
  font-family: 'Geist', sans-serif; font-size: 17px;
  line-height: 1.65; color: var(--ink-soft); margin-bottom: 20px;
}
.hero p strong, .story p strong { color: var(--ink); font-weight: 600; }
.hero p em, .story p em { color: var(--brand); font-style: italic; }

.pull-quote {
  margin: 36px 0; padding: 24px 28px;
  background: var(--bg-soft); border-left: 3px solid var(--brand);
  border-radius: 0 8px 8px 0;
}
.pull-quote q {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px; line-height: 1.4; font-style: italic;
  color: var(--ink); quotes: "\201C" "\201D"; display: block; margin-bottom: 12px;
}
.pull-quote cite {
  font-family: 'Geist Mono', monospace; font-style: normal;
  font-size: 12px; color: var(--ink-muted); letter-spacing: 0.02em;
}

/* BIG STAT */
.big-stat {
  margin: 56px 0; padding: 48px 36px;
  background: var(--bg-elev); border: 1px solid var(--rule);
  border-radius: 16px; box-shadow: var(--shadow);
  text-align: center; position: relative; overflow: hidden;
}
.big-stat::before {
  content: ''; position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  pointer-events: none;
}
.big-stat .stat-label {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--brand); margin-bottom: 12px; position: relative; z-index: 1;
}
.big-stat .stat-number {
  font-family: 'Instrument Serif', Georgia, serif; font-weight: 400;
  font-size: 96px; line-height: 1;
  letter-spacing: -0.04em; color: var(--ink); margin-bottom: 8px;
  position: relative; z-index: 1;
}
.big-stat .stat-number .unit {
  font-family: 'Geist', sans-serif; font-weight: 500; font-size: 38px;
  color: var(--brand); margin-left: 4px; vertical-align: top;
  position: relative; top: 18px;
}
.big-stat .stat-desc {
  font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
  font-size: 18px; color: var(--ink-soft); max-width: 480px;
  margin: 0 auto; line-height: 1.45;
  position: relative; z-index: 1;
}
.big-stat .stat-desc strong { color: var(--ink); font-style: normal; }
.big-stat .stat-source {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  color: var(--ink-muted); margin-top: 16px;
  text-transform: uppercase; letter-spacing: 0.1em;
  position: relative; z-index: 1;
}

/* CHARTS */
.chart-section { padding: 32px 0; }
.chart-figure-label {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--ink-muted); margin-bottom: 10px;
}
.chart-section h3 {
  font-family: 'Instrument Serif', Georgia, serif; font-weight: 400;
  font-size: 26px; line-height: 1.2; letter-spacing: -0.012em;
  margin-bottom: 24px; color: var(--ink); max-width: 540px;
}
.chart-card {
  background: var(--bg-elev); border: 1px solid var(--rule);
  border-radius: 12px; padding: 28px 24px; box-shadow: var(--shadow);
}
.chart-axis { stroke: var(--rule-strong); opacity: 0.4; }
.chart-grid-line { stroke: var(--rule); }
.chart-axis-label { font-family: 'Geist Mono', monospace; font-size: 10px; fill: var(--ink-muted); }
.chart-bar-label { font-family: 'Geist', sans-serif; font-size: 11px; font-weight: 500; fill: var(--ink-soft); }
.chart-value { font-family: 'Geist', sans-serif; font-weight: 600; font-size: 13px; fill: var(--ink); }
.chart-caption {
  font-family: 'Geist', sans-serif; font-size: 13px;
  color: var(--ink-muted); margin-top: 14px; line-height: 1.55;
}
.chart-caption strong { color: var(--ink); font-weight: 600; }
.chart-annotation { font-family: 'Geist Mono', monospace; font-size: 10px; fill: var(--warn); font-weight: 600; }

/* COMPARE CARD */
.compare-card {
  margin: 48px 0; background: var(--bg-elev);
  border: 1px solid var(--rule); border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow);
}
.compare-header {
  padding: 18px 24px; background: var(--bg-soft);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
}
.compare-title { font-family: 'Geist', sans-serif; font-weight: 600; font-size: 14px; }
.compare-tag { font-family: 'Geist Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-muted); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; }
.compare-col { padding: 28px 24px; }
.compare-col.left { border-right: 1px solid var(--rule); }
.compare-col .col-label {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--warn); margin-bottom: 8px; font-weight: 600;
}
.compare-col.right .col-label { color: var(--brand); }
.compare-col h4 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400; font-size: 22px; line-height: 1.2;
  color: var(--ink); margin-bottom: 18px;
}
.compare-col ul { list-style: none; }
.compare-col li {
  font-family: 'Geist', sans-serif; font-size: 14px;
  line-height: 1.5; color: var(--ink-soft);
  padding: 8px 0 8px 22px; position: relative;
  border-bottom: 1px dashed var(--rule);
}
.compare-col li:last-child { border-bottom: none; }
.compare-col.left li::before { content: '\2013'; position: absolute; left: 0; top: 8px; color: var(--warn); font-weight: 600; }
.compare-col.right li::before { content: '\2713'; position: absolute; left: 0; top: 8px; color: var(--brand); font-weight: 700; }

/* LEADER */
.leader {
  margin: 56px 0; background: var(--bg-elev);
  border: 1px solid var(--rule); border-radius: 12px;
  padding: 32px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.leader::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--accent); }
.leader .person { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.leader .avatar {
  width: 52px; height: 52px;
  background: var(--brand); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Geist', sans-serif; font-weight: 600; font-size: 17px; flex-shrink: 0;
}
.leader .name { font-family: 'Geist', sans-serif; font-weight: 600; font-size: 16px; color: var(--ink); }
.leader .role { font-family: 'Geist', sans-serif; font-size: 13px; color: var(--ink-muted); margin-top: 2px; }
.leader q {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px; line-height: 1.4; font-style: italic;
  color: var(--ink); display: block; margin-bottom: 16px; quotes: "\201C" "\201D";
}
.leader .commentary { font-family: 'Geist', sans-serif; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

/* PLAYBOOK */
.playbook {
  margin: 56px 0; border: 1px solid var(--rule-strong);
  border-radius: 12px; padding: 36px;
  background: var(--bg-elev); position: relative;
}
.playbook-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.playbook-icon {
  width: 28px; height: 28px; background: var(--brand); color: #fff;
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-family: 'Geist', sans-serif; font-weight: 600; font-size: 14px;
}
.playbook-tag { font-family: 'Geist Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brand); font-weight: 600; }
.playbook h3 {
  font-family: 'Instrument Serif', Georgia, serif; font-weight: 400;
  font-size: 26px; line-height: 1.2; letter-spacing: -0.012em;
  margin: 12px 0 24px; color: var(--ink);
}
.playbook > p { font-family: 'Geist', sans-serif; font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 24px; }
.playbook ol { list-style: none; counter-reset: step; }
.playbook ol li {
  counter-increment: step;
  padding: 16px 0 16px 42px; position: relative;
  font-family: 'Geist', sans-serif; font-size: 15px;
  line-height: 1.6; color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
}
.playbook ol li:last-child { border-bottom: none; padding-bottom: 0; }
.playbook ol li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 16px;
  font-family: 'Geist Mono', monospace; font-size: 11px; font-weight: 600;
  color: var(--brand); background: var(--brand-soft);
  padding: 3px 7px; border-radius: 4px;
}
.playbook ol li strong { font-family: 'Geist', sans-serif; font-weight: 600; color: var(--ink); }

/* SIGNALS */
.signals-section { padding: 32px 0; }
.signals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.signal {
  background: var(--bg-elev); border: 1px solid var(--rule);
  border-radius: 10px; padding: 20px; transition: all 0.2s;
}
.signal:hover { border-color: var(--ink-muted); transform: translateY(-2px); }
.signal-tag {
  display: inline-block;
  font-family: 'Geist Mono', monospace; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--brand); background: var(--brand-soft);
  padding: 3px 8px; border-radius: 4px; margin-bottom: 10px;
}
.signal h4 { font-family: 'Geist', sans-serif; font-weight: 600; font-size: 15px; line-height: 1.35; color: var(--ink); margin-bottom: 8px; }
.signal p { font-family: 'Geist', sans-serif; font-size: 13px; line-height: 1.55; color: var(--ink-muted); }

/* DASHBOARD (Issue 01) */
.dashboard-card {
  margin: 48px 0; background: var(--bg-elev);
  border: 1px solid var(--rule); border-radius: 12px;
  padding: 28px; box-shadow: var(--shadow);
}
.dashboard-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--rule);
}
.dashboard-title { font-family: 'Geist', sans-serif; font-weight: 600; font-size: 14px; }
.dashboard-tag { font-family: 'Geist Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-muted); }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rule); border-radius: 8px; overflow: hidden;
}
.stat-cell { background: var(--bg-elev); padding: 18px 16px; }
.stat-cell .stat-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400; font-size: 36px; line-height: 1;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 4px;
}
.stat-cell .stat-num .unit {
  font-family: 'Geist', sans-serif; font-weight: 500; font-size: 16px;
  color: var(--brand); margin-left: 1px;
}
.stat-cell .stat-label { font-family: 'Geist', sans-serif; font-size: 11px; color: var(--ink-muted); line-height: 1.4; margin-top: 6px; }
.stat-cell .stat-source {
  font-family: 'Geist Mono', monospace; font-size: 9px;
  color: var(--ink-muted); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* CTA */
.cta {
  margin: 64px 0 48px;
  background: var(--ink); color: var(--bg);
  border-radius: 16px; padding: 48px 40px;
  text-align: left; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute;
  top: -50%; right: -20%; width: 400px; height: 400px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 65%);
  opacity: 0.25; pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 480px; }
.cta-label { font-family: 'Geist Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brand); margin-bottom: 14px; }
.cta h3 {
  font-family: 'Instrument Serif', Georgia, serif; font-weight: 400;
  font-size: 28px; line-height: 1.25; letter-spacing: -0.012em;
  margin-bottom: 14px; color: var(--bg);
}
.cta h3 em { color: var(--brand); font-style: italic; }
.cta p { font-family: 'Geist', sans-serif; font-size: 15px; line-height: 1.55; color: var(--ink-muted); margin-bottom: 24px; }
:root[data-theme="dark"] .cta p { color: rgba(245, 242, 255, 0.7); }
.cta-button {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff; text-decoration: none;
  padding: 12px 22px; border-radius: 8px;
  font-family: 'Geist', sans-serif; font-size: 14px; font-weight: 500;
  transition: all 0.2s;
}
.cta-button:hover { background: #fff; color: var(--ink); }
.cta-button .arrow { transition: transform 0.2s; }
.cta-button:hover .arrow { transform: translateX(3px); }
.cta-secondary { display: inline-block; margin-left: 18px; font-family: 'Geist', sans-serif; font-size: 13px; color: rgba(245, 242, 255, 0.6); }
.cta-secondary a { color: var(--bg); text-decoration: underline; text-decoration-color: rgba(245,242,255,0.3); text-underline-offset: 3px; }

/* FOOTER */
footer { padding: 40px 0; border-top: 1px solid var(--rule); margin-top: 32px; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 32px; }
.footer-brand .brand-mark { margin-bottom: 10px; }
.footer-brand p { font-family: 'Geist', sans-serif; font-size: 13px; color: var(--ink-muted); line-height: 1.5; max-width: 280px; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links-col h5 { font-family: 'Geist Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--ink-muted); margin-bottom: 10px; font-weight: 500; }
.footer-links-col a { display: block; font-family: 'Geist', sans-serif; font-size: 13px; color: var(--ink-soft); text-decoration: none; padding: 3px 0; }
.footer-links-col a:hover { color: var(--brand); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--ink-muted); letter-spacing: 0.02em; }
.footer-bottom a { color: var(--ink-soft); text-decoration: none; }
.footer-bottom a:hover { color: var(--brand); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.masthead, .hero, .compare-card, .chart-section, .big-stat, .leader, .playbook, .signals-section, .cta, .dashboard-card {
  animation: fadeUp 0.7s ease-out backwards;
}
.hero { animation-delay: 0.05s; } .big-stat { animation-delay: 0.1s; } .chart-section { animation-delay: 0.15s; }
.compare-card { animation-delay: 0.2s; } .leader { animation-delay: 0.25s; } .playbook { animation-delay: 0.3s; }
.signals-section { animation-delay: 0.35s; } .cta { animation-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .topbar-inner { padding: 12px 16px; }
  .cta { padding: 36px 24px; }
  .playbook { padding: 28px 20px; }
  .big-stat .stat-number { font-size: 72px; }
  .big-stat { padding: 36px 24px; }
  .signals-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-col.left { border-right: none; border-bottom: 1px solid var(--rule); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
