:root {
  --bg: #FAFAF8;
  --bg-deep: #F0EFEA;
  --ink: #0F0F0E;
  --ink-muted: #6B6A65;
  --ink-faint: #A3A29C;
  --accent: #1A6B4A;
  --accent-light: #E8F5EE;
  --accent-glow: #22C97A;
  --white: #FFFFFF;
  --radius: 10px;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Geist', -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 32px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav-left { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.nav-brand {
  font-family: var(--serif); font-size: 19px;
  color: var(--ink); text-decoration: none; line-height: 1.1;
}
.nav-brand span { color: var(--accent); }
.nav-sub {
  font-size: 9px; color: var(--ink-faint);
  letter-spacing: 1.5px; text-transform: uppercase; display: block;
}
.nav-cta {
  background: var(--ink); color: var(--white); border: none;
  padding: 10px 22px; border-radius: 6px;
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px; position: relative;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,107,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-light); color: var(--accent);
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
  animation: fadeUp .6s ease-out;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--accent-glow);
  border-radius: 50%; animation: pulse 2s infinite;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px); font-weight: 400;
  line-height: 1.08; letter-spacing: -1.5px; max-width: 780px;
  margin-bottom: 24px; animation: fadeUp .6s ease-out .1s both;
}
h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 18px; color: var(--ink-muted); max-width: 520px;
  line-height: 1.65; margin-bottom: 40px;
  animation: fadeUp .6s ease-out .2s both;
}

