:root {
  --bg-dark: #0a0a0c;
  --bg-section: #111114;
  --bg-card: #1a1a1f;
  --fg: #e8e6e1;
  --fg-muted: #8a8880;
  --accent: #d4830a;
  --accent-glow: #f5a623;
  --accent-dim: #7a4d0a;
  --border: #2a2a2f;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  overflow: hidden;
}

.hero-inner {
  max-width: 820px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-trades {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-trades span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.hero-trades span:hover {
  border-color: var(--accent-dim);
  color: var(--accent);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 131, 10, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

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

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

.problem-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
  color: var(--fg-muted);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.problem-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.problem-punch {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--fg);
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 24px;
  background: var(--bg-dark);
}

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

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -1px;
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}

.feature-block {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.feature-block--link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.2s;
}

.feature-block--link:hover {
  transform: translateX(4px);
}

.feature-block--link:hover .feature-number {
  color: var(--accent-glow);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.feature-block h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.feature-block p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 24px;
  background: var(--bg-section);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 56px;
}

.closing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

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

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
}

.closing-vision {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 24px;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

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

/* ===== SITE NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.site-nav-logo span { color: var(--accent); }

.site-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.site-nav-cta:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 131, 10, 0.3);
}

/* ===== HERO CTA BUTTON ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 12px;
}

.cta-btn:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 131, 10, 0.35);
}

.cta-hint {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Reduce hero min-height a bit to account for sticky nav */
.hero { min-height: 80vh; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .closing-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 80vh;
    padding: 60px 20px;
  }
}