/* =============================================
   CONTENTLOUPE — BOLD GRADIENT + 3D DEPTH THEME
   ============================================= */

:root {
  /* Deep purple → amber gradient palette */
  --deep-purple: #1a0a2e;
  --mid-purple: #2d1060;
  --bright-purple: #6b21a8;
  --violet: #7c3aed;
  --amber: #f59e0b;
  --warm-orange: #ea580c;
  --rose: #e11d48;

  /* Neutrals */
  --surface: rgba(255, 255, 255, 0.07);
  --surface-solid: rgba(255, 255, 255, 0.95);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.15);
  --fg: #ffffff;
  --fg-muted: rgba(255, 255, 255, 0.6);
  --fg-dark: #1a0a2e;
  --bg-dark: #0f051c;

  /* Spacing scale */
  --section-pad: clamp(64px, 8vw, 100px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--fg);
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* =============================================
   GRADIENT MESH PAGE BACKGROUND
   ============================================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 5%, rgba(107, 33, 168, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(234, 88, 12, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 90% 85%, rgba(124, 58, 237, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 5% 90%, rgba(225, 29, 72, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(45, 16, 96, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 5, 28, 0.3) 0%, rgba(15, 5, 28, 0.1) 40%, rgba(15, 5, 28, 0.5) 100%);
  pointer-events: none;
  z-index: 0;
}

/* =============================================
   FLOATING ORBS (decorative background shapes)
   ============================================= */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 500px; height: 500px;
  top: -120px; left: -150px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.6), transparent 70%);
}
.orb-2 {
  width: 400px; height: 400px;
  top: 40%; right: -100px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.5), transparent 70%);
}
.orb-3 {
  width: 350px; height: 350px;
  bottom: 20%; left: -80px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.35), transparent 70%);
}
.orb-4 {
  width: 300px; height: 300px;
  top: 60%; left: 50%;
  background: radial-gradient(circle, rgba(107, 33, 168, 0.4), transparent 70%);
}

/* =============================================
   NAVBAR — frosted glass
   ============================================= */
.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
  background: rgba(245, 158, 11, 0.1);
}

.hero-headline {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 40px rgba(124, 58, 237, 0.3);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-size: 30px;
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--glass-border);
}

/* Hero visual — frosted glass card */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.recording-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 16px 24px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.recording-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.recording-text { display: flex; flex-direction: column; }
.recording-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  font-weight: 600;
}
.recording-type {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}

.arrow-down { margin: 8px 0; opacity: 0.5; }

.outputs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.output-chip {
  background: linear-gradient(135deg, var(--violet), var(--bright-purple));
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.output-chip:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.6);
}

/* =============================================
   PROOF — dark card with glowing accent
   ============================================= */
.proof {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--section-pad) 48px;
  overflow: hidden;
}
.proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}
.proof::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.proof-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.proof-quote {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.proof-context {
  font-size: 16px;
  color: var(--fg-muted);
}

/* =============================================
   SECTION TITLE
   ============================================= */
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 48px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 30px rgba(124, 58, 237, 0.2);
}

/* =============================================
   HOW — frosted glass step cards
   ============================================= */
.how {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.step {
  display: flex;
  gap: 24px;
  padding: 40px;
  border-bottom: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  transition: background 0.25s ease;
}
.step:hover {
  background: rgba(124, 58, 237, 0.08);
}
.step:nth-child(even) { border-right: none; }
.step:nth-last-child(-n+2) { border-bottom: none; }

.step-num {
  font-size: 42px;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--amber), var(--warm-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.step-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* =============================================
   WHAT'S INCLUDED — 3D lifted cards with glow
   ============================================= */
.whatsincluded {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 48px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.include-card {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.include-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.25), 0 0 0 1px rgba(124, 58, 237, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  border-color: rgba(124, 58, 237, 0.4);
}
.include-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(234, 88, 12, 0.15));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.include-card:hover .include-icon {
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}
.include-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.include-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* =============================================
   MANIFESTO — readable text on dark background
   ============================================= */
.manifesto {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 48px;
  background: rgba(0, 0, 0, 0.2);
}
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 32px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.75;
}

/* =============================================
   ONBOARDING FORM — frosted glass card
   ============================================= */
.onboarding-form-section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 48px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.onboarding-inner {
  max-width: 640px;
  margin: 0 auto;
}

.onboarding-header { text-align: center; margin-bottom: 48px; }

.onboarding-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 16px;
  background: rgba(245, 158, 11, 0.08);
}

.onboarding-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.onboarding-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Progress indicator */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 0;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--fg-muted);
  background: var(--surface);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.progress-step.active .step-circle {
  border-color: var(--amber);
  background: linear-gradient(135deg, var(--amber), var(--warm-orange));
  color: white;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}
.progress-step.completed .step-circle {
  border-color: var(--violet);
  background: linear-gradient(135deg, var(--violet), var(--bright-purple));
  color: white;
}
.step-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.progress-step.active .step-label { color: var(--fg); }
.progress-line {
  width: 60px;
  height: 2px;
  background: var(--glass-border);
  margin-bottom: 22px;
  transition: background 0.3s ease;
}
.progress-line.completed { background: linear-gradient(90deg, var(--violet), var(--amber)); }

