/* ===== Reset & Variables ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --accent: #FF5C1A;
  --accent-ink: #2a0e00;
  --ink: #0E1116;
  --ink-2: #1a1f24;
  --paper: #F7F4EE;
  --paper-2: #efeae0;
  --line: #1a1f24;
  --muted: #6b7076;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.display {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
}
.mono { font-family: 'JetBrains Mono', monospace; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 18px; letter-spacing: -0.02em;
}
.logo-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--accent); color: var(--paper);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  box-shadow: 2px 2px 0 var(--ink);
}
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 14px; }
.nav-links a { opacity: 0.75; transition: opacity 0.15s; }
.nav-links a:hover { opacity: 1; }
@media (max-width: 760px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  font-weight: 600; font-size: 15px;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.btn-primary:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--ink); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-lg { padding: 18px 30px; font-size: 16px; }
.btn-arrow { font-size: 18px; }

/* ===== Ticker ===== */
.ticker {
  background: var(--ink); color: var(--paper);
  padding: 11px 0; overflow: hidden;
  border-bottom: 1px solid var(--ink);
}
.ticker-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: tick 40s linear infinite;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 12px; }
.ticker-track .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Hero ===== */
.hero {
  padding: 56px 0 80px;
  border-bottom: 1px solid var(--ink);
  position: relative;
}
.container {
  max-width: 1320px; margin: 0 auto; padding: 0 28px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  margin-bottom: 36px;
}
.hero-tag .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 92, 26, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(255, 92, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 92, 26, 0); }
}

h1.hero-h1 {
  font-size: clamp(48px, 9.5vw, 148px);
  margin-bottom: 28px;
  max-width: 1180px;
}
h1.hero-h1 .accent { color: var(--accent); font-style: italic; font-family: 'Space Grotesk', serif; }
h1.hero-h1 .strike { position: relative; display: inline-block; opacity: 0.4; }
h1.hero-h1 .strike::after {
  content: ''; position: absolute; left: -2%; right: -2%; top: 52%;
  height: 6px; background: var(--accent); transform: rotate(-2deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  margin-top: 40px;
  align-items: end;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 28px; } }
.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  max-width: 620px;
  color: var(--ink-2);
}
.hero-sub strong { background: var(--accent); color: var(--accent-ink); padding: 1px 6px; border-radius: 4px; font-weight: 600; }
.hero-cta-row { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.hero-callout {
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 22px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}
.hero-callout .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.hero-callout .big {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 28px; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.hero-callout .small { font-size: 13px; color: var(--muted); line-height: 1.5; }
.hero-callout .big .accent { color: var(--accent); }

/* Hero stage */
.hero-stage {
  margin-top: 56px;
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero-stage-grid {
  max-width: 1320px; margin: 0 auto;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 800px) { .hero-stage-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 20px 24px;
  border-right: 1px solid #2a2f35;
}
.stat:last-child { border-right: none; }
@media (max-width: 800px) { .stat:nth-child(2n) { border-right: none; } .stat:nth-child(-n+2) { border-bottom: 1px solid #2a2f35; } }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.03em; line-height: 1;
  color: var(--accent);
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(247, 244, 238, 0.55);
  margin-top: 10px;
}

/* Arena visual */
.arena {
  height: 380px;
  background: linear-gradient(135deg, #161b21 0%, #0a0d11 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #2a2f35;
}
.arena-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.arena-bot {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px;
}
.arena-bot.b1 { background: var(--accent); color: var(--accent-ink); top: 30%; left: 18%; animation: drift1 6s ease-in-out infinite; }
.arena-bot.b2 { background: #4a8fe8; color: white; top: 55%; left: 38%; animation: drift2 7s ease-in-out infinite; }
.arena-bot.b3 { background: #2dd47a; color: var(--ink); top: 25%; left: 60%; animation: drift3 5.5s ease-in-out infinite; }
.arena-bot.b4 { background: #f7d046; color: var(--ink); top: 60%; left: 75%; animation: drift1 8s ease-in-out infinite reverse; }
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) rotate(-3deg); }
  50% { transform: translate(40px, -20px) rotate(8deg); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) rotate(5deg); }
  50% { transform: translate(-30px, 25px) rotate(-12deg); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, 30px) rotate(15deg); }
}
.arena-caption {
  position: absolute; bottom: 22px; left: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(247, 244, 238, 0.5);
}
.arena-caption .live { color: var(--accent); }
.arena-screams {
  position: absolute; top: 22px; right: 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 14px;
  color: var(--paper);
  text-align: right;
  max-width: 260px; line-height: 1.3;
}
.arena-screams em { color: var(--accent); font-style: normal; }

/* ===== Sections ===== */
.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--ink);
}
.section.dense { padding: 80px 0; }
.section.dark { background: var(--ink); color: var(--paper); }
.section.cream { background: var(--paper-2); }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1.5px; background: var(--accent);
}
.h2 {
  font-size: clamp(36px, 6vw, 84px);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin-bottom: 32px;
  max-width: 1100px;
}
.h2 .accent { color: var(--accent); font-style: italic; }
.lede {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  max-width: 880px;
  color: var(--ink-2);
  font-weight: 400;
}
.section.dark .lede { color: rgba(247,244,238,0.85); }

