@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --bg-deep: #0a0f0a;
  --bg-card: #111a11;
  --bg-glow: #162016;
  --fg: #e8ede8;
  --fg-muted: #8a9a8a;
  --accent: #c8a84e;
  --accent-glow: #d4b85c;
  --green-bright: #4eca6a;
  --green-dim: #2a5a35;
  --border: #1e2e1e;
  --radius: 12px;
}

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

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

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(42, 90, 53, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 30% 60%, rgba(200, 168, 78, 0.08) 0%, transparent 60%),
    var(--bg-deep);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--green-dim);
  background: rgba(42, 90, 53, 0.15);
  color: var(--green-bright);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

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

.hero h1 .highlight {
  color: var(--accent);
}

.hero .lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 48px;
}

/* ---- STATS BAR ---- */
.stats-bar {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px 0;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.features-header p {
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
}

.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: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

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

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  background: rgba(42, 90, 53, 0.2);
  border: 1px solid var(--green-dim);
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 80px 24px 100px;
  background:
    radial-gradient(ellipse 50% 40% at 70% 50%, rgba(200, 168, 78, 0.06) 0%, transparent 60%),
    var(--bg-deep);
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 56px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-bottom: 48px;
  position: relative;
}

.step:last-child { padding-bottom: 0; }

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent);
  position: relative;
  z-index: 2;
}

.step:not(:last-child) .step-number::after {
  content: '';
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 48px - 56px);
  background: linear-gradient(to bottom, var(--accent), var(--border));
  z-index: -1;
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 8px;
  padding-top: 14px;
}

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

/* ---- CLOSING ---- */
.closing {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(42, 90, 53, 0.18) 0%, transparent 70%),
    var(--bg-deep);
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.1;
}

.closing p {
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---- LANDING NAV ---- */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 58px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 15, 10, 0.92);
  backdrop-filter: blur(12px);
}

.landing-nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}

.landing-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--green-bright);
  color: var(--bg-deep);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.landing-nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* Offset hero section for fixed nav */
.hero { padding-top: 120px; }

/* ---- HERO CTA BUTTON ---- */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  background: var(--green-bright);
  color: var(--bg-deep);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 48px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(78, 202, 106, 0.25);
}

.hero-cta:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(78, 202, 106, 0.35);
}

/* ---- FOOTER ---- */
footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.85rem;
}

footer .brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--fg);
  font-size: 1rem;
  margin-bottom: 8px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    gap: 32px;
  }
  .step {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }
  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}