/* Form card — frosted glass */
.form-card {
  background: var(--surface);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Steps */
.form-step { display: none; }
.form-step.active { display: block; }

.form-group { margin-bottom: 24px; }
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.required { color: var(--amber); }
.optional-label {
  font-weight: 400;
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
  color: var(--fg);
}
.form-group select option {
  background: var(--bg-dark);
  color: var(--fg);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2), inset 0 1px 0 rgba(255,255,255,0.05);
  background: rgba(255, 255, 255, 0.1);
}

.form-group input.has-error,
.form-group select.has-error,
.form-group textarea.has-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.field-hint {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 6px;
}
.field-error {
  display: block;
  font-size: 12px;
  color: #f87171;
  margin-top: 5px;
  min-height: 16px;
}

/* Checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.checkbox-item:hover {
  border-color: var(--violet);
  background: rgba(124, 58, 237, 0.1);
}
.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--violet);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

/* Radio group */
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.radio-item:hover {
  border-color: var(--violet);
  background: rgba(124, 58, 237, 0.1);
}
.radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--violet);
  cursor: pointer;
  flex-shrink: 0;
}
.radio-content { display: flex; flex-direction: column; gap: 2px; }
.radio-title { font-size: 15px; font-weight: 700; color: var(--fg); }
.radio-desc { font-size: 13px; color: var(--fg-muted); }

/* Form actions */
.form-actions { margin-top: 32px; }
.form-actions-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Buttons — gradient filled with depth */
.btn {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--bright-purple));
  color: white;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bright-purple), var(--deep-purple));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.6), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg-muted);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--fg);
  background: rgba(255, 255, 255, 0.1);
}

.btn-submit { min-width: 120px; justify-content: center; }

/* Confirmation */
.form-confirmation { text-align: center; padding: 20px 0; }
.confirmation-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--violet), var(--bright-purple));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
}
.form-confirmation h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 10px;
}
.form-confirmation p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* =============================================
   CLOSING — gradient hero-style CTA
   ============================================= */
.closing {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 48px;
  text-align: center;
  overflow: hidden;
  background: transparent;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(124, 58, 237, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.closing-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 40px rgba(124, 58, 237, 0.4);
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  position: relative;
  z-index: 1;
  padding: 32px 48px;
  border-top: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.02);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-size: 16px;
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); }

/* =============================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================= */

/* Reduced motion: disable all animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Base: hidden before JS runs */
[data-animate] { opacity: 0; }

/* Fade in up */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-animate="fade-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in */
[data-animate="fade"] {
  opacity: 0;
  transition: opacity 0.55s ease;
}
[data-animate="fade"].is-visible { opacity: 1; }

/* Stagger delays for children */
[data-animate-children] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
[data-animate-children].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-animate-children].is-visible > *:nth-child(2) { transition-delay: 0.12s; }
[data-animate-children].is-visible > *:nth-child(3) { transition-delay: 0.19s; }
[data-animate-children].is-visible > *:nth-child(4) { transition-delay: 0.26s; }
[data-animate-children].is-visible > *:nth-child(5) { transition-delay: 0.33s; }
[data-animate-children].is-visible > *:nth-child(6) { transition-delay: 0.40s; }
[data-animate-children].is-visible > *:nth-child(7) { transition-delay: 0.47s; }
[data-animate-children].is-visible > *:nth-child(8) { transition-delay: 0.54s; }
[data-animate-children].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance animation */
.hero-badge {
  animation: heroFadeUp 0.6s ease both;
  animation-delay: 0.1s;
}
.hero-headline {
  animation: heroFadeUp 0.65s ease both;
  animation-delay: 0.25s;
}
.hero-sub {
  animation: heroFadeUp 0.65s ease both;
  animation-delay: 0.42s;
}
.hero-stats {
  animation: heroFadeUp 0.6s ease both;
  animation-delay: 0.58s;
}
.hero-visual {
  animation: heroFadeIn 0.8s ease both;
  animation-delay: 0.3s;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .includes-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar, .hero, .how, .whatsincluded, .manifesto, .closing, .footer, .proof, .onboarding-form-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hero-sub { max-width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .step:nth-child(odd) { border-right: none; }
  .step:nth-last-child(-n+2) { border-bottom: 1px solid var(--glass-border); }
  .step:last-child { border-bottom: none; }
  .includes-grid { grid-template-columns: 1fr; }
  .navbar { flex-direction: column; gap: 4px; align-items: flex-start; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .form-progress { gap: 0; }
  .progress-line { width: 32px; }
  .form-actions-split { flex-direction: column-reverse; gap: 12px; }
  .form-actions-split .btn { width: 100%; justify-content: center; }
  .form-card { padding: 28px 20px; }
  .onboarding-form-section { padding: 60px 24px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .includes-grid { grid-template-columns: 1fr; }
}