:root {
  --bg: #0d0d0d;
  --bg-alt: #141414;
  --fg: #f5f3ef;
  --fg-muted: #a0998f;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --border: rgba(245,158,11,0.18);
  --card: #1a1a1a;
  --card-hover: #222222;
}

* { 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', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* Hero */
.hero {
  padding: 5rem 2rem 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Video Preview Stack */
.video-preview-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,158,11,0.08);
}
.video-card-1 { margin-left: 0; }
.video-card-2 { margin-left: 1.5rem; }
.video-card-3 { margin-left: 0.75rem; }
.video-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.platform-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.platform-badge-tiktok { background: rgba(0,245,135,0.12); color: #00f28a; }
.platform-badge-yt { background: rgba(255,0,0,0.1); color: #ff4d4d; }
.platform-badge-ig { background: rgba(228,64,95,0.12); color: #e4405f; }
.video-meta { font-size: 0.75rem; color: var(--fg-muted); }
.video-card-visual {
  height: 120px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.preview-play {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.video-card-caption {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.hero-rule {
  max-width: 1200px;
  margin: 4rem auto 0;
  border-top: 1px solid var(--border);
}

/* Social Proof */
.social-proof {
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.social-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.social-proof-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  white-space: nowrap;
}
.platform-logos {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.platform-logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg-muted);
}

/* Section shared */
.section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* How it Works */
.how-it-works { padding: 6rem 2rem; }
.how-it-works-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 4rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  border-color: rgba(245,158,11,0.4);
  box-shadow: 0 4px 20px rgba(245,158,11,0.06);
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}
.step-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.step-body { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.65; }

/* Platforms */
.platforms {
  padding: 6rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.platforms-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.platforms-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; margin-top: 0.75rem; }
.platforms-right { display: flex; flex-direction: column; gap: 1.5rem; }
.platform-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.platform-item:hover { border-color: rgba(245,158,11,0.35); }
.platform-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.platform-info { display: flex; flex-direction: column; gap: 0.2rem; }
.platform-info strong { font-size: 1rem; font-weight: 600; }
.platform-info span { font-size: 0.8125rem; color: var(--fg-muted); }

/* Series */
.series { padding: 6rem 2rem; }
.series-inner { max-width: 1200px; margin: 0 auto; }
.series-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; max-width: 620px; }
.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.series-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.series-card:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-2px);
}
.series-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.series-name {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.series-desc { font-size: 0.8125rem; color: var(--fg-muted); line-height: 1.5; }
.series-note {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-style: italic;
  text-align: center;
}

/* Closing */
.closing {
  padding: 7rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 760px; margin: 0 auto; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }
.footer-legal { font-size: 0.75rem; color: rgba(160,153,143,0.5); }

/* Pricing */
.pricing {
  padding: 6rem 2rem;
  background: var(--bg);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.7;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  border-color: rgba(245,158,11,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.pricing-card--featured {
  border-color: rgba(245,158,11,0.5);
  background: linear-gradient(180deg, rgba(245,158,11,0.06) 0%, var(--card) 100%);
  box-shadow: 0 0 0 1px rgba(245,158,11,0.2), 0 20px 50px rgba(245,158,11,0.08);
}
.pricing-card--featured:hover {
  border-color: rgba(245,158,11,0.7);
}
.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0d0d0d;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pricing-card-header { display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-tier-name {
  font-family: 'Fraunces', serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pricing-price { display: flex; align-items: baseline; gap: 0.25rem; }
.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
}
.price-period { font-size: 0.875rem; color: var(--fg-muted); }
.pricing-desc { font-size: 0.8125rem; color: var(--fg-muted); line-height: 1.5; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.4;
}
.pricing-feature--included { color: var(--fg); }
.pricing-feature--excluded { color: var(--fg-muted); text-decoration: line-through; }
.pricing-feature--included svg { color: #34d399; flex-shrink: 0; }
.pricing-feature--excluded svg { color: rgba(160,153,143,0.4); flex-shrink: 0; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--fg);
}
.btn-outline:hover {
  background: var(--accent-dim);
  border-color: rgba(245,158,11,0.4);
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  border: 1.5px solid var(--accent);
  color: #0d0d0d;
}
.btn-primary:hover {
  background: #fbbf24;
  border-color: #fbbf24;
  transform: translateY(-1px);
}
/* Refund block */
.refund-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 4rem auto 0;
  max-width: 580px;
  padding: 1.75rem 2rem;
  background: var(--card);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 16px;
}
.refund-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.refund-content { display: flex; flex-direction: column; gap: 0.4rem; }
.refund-title {
  font-family: 'Fraunces', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--fg);
}
.refund-body { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .platforms-inner { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .series-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .series-grid { grid-template-columns: 1fr; }
  .social-proof-inner { flex-direction: column; gap: 1rem; }
  .nav-links { display: none; }
  .hero { padding: 3rem 1.5rem 2rem; }
  .video-card-2 { margin-left: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .refund-block { flex-direction: column; text-align: center; }
}