:root {
  --bg: #111111;
  --bg-alt: #1a1a1a;
  --surface: #222222;
  --accent: #e8732a;
  --accent-dim: #c45f1a;
  --text: #f5f2ed;
  --text-muted: #a8a29e;
  --text-dim: #78716c;
  --border: #2e2e2e;
  --radius: 8px;
}

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

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

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
}
.hero-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}
.hero-includes {
  font-size: 13px;
  color: var(--text-dim);
}

/* HERO PHONE */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-phone {
  width: 220px;
  background: #1e1e1e;
  border-radius: 36px;
  border: 2px solid #333;
  padding: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: #141414;
  border-radius: 24px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.phone-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}
.phone-icon {
  font-size: 14px;
  color: var(--text-muted);
}
.phone-video-placeholder {
  background: linear-gradient(135deg, #2a2016, #1a1510);
  border-radius: 12px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(232,115,42,0.2);
}
.vp-play {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  padding-left: 3px;
}
.vp-label {
  font-size: 10px;
  color: var(--text-dim);
}
.phone-actions {
  display: flex;
  gap: 14px;
  padding: 0 4px;
}
.pa-icon {
  font-size: 18px;
  color: var(--text-muted);
}
.phone-comments {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 4px;
}
.pc-line {
  height: 6px;
  background: #2e2e2e;
  border-radius: 3px;
  width: 100%;
}
.pc-short { width: 65%; }

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,115,42,0.12);
  border: 1px solid rgba(232,115,42,0.25);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--text-muted);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}

/* PROBLEM */
.problem {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.problem-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.problem-col { display: flex; flex-direction: column; gap: 12px; }
.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.5;
}
.problem-card--bad {
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.15);
  color: var(--text-muted);
}
.problem-card--good {
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.15);
  color: var(--text);
}
.pc-emoji {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.problem-card--bad .pc-emoji { color: #ef4444; }
.problem-card--good .pc-emoji { color: #22c55e; }

/* HOW */
.how { padding: 96px 32px; max-width: 1100px; margin: 0 auto; }
.how-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.how-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 56px;
  letter-spacing: -0.5px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* WHAT */
.what {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}
.what-inner { max-width: 1100px; margin: 0 auto; }
.what-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.what-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}
.what-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.what-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.wi-icon {
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.wi-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.wi-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PRICING */
.pricing { padding: 96px 32px; max-width: 1100px; margin: 0 auto; }
.pricing-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
}
.pc-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pch-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}
.pch-price {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
}
.pch-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pc-features li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.pc-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
}
.pc-note {
  font-size: 13px;
  color: var(--text-dim);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 96px 32px;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 16px;
  color: var(--text-muted);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  text-align: center;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 56px 24px 64px; gap: 48px; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .what-items { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px; }
  .nav-inner { padding: 14px 24px; }
  .problem, .what, .closing { padding: 64px 24px; }
  .how, .pricing { padding: 64px 24px; }
}

@media (max-width: 480px) {
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pch-price { font-size: 26px; }
}