:root {
  --bg: #0c0c0c;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f0ebe3;
  --fg-muted: #9a9387;
  --accent: #e8860c;
  --accent-dim: #b86a0a;
  --copper: #c97d3a;
  --border: #2a2724;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,134,12,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 40px;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: var(--fg);
}

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

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 200px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── SECTION LABEL ─── */
.section-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 40px;
}

/* ─── PROCESS ─── */
.process {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.process-step {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  transition: border-color 0.3s ease;
}

.process-step:hover {
  border-color: var(--accent-dim);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--fg);
}

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

/* ─── FEATURES ─── */
.features {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 56px;
}

.features-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--fg);
  max-width: 720px;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: transform 0.2s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-dim);
}

.feature-card-wide {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232,134,12,0.04) 100%);
}

.feature-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── CLOSING ─── */
.closing {
  padding: 120px 48px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232,134,12,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.closing h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
}

.footer-divider {
  color: var(--fg-muted);
  opacity: 0.4;
}

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

/* ─── CTA BUTTON ─── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0c0c0c;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: -0.2px;
}
.btn-primary:hover { background: var(--copper); }
.btn-primary:active { transform: scale(0.98); }

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.cta-hint {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero {
    padding: 80px 24px 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .process {
    padding: 60px 24px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .features {
    padding: 60px 24px;
  }

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

  .feature-card-wide {
    grid-column: span 1;
  }

  .closing {
    padding: 80px 24px;
  }

  .site-footer {
    padding: 32px 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 4px;
  }

  .footer-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .lede {
    font-size: 1rem;
  }

  .stat-num {
    font-size: 2rem;
  }
}