/* Base */
:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface2: #1a1a1a;
  --fg: #ffffff;
  --fg-muted: #888888;
  --accent: #c8973d;
  --accent-dim: rgba(200, 151, 61, 0.12);
  --green: #22c55e;
  --border: rgba(255,255,255,0.07);
  --nav-h: 64px;
  --max-w: 1100px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a { color: inherit; text-decoration: none; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.03em;
}

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

.nav-links a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--fg); }

/* Sections — shared */
section {
  padding: 80px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 48px;
  max-width: 620px;
}

/* Hero */
.hero {
  padding: 80px 48px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-inner { max-width: 640px; }

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
  font-weight: 400;
}

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

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  display: inline-block;
  color: var(--fg-muted);
  font-size: 15px;
  transition: color 0.15s;
}
.btn-secondary:hover { color: var(--fg); }

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--green);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* How it works */
.howitworks { border-top: 1px solid var(--border); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: var(--accent-dim);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}

.step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Proof strip */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}

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

.proof-header { margin-bottom: 48px; }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.proof-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-card {
  position: relative;
}

.proof-card video,
.proof-card iframe,
.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-card--video {
  flex-direction: column;
}

.proof-placeholder {
  text-align: center;
  color: var(--fg-muted);
  font-size: 14px;
  padding: 32px;
}

.proof-placeholder strong { display: block; color: var(--fg); margin-bottom: 8px; }

.proof-ctas {
  margin-top: 48px;
  text-align: center;
}

/* Niches */
.niches { border-top: 1px solid var(--border); }

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

.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 0.2s;
}
.niche-card:hover { border-color: var(--accent); }

.niche-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.niche-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.niche-tagline {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 20px;
}

.niche-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.niche-stat {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.niche-stat-key { color: var(--fg-muted); }
.niche-stat-val { color: var(--green); font-weight: 500; }

.niche-best { font-size: 12px; color: var(--fg-muted); }

/* Pricing teaser */
.pricing-teaser { border-top: 1px solid var(--border); }

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

.pt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}

.pt-tier {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.pt-price {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 4px;
}

.pt-price span { font-size: 16px; color: var(--fg-muted); font-family: 'DM Sans', sans-serif; }

.pt-features {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pt-features li {
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  gap: 8px;
}

.pt-features li::before { content: '—'; color: var(--accent); }

.pt-cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 11px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: background 0.15s;
}
.pt-cta:hover { background: var(--accent-dim); }

/* FAQ */
.faq { border-top: 1px solid var(--border); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-q {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-a { display: block; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 48px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
}

.footer-headline {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}

.footer-sub {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.waitlist-form {
  display: flex;
  gap: 8px;
}

.waitlist-form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.15s;
}

.waitlist-form input:focus { border-color: var(--accent); }
.waitlist-form input::placeholder { color: var(--fg-muted); }

.waitlist-form button {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.waitlist-form button:hover { opacity: 0.85; }

.waitlist-msg {
  font-size: 13px;
  margin-top: 10px;
  display: none;
}

.waitlist-msg.success { color: var(--green); display: block; }
.waitlist-msg.error { color: #ef4444; display: block; }
.waitlist-msg.duplicate { color: var(--accent); display: block; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.footer-links a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--fg); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  section, .hero, .proof, .footer { padding-left: 24px; padding-right: 24px; }
  .nav { padding: 0 24px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .proof-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .waitlist-form { flex-direction: column; }
}