/* ── Waitlist form ── */
.waitlist-form {
  display: flex; gap: 10px; max-width: 460px; width: 100%;
  animation: fadeUp .6s ease-out .3s both;
}
.waitlist-form input {
  flex: 1; padding: 14px 18px;
  border: 2px solid rgba(0,0,0,0.08); border-radius: var(--radius);
  font-family: var(--sans); font-size: 15px; background: var(--white);
  transition: border-color .2s; outline: none;
}
.waitlist-form input:focus { border-color: var(--accent); }
.waitlist-form input::placeholder { color: var(--ink-faint); }
.waitlist-form button {
  padding: 14px 28px; background: var(--accent); color: var(--white);
  border: none; border-radius: var(--radius);
  font-family: var(--sans); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.waitlist-form button:hover {
  background: #155A3E; transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,107,74,0.2);
}
.waitlist-form button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note {
  font-size: 12px; color: var(--ink-faint); margin-top: 12px;
  animation: fadeUp .6s ease-out .4s both;
}
.form-error { font-size: 13px; color: #DC2626; margin-top: 8px; display: none; }
.success-message {
  display: none; background: var(--accent-light); color: var(--accent);
  padding: 16px 24px; border-radius: var(--radius); font-weight: 600; font-size: 15px;
  margin-top: 12px;
}

/* ── Social proof ── */
.social-proof {
  display: flex; align-items: center; gap: 10px; margin-top: 32px;
  animation: fadeUp .6s ease-out .5s both;
}
.avatars { display: flex; }
.avatars div {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg);
  margin-left: -8px; font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff;
}
.avatars div:first-child { margin-left: 0; }
.social-proof span { font-size: 13px; color: var(--ink-muted); }

/* ── Preview / demo ── */
.preview { padding: 80px 24px; text-align: center; }
.preview h2 {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px; letter-spacing: -.5px;
}
.preview p {
  font-size: 16px; color: var(--ink-muted);
  max-width: 500px; margin: 0 auto 48px;
}
/* ── Carousel demo grid ── */
.carousel-demo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.demo-slide {
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.demo-slide:hover { transform: translateY(-4px); }
.demo-slide-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 16px;
  position: relative;
}

/* Slide 1 — image hook */
.slide-hook { position: relative; justify-content: flex-end; align-items: flex-start; }
.slide-hook .slide-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(transparent, rgba(0,0,0,0.7)); }
.slide-hook .slide-source { position: absolute; top: 8px; left: 10px; font-size: 8px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); z-index: 2; }
.slide-hook .slide-headline { position: relative; z-index: 2; font-family: var(--serif); font-size: 16px; line-height: 1.2; color: #fff; text-align: left; padding-bottom: 8px; }

/* Slides with images */
.slide-img { position: relative; }
.slide-img .slide-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(transparent, rgba(0,0,0,0.65)); }
.slide-img .slide-text-over { position: relative; z-index: 2; font-family: var(--sans); font-size: 14px; font-weight: 900; text-transform: uppercase; color: #fff; line-height: 1.15; margin-top: auto; padding-bottom: 8px; }

/* Dark text slide */
.slide-hormozi { background: #0a0a0a; color: #fff; }
.slide-hormozi .slide-text { font-family: var(--sans); font-size: 14px; font-weight: 900; text-transform: uppercase; line-height: 1.15; }

/* Light text slide */
.slide-light { background: #f5f0e8; color: #1a1a1a; }
.slide-light .slide-text-dark { font-family: var(--sans); font-size: 14px; font-weight: 900; text-transform: uppercase; line-height: 1.15; }

/* Highlights */
.slide-hl { color: #FFD700; }
.slide-hl-red { color: #c0392b; }

/* Question slide */
.slide-question { background: #0a0a0a; border: 2px solid rgba(255,215,0,0.3); }
.slide-question .slide-text { font-family: var(--sans); font-size: 13px; font-weight: 900; text-transform: uppercase; color: #FFD700; line-height: 1.2; }

/* CTA follow */
.slide-follow { background: #0a0a0a; color: #fff; }
.slide-follow .stay { font-family: var(--sans); font-size: 14px; font-weight: 900; text-transform: uppercase; color: #FFD700; letter-spacing: 1px; }
.slide-follow .brand { font-size: 10px; opacity: 0.5; margin-top: 8px; }
.slide-follow .handle { font-size: 8px; opacity: 0.25; margin-top: 2px; }

/* CTA pitch */
.slide-pitch { background: #0a0a0a; }
.slide-pitch .pitch-text { font-family: var(--sans); font-size: 11px; font-weight: 900; text-transform: uppercase; color: #FFD700; line-height: 1.3; }
.slide-pitch .pitch-url { font-size: 8px; color: rgba(255,255,255,0.4); margin-top: 12px; }

/* Credit slide */
.slide-credit { background: #0a0a0a; }
.slide-credit .credit-qr { width: 50px; height: 50px; border: 1px solid rgba(255,215,0,0.4); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,215,0,0.5); font-size: 10px; font-weight: 900; margin-bottom: 8px; }
.slide-credit .credit-text { font-size: 8px; color: rgba(255,255,255,0.45); line-height: 1.5; }
.slide-credit .credit-claude { font-size: 7px; color: rgba(255,255,255,0.25); margin-top: 8px; }

/* ── How it works ── */
.how-it-works { padding: 80px 24px; background: var(--bg-deep); }
.how-it-works h2 {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 42px);
  text-align: center; margin-bottom: 56px; letter-spacing: -.5px;
}
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px; max-width: 960px; margin: 0 auto;
}
.step {
  background: var(--white); padding: 32px 28px;
  border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.04);
  transition: transform .2s;
}
.step:hover { transform: translateY(-3px); }
.step-num {
  font-family: var(--serif); font-size: 36px;
  color: var(--accent); line-height: 1; margin-bottom: 14px;
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-muted); line-height: 1.6; }

/* ── Features ── */
.features { padding: 80px 24px; text-align: center; }
.features h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); margin-bottom: 48px; }
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; max-width: 800px; margin: 0 auto;
}
.feature {
  padding: 28px 24px; text-align: left;
  border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.04);
  background: var(--white);
}
.feature-icon { font-size: 28px; margin-bottom: 12px; }
.feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature p { font-size: 13px; color: var(--ink-muted); line-height: 1.55; }

/* ── Bottom CTA ── */
.bottom-cta {
  padding: 80px 24px; text-align: center;
  background: var(--ink); color: var(--white);
}
.bottom-cta h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.bottom-cta p { color: rgba(255,255,255,0.6); max-width: 460px; margin: 0 auto 32px; font-size: 16px; }
.bottom-cta .waitlist-form input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12); color: #fff;
}
.bottom-cta .waitlist-form input::placeholder { color: rgba(255,255,255,0.35); }
.bottom-cta .form-note { color: rgba(255,255,255,0.3); }

/* ── Footer ── */
footer {
  padding: 32px 24px; text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.35);
  background: var(--ink); border-top: 1px solid rgba(255,255,255,0.05);
}
footer a { color: var(--accent-glow); text-decoration: none; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

/* ── Responsive: mobile (max 600px) ── */
@media (max-width: 600px) {
  nav { padding: 12px 16px; }
  .nav-brand { font-size: 16px; }
  .nav-cta { padding: 8px 16px; font-size: 12px; }
  .hero { padding: 100px 20px 60px; }
  h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-sub { font-size: 16px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form button { width: 100%; }
  .carousel-demo { gap: 6px; max-width: 100%; padding: 0 8px; }
  .slide-hook .slide-headline { font-size: 12px; }
  .slide-hormozi .slide-text, .slide-light .slide-text-dark, .slide-img .slide-text-over { font-size: 11px; }
  .slide-question .slide-text { font-size: 10px; }
  .slide-follow .stay { font-size: 11px; }
  .slide-pitch .pitch-text { font-size: 9px; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step { padding: 24px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { padding: 20px; }
  .social-proof { flex-direction: column; gap: 8px; }
  .preview, .how-it-works, .features, .bottom-cta { padding: 60px 16px; }
}

/* ── Responsive: tablet (601-768px) ── */
@media (min-width: 601px) and (max-width: 768px) {
  .carousel-demo { gap: 14px; }
  .demo-slide { width: 160px; height: 200px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive: small desktop (769-1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero { padding: 120px 32px 80px; }
}
