:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --surface-2: #222222;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --text: #f5f0e8;
  --text-muted: #8a8680;
  --border: #2e2e2e;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* HERO */
.hero {
  padding: 96px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
}

/* CARD STACK */
.card-stack {
  position: relative;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  position: relative;
  transition: transform 0.3s ease;
}
.card-1 {
  align-self: flex-start;
  width: 88%;
  border-left: 3px solid var(--accent);
}
.card-2 {
  align-self: center;
  width: 82%;
  opacity: 0.85;
}
.card-3 {
  align-self: flex-end;
  width: 76%;
  opacity: 0.7;
}
.card-platform {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  font-weight: 600;
}
.card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.card-meta {
  font-size: 13px;
  color: var(--text-muted);
}

/* PROBLEM */
.problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 48px;
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.problem-stat {
  flex: 1;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.problem-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}
.problem-statement {
  max-width: 1200px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 20px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
}

/* SECTION TITLE */
.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 48px;
  letter-spacing: -1px;
}

/* HOW */
.how {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 32px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  align-self: 60px;
  flex-shrink: 0;
}

/* WHAT'S INCLUDED */
.included {
  padding: 96px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.included .section-title {
  max-width: 1200px;
  margin: 0 auto 48px;
}
.included-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.included-card {
  padding: 36px 32px;
  background: var(--bg);
}
.included-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 16px;
}
.included-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.included-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
}
.pricing-card-featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.06) 0%, var(--surface) 60%);
}
.pricing-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.pricing-per {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '→';
  color: var(--accent);
  font-size: 12px;
}
.pricing-note {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

/* OUTRO */
.outro {
  padding: 96px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.outro-inner {
  max-width: 680px;
  margin: 0 auto;
}
.outro-quote {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 24px;
  font-style: italic;
}
.outro-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}
.footer-tag {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 64px 24px 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-headline { font-size: 42px; letter-spacing: -1px; }
  .problem-inner { flex-direction: column; gap: 32px; }
  .problem-divider { width: 60px; height: 1px; }
  .how { padding: 64px 24px; }
  .steps { flex-direction: column; }
  .step-connector { width: 2px; height: 24px; align-self: center; background: linear-gradient(to bottom, var(--accent), transparent); }
  .included { padding: 64px 24px; }
  .included-grid { grid-template-columns: 1fr; }
  .pricing { padding: 64px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .outro { padding: 64px 24px 48px; }
  .outro-quote { font-size: 26px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
}