:root {
  --bg: #FAFAF8;
  --fg: #111111;
  --accent: #FF4D00;
  --muted: #6B6B6B;
  --surface: #F0EFEB;
  --border: #E0DFD9;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* Navigation */
.top-bar {
  padding: 24px 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* Hero */
.hero {
  padding: 100px 48px 80px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.hero-lede {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-stat-row {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Features */
.features {
  padding: 80px 48px 100px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin-bottom: 72px;
}

.feature-card {
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

.features-compare {
  display: flex;
  align-items: stretch;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
}

.compare-block {
  flex: 1;
  padding: 32px;
}

.compare-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.compare-left .compare-label { color: var(--muted); }
.compare-right .compare-label { color: var(--accent); }

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-list li {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
}

.compare-left .compare-list li { color: var(--muted); }
.compare-right .compare-list li { color: var(--fg); font-weight: 400; }

.compare-divider {
  display: flex;
  align-items: center;
  padding-top: 32px;
}

/* Closing */
.closing {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 700px;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.closing-headline em {
  font-style: normal;
  color: var(--accent);
}

.closing-body {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 48px;
}

.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

/* Footer */
.site-footer {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
  background: var(--fg);
  color: var(--bg);
}

.footer-inner {
  max-width: 900px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #888;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar, .hero, .features, .closing, .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-stat-row {
    gap: 28px;
    flex-wrap: wrap;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features-compare {
    flex-direction: column;
    gap: 0;
  }

  .compare-divider {
    display: none;
  }

  .features {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .closing {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .compare-block {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
  }

  .compare-block:last-child {
    border-bottom: none;
  }
}