/* ============================================================
   PARSIMONY NOW — Founder scale systems (urgency-first)
   Distinct from parsimonyerp.com (no shared tokens/layout)
   ============================================================ */

:root {
  --void: #0B0C10;
  --void-2: #11131A;
  --panel: #161922;
  --panel-hot: #1C2030;
  --line: rgba(232, 236, 244, 0.1);
  --line-hot: rgba(255, 77, 46, 0.35);
  --frost: #E8ECF4;
  --frost-dim: #A8B0C4;
  --muted: #6B7388;
  --ember: #FF4D2E;
  --ember-hot: #FF6A52;
  --ember-dim: rgba(255, 77, 46, 0.14);
  --signal: #FFB020;
  --signal-dim: rgba(255, 176, 32, 0.14);
  --mint: #3DFFB5;
  --mint-dim: rgba(61, 255, 181, 0.12);
  --winner-glow: 0 0 0 1px rgba(61, 255, 181, 0.45), 0 24px 80px rgba(61, 255, 181, 0.08);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --max: 1120px;
  --radius: 14px;
  --radius-sm: 8px;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--void);
  color: var(--frost);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Urgency atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(255, 77, 46, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 35% at 100% 30%, rgba(255, 176, 32, 0.08), transparent 50%),
    radial-gradient(ellipse 45% 40% at 0% 70%, rgba(61, 255, 181, 0.05), transparent 50%),
    var(--void);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--mint); text-decoration: none; transition: color 0.15s ease, opacity 0.15s ease; }
a:hover { color: #7fffd0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 0.4em;
  color: var(--frost);
}

p { margin: 0 0 1em; color: var(--frost-dim); }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 0.85rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  max-width: 18ch;
}

.section-lede {
  font-size: 1.1rem;
  max-width: 52ch;
  color: var(--frost-dim);
  margin: 0 0 2rem;
}

section { padding: 5.5rem 0; position: relative; }

