:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-card: #161616;
  --fg: #f0f0f0;
  --fg-muted: #888;
  --accent: #ff3b3b;
  --accent-glow: rgba(255,59,59,0.15);
  --green: #22c55e;
  --font-display: 'Bebas Neue', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --max-w: 1100px;
  --section-pad: clamp(64px, 10vw, 120px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-mono);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--bg); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 5vw, 64px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--fg);
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-tag {
  background: var(--accent);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 64px);
  min-height: 85vh;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hl-red { color: var(--accent); }
.hero-sub {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--fg-muted);
  max-width: 400px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-cta { margin-bottom: 20px; }
.btn-roast {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 16px 36px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-roast:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,59,59,0.3);
}
.btn-roast.btn-large { font-size: 1.5rem; padding: 20px 48px; }
.hero-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.badge { opacity: 0.7; }
.badge-sep { color: var(--accent); }

/* Score preview (hero visual) */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.score-preview {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 4px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 220px;
}
.score-ring {
  position: relative;
  width: 120px;
  height: 120px;
}
.ring-svg { width: 120px; height: 120px; }
.score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
}
.score-label {
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.roast-preview {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 4px;
  padding: 20px 24px;
  width: 100%;
  max-width: 400px;
}
.rp-quote {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--fg);
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 14px;
}
.rp-tip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--green);
  opacity: 0.9;
}

/* How it works */
.howitworks {
  background: var(--bg-2);
  padding: var(--section-pad) clamp(24px, 5vw, 64px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 56px;
}
.sh-num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.03em;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid #222;
  border-radius: 4px;
  overflow: hidden;
}
.step-card {
  background: var(--bg-card);
  padding: 40px 36px;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
}
.step-card:nth-child(even) { border-right: none; }
.step-card:nth-last-child(-n+2) { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.step-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.7; }

/* What you get */
.whatyouget {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad) clamp(24px, 5vw, 64px);
}
.wg-left .section-header { margin-bottom: 20px; }
.wg-intro { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.8; max-width: 320px; }
.wg-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.wg-card {
  background: var(--bg-card);
  border: 1px solid #222;
  padding: 32px 28px;
}
.wg-icon { margin-bottom: 16px; }
.wg-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.wg-card p { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.7; }
.wg-card.wg-tip .wg-icon svg { stroke: var(--green); }
.wg-card.wg-tip h3 { color: var(--green); }

/* Manifesto */
.manifesto {
  background: var(--bg-2);
  padding: var(--section-pad) clamp(24px, 5vw, 64px);
}
.manifesto-inner { max-width: var(--max-w); margin: 0 auto; }
.manifesto-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  margin-bottom: 36px;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.manifesto-headline em { color: var(--accent); font-style: normal; }
.manifesto-body {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 20px;
}
.manifesto-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 48px 0;
}
.manifesto-stats {
  display: flex;
  gap: clamp(40px, 6vw, 80px);
}
.m-stat {}
.m-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}
.m-desc {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Closing */
.closing {
  padding: var(--section-pad) clamp(24px, 5vw, 64px);
  text-align: center;
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.closing-sub { font-size: 1rem; color: var(--fg-muted); margin-bottom: 40px; }
.closing-cta { margin-bottom: 16px; }
.closing-fine { font-size: 0.75rem; color: var(--fg-muted); opacity: 0.6; }

/* Footer */
.footer {
  border-top: 1px solid #1e1e1e;
  padding: 40px clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.footer-tagline { font-size: 0.75rem; color: var(--fg-muted); }

/* Mobile */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 32px 24px 64px; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { border-right: none; }
  .step-card:nth-last-child(-n+2) { border-bottom: 1px solid #222; }
  .step-card:last-child { border-bottom: none; }
  .whatyouget { grid-template-columns: 1fr; }
  .wg-cards { grid-template-columns: 1fr; }
  .wg-card { border-right: none; border-bottom: 1px solid #222; }
  .wg-card:last-child { border-bottom: none; }
  .manifesto-stats { flex-direction: column; gap: 32px; }
  .footer { flex-direction: column; gap: 12px; text-align: center; }
}