:root {
  --bg: #0c0a09;
  --bg-warm: #1c1917;
  --bg-card: #292524;
  --fg: #fafaf9;
  --fg-muted: #a8a29e;
  --fg-dim: #78716c;
  --accent: #d4a574;
  --accent-light: #e8c9a0;
  --accent-glow: rgba(212, 165, 116, 0.15);
  --gold: #c9a84c;
  --gold-light: #e5d190;
  --radius: 12px;
  --max-w: 1120px;
}

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

html { scroll-behavior: smooth; }

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

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 165, 116, 0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 50%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Stats Bar ─── */
.stats-bar {
  padding: 4rem 1.5rem;
  border-top: 1px solid rgba(168, 162, 158, 0.1);
  border-bottom: 1px solid rgba(168, 162, 158, 0.1);
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.3rem;
}

/* ─── How It Works ─── */
.how-section {
  padding: 6rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.how-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 3.5rem;
  max-width: 600px;
}

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

.step-card {
  background: var(--bg-warm);
  border: 1px solid rgba(168, 162, 158, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s;
}

.step-card:hover {
  border-color: rgba(212, 165, 116, 0.25);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(212, 165, 116, 0.15);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.step-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

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

/* ─── Why Section ─── */
.why-section {
  padding: 6rem 1.5rem;
  background: var(--bg-warm);
}

.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.why-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.trust-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-point {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  border-left: 3px solid var(--accent);
}

.trust-point strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.3rem;
}

.trust-point span {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* ─── Closing ─── */
.closing {
  padding: 8rem 1.5rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
}

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

/* ─── Footer ─── */
footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(168, 162, 158, 0.08);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

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

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero {
    min-height: 80vh;
    padding-top: 4rem;
  }
}