:root {
  --bg: #0c0a09;
  --bg-warm: #1a1510;
  --fg: #faf8f5;
  --fg-muted: #a89f94;
  --accent: #d4a017;
  --accent-light: #f0c841;
  --accent-glow: rgba(212, 160, 23, 0.15);
  --card-bg: #1c1814;
  --card-border: rgba(212, 160, 23, 0.12);
  --highlight-bg: rgba(212, 160, 23, 0.08);
  --font-display: 'Syne', 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;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 160, 23, 0.08) 0%, transparent 60%);
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--card-border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  background: var(--accent-glow);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

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

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

/* Hex grid decoration */
.hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.hex-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
}

.hex {
  position: absolute;
  width: 120px;
  height: 140px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.04;
  background: var(--accent);
}

.hex-1 { top: 15%; left: 10%; width: 100px; height: 115px; opacity: 0.06; }
.hex-2 { top: 60%; right: 8%; width: 80px; height: 92px; opacity: 0.03; }
.hex-3 { bottom: 10%; left: 20%; width: 60px; height: 69px; opacity: 0.05; }
.hex-4 { top: 8%; right: 18%; width: 140px; height: 162px; opacity: 0.025; }
.hex-5 { bottom: 25%; right: 30%; width: 90px; height: 104px; opacity: 0.04; }

/* === HERO CTAs === */
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.cta-btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}
.cta-btn:hover { opacity: 0.85; transform: translateY(-2px); }
.cta-primary { background: var(--accent); color: #0c0a09; }
.cta-ghost {
  border: 1px solid var(--card-border);
  color: var(--fg-muted);
  background: transparent;
}
.cta-ghost:hover { color: var(--fg); border-color: rgba(212,160,23,0.3); }

/* === PROBLEM === */
.problem {
  padding: 100px 24px;
  background: var(--bg-warm);
}

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

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.problem-card {
  padding: 32px;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
}

.problem-card.highlight {
  background: var(--highlight-bg);
  border-color: rgba(212, 160, 23, 0.25);
}

.problem-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

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

.problem-card.highlight p {
  color: var(--fg);
}

/* === FEATURES === */
.features {
  padding: 100px 24px;
}

.features-inner {
  max-width: 960px;
  margin: 0 auto;
}

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

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.features-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.feature-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
}

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

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

/* === HOW === */
.how {
  padding: 100px 24px;
  background: var(--bg-warm);
}

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

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}

.how-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 40px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}

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

.how-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(212, 160, 23, 0.06) 0%, transparent 60%);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: -0.01em;
}

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

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

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

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

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

  .how-stats {
    gap: 32px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .hero {
    min-height: auto;
    padding: 100px 20px 60px;
  }

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

@media (max-width: 480px) {
  .how-stats {
    flex-direction: column;
    gap: 24px;
  }
}