:root {
  --bg: #0f0f0f;
  --bg-alt: #1a1a1a;
  --bg-card: #141414;
  --fg: #f0ebe3;
  --fg-muted: #a39e93;
  --accent: #e8a838;
  --accent-dim: rgba(232,168,56,0.12);
  --accent-glow: rgba(232,168,56,0.25);
  --green: #6bc77a;
  --coral: #e87461;
  --blue: #5b9bd5;
  --purple: #a78bfa;
  --radius: 12px;
  --max-w: 1100px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ─── */
.nav {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--fg);
  letter-spacing: -0.5px;
}

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

.nav-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ─── HERO ─── */
.hero {
  padding: 100px 0 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 700px;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ─── PROBLEM ─── */
.problem {
  padding: 60px 0 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.problem-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 20px;
}

.problem h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 650px;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

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

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

.problem-card .emoji {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}

.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}

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

/* ─── NICHES ─── */
.niches {
  padding: 80px 0;
}

.niches-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
}

.niches h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 48px;
  max-width: 600px;
}

.niche-list {
  display: grid;
  gap: 16px;
}

.niche-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.niche-item:hover {
  border-color: rgba(232,168,56,0.25);
}

.niche-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.niche-icon.truck { background: rgba(91,155,213,0.15); }
.niche-icon.budget { background: rgba(107,199,122,0.15); }
.niche-icon.ai { background: rgba(167,139,250,0.15); }
.niche-icon.garden { background: rgba(107,199,122,0.15); }
.niche-icon.adhd { background: rgba(232,116,97,0.15); }

.niche-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.niche-info p {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.niche-stat {
  text-align: right;
  white-space: nowrap;
}

.niche-stat .num {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}

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

/* ─── HOW ─── */
.how {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.how-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 20px;
}

.how h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 48px;
  max-width: 550px;
}

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

.step {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(232,168,56,0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── CLOSING ─── */
.closing {
  padding: 100px 0;
  text-align: center;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.closing h2 em {
  font-style: normal;
  color: var(--accent);
}

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

/* ─── FOOTER ─── */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--fg-muted);
}

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

.footer-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero { padding: 60px 0 50px; }
  .hero::before { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .niche-item { grid-template-columns: 40px 1fr; gap: 14px; }
  .niche-stat { display: none; }
  .niche-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .footer { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .hero h1 { font-size: 2.2rem; letter-spacing: -1px; }
  .nav-tag { display: none; }
}