:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE8DC;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #E63825;
  --accent-dark: #B52D1E;
  --border: #D4CEC3;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}

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

.nav-link {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--fg);
}

/* Hero */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}

/* Hero Waitlist Counter */
.hero-waitlist-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--fg-muted);
}

.waitlist-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.waitlist-label strong {
  color: var(--fg);
  font-weight: 700;
}

/* Scarcity Banner */
.scarcity-banner {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 14px 20px;
  margin: 0 auto 40px;
  max-width: 680px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #5d4037;
  line-height: 1.55;
}

.scarcity-banner-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.scarcity-banner strong {
  color: #3e2723;
  font-weight: 700;
}

/* Video Frame Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.video-frame {
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #0D0D0D;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.frame-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #1A1A1A;
  border-bottom: 1px solid #2A2A2A;
}

.frame-dots {
  display: flex;
  gap: 6px;
}

.frame-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}

.frame-title {
  font-size: 11px;
  color: #888;
  font-family: var(--font-body);
}

.frame-body {
  padding: 28px;
}

.frame-scene {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  overflow: hidden;
}

.frame-scene::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.15;
}

.scene-text {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
}

.scene-line-1 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.scene-line-2 {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  margin-bottom: 16px;
}

.scene-bar {
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin-bottom: 8px;
  width: 100%;
}

.scene-bar-short {
  width: 60%;
}

.scene-tags {
  display: flex;
  gap: 10px;
}

.scene-tags span {
  font-size: 11px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 3px 8px;
  border-radius: 4px;
}

.frame-status {
  padding: 10px 16px;
  border-top: 1px solid #2A2A2A;
  font-size: 11px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  margin: 56px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Sections */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

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

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 56px;
}

/* How It Works */
.how-it-works {
  padding: 96px 0;
  background: var(--bg);
}

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

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Niches */
.niches {
  padding: 96px 0;
  background: var(--fg);
  color: var(--bg);
}

.niches .section-label {
  color: rgba(255,255,255,0.5);
}

.niches .section-headline {
  color: var(--bg);
}

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

.niche-card {
  background: #252525;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.niche-card:hover {
  border-color: #444;
  transform: translateY(-2px);
}

.niche-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.niche-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--bg);
}

.niche-desc {
  font-size: 14px;
  color: rgba(245,240,232,0.6);
  line-height: 1.65;
}

.niche-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(230,56,37,0.15);
  padding: 4px 8px;
  border-radius: 4px;
}

/* Proof */
.proof {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.proof-item {
  padding: 24px 0;
}

.proof-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 10px;
}

.proof-stat {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* Manifesto */
.manifesto {
  padding: 96px 0;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}

.manifesto-quote {
  margin-bottom: 32px;
}

.manifesto-quote p {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--fg);
  font-style: italic;
}

.manifesto-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--fg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(245,240,232,0.5);
  margin-bottom: 16px;
}

.footer-legal {
  font-size: 12px;
  color: rgba(245,240,232,0.3);
}

/* Social Proof Bar */
.social-proof-bar {
  background: var(--fg);
  color: var(--bg);
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(230,56,37,0.2);
  padding: 3px 8px;
  border-radius: 3px;
}

.proof-text {
  color: rgba(245,240,232,0.85);
}

.proof-text strong {
  color: #fff;
}

/* Pricing */
.pricing {
  padding: 96px 0;
  background: var(--bg);
}

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

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.pricing-card--popular {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(230,56,37,0.1);
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.pricing-price {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--fg-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 24px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--fg);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-align: center;
}

.pricing-cta:hover {
  background: #333;
}

.pricing-cta:active {
  transform: scale(0.98);
}

.pricing-card--popular .pricing-cta {
  background: var(--accent);
}

.pricing-card--popular .pricing-cta:hover {
  background: var(--accent-dark);
}

/* Reserve Modal */
.reserve-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.reserve-modal.active {
  display: flex;
}

.reserve-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.reserve-modal-content {
  position: relative;
  background: var(--bg);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  z-index: 1;
}

.reserve-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--fg-muted);
  line-height: 1;
}

.reserve-modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--fg);
}

.reserve-modal-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.form-group input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
  color: var(--fg);
  transition: border-color 0.2s;
}

.form-group input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

.form-checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--fg-muted);
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.reserve-tier-label {
  font-size: 14px;
  color: var(--fg-muted);
}

.reserve-tier-label strong {
  color: var(--fg);
}

.reserve-submit {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
}

.reserve-submit:hover {
  background: var(--accent-dark);
}

.reserve-submit:active {
  transform: scale(0.98);
}

.reserve-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.reserve-result {
  margin-top: 16px;
}

.reserve-error {
  background: #fce4ec;
  color: #c62828;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.reserve-success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.reserve-success-position {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-display);
  color: #1b5e20;
  margin-bottom: 6px;
}

.reserve-success-detail {
  margin-bottom: 10px;
  color: #2e7d32;
}

.reserve-success-next {
  font-size: 13px;
  color: #388e3c;
  border-top: 1px solid rgba(46,125,50,0.2);
  padding-top: 10px;
  margin-top: 4px;
}

/* FAQ */
.faq {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 720px;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-chevron {
  font-size: 24px;
  font-weight: 300;
  color: var(--fg-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-open .faq-chevron {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

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

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--fg);
  color: var(--bg);
  padding: 14px 24px;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta-text {
  font-size: 14px;
  color: rgba(245,240,232,0.8);
}

.sticky-cta-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.sticky-cta-btn:hover {
  background: var(--accent-dark);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding: 48px 24px 40px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .niches-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    padding: 16px 24px;
  }

  .section-inner,
  .manifesto-inner {
    padding: 0 24px;
  }

  .how-it-works,
  .niches,
  .proof,
  .manifesto,
  .pricing,
  .faq {
    padding: 64px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }

  .sticky-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-headline {
    font-size: 36px;
  }
}