:root {
  --sand: #f5e6d3;
  --dune: #e8d5b7;
  --terracotta: #c2703e;
  --burnt: #8b4513;
  --midnight: #1a1a2e;
  --slate: #2d2d44;
  --cream: #faf6f0;
  --gold: #d4a855;
  --sage: #7a8b6f;
  --coral: #e07356;
}

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

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

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(194, 112, 62, 0.25), transparent),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212, 168, 85, 0.15), transparent),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(139, 69, 19, 0.2), transparent);
  z-index: 0;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 85, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(250, 246, 240, 0.7);
  max-width: 600px;
  line-height: 1.7;
}

/* ---- STATS BAR ---- */
.stats-bar {
  padding: 3rem 2rem;
  background: linear-gradient(180deg, var(--midnight), var(--slate));
  border-top: 1px solid rgba(212, 168, 85, 0.15);
  border-bottom: 1px solid rgba(212, 168, 85, 0.15);
}

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

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.5);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 6rem 2rem;
  background: var(--slate);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 40% at 70% 0%, rgba(194, 112, 62, 0.1), transparent);
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.15;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem;
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(212, 168, 85, 0.1);
  border-radius: 12px;
  transition: border-color 0.3s;
}

.step:hover {
  border-color: rgba(212, 168, 85, 0.3);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--terracotta);
  opacity: 0.7;
  line-height: 1;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  color: rgba(250, 246, 240, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- FEATURES ---- */
.features {
  padding: 6rem 2rem;
  background: var(--midnight);
}

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

.feature-card {
  padding: 2rem;
  background: linear-gradient(145deg, rgba(45, 45, 68, 0.8), rgba(26, 26, 46, 0.9));
  border: 1px solid rgba(212, 168, 85, 0.08);
  border-radius: 12px;
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 168, 85, 0.25);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: rgba(250, 246, 240, 0.55);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- CLOSING ---- */
.closing {
  padding: 6rem 2rem;
  background: var(--slate);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(194, 112, 62, 0.2), transparent),
    radial-gradient(ellipse 40% 40% at 30% 50%, rgba(212, 168, 85, 0.1), transparent);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.closing-text {
  color: rgba(250, 246, 240, 0.65);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
footer {
  padding: 2rem;
  background: var(--midnight);
  border-top: 1px solid rgba(212, 168, 85, 0.1);
  text-align: center;
}

.footer-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: rgba(250, 246, 240, 0.3);
  letter-spacing: 0.05em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .stats-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; padding: 1.5rem; }
  .how-it-works, .features, .closing { padding: 4rem 1.5rem; }
}