/* ---------- ALERT STRIP ---------- */
.alert-strip {
  background: linear-gradient(90deg, #2a0e0a, #3a1408 40%, #2a0e0a);
  border-bottom: 1px solid var(--line-hot);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal);
}
.alert-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  padding: 0.55rem 0;
}
.alert-track span { white-space: nowrap; opacity: 0.9; }
.alert-track .dot { color: var(--ember); margin-right: 0.5rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 12, 16, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--frost);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--frost); }
.brand-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 rgba(255, 77, 46, 0.6);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 46, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(255, 77, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 46, 0); }
}
.brand em {
  font-style: normal;
  color: var(--ember);
  font-weight: 800;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
.nav a {
  color: var(--frost-dim);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a:hover { color: var(--frost); }
.nav-cta {
  background: var(--ember) !important;
  color: #fff !important;
  padding: 0.55rem 1rem !important;
  border-radius: 999px;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
}
.nav-cta:hover { background: var(--ember-hot) !important; color: #fff !important; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--frost);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-ember {
  background: var(--ember);
  color: #fff !important;
  box-shadow: 0 8px 32px rgba(255, 77, 46, 0.35);
}
.btn-ember:hover { background: var(--ember-hot); color: #fff !important; }
.btn-ghost {
  background: transparent;
  color: var(--frost) !important;
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--frost-dim); color: var(--frost) !important; }
.btn-mint {
  background: var(--mint);
  color: #0B0C10 !important;
  font-weight: 700;
}
.btn-mint:hover { background: #6fffc8; color: #0B0C10 !important; }
.btn-lg { padding: 1rem 1.6rem; font-size: 1.02rem; }

/* ---------- HERO ---------- */
.hero {
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  background: var(--signal-dim);
  border: 1px solid rgba(255, 176, 32, 0.35);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero-badge .live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ember);
  animation: pulse 1.5s ease-out infinite;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  max-width: 14ch;
  margin-bottom: 1rem;
}
.hero h1 .slash {
  color: var(--ember);
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 38ch;
  color: var(--frost-dim);
  margin-bottom: 1.75rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-proof strong { color: var(--frost); font-weight: 600; }

/* Crisis card */
.crisis-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.crisis-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--signal), var(--mint));
}
.crisis-card h2 {
  font-size: 1.05rem;
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 1rem;
}
.break-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.break-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.75rem;
  background: var(--void-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--frost-dim);
}
.break-list .icon {
  font-size: 1.1rem;
  line-height: 1.3;
}
.break-list strong {
  display: block;
  color: var(--frost);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* ---------- STATS STRIP ---------- */
.stats {
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: var(--void-2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 1.75rem 1.25rem;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat .n {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--mint);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat .n.ember { color: var(--ember); }
.stat .n.signal { color: var(--signal); }
.stat .l {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- MANIFESTO ---------- */
.manifesto {
  background: linear-gradient(180deg, var(--void) 0%, #120a0a 100%);
}
.manifesto-inner {
  max-width: 720px;
}
.manifesto blockquote {
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--frost);
}
.manifesto blockquote span { color: var(--ember); }
.manifesto p { font-size: 1.05rem; }

/* ---------- STACK BOARD ---------- */
.stack-board .board-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stack-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  -webkit-overflow-scrolling: touch;
}
.stack-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  font-size: 0.9rem;
}
.stack-table th,
.stack-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.stack-table th {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--void-2);
  position: sticky;
  top: 0;
}
.stack-table th.col-win {
  color: var(--mint);
  background: rgba(61, 255, 181, 0.06);
}
.stack-table td.col-win {
  background: rgba(61, 255, 181, 0.04);
  color: var(--frost);
  font-weight: 600;
}
.stack-table tbody tr:hover td { background: rgba(255, 255, 255, 0.02); }
.stack-table tbody tr:hover td.col-win { background: rgba(61, 255, 181, 0.07); }
.stack-table .dim { color: var(--frost-dim); font-weight: 500; width: 22%; }
.pill {
  display: inline-block;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-left: 0.35rem;
  vertical-align: middle;
}
.pill-1 { background: var(--mint-dim); color: var(--mint); border: 1px solid rgba(61, 255, 181, 0.35); }
.pill-2 { background: var(--signal-dim); color: var(--signal); border: 1px solid rgba(255, 176, 32, 0.35); }
.cell-hot { color: var(--mint); }
.cell-mid { color: var(--signal); }
.cell-cold { color: var(--muted); }
.table-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 70ch;
}

/* ---------- RANK CARDS ---------- */
.rank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}
.rank-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.rank-card:hover {
  border-color: rgba(232, 236, 244, 0.2);
  transform: translateY(-2px);
}
.rank-card.win {
  grid-column: 1 / -1;
  border-color: rgba(61, 255, 181, 0.4);
  box-shadow: var(--winner-glow);
  background: linear-gradient(135deg, rgba(61, 255, 181, 0.06), var(--panel) 40%);
}
.rank-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.rank-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.rank-card.win .rank-num { color: var(--mint); }
.rank-card h3 {
  font-size: 1.45rem;
  margin: 0.2rem 0 0;
}
.score-ring {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--frost);
  line-height: 1;
}
.rank-card.win .score-ring { color: var(--mint); }
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.tag {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--void-2);
  border: 1px solid var(--line);
  color: var(--frost-dim);
}
.tag.hot { border-color: rgba(61, 255, 181, 0.35); color: var(--mint); background: var(--mint-dim); }
.tag.warn { border-color: rgba(255, 176, 32, 0.35); color: var(--signal); background: var(--signal-dim); }
.rank-card p { margin: 0; font-size: 0.95rem; flex: 1; }
.check-list, .x-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
}
.check-list li, .x-list li {
  padding: 0.25rem 0 0.25rem 1.35rem;
  position: relative;
  color: var(--frost-dim);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}
.x-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--ember);
  font-weight: 700;
}
.rank-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 0.25rem;
  color: var(--mint);
}
.rank-card.win .rank-link { color: var(--mint); }
.rank-link.external { color: var(--frost-dim); }
.rank-link.external:hover { color: var(--frost); }

