:root {
  --bg: #0a0a0c;
  --bg-elevated: #131318;
  --bg-card: #1a1a22;
  --fg: #e8e6e3;
  --fg-muted: #8a8891;
  --fg-dim: #5a586b;
  --accent: #e85d26;
  --accent-glow: #ff6b35;
  --accent-soft: rgba(232, 93, 38, 0.12);
  --border: #2a2a35;
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', 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);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 93, 38, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ─── PROBLEM ─── */
.problem {
  padding: 6rem 2rem;
  background: var(--bg);
}

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

.problem-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 3rem;
}

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

.problem-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}

.problem-icon {
  font-size: 1.5rem;
  color: #e84040;
  margin-bottom: 1rem;
}

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

.problem-bottom {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}

/* ─── PILLARS ─── */
.pillars {
  padding: 6rem 2rem;
  background: var(--bg-elevated);
}

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

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
  transition: border-color 0.3s;
}

.pillar-card:hover {
  border-color: var(--accent);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fg-dim);
  margin-bottom: 1rem;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}

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

.pillar-line {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar-card:hover .pillar-line {
  opacity: 1;
}

/* ─── STORY ─── */
.story {
  padding: 6rem 2rem;
  background: var(--bg);
}

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

.story-content {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--accent);
}

.story-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.story-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.story-detail {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── TIERS ─── */
.tiers {
  padding: 6rem 2rem;
  background: var(--bg-elevated);
}

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

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}

.tier-featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(232, 93, 38, 0.1);
}

.tier-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--fg);
}

.tier-freq {
  font-size: 0.85rem;
  color: var(--fg-dim);
  margin-bottom: 1.5rem;
}

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

/* ─── CLOSING ─── */
.closing {
  padding: 8rem 2rem;
  background: var(--bg);
  text-align: center;
  position: relative;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 2rem;
}

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

/* ─── FOOTER ─── */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg-elevated);
  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: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-dim);
  margin-bottom: 0.3rem;
}

.footer-location {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

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

  .hero-stats {
    gap: 1.2rem;
  }

  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: auto;
  }

  .problem,
  .pillars,
  .story,
  .tiers,
  .closing {
    padding: 4rem 1.5rem;
  }

  .story-content {
    padding-left: 1.5rem;
  }

  .pillar-card {
    padding: 2rem 1.5rem;
  }
}

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

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .tier-price {
    font-size: 2.2rem;
  }
}

/* ─── LANDING PAGE CTAs ─── */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-cta-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  background: var(--accent);
  color: var(--bg);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.hero-cta-primary:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
}

.hero-cta-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-muted);
  padding: 1rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

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

.tier-cta {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

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

.tier-cta-featured {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.tier-cta-featured:hover {
  background: var(--accent-glow);
  color: var(--bg);
  border-color: var(--accent-glow);
}