:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1e1e1e;
  --fg: #f5f5f5;
  --fg-muted: #8a8a8a;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(255,255,255,0.07);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

/* ---- Nav ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 8px 20px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dim); }

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 100px 48px 96px;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(245,166,35,0.14) 0%, transparent 60%);
  border-radius: 50%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-inner {
  position: relative;
  max-width: 840px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  font-size: 0.78rem;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
  background: var(--surface);
  font-weight: 500;
}

/* ---- Problem ---- */
.problem {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-label, .how-label, .niches-label, .pricing-label, .how-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 680px;
  margin-bottom: 56px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--surface);
  padding: 40px 36px;
}
.problem-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.problem-text {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.problem-cta {
  font-size: 1rem;
  color: var(--fg);
  font-weight: 500;
}

/* ---- How ---- */
.how {
  padding: 96px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.how-inner { max-width: 900px; margin: 0 auto; }
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 56px;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-dim);
  line-height: 1;
  padding-top: 4px;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- Niches ---- */
.niches {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.niches-inner { max-width: 1100px; margin: 0 auto; }
.niches-label {
  margin-bottom: 16px;
}
.niches-headline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 48px;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}
.niche {
  background: var(--surface);
  padding: 36px 28px;
}
.niche-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.niche-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.niche-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.55;
}
.niches-footnote {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ---- Pricing ---- */
.pricing {
  padding: 96px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.pricing-inner { max-width: 1060px; margin: 0 auto; }
.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
}
.pricing-card--featured {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.pricing-tier {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 14px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 28px;
}
.pricing-price span {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.pricing-rec {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}
.pricing-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ---- Closing ---- */
.closing {
  position: relative;
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.closing-glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 55%);
  border-radius: 50%;
  pointer-events: none;
}
.closing-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.closing-cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  padding: 16px 36px;
  transition: opacity 0.2s;
}
.closing-cta:hover { opacity: 0.88; }

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(138,138,138,0.5);
  margin-top: 16px;
}
.footer-links {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--fg); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 72px 24px 64px; min-height: auto; }
  .hero-headline { font-size: 2.6rem; }
  .problem { padding: 64px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .how { padding: 64px 24px; }
  .step { grid-template-columns: 56px 1fr; gap: 16px; }
  .step-num { font-size: 2.2rem; }
  .niches { padding: 64px 24px; }
  .niches-grid { grid-template-columns: 1fr; }
  .pricing { padding: 64px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .closing-headline { font-size: 2rem; }
  .footer { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.1rem; }
  .pricing-price { font-size: 2.2rem; }
}