/* ============================================
   VibeKit — Premium Landing Page CSS
   Dark theme, festival culture, clean reads
   ============================================ */

:root {
  --bg: #07070d;
  --bg-card: #0d0d16;
  --bg-card-hover: #12121c;
  --fg: #f0efe8;
  --fg-muted: #7c7c8a;
  --fg-dim: #4a4a58;
  --accent-teal: #00e8c8;
  --accent-coral: #ff6b6b;
  --accent-violet: #a78bfa;
  --accent-teal-dim: rgba(0, 232, 200, 0.1);
  --accent-coral-dim: rgba(255, 107, 107, 0.1);
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-glow: 0 0 40px rgba(0, 232, 200, 0.12);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-teal) var(--bg);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-teal); border-radius: 3px; }

::selection { background: var(--accent-teal); color: var(--bg); }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 64px);
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(7, 7, 13, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-mark {
  width: 8px;
  height: 8px;
  background: var(--accent-teal);
  border-radius: 3px;
  box-shadow: 0 0 10px var(--accent-teal);
  display: inline-block;
}

.nav-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-teal);
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid rgba(0, 232, 200, 0.3);
  border-radius: var(--radius-pill);
  transition: background 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  background: var(--accent-teal-dim);
  border-color: var(--accent-teal);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px clamp(24px, 5vw, 64px) 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 60% -10%, rgba(88, 28, 135, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 25%, rgba(30, 58, 138, 0.4) 0%, transparent 50%),
    linear-gradient(175deg, #0b0018 0%, #07070d 45%, #0a0620 70%, #07070d 100%);
  pointer-events: none;
}

/* Subtle geometric light bursts */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(0, 232, 200, 0.07) 0%, transparent 22%),
    radial-gradient(circle at 78% 55%, rgba(167, 139, 250, 0.06) 0%, transparent 18%),
    radial-gradient(circle at 55% 75%, rgba(0, 232, 200, 0.04) 0%, transparent 28%);
  pointer-events: none;
}

/* Soft floor glow */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 10%;
  right: 10%;
  height: 60%;
  background: radial-gradient(ellipse at center bottom, rgba(0, 232, 200, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-teal);
  font-weight: 500;
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-teal);
  animation: trust-pulse 2.5s ease-in-out infinite;
}

@keyframes trust-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.72;
  max-width: 460px;
  margin-bottom: 36px;
}

/* ---- PREMIUM BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-teal);
  color: #06060a;
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.2s ease,
              background 0.2s;
  box-shadow: 0 4px 20px rgba(0, 232, 200, 0.35), 0 0 0 0 rgba(0, 232, 200, 0);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 232, 200, 0.5), 0 0 20px rgba(0, 232, 200, 0.2);
  background: #12f0d6;
}

.btn-primary:active {
  transform: translateY(0) scale(0.99);
}

/* Secondary/outline button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 13px 28px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

/* Hero anchor — force override of browser-default <a> styling */
.hero-actions .btn-secondary {
  color: var(--fg);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 13px 28px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-actions .btn-secondary:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.hero-trust--variant {
  margin-top: -16px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: var(--accent-teal);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-trust strong {
  color: var(--fg);
  font-weight: 600;
}

/* Featured hero CTA variant — same brand tone, slightly louder */
.btn-hero-cta {
  padding: 15px 36px;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: var(--shadow-glow), 0 4px 20px rgba(0, 232, 200, 0.35), 0 0 0 0 rgba(0, 232, 200, 0);
}

.btn-hero-cta:hover {
  box-shadow: var(--shadow-glow), 0 8px 32px rgba(0, 232, 200, 0.5), 0 0 20px rgba(0, 232, 200, 0.2);
}

.cta-variant-eyebrow {
  font-size: 0.78rem;
  color: var(--accent-teal);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  flex-basis: 100%;
  margin-bottom: 4px;
}

/* ---- HERO EMAIL FORM ---- */
.hero-email-section {
  width: 100%;
  max-width: 480px;
}

.hero-email-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.email-form-row {
  display: flex;
  gap: 10px;
}

.email-form-row input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 13px 20px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.email-form-row input::placeholder { color: var(--fg-dim); }

.email-form-row input:focus {
  border-color: rgba(0, 232, 200, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 232, 200, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.btn-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent-teal);
  color: #06060a;
  border: none;
  border-radius: var(--radius-pill);
  padding: 13px 24px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.2s ease,
              background 0.2s;
  box-shadow: 0 4px 18px rgba(0, 232, 200, 0.3);
  flex-shrink: 0;
}

.btn-email:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(0, 232, 200, 0.45);
  background: #12f0d6;
}

.btn-email:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-email-loading { display: none; }
.btn-email.loading .btn-email-text { display: none; }
.btn-email.loading .btn-email-loading { display: flex; }

.spinner {
  width: 16px;
  height: 16px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.email-form-msg {
  margin-top: 10px;
  font-size: 0.82rem;
  min-height: 20px;
  padding-left: 4px;
  transition: opacity 0.3s;
}

.email-form-msg.success { color: var(--accent-teal); }
.email-form-msg.error   { color: var(--accent-coral); }

/* ---- HERO WAITLIST ---- */
.hero-waitlist {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  width: 100%;
}

.hero-waitlist-label {
  font-size: 0.78rem;
  color: var(--accent-coral);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.hero-waitlist-form { max-width: 480px; }

.waitlist-form-row {
  display: flex;
  gap: 10px;
}

.waitlist-form-row input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 107, 107, 0.06);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: var(--radius-pill);
  padding: 13px 20px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.waitlist-form-row input::placeholder { color: var(--fg-dim); }
.waitlist-form-row input:focus {
  border-color: rgba(255, 107, 107, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
  background: rgba(255, 107, 107, 0.08);
}

.btn-waitlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent-teal);
  color: #06060a;
  border: none;
  border-radius: var(--radius-pill);
  padding: 13px 24px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.2s ease,
              background 0.2s;
  box-shadow: 0 4px 18px rgba(0, 232, 200, 0.3);
  flex-shrink: 0;
}

.btn-waitlist:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(0, 232, 200, 0.45);
  background: #12f0d6;
}