/* ===== Problem section ===== */
.problem-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; gap: 48px; } }
.problem-prose p {
  font-size: 19px; line-height: 1.6; margin-bottom: 18px;
  color: var(--ink-2);
}
.problem-prose strong { color: var(--ink); font-weight: 600; }
.problem-punchline {
  margin-top: 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.problem-punchline-accent { color: var(--accent); }

.quote-stack { display: flex; flex-direction: column; gap: 18px; }
.scream {
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  padding: 28px 28px 24px;
  background: var(--paper);
  position: relative;
  transform: rotate(-1deg);
}
.scream:nth-child(2) { transform: rotate(1.5deg); margin-left: 24px; background: var(--accent); color: var(--accent-ink); border-color: var(--accent-ink); }
.scream:nth-child(3) { transform: rotate(-0.8deg); margin-left: -8px; background: var(--ink); color: var(--paper); border-color: var(--ink); }
.scream-source {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.7; margin-bottom: 10px;
}
.scream-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 26px; line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ===== Comparison ===== */
.compare {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
}
@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }
.compare-col {
  padding: 36px 32px;
  border-right: 1.5px solid var(--ink);
  background: var(--paper);
}
.compare-col:last-child { border-right: none; background: var(--accent); color: var(--accent-ink); }
@media (max-width: 800px) {
  .compare-col { border-right: none; border-bottom: 1.5px solid var(--ink); }
  .compare-col:last-child { border-bottom: none; }
}
.compare-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.compare-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 22px; opacity: 0.7;
}
.compare-desc {
  font-size: 16px; line-height: 1.55;
  margin-bottom: 22px;
}
.compare-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.compare-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 5px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.8;
}
.compare-col:last-child .compare-pill { background: var(--accent-ink); color: var(--accent); border-color: var(--accent-ink); opacity: 1; }

/* ADHD / Holiday row */
.adhd-row {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 800px) { .adhd-row { grid-template-columns: 1fr; } }
.adhd-item {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 24px;
}
.adhd-text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* ===== Features / Product ===== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.feat {
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 28px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex; flex-direction: column;
}
.feat-1 { grid-column: span 7; background: var(--ink); color: var(--paper); }
.feat-2 { grid-column: span 5; }
.feat-3 { grid-column: span 4; }
.feat-4 { grid-column: span 8; background: var(--accent); color: var(--accent-ink); }
@media (max-width: 900px) {
  .feat-1, .feat-2, .feat-3, .feat-4 { grid-column: span 12; }
}
.feat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em;
  opacity: 0.55; margin-bottom: 16px;
}
.feat-h {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 26px;
  line-height: 1.1; letter-spacing: -0.025em;
  margin-bottom: 12px;
  flex: 1;
}
.feat-1 .feat-h { font-size: 36px; }
.feat-body { font-size: 15px; line-height: 1.55; opacity: 0.85; }

.price-tag {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-top: auto; padding-top: 20px;
}
.price-tag .strike {
  font-family: 'JetBrains Mono', monospace;
  text-decoration: line-through;
  opacity: 0.5; font-size: 16px;
}
.price-tag .new {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 56px;
  color: var(--accent);
  letter-spacing: -0.03em;
}

