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

:root {
  --bg:       #0E0520;
  --surface:  #18083A;
  --card:     #1E0D42;
  --border:   rgba(255,255,255,0.08);
  --mint:     #4FE3C1;
  --purple:   #6A1B9A;
  --purple2:  #A78BFA;
  --text:     #FFFFFF;
  --muted:    rgba(255,255,255,0.55);
  --radius:   18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(14,5,32,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo span { font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { border-bottom: 1px solid var(--mint); padding-bottom: 2px; }
.nav-cta {
  background: var(--mint); color: #0E0520; border: none; cursor: pointer;
  padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: opacity .2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ── 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;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(106,27,154,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(79,227,193,0.1); border: 1px solid rgba(79,227,193,0.3);
  color: var(--mint); padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin-bottom: 28px;
}
.hero-badge::before { content: '✦'; font-size: 10px; }
.hero h1 {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -2px; margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 30%, var(--mint) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: clamp(16px, 2.5vw, 20px); color: var(--muted);
  max-width: 560px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

/* ── PAGE HERO (sub-pages) ────────────────────────── */
.page-hero {
  text-align: center;
  padding: 140px 24px 20px;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 30%, var(--mint) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero-sub {
  font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 600px; margin: 0 auto;
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn-primary {
  background: var(--mint); color: #0E0520;
  padding: 16px 36px; border-radius: 50px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .2s, opacity .2s;
}
.btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 16px 36px; border-radius: 50px;
  font-size: 16px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--mint); background: rgba(79,227,193,0.06); }

/* ── PHONE MOCKUP ─────────────────────────────────── */
.hero-phone { position: relative; width: clamp(220px, 28vw, 320px); margin: 0 auto; }
.phone-frame {
  width: 100%; border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.12);
  background: var(--surface); padding: 20px 16px;
  box-shadow: 0 40px 120px rgba(106,27,154,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-notch { width: 100px; height: 28px; background: #0E0520; border-radius: 0 0 20px 20px; margin: 0 auto 16px; }
.phone-screen {
  background: linear-gradient(160deg, #200838 0%, #0E0520 100%);
  border-radius: 24px; padding: 16px; min-height: 400px;
  display: flex; flex-direction: column; gap: 10px;
}
.phone-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 10px;
}
.phone-logo { height: 22px; width: auto; object-fit: contain; }
.phone-greeting { font-size: 10px; color: var(--mint); font-weight: 700; }
.phone-section-label { font-size: 8px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.phone-stat-row { display: flex; gap: 6px; }
.phone-stat { flex: 1; background: rgba(255,255,255,0.07); border-radius: 10px; padding: 8px; border: 1px solid rgba(255,255,255,0.09); }
.phone-stat-label { font-size: 8px; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.phone-stat-value { font-size: 15px; font-weight: 800; color: #fff; line-height: 1; }
.phone-stat-unit { font-size: 8px; color: rgba(255,255,255,0.4); font-weight: 400; }
.phone-med-card { background: #fff; border-radius: 12px; padding: 10px 10px 8px; }
.phone-med-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3px; }
.phone-med-name { font-size: 12px; font-weight: 700; color: #1a0a2e; }
.phone-med-badge { font-size: 8px; font-weight: 700; background: #FEF3C7; color: #92400E; padding: 2px 6px; border-radius: 4px; }
.phone-med-detail { font-size: 9px; color: #6b7280; }
.phone-appt-card { background: rgba(255,255,255,0.06); border-radius: 10px; padding: 8px 10px; border: 1px solid rgba(255,255,255,0.09); display: flex; align-items: center; gap: 8px; }
.phone-appt-date { background: #6A1B9A; border-radius: 6px; padding: 4px 6px; text-align: center; min-width: 28px; }
.phone-appt-month { font-size: 7px; color: rgba(255,255,255,0.7); text-transform: uppercase; }
.phone-appt-day { font-size: 14px; font-weight: 900; color: #fff; line-height: 1; }
.phone-appt-info { flex: 1; }
.phone-appt-title { font-size: 10px; font-weight: 700; color: #fff; }
.phone-appt-sub { font-size: 8px; color: rgba(255,255,255,0.5); }
.phone-appt-fee { font-size: 10px; font-weight: 700; color: var(--mint); }
.phone-nav { display: flex; justify-content: space-around; align-items: center; padding: 8px 4px 4px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: auto; }
.phone-nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.phone-nav-icon { font-size: 14px; }
.phone-nav-label { font-size: 7px; color: rgba(255,255,255,0.4); }
.phone-nav-item.active .phone-nav-label { color: var(--mint); }
.phone-nav-item.active .phone-nav-icon { filter: drop-shadow(0 0 4px rgba(79,227,193,0.6)); }
.phone-card { background: rgba(255,255,255,0.07); border-radius: 10px; padding: 8px 10px; border: 1px solid rgba(255,255,255,0.1); }
.phone-card-title { font-size: 10px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.phone-card-body { font-size: 9px; color: rgba(255,255,255,0.65); line-height: 1.4; }
.phone-fab { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), #A855F7); display: flex; align-items: center; justify-content: center; font-size: 14px; box-shadow: 0 4px 16px rgba(106,27,154,0.7); }

/* ── STATS STRIP ──────────────────────────────────── */
.stats-strip { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; padding: 40px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item { text-align: center; }
.stat-number { font-size: 32px; font-weight: 900; color: var(--mint); }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── SECTIONS ─────────────────────────────────────── */
section { padding: 100px 24px; max-width: 1160px; margin: 0 auto; }
.section-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--mint); text-transform: uppercase; margin-bottom: 14px; }
.section-heading { font-size: clamp(28px, 4vw, 48px); font-weight: 900; line-height: 1.15; letter-spacing: -1px; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.7; }

/* ── FEATURES GRID ────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 56px; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color .25s, transform .25s; }
.feature-card:hover { border-color: rgba(79,227,193,0.35); transform: translateY(-4px); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── VOICE SECTION ────────────────────────────────── */
.voice-section { background: linear-gradient(135deg, rgba(106,27,154,0.2) 0%, rgba(79,227,193,0.05) 100%); border: 1px solid rgba(106,27,154,0.3); border-radius: 28px; padding: 60px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.voice-orb { width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(167,139,250,0.4) 0%, rgba(106,27,154,0.15) 50%, transparent 100%); display: flex; align-items: center; justify-content: center; font-size: 72px; animation: pulse 3s ease-in-out infinite; margin: 0 auto; }
@keyframes pulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(79,227,193,0.3); } 50% { transform: scale(1.04); box-shadow: 0 0 0 24px rgba(79,227,193,0); } }
.voice-commands { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.voice-cmd { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 12px 16px; border-radius: 12px; font-size: 14px; color: var(--muted); }
.voice-cmd::before { content: '"'; font-size: 18px; color: var(--mint); font-weight: 700; flex-shrink: 0; }
.voice-cmd::after { content: '"'; font-size: 18px; color: var(--mint); font-weight: 700; flex-shrink: 0; }

/* ── HOW IT WORKS ─────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 56px; position: relative; }
.steps::before { content: ''; position: absolute; left: 27px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--purple), var(--mint)); }
.step { display: flex; gap: 28px; align-items: flex-start; padding-bottom: 40px; position: relative; }
.step-num { width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0; background: var(--card); border: 2px solid var(--mint); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 900; color: var(--mint); z-index: 1; }
.step-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; padding-top: 14px; }
.step-body p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── WHY SANORA ───────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.why-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: border-color .25s, transform .25s; }
.why-card:hover { border-color: rgba(79,227,193,0.35); transform: translateY(-3px); }
.why-num { font-size: 11px; font-weight: 700; color: var(--mint); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.why-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── REAL MOMENTS ─────────────────────────────────── */
.moments-wrap { margin-top: 56px; display: flex; flex-direction: column; gap: 14px; max-width: 720px; margin-left: auto; margin-right: auto; }
.moment-item { display: flex; align-items: center; gap: 16px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px 24px; font-size: 16px; font-weight: 500; color: var(--text); transition: border-color .2s, background .2s; }
.moment-item:hover { border-color: rgba(79,227,193,0.3); background: rgba(79,227,193,0.04); }
.moment-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); flex-shrink: 0; }

/* ── TRUST BADGES ─────────────────────────────────── */
.trust-strip { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 48px; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 10px 20px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); }
.trust-badge-icon { font-size: 16px; }

/* ── FOR YOU IF ───────────────────────────────────── */
.for-you-list { list-style: none; margin-top: 48px; display: flex; flex-direction: column; gap: 16px; max-width: 680px; margin-left: auto; margin-right: auto; }
.for-you-list li { display: flex; align-items: center; gap: 14px; font-size: 18px; font-weight: 500; color: var(--text); }
.for-you-list li::before { content: '→'; color: var(--mint); font-weight: 700; font-size: 18px; flex-shrink: 0; }

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.testimonial-stars { color: #FBBF24; font-size: 14px; margin-bottom: 14px; }
.testimonial-quote { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.testimonial-author { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ── WAITLIST ─────────────────────────────────────── */
.waitlist-banner { background: linear-gradient(135deg, rgba(79,227,193,0.08) 0%, rgba(106,27,154,0.15) 100%); border: 1px solid rgba(79,227,193,0.2); border-radius: 28px; padding: 72px 48px; text-align: center; }
.waitlist-banner h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; margin-bottom: 16px; }
.waitlist-banner p { font-size: 18px; color: var(--muted); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.waitlist-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.waitlist-input { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; padding: 14px 24px; font-size: 15px; color: #fff; min-width: 260px; outline: none; transition: border-color .2s; }
.waitlist-input::placeholder { color: rgba(255,255,255,0.35); }
.waitlist-input:focus { border-color: var(--mint); }
.waitlist-btn { background: var(--mint); color: #0E0520; padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: opacity .2s, transform .2s; }
.waitlist-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── HEALTH RESOURCES ─────────────────────────────── */
.resources-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.resource-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; gap: 20px; align-items: flex-start; transition: border-color .2s, transform .2s; }
.resource-card:hover { border-color: rgba(79,227,193,0.4); transform: translateY(-2px); }
.resource-icon-wrap { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.resource-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.resource-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.resource-source { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--mint); background: rgba(79,227,193,0.08); border: 1px solid rgba(79,227,193,0.2); padding: 4px 10px; border-radius: 50px; }
.resources-stat-strip { display: flex; gap: 40px; justify-content: center; margin-top: 56px; flex-wrap: wrap; }
.resources-stat { text-align: center; }
.resources-stat-num { font-size: 36px; font-weight: 900; color: var(--mint); line-height: 1; }
.resources-stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ── PRICING: USER PLANS ──────────────────────────── */
.plans-section-label { font-size: 14px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-top: 80px; }
.plans-section-label:first-child { margin-top: 0; }
.user-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 32px; }
.user-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.user-card.popular { border-color: rgba(106,27,154,0.6); background: rgba(106,27,154,0.08); }
.popular-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; background: var(--purple); color: #fff; padding: 3px 10px; border-radius: 50px; margin-bottom: 14px; text-transform: uppercase; }
.plan-tag { display: inline-block; font-size: 11px; font-weight: 700; background: rgba(255,255,255,0.07); color: var(--muted); padding: 4px 10px; border-radius: 50px; margin-bottom: 14px; }
.plan-tag.accent { background: rgba(106,27,154,0.2); color: #c084fc; }
.user-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.plan-price { font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.plan-price span { font-size: 15px; font-weight: 500; color: var(--muted); }
.user-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 12px 0 20px; }
.user-card .pro-list { flex: 1; }

/* ── PROFESSIONAL PLANS ───────────────────────────── */
.pro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.pro-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.pro-card.highlight { border-color: rgba(79,227,193,0.3); background: rgba(79,227,193,0.05); }
.pro-tag { display: inline-block; font-size: 11px; font-weight: 700; background: rgba(79,227,193,0.15); color: var(--mint); padding: 4px 10px; border-radius: 50px; margin-bottom: 14px; }
.pro-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.pro-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.pro-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pro-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.8); }
.pro-list li::before { content: '✓'; color: var(--mint); font-weight: 700; flex-shrink: 0; }

/* ── CTA BANNER ───────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, #3D1460 0%, #200838 50%, rgba(79,227,193,0.08) 100%); border: 1px solid rgba(106,27,154,0.4); border-radius: 28px; padding: 72px 48px; text-align: center; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; margin-bottom: 16px; }
.cta-banner p { font-size: 18px; color: var(--muted); margin-bottom: 40px; }
.store-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-btn { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; text-decoration: none; padding: 14px 28px; border-radius: 14px; font-size: 15px; font-weight: 600; transition: background .2s, border-color .2s; }
.store-btn:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
.store-btn-icon { font-size: 28px; }
.store-btn-sub { font-size: 11px; color: var(--muted); display: block; }

/* ── FOOTER ───────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 48px 40px 32px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1160px; margin: 0 auto; }
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; max-width: 1160px; margin: 0 auto; font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--mint); }

/* ── GLOW DOTS ────────────────────────────────────── */
.glow { position: absolute; border-radius: 50%; pointer-events: none; }
.glow-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(106,27,154,0.2) 0%, transparent 70%); top: 10%; right: -200px; }
.glow-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(79,227,193,0.1) 0%, transparent 70%); top: 60%; left: -100px; }

/* ── SCROLL ANIMATIONS ────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .voice-section { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .user-grid { grid-template-columns: 1fr; }
  .pro-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
  .stats-strip { gap: 28px; }
  .cta-banner { padding: 48px 24px; }
  .waitlist-banner { padding: 48px 24px; }
}
@media (max-width: 480px) {
  footer { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
