:root {
  --bg: #0D0D1A;
  --bg-surface: #13132B;
  --fg: #F0EBE3;
  --fg-muted: #8A8AA8;
  --accent: #FF7043;
  --accent-dim: rgba(255, 112, 67, 0.12);
  --red: #FF4D6D;
  --amber: #FFAA33;
  --purple: #A78BFA;
}

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

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

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid rgba(240,235,227,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* HERO */
.hero {
  padding: 80px 48px 96px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.65;
}

/* Phone Mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
}
.phone-screen {
  display: flex;
  gap: 12px;
  transform: rotate(-3deg);
}
.video-thumb {
  width: 120px;
  background: var(--bg-surface);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(240,235,227,0.08);
}
.thumb-bar {
  height: 4px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.thumb-bar--red { background: var(--red); }
.thumb-bar--amber { background: var(--amber); }
.thumb-bar--purple { background: var(--purple); }
.thumb-lines { display: flex; flex-direction: column; gap: 5px; }
.thumb-line {
  height: 6px;
  background: rgba(240,235,227,0.12);
  border-radius: 3px;
  width: 100%;
}
.thumb-line--short { width: 55%; }
.thumb-line--med { width: 78%; }

/* SECTIONS */
.section-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--fg);
  margin-bottom: 48px;
  letter-spacing: -1px;
}

/* PROBLEM */
.problem { padding: 80px 48px; }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid;
}
.problem-card--bad {
  background: rgba(255,77,109,0.05);
  border-color: rgba(255,77,109,0.15);
}
.problem-card--good {
  background: var(--accent-dim);
  border-color: rgba(255,112,67,0.25);
}
.problem-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.problem-card--bad .problem-badge {
  background: rgba(255,77,109,0.15);
  color: var(--red);
}
.problem-card--good .problem-badge {
  background: rgba(255,112,67,0.2);
  color: var(--accent);
}
.problem-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.problem-card ul li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.problem-card--good ul li { color: var(--fg); }
.problem-card--bad ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--fg-muted); }
.problem-card--good ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* OFFER */
.offer { padding: 80px 48px; }
.offer-inner { max-width: 1100px; margin: 0 auto; }
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  margin-bottom: 48px;
}
.offer-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.offer-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.offer-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.offer-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* PRICING CARD */
.offer-pricing { display: flex; justify-content: flex-start; }
.pricing-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,112,67,0.25);
  border-radius: 16px;
  padding: 28px 36px;
  display: inline-block;
}
.pricing-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.pricing-amount {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.pricing-period {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* NICHES */
.niches { padding: 80px 48px; background: var(--bg-surface); }
.niches-inner { max-width: 1100px; margin: 0 auto; }
.niches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.niche-tag {
  padding: 10px 18px;
  background: rgba(240,235,227,0.05);
  border: 1px solid rgba(240,235,227,0.1);
  border-radius: 100px;
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
}
.niches-sub {
  font-size: 15px;
  color: var(--fg-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  text-align: center;
  background: linear-gradient(160deg, var(--bg) 0%, #1A1432 100%);
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.8px;
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 32px 48px;
  border-top: 1px solid rgba(240,235,227,0.07);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--accent);
}
.footer-tag {
  font-size: 13px;
  color: var(--fg-muted);
  flex: 1;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-sub { max-width: 100%; }
  .problem, .offer, .niches { padding: 60px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .closing { padding: 60px 24px; }
  .nav, .footer { padding: 20px 24px; }
}