/* ===== Manifesto ===== */
.manifesto {
  padding: 100px 0;
  background: var(--accent);
  color: var(--accent-ink);
  border-bottom: 1px solid var(--ink);
}
.manifesto-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 1200px;
}
.manifesto-text em {
  font-style: italic;
  font-family: 'Space Grotesk', serif;
}
.manifesto-text .underline {
  text-decoration: underline;
  text-decoration-color: var(--accent-ink);
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.1em;
}
.manifesto-meta {
  margin-top: 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ===== League ===== */
.league-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 900px) { .league-grid { grid-template-columns: 1fr; gap: 40px; } }
.league-prose p { font-size: 19px; line-height: 1.6; margin-bottom: 16px; opacity: 0.9; }
.league-prose .pull {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 28px;
  letter-spacing: -0.02em; line-height: 1.2;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0;
}
.leaderboard {
  border: 1.5px solid rgba(247,244,238,0.2);
  border-radius: 18px;
  background: rgba(247,244,238,0.04);
  padding: 24px;
}
.lb-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.5; margin-bottom: 16px;
  display: flex; justify-content: space-between;
}
.lb-row {
  display: grid;
  grid-template-columns: 28px 1fr 60px 80px;
  gap: 12px; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(247,244,238,0.08);
  font-size: 14px;
}
.lb-row:last-child { border-bottom: none; }
.lb-rank {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; color: var(--accent);
}
.lb-name { font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 15px; }
.lb-region { font-family: 'JetBrains Mono', monospace; font-size: 11px; opacity: 0.55; }
.lb-pts { font-family: 'JetBrains Mono', monospace; font-weight: 700; text-align: right; color: var(--paper); }
.lb-row.up .lb-pts::before { content: '\25B2 '; color: #2dd47a; font-size: 9px; }
.lb-row.down .lb-pts::before { content: '\25BC '; color: #ff6b6b; font-size: 9px; }
.lb-foot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.4; margin-top: 16px;
  text-align: center;
}

/* ===== Benefits ===== */
.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
}
@media (max-width: 900px) { .ben-grid { grid-template-columns: 1fr; } }
.ben {
  padding: 36px 32px 40px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper);
  position: relative;
}
.ben:nth-child(3n) { border-right: none; }
.ben:nth-child(n+4) { border-bottom: none; }
@media (max-width: 900px) {
  .ben { border-right: none; border-bottom: 1.5px solid var(--ink); }
  .ben:last-child { border-bottom: none; }
}
.ben-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--accent); margin-bottom: 18px;
}
.ben-h {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 24px;
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 12px;
}
.ben-body { font-size: 15px; line-height: 1.55; color: var(--ink-2); }

/* ===== Form section ===== */
.form-section { background: var(--ink); color: var(--paper); padding: 120px 0 100px; border-bottom: none; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; gap: 48px; } }
.form-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 22px;
  padding: 40px;
  border: 1.5px solid var(--paper);
}
.form-h {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 32px;
  letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 8px;
}
.form-sub { font-size: 15px; color: var(--muted); margin-bottom: 32px; line-height: 1.5; }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.field label .req { color: var(--accent); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1.5px solid transparent;
  border-radius: 12px;
  transition: border-color 0.15s, background 0.15s;
  font-family: inherit;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper);
}
.field textarea { resize: vertical; min-height: 88px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .row-2 { grid-template-columns: 1fr; } }