/* ---------- CLOCK / URGENCY CTA ---------- */
.clock-section {
  background: var(--panel);
  border-block: 1px solid var(--line);
}
.clock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.clock-visual {
  background: var(--void);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.clock-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.75rem;
}
.clock-digits {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--frost);
  line-height: 1;
}
.clock-digits span { color: var(--ember); }
.clock-sub {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.timeline {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  text-align: left;
}
.timeline li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.timeline li:last-child { border-bottom: none; }
.timeline time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--signal);
  letter-spacing: 0.04em;
}
.timeline span { color: var(--frost-dim); }

/* ---------- PLAYBOOK TEASERS ---------- */
.play-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}
.play-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: inherit;
}
.play-card:hover {
  border-color: rgba(255, 77, 46, 0.4);
  transform: translateY(-2px);
  color: inherit;
}
.play-card .meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
}
.play-card h3 {
  font-size: 1.2rem;
  margin: 0;
}
.play-card p {
  margin: 0;
  font-size: 0.92rem;
  flex: 1;
}
.play-card .more {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--mint);
  margin-top: 0.5rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
}
.faq-item h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 0.5rem;
}
.faq-item p { margin: 0; font-size: 0.95rem; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  text-align: center;
  padding: 5rem 0 6rem;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255, 77, 46, 0.15), transparent 60%),
    var(--void);
  border-top: 1px solid var(--line);
}
.final-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 16ch;
  margin-inline: auto;
  margin-bottom: 0.75rem;
}
.final-cta p {
  max-width: 42ch;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
}
.final-cta .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
  background: var(--void-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--frost);
  margin-bottom: 0.5rem;
}
.footer-brand em { font-style: normal; color: var(--ember); }
.site-footer p { font-size: 0.88rem; color: var(--muted); max-width: 32ch; }
.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li { margin-bottom: 0.4rem; }
.site-footer a { color: var(--frost-dim); font-size: 0.9rem; }
.site-footer a:hover { color: var(--frost); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- ARTICLE PAGES ---------- */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}
.article .eyebrow { margin-top: 0; }
.article h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.article .lede {
  font-size: 1.15rem;
  color: var(--frost-dim);
  margin-bottom: 1.5rem;
}
.article h2 {
  font-size: 1.45rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.article h3 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
}
.article ul, .article ol {
  color: var(--frost-dim);
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}
.article li { margin-bottom: 0.4rem; }
.article a { text-decoration: underline; text-underline-offset: 3px; }
.callout {
  background: var(--ember-dim);
  border: 1px solid var(--line-hot);
  border-left: 3px solid var(--ember);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
  margin: 1.5rem 0;
}
.callout p { margin: 0; color: var(--frost); font-size: 0.98rem; }
.callout.mint {
  background: var(--mint-dim);
  border-color: rgba(61, 255, 181, 0.3);
  border-left-color: var(--mint);
}
.toc {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.toc strong {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.75rem;
}
.toc ol {
  margin: 0;
  padding-left: 1.2rem;
}
.toc a { text-decoration: none; color: var(--frost-dim); }
.toc a:hover { color: var(--mint); }
.article-cta {
  margin-top: 3rem;
  padding: 1.75rem;
  background: var(--panel);
  border: 1px solid rgba(61, 255, 181, 0.35);
  border-radius: var(--radius);
  text-align: center;
}
.article-cta h2 { margin-top: 0; font-size: 1.35rem; }
.article-cta p { margin-bottom: 1.25rem; }

/* Playbook index */
.play-index {
  padding: 3rem 0 5rem;
}
.play-index h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
}

/* 404 */
.not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}
.not-found h1 { font-size: 4rem; color: var(--ember); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-grid,
  .clock-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .rank-grid,
  .play-grid { grid-template-columns: 1fr; }
  .rank-card.win { grid-column: auto; }
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--void-2);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    gap: 0.5rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.65rem 0.5rem; }
  .nav-cta { text-align: center; }
  .header-inner { position: relative; }
}

@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { max-width: none; }
}
