:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a26;
  --fg-primary: #e8e6e3;
  --fg-secondary: #9b978f;
  --fg-muted: #6b675f;
  --accent: #c9a84c;
  --accent-glow: rgba(201, 168, 76, 0.15);
  --accent-light: #dfc06a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: 860px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

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

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

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg-primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

.hero-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* ── PROBLEM ── */
.problem {
  padding: 100px 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.problem-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  position: sticky;
  top: 100px;
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-right p {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.75;
}

.problem-highlight {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent) !important;
  margin-top: 8px;
}

/* ── VERTICALS ── */
.verticals {
  padding: 100px 48px;
  background: var(--bg-secondary);
}

.verticals-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.verticals-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

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

.vertical-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.vertical-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-2px);
}

.vertical-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  opacity: 0.7;
}

.vertical-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg-primary);
}

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

/* ── HOW IT WORKS ── */
.how {
  padding: 100px 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

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

.how-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.how-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg-primary);
}

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

/* ── CLOSING ── */
.closing {
  padding: 120px 48px;
  background: var(--bg-secondary);
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.75;
}

/* ── FOOTER ── */
.site-footer {
  padding: 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-primary);
}

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

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

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .problem {
    padding: 64px 24px;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .problem-left h2 {
    position: static;
  }

  .verticals {
    padding: 64px 24px;
  }

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

  .how {
    padding: 64px 24px;
  }

  .how-step {
    flex-direction: column;
    gap: 12px;
  }

  .step-number {
    font-size: 2rem;
    width: auto;
  }

  .closing {
    padding: 80px 24px;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--fg-primary);
  text-decoration: none;
}

.nav-links { display: flex; align-items: center; gap: 24px; }

.nav-link {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg-primary); }

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover { background: var(--accent-glow); }

/* Offset hero so content isn't hidden behind fixed nav */
.hero { padding-top: 160px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.85; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--fg-secondary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.35); color: var(--fg-primary); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.closing-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

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

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}