.age-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.age-pill {
  flex: 1; min-width: 90px;
  padding: 14px 12px;
  text-align: center;
  border: 1.5px solid var(--ink-2);
  background: var(--paper-2);
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 16px;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--ink);
  user-select: none;
}
.age-pill input { display: none; }
.age-pill .label-sub {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-top: 3px; font-weight: 400;
}
.age-pill.checked { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.age-pill.checked .label-sub { color: var(--accent-ink); opacity: 0.7; }

.form-msg {
  padding: 14px 16px; border-radius: 12px; margin-bottom: 16px;
  font-size: 14px; line-height: 1.5;
}
.form-msg.success { background: #2dd47a; color: var(--ink); }
.form-msg.error { background: #ffe1e1; color: #b00020; }

.submit-btn {
  width: 100%;
  padding: 18px 24px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 17px;
  letter-spacing: -0.01em;
  transition: transform 0.15s, background 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.submit-btn:hover { background: var(--accent); color: var(--accent-ink); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-side .form-h { font-size: clamp(40px, 6vw, 72px); line-height: 1; }
.form-side .form-h .accent { color: var(--accent); font-style: italic; }
.form-side .lede { color: rgba(247,244,238,0.7); margin-top: 24px; }
.form-checklist {
  list-style: none;
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.form-check {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px; line-height: 1.45;
}
.form-check .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%; background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  margin-top: 2px;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink); color: var(--paper);
  padding: 60px 0 40px;
  border-top: 1px solid #2a2f35;
}
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2a2f35;
}
.footer .logo { color: var(--paper); font-size: 22px; }
.footer-tagline {
  margin-top: 14px;
  max-width: 340px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(247,244,238,0.6);
}
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(247,244,238,0.5);
  margin-bottom: 14px;
  font-weight: 400;
}
.footer-col a { display: block; padding: 4px 0; opacity: 0.85; font-size: 14px; }
.footer-col a:hover { opacity: 1; color: var(--accent); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  color: rgba(247,244,238,0.45);
  font-family: 'JetBrains Mono', monospace;
}

/* ===== Utilities ===== */
.row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.grow { flex: 1; }

/* ===== Mobile (up to 600px) ===== */
@media (max-width: 600px) {
  .container { padding: 0 18px; }

  .hero { padding: 32px 0 56px; }
  .hero-tag { font-size: 10px; padding: 6px 12px; }

  .section { padding: 72px 0; }
  .section.dense { padding: 56px 0; }

  .manifesto { padding: 56px 0; }
  .manifesto-meta { margin-top: 24px; font-size: 11px; }

  .h2 { margin-bottom: 20px; }
  .lede { font-size: 18px; }

  .problem-grid { margin-top: 40px; gap: 36px; }
  .problem-prose p { font-size: 17px; }
  .problem-punchline { font-size: 24px; margin-top: 24px; }

  .scream { padding: 20px; }
  .scream:nth-child(2) { margin-left: 12px; }
  .scream:nth-child(3) { margin-left: -4px; }
  .scream-text { font-size: 22px; }

  .compare-col { padding: 28px 24px; }
  .compare-name { font-size: 24px; }

  .feat { min-height: auto; padding: 24px; }
  .feat-1 .feat-h { font-size: 28px; }

  .league-prose p { font-size: 17px; }
  .league-prose .pull { font-size: 22px; padding-left: 16px; }
  .leaderboard { padding: 18px; }
  .lb-row { grid-template-columns: 24px 1fr 40px 60px; gap: 8px; font-size: 13px; }
  .lb-name { font-size: 14px; }

  .ben { padding: 28px 24px 32px; }
  .ben-h { font-size: 20px; }

  .form-section { padding: 72px 0 64px; }
  .form-card { padding: 24px; }
  .form-h { font-size: 26px; }

  .form-checklist { gap: 10px; }
  .form-check { font-size: 14px; gap: 10px; }
  .form-check .check { width: 20px; height: 20px; font-size: 11px; }

  .footer { padding: 40px 0 28px; }
  .footer-top { gap: 24px; padding-bottom: 24px; }
  .footer-cols { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

/* ===== Tablet (601px to 900px) ===== */
@media (min-width: 601px) and (max-width: 900px) {
  .section { padding: 88px 0; }
  .section.dense { padding: 64px 0; }
  .manifesto { padding: 72px 0; }

  .scream:nth-child(2) { margin-left: 16px; }

  .form-section { padding: 88px 0 72px; }
  .form-card { padding: 32px; }

  .ben-grid { grid-template-columns: repeat(2, 1fr); }
  .ben:nth-child(3n) { border-right: 1.5px solid var(--ink); }
  .ben:nth-child(2n) { border-right: none; }
  .ben:nth-child(n+4) { border-bottom: 1.5px solid var(--ink); }
  .ben:nth-child(n+5) { border-bottom: none; }
}
