:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --fg: #e8e6e3;
  --fg-muted: #8a8892;
  --accent: #c9a227;
  --accent-glow: rgba(201, 162, 39, 0.15);
  --accent-subtle: rgba(201, 162, 39, 0.08);
  --border: rgba(255, 255, 255, 0.06);
  --heading: Space Grotesk, sans-serif;
  --body: DM Sans, sans-serif;
  --max-w: 1100px;
  --radius: 12px;
}

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

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

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

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

.hero-inner {
  max-width: var(--max-w);
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 28px;
}

.hero .lede {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

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

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

.stat-number {
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

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

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.hero-gradient {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.problem-label,
.how-label,
.packages-label {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.problem h2,
.how h2,
.packages h2 {
  font-family: var(--heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  line-height: 1.15;
}

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

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

.problem-icon {
  font-size: 20px;
  color: #e74c3c;
  margin-bottom: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 10px;
}

.problem-card h3 {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

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

/* ---- HOW ---- */
.how {
  padding: 120px 24px;
}

.how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

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

.step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: var(--heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}

.step-content h3 {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ---- PACKAGES ---- */
.packages {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.packages-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

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

.package-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  position: relative;
}

.package-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.04) 0%, var(--bg) 100%);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 5px 14px;
  border-radius: 100px;
}

.package-tier {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.package-price {
  font-family: var(--heading);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.package-features li {
  font-size: 15px;
  color: var(--fg-muted);
  padding-left: 24px;
  position: relative;
}

.package-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ---- SITE NAV ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(12px);
}

.site-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav-logo {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

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

.site-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.site-nav-links a:hover {
  color: var(--fg);
}

.site-nav-cta {
  background: var(--accent);
  color: #0a0a0f !important;
  font-family: var(--heading);
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 9px 22px;
  border-radius: 8px;
  transition: opacity 0.15s !important;
}

.site-nav-cta:hover {
  opacity: 0.88;
}

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

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
}

.btn-hero-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--fg-muted);
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
}

.btn-hero-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---- PACKAGE CTA ---- */
.package-card {
  display: flex;
  flex-direction: column;
}

.package-features {
  flex: 1;
  margin-bottom: 24px;
}

.pkg-cta {
  display: block;
  text-align: center;
  background: var(--bg-elevated);
  color: var(--fg);
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  margin-top: auto;
}

.pkg-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pkg-cta-featured {
  background: var(--accent);
  color: #0a0a0f;
  border-color: var(--accent);
}

.pkg-cta-featured:hover {
  opacity: 0.88;
  color: #0a0a0f;
  background: var(--accent);
}

/* ---- CLOSING ---- */
.closing {
  padding: 140px 24px;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.2;
}

.closing-text {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ---- FOOTER ---- */
.footer {
  padding: 60px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

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

.footer-contact {
  font-size: 14px;
  color: var(--accent);
}

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

  .hero h1 {
    font-size: 36px;
  }

  .hero .lede {
    font-size: 16px;
  }

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

  .stat-divider {
    display: none;
  }

  .problem-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .problem,
  .how,
  .packages,
  .closing {
    padding: 80px 20px;
  }

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

  .step-number {
    font-size: 36px;
    width: auto;
  }

  .site-nav-links a:not(.site-nav-cta) {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
}