.btn-waitlist:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-waitlist-loading { display: none; }
.btn-waitlist.loading .btn-waitlist-text { display: none; }
.btn-waitlist.loading .btn-waitlist-loading { display: flex; }

.waitlist-form-msg {
  margin-top: 10px;
  font-size: 0.82rem;
  min-height: 20px;
  padding-left: 4px;
  transition: opacity 0.3s;
}

.waitlist-form-msg.success { color: var(--accent-teal); }
.waitlist-form-msg.error   { color: var(--accent-coral); }

/* ---- HERO VISUAL (CHECKLIST CARD) ---- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.checklist-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-glow), 0 24px 48px rgba(0,0,0,0.4);
  transition: box-shadow 0.3s;
}

.checklist-card:hover {
  box-shadow: 0 0 60px rgba(0, 232, 200, 0.18), 0 24px 48px rgba(0,0,0,0.5);
}

.checklist-header {
  margin-bottom: 20px;
}

.checklist-event {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.checklist-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.checklist-tag {
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--accent-teal-dim);
  color: var(--accent-teal);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02);
  font-size: 0.88rem;
  transition: background 0.2s;
}

.checklist-item:hover { background: rgba(255,255,255,0.04); }

.checklist-item.checked { color: var(--fg); }
.checklist-item.checked span { text-decoration: line-through; opacity: 0.45; }

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-teal);
  background: var(--accent-teal-dim);
}

.check-icon--empty {
  border-color: var(--fg-dim);
  background: transparent;
  color: transparent;
}

.checklist-item span { flex: 1; }

.buy-link {
  font-size: 0.72rem;
  color: var(--accent-teal);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.buy-link:hover { opacity: 1; }

.checklist-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-coral));
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.progress-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  white-space: nowrap;
  font-weight: 500;
}

/* ---- SECTION SHARED ---- */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-teal);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 60px;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: clamp(80px, 10vw, 120px) 0;
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.step { padding: 0 clamp(16px, 3vw, 28px); }

.step-connector {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--accent-teal-dim), var(--border));
  margin-top: 28px;
  flex-shrink: 0;
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: transparent;
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 1px rgba(0, 232, 200, 0.4);
  letter-spacing: -0.02em;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.step-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- FEATURES ---- */
.features {
  padding: clamp(80px, 10vw, 120px) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,232,200,0.018) 50%, transparent 100%);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.25s;
  position: relative;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.feature-card:hover {
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  margin-bottom: 20px;
  background: var(--accent-teal-dim);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.feature-body {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: clamp(80px, 10vw, 120px) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(167,139,250,0.03) 50%, transparent 100%);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(0, 232, 200, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--accent-teal);
}

.testimonial-quote {
  font-size: 0.93rem;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  position: relative;
}

.testimonial-quote::before {
  content: '\u201C';
  color: var(--accent-teal);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 800;
  line-height: 0;
  vertical-align: -0.15em;
  margin-right: 2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: #07070d;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--fg);
}

.testimonial-meta {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* ---- OUTCOMES ---- */
.outcomes {
  padding: clamp(80px, 10vw, 120px) 0;
  position: relative;
}

.outcomes::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.outcomes-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 40px;
}

.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.outcome {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.outcome-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-teal-dim);
  border: 1px solid rgba(0,232,200,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  flex-shrink: 0;
  margin-top: 1px;
}

.outcome p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.outcomes-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: border-color 0.3s;
}

.stat-card:hover { border-color: var(--border-strong); }

.stat-card--accent {
  border-color: rgba(0,232,200,0.3);
  background: var(--accent-teal-dim);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.04em;
}

.stat-card--accent .stat-number { color: var(--accent-teal); }

.stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.45;
}

/* ---- CLOSING ---- */
.closing {
  padding: clamp(100px, 12vw, 140px) clamp(24px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(0,232,200,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.72;
  max-width: 520px;
  margin: 0 auto 48px;
}

.closing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.closing-brand {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 8px;
}

.closing-trust {
  font-size: 0.8rem;
  color: var(--fg-dim);
  margin-top: 20px;
}

/* ---- FOOTER ---- */
.footer {
  padding: 48px clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--fg);
  letter-spacing: -0.04em;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-disclosure {
  font-size: 0.76rem;
  color: var(--fg-dim);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-teal); }

.footer-sep { opacity: 0.3; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-visual {
    order: -1;
  }

  .checklist-card {
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-sub { max-width: 100%; }

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

  .step-connector { display: none; }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .outcomes-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 96px 24px 56px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary, .btn-secondary {
    justify-content: center;
  }

  .email-form-row,
  .waitlist-form-row {
    flex-direction: column;
  }

  .btn-email, .btn-waitlist {
    width: 100%;
  }

  .checklist-card { padding: 18px; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}