:root {
  --bg: #0c0c0c;
  --fg: #f0ede6;
  --accent: #c8ff00;
  --accent-dim: #9abf00;
  --muted: #888;
  --border: #1e1e1e;
  --card: #141414;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 64px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(200, 255, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 32px;
  display: inline-block;
  border: 1px solid var(--accent);
  padding: 4px 12px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.line-strike { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--accent); }
.line-normal { color: var(--fg); }
.line-highlight { color: var(--accent); }

.hero-sub {
  font-size: 18px;
  color: #aaa;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 28px;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--accent-dim); }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 48px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #444;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* SECTION LABEL */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

/* HOW IT WORKS */
.howitworks {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.howitworks-header {
  margin-bottom: 64px;
}

.howitworks-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  border: 1px solid var(--border);
  padding: 32px 24px;
  background: var(--card);
  position: relative;
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.4;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  font-weight: 300;
}

/* FEATURES */
.features {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  margin-bottom: 24px;
}

.features-left p {
  color: #888;
  font-weight: 300;
  font-size: 15px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 16px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.2s;
}

.feature-item:hover { border-color: var(--accent-dim); }

.feature-icon {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 13px;
  color: #666;
  font-weight: 300;
}

/* RESULTS */
.results {
  padding: 80px 48px;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.results-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.result-stat {
  background: var(--card);
  padding: 48px 40px;
  text-align: center;
}

.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 13px;
  color: #666;
  font-weight: 300;
  max-width: 200px;
  margin: 0 auto;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.manifesto-content blockquote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.manifesto-content p {
  font-size: 15px;
  color: #777;
  font-weight: 300;
  max-width: 580px;
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.closing h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--fg);
}

.closing p {
  font-size: 16px;
  color: #666;
  font-weight: 300;
}

/* FOOTER */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 13px;
  color: #555;
}

.footer-links span {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #444;
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 48px; }
  .howitworks, .features, .manifesto, .closing { padding: 60px 24px; }
  .results { padding: 60px 24px; }
  footer { padding: 32px 24px; flex-direction: column; gap: 16px; text-align: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: 1fr; gap: 48px; }
  .results-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 64px; }
}