:root {
  --bg: #0F0F0F;
  --bg-2: #161616;
  --bg-3: #1E1E1E;
  --accent: #FF6B2C;
  --accent-dim: rgba(255, 107, 44, 0.12);
  --text: #F5F0E8;
  --text-dim: rgba(245, 240, 232, 0.55);
  --text-muted: rgba(245, 240, 232, 0.3);
  --border: rgba(245, 240, 232, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Space Grotesk', 'Helvetica Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* SECTION LABEL */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 70vh;
  background: radial-gradient(ellipse at center, rgba(255, 107, 44, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 750px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-body {
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-body p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.hero-body-sub {
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
}

.hero-cta-block {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.hero-metro {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* PROBLEM */
.problem {
  background: var(--bg-2);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.problem-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.problem-stat {
  padding: 0 40px;
}

.problem-stat:first-child {
  padding-left: 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.problem-divider {
  width: 1px;
  height: 100%;
  min-height: 120px;
  background: var(--border);
}

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

.how-header {
  max-width: 1100px;
  margin: 0 auto 64px;
}

.how-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  margin-top: 8px;
}

.steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100px;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 30%);
  opacity: 0.3;
}

.step:last-child {
  border-bottom: 1px solid var(--border);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 520px;
}

/* NICHES */
.niches {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.niches-header {
  max-width: 1100px;
  margin: 0 auto 56px;
}

.niches-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-top: 8px;
}

.niche-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.niche-card {
  background: var(--bg-2);
  padding: 40px 36px;
  transition: background 0.2s ease;
}

.niche-card:hover {
  background: var(--bg-3);
}

.niche-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.niche-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.niche-card p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 100px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.pricing-header {
  max-width: 1100px;
  margin: 0 auto 56px;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-top: 8px;
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pricing-card {
  background: var(--bg);
  padding: 40px 36px;
  position: relative;
}

.pricing-card--featured {
  background: var(--bg-3);
  border: 1px solid rgba(255, 107, 44, 0.2);
}

.pricing-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255, 107, 44, 0.25);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 24px;
}

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.pricing-per {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

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

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 32px;
}

.manifesto-sub {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 48px;
  line-height: 1.7;
}

.manifesto-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* FOOTER */
.footer {
  padding: 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  flex: 1;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 120px 24px 60px; }
  .hero-headline { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-cta-block { flex-direction: column; align-items: flex-start; gap: 8px; }

  .problem { padding: 60px 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .problem-divider { display: none; }
  .problem-stat { padding: 0; }

  .how { padding: 60px 24px; }
  .step { grid-template-columns: 60px 1fr; gap: 24px; }
  .step-num { font-size: 2rem; }

  .niches { padding: 60px 24px; }
  .niche-grid { grid-template-columns: 1fr; }

  .pricing { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }

  .manifesto { padding: 80px 24px; }

  .footer { flex-direction: column; gap: 12px; padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .pricing-price { font-size: 2.2rem; }
}