:root {
  --bg: #f5f0eb;
  --bg-deep: #ede6dd;
  --fg: #1a1714;
  --fg-muted: #6b5e52;
  --accent: #c4632a;
  --accent-light: #e8a87c;
  --surface: #ffffff;
  --surface-warm: #faf7f4;
  --border: #d9d0c5;
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 6vw 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}

.hero-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  max-width: 14ch;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 48ch;
  margin-top: 28px;
  line-height: 1.7;
}

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 100px 6vw;
  background: var(--fg);
  color: var(--bg);
}

.manifesto-inner {
  max-width: 720px;
}

.manifesto h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
}

.manifesto p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8b0a5;
  margin-bottom: 20px;
}

.manifesto p strong {
  color: var(--accent-light);
  font-weight: 600;
}

/* ---- HOW IT WORKS ---- */
.how-section {
  padding: 100px 6vw;
}

.how-section .section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.how-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  max-width: 20ch;
}

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

.step {
  position: relative;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- VERSUS ---- */
.versus {
  padding: 100px 6vw;
  background: var(--bg-deep);
}

.versus .section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.versus h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
}

.compare-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}

.compare-card.highlight {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.compare-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.compare-card.highlight h3 {
  border-bottom-color: #3a342e;
}

.compare-card ul {
  list-style: none;
}

.compare-card li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.compare-card.highlight li {
  color: #b8b0a5;
}

.compare-card li strong {
  color: var(--fg);
}

.compare-card.highlight li strong {
  color: var(--accent-light);
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 6vw;
  text-align: center;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 auto 24px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.15rem;
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
footer {
  padding: 40px 6vw;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { min-height: 70vh; padding: 100px 24px 60px; }
  .manifesto { padding: 72px 24px; }
  .how-section { padding: 72px 24px; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .versus { padding: 72px 24px; }
  .compare-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}