/* ============================================================
   ZOVERA LANDING PAGE — Dark Premium Health Intelligence
   Palette: Near-black base · Purple/Blue brand accents · Red heartbeat
   Fonts: Cabinet Grotesk (display) · Satoshi (body)
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Type scale */
  --text-xs:   clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
  --text-sm:   clamp(0.95rem, 0.88rem + 0.35vw, 1.05rem);
  --text-base: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
  --text-lg:   clamp(1.2rem, 1.1rem + 0.75vw, 1.6rem);
  --text-xl:   clamp(1.6rem, 1.3rem + 1.25vw, 2.4rem);
  --text-2xl:  clamp(2.1rem, 1.4rem + 2.5vw, 3.75rem);
  --text-hero: clamp(2.8rem, 1.2rem + 6vw, 6.2rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Zovera Brand Palette — Dark-first */
  --color-bg:              #0a090e;
  --color-surface:         #111018;
  --color-surface-2:       #16141f;
  --color-surface-offset:  #1c1a28;
  --color-border:          #2a2739;
  --color-divider:         #221f31;

  --color-text:            #e8e6f0;
  --color-text-muted:      #ccc8e0;
  --color-text-faint:      #7a7698;
  --color-text-inverse:    #0a090e;

  /* Brand accents — pulled from logo */
  --color-purple:          #9b4deb;
  --color-purple-light:    #c17bff;
  --color-purple-dim:      #3d1a6b;
  --color-blue:            #3b7cf4;
  --color-blue-light:      #6fa4ff;
  --color-blue-dim:        #102255;
  --color-red:             #e03030;
  --color-red-dim:         #4a0f0f;

  /* Primary = purple for CTAs */
  --color-primary:         #9b4deb;
  --color-primary-hover:   #b06ff5;
  --color-primary-active:  #7c38c2;

  /* Gradient */
  --gradient-brand: linear-gradient(135deg, var(--color-purple), var(--color-blue));
  --gradient-glow:  radial-gradient(ellipse at center, var(--color-purple-dim), transparent 70%);

  /* UI */
  --radius-sm:  0.375rem;
  --radius-md:  0.625rem;
  --radius-lg:  1rem;
  --radius-xl:  1.5rem;
  --radius-full: 9999px;

  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.6);
  --shadow-glow-purple: 0 0 40px rgba(155, 77, 235, 0.3);
  --shadow-glow-blue:   0 0 40px rgba(59, 124, 244, 0.25);

  /* Content widths */
  --content-narrow:  640px;
  --content-default: 980px;
  --content-wide:    1200px;

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  --font-body:    'Satoshi', 'Inter', sans-serif;
}

/* ── BASE RESET ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul[role='list'], ol[role='list'] { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.1;
}

p, li { text-wrap: pretty; }

a, button, [role='button'] {
  transition: color var(--transition), background var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              opacity var(--transition);
}

button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--color-purple-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: rgba(155, 77, 235, 0.3);
  color: var(--color-text);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(48px, 10vw, 160px);
}

.section {
  padding-block: clamp(var(--space-20), 9vw, var(--space-24));
}

/* ── TYPOGRAPHY UTILITIES ───────────────────────────────── */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-purple-light);
  margin-bottom: var(--space-4);
  display: block;
}

.section-heading {
  font-size: var(--text-2xl);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-8);
}

.section-heading.centered { text-align: center; }

.section-heading--accented {
  position: relative;
  padding-bottom: var(--space-4);
  display: block;
}
.section-heading--accented::after {
  content: '';
  display: block;
  margin: var(--space-3) auto 0;
  width: 64px;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.section-sub {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-12);
  max-width: 640px;
  line-height: 1.7;
}

.section-sub.centered {
  text-align: center;
  margin-inline: auto;
}

/* ── BADGE ──────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(59, 124, 244, 0.18);
  border: 1px solid rgba(59, 124, 244, 0.45);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #7eb3ff;
}

.badge--small {
  font-size: 0.7rem;
  padding: var(--space-1) var(--space-3);
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
}

.btn--sm  { font-size: 0.76rem; padding: var(--space-2) var(--space-4); white-space: nowrap; }
.btn--lg  { font-size: var(--text-base); padding: var(--space-4) var(--space-8); border-radius: var(--radius-lg); }
.btn--xl  { font-size: var(--text-lg); padding: var(--space-5) var(--space-10); border-radius: var(--radius-lg); }

.btn--primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 0 20px rgba(155, 77, 235, 0.4);
}
.btn--primary:hover {
  box-shadow: 0 0 32px rgba(155, 77, 235, 0.65), 0 4px 20px rgba(0,0,0,0.4);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); box-shadow: none; }

/* ── Score primary button (solid purple #B000EB) */
.btn--score-primary {
  background: #B000EB;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(176, 0, 235, 0.45);
}
.btn--score-primary:hover {
  background: #9000C2;
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(176, 0, 235, 0.65), 0 4px 20px rgba(0,0,0,0.4);
}
.btn--score-primary:active { transform: translateY(0); box-shadow: none; }

/* ── Outline secondary button (kept for legacy) */
.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}
.btn--outline:active { transform: translateY(0); }

/* ── Blue secondary button */
.btn--blue {
  background: #3b7cf4;
  color: #fff;
  font-weight: 600;
  border: none;
  box-shadow: 0 0 18px rgba(59, 124, 244, 0.35);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.btn--blue:hover {
  background: #2d6de0;
  box-shadow: 0 0 28px rgba(59, 124, 244, 0.55), 0 4px 16px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}
.btn--blue:active { transform: translateY(0); box-shadow: none; }

/* ── CTA stacks (button + microcopy pairs) */
.hero__cta-stack,
.gs__cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* ── Button microcopy */
.hero__cta-micro {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-align: center;
  margin: 0;
  line-height: 1.4;
}
.hero__cta-micro .price-was {
  text-decoration: line-through;
  opacity: 0.6;
}

/* ── Tertiary preview link */
.hero__preview-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #C77FFF;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
  margin-top: 4px;
}
.hero__preview-link:hover { color: #d9a8ff; }

/* ── 1% Donation callout card */
.donation-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 28px;
  max-width: 640px;
  width: 100%;
  box-sizing: border-box;
}
.donation-callout__icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.donation-callout__body { flex: 1; }
.donation-callout__headline {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 6px;
}
.donation-callout__text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin: 0 0 10px;
}
.donation-callout__link {
  color: #22C55E;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.donation-callout__link:hover { opacity: 0.8; }

/* Center donation callout + GS CTA stacks within get-started */
.get-started__inner .donation-callout,
.get-started__inner .gs__cta-stack {
  margin-left: auto;
  margin-right: auto;
}
.get-started__inner .gs__cta-stack {
  max-width: 480px;
  margin-bottom: 12px;
}

.btn--ghost {
  background: linear-gradient(135deg, #3b7cf4 0%, #5b5bd6 100%);
  color: #ffffff;
  border-color: transparent;
  font-weight: 700;
}
.btn--ghost:hover {
  background: linear-gradient(135deg, #4d8df8 0%, #6c6ce0 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(59, 124, 244, 0.35);
  transform: translateY(-1px);
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  /* needed so nav__mobile dropdown positions relative to nav bar */
  overflow: visible;
  background: rgba(10, 9, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition);
}

.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.nav__logo { text-decoration: none; flex-shrink: 0; }

.nav__logo-img {
  height: 110px;
  max-width: 325px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-shrink: 1;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav__links a:hover { color: var(--color-text); }

/* ── HERO ────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════
   HERO — full redesign
   Image fills full width. Text box floats over left third.
   Woman's face is centered in the right 55% of the image.
═══════════════════════════════════════════════════════ */

.hero {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-bg);
}

/* ── Image container ──────────────────────────────────── */
.hero__visual {
  position: relative;
  width: 100%;
  height: clamp(560px, 65vw, 780px);
  overflow: hidden;
}

.hero__img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* New image: woman naturally sits on the right — show her centered there */
  object-position: 62% center;
  display: block;
}

/* ── Text overlay box ─────────────────────────────────── */
/*
  Strategy: box left edge = container padding (matches nav/sections).
  Box width = 38% of viewport, max 520px.
  That leaves ~62% for the woman — her face sits at ~55-60% x position.
  Internal padding: 40px on all sides — generous breathing room.
  Opacity: 50% (rgba 0.50) so image shows through.
  Vertically: centred in the image.
*/
.hero__overlay-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: clamp(48px, 10vw, 160px);
  width: clamp(340px, 36%, 520px);
  /* 50% opacity as requested */
  background: rgba(10, 9, 14, 0.50);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(155, 77, 235, 0.30);
  border-radius: 24px;
  /* Generous internal padding — text never touches the box edge */
  padding: 36px 44px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.40), 0 0 80px rgba(155,77,235,0.10);
  z-index: 2;
  overflow: hidden;
  /* Center all content */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Subtle dot grid inside box */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  border-radius: 24px;
}

/* Purple glow — soft, decorative */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.hero__glow--purple {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--color-purple), transparent 70%);
  opacity: 0.18;
  top: -60px;
  left: -40px;
}

.hero__glow--blue { display: none; }

/* All text inside overlay box sits above glows */
.hero__eyebrow,
.hero__headline,
.hero__sub,
.hero__differentiator,
.hero__cta-group,
.hero__disclaimer {
  position: relative;
  z-index: 1;
}

.hero__differentiator {
  font-size: clamp(0.85rem, 0.75rem + 0.4vw, 1rem);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.55;
  margin-bottom: var(--space-6);
  opacity: 0.88;
}

.hero__eyebrow { margin-bottom: var(--space-4); }

.hero__headline {
  font-size: clamp(1.8rem, 1rem + 2.6vw, 3rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--color-text);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.05rem);
  color: rgba(232, 230, 240, 0.92);
  margin-bottom: var(--space-6);
  line-height: 1.6;
  max-width: 42ch;
  text-align: center;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
  width: 100%;
}

.hero__disclaimer {
  font-size: var(--text-xs);
  color: rgba(232, 230, 240, 0.55);
}

/* STATS BAR */
.hero__stats {
  border-top: 1px solid var(--color-divider);
  background: var(--color-surface);
  padding-block: var(--space-8);
}

.hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  /* Uses .container for horizontal padding — no extra needed */
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat-card__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── PROBLEM SECTION ────────────────────────────────────── */
.problem {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-16);
  align-items: start;
}

.problem__text h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-6);
}

.problem__text p {
  color: var(--color-text);
  margin-bottom: var(--space-5);
  max-width: 56ch;
  line-height: 1.75;
}

.problem__text em {
  font-style: normal;
  color: var(--color-purple-light);
}

.problem__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pain-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: start;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pain-card:hover {
  border-color: var(--color-purple-dim);
  box-shadow: 0 0 20px rgba(155, 77, 235, 0.12);
}

.pain-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(155, 77, 235, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-purple-light);
  flex-shrink: 0;
}

.pain-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.pain-card p {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.65;
}

/* ── HOW IT WORKS ───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--space-6);
  align-items: start;
  margin-bottom: var(--space-12);
}

.step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.step:hover {
  border-color: var(--color-blue);
  box-shadow: 0 0 24px rgba(59, 124, 244, 0.15);
}

.step__connector {
  width: 2px;
  height: 60px;
  margin-top: var(--space-10);
  background: linear-gradient(to bottom, var(--color-purple), var(--color-blue));
  border-radius: 1px;
  opacity: 0.5;
}

.step__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-4);
  line-height: 1;
}

.step__content h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.step__content p {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.65;
}

.how__cta { text-align: center; }

/* ── WHAT YOU GET ───────────────────────────────────────── */
.what {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

.what__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.feature-card__icon.purple {
  background: rgba(155, 77, 235, 0.15);
  color: var(--color-purple-light);
  border: 1px solid rgba(155, 77, 235, 0.3);
}

.feature-card__icon.blue {
  background: rgba(59, 124, 244, 0.15);
  color: var(--color-blue-light);
  border: 1px solid rgba(59, 124, 244, 0.3);
}

.feature-card__icon.red {
  background: rgba(224, 48, 48, 0.12);
  color: #ff7070;
  border: 1px solid rgba(224, 48, 48, 0.25);
}

.feature-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.65;
}

/* ── SAMPLE REPORT ──────────────────────────────────────── */
.sample__preview {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(155, 77, 235, 0.1);
}

.sample__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-8);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-surface-2);
}

.sample__header h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  margin: var(--space-3) 0 var(--space-2);
}

.sample__header p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.sample__lock {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  flex-shrink: 0;
  margin-top: var(--space-1);
}

.sample__items { padding: var(--space-2); }

.sample__item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-5);
  padding: var(--space-6) var(--space-6);
  border-bottom: 1px solid var(--color-divider);
  transition: background var(--transition);
}

.sample__item:last-of-type { border-bottom: none; }
.sample__item:hover { background: rgba(155, 77, 235, 0.04); }

.sample__item-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-text-faint);
  line-height: 1;
  padding-top: var(--space-1);
}

.sample__item-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.sample__item-tags {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(59, 124, 244, 0.12);
  border: 1px solid rgba(59, 124, 244, 0.25);
  color: var(--color-blue-light);
}

.sample__item-why {
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: 1.65;
}

.sample__item-dose {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.dose-label {
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

/* Blurred item */
.sample__item--blurred {
  overflow: hidden;
}

.sample__item--blurred .sample__item-why,
.sample__item--blurred .sample__item-dose {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
}

.blurred-dose { filter: blur(4px); user-select: none; }

.sample__item-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  background: rgba(17, 16, 24, 0.6);
  backdrop-filter: blur(2px);
  border-radius: var(--radius-md);
}

.sample__more-blur {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  background: linear-gradient(to bottom, var(--color-surface) 0%, var(--color-surface-offset) 100%);
}

.sample__more-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-faint);
}

.sample__cta {
  padding: var(--space-10) var(--space-8);
  text-align: center;
  border-top: 1px solid var(--color-divider);
  background: var(--color-surface-2);
}

.sample__cta p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  margin-inline: auto;
}

/* ── TESTIMONIAL PRO VARIANT ────────────────────────────── */
.testimonial--pro {
  border-color: rgba(212,175,55,0.25);
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(212,175,55,0.04) 100%);
}
.testimonial--pro .testimonial__avatar {
  background: linear-gradient(135deg, #d4af37, #f5c842);
  color: #0a090e;
}
.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #d4af37;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-full);
  padding: 2px 8px;
  margin-bottom: var(--space-3);
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial:hover {
  border-color: var(--color-purple-dim);
  transform: translateY(-2px);
}

.testimonial__stars {
  font-size: var(--text-base);
  color: #f5c842;
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

.testimonial p {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-base);
  color: #fff;
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.testimonial__author span {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ── GET STARTED (CTA) ──────────────────────────────────── */
.get-started {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
}

.get-started__inner {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  overflow: hidden;
  padding: var(--space-16) var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.get-started__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.2;
}

.get-started__glow.purple {
  width: 400px;
  height: 400px;
  background: var(--color-purple);
  top: -100px;
  left: -80px;
}

.get-started__glow.blue {
  width: 350px;
  height: 350px;
  background: var(--color-blue);
  bottom: -80px;
  right: -60px;
}

.get-started__inner .section-heading {
  margin-bottom: var(--space-6);
}

.get-started__sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

/* Coupon box */
.coupon-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-6);
  text-align: left;
}

.coupon-box__label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  font-weight: 500;
}

.coupon-box__row {
  display: flex;
  gap: var(--space-3);
}

.coupon-box__input {
  flex: 1;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: border-color var(--transition);
}

.coupon-box__input::placeholder { color: var(--color-text-faint); }
.coupon-box__input:focus { outline: none; border-color: var(--color-purple); }

.coupon-box__status {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  min-height: 1.2em;
}

.coupon-box__status.success { color: #6daa45; }
.coupon-box__status.error   { color: var(--color-red); }

/* Pricing reveal */
.pricing-reveal {
  margin-bottom: var(--space-6);
}

.pricing-reveal__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  background: rgba(155, 77, 235, 0.12);
  border: 1px solid rgba(155, 77, 235, 0.3);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-purple-light);
  margin-bottom: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.price-was {
  text-decoration: line-through;
  opacity: 0.55;
  font-weight: 700;
}

.price-tag {
  font-weight: 600;
  opacity: 0.8;
}

.pricing-reveal__note {
  font-size: var(--text-xs);
  color: #6daa45;
  font-weight: 600;
  min-height: 1em;
}

/* Trust row */
.get-started__micro {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-4);
  margin-bottom: 0;
}

.get-started__intro-note {
  margin-top: var(--space-2);
  margin-bottom: var(--space-8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ── CREDIBILITY SECTION ──────────────────────────────── */
.credibility {
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
}

.credibility__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.cred-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.cred-card:hover {
  border-color: var(--color-purple-dim);
  box-shadow: 0 0 24px rgba(155,77,235,0.12);
  transform: translateY(-2px);
}

.cred-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  background: rgba(155, 77, 235, 0.12);
  border: 1px solid rgba(155, 77, 235, 0.25);
  color: var(--color-purple-light);
}

.cred-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.cred-card p {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.65;
}

.cred-card__icon.gold {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.25);
  color: #d4af37;
}

.cred-card__icon.blue {
  background: rgba(59,124,244,0.12);
  border-color: rgba(59,124,244,0.25);
  color: var(--color-blue-light);
}

.cred-card__icon.green {
  background: rgba(109,170,69,0.12);
  border-color: rgba(109,170,69,0.25);
  color: #7dc454;
}

.cred-card__icon.purple {
  background: rgba(155, 77, 235, 0.12);
  border-color: rgba(155, 77, 235, 0.25);
  color: var(--color-purple-light);
}

@media (max-width: 900px) {
  .credibility__grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ── FAQ ─────────────────────────────────────────────────── */
.faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item:has([aria-expanded="true"]) {
  border-color: var(--color-purple-dim);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.faq__question:hover { color: var(--color-purple-light); }

.faq__chevron {
  flex-shrink: 0;
  color: var(--color-text-faint);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
  color: var(--color-purple-light);
}

.faq__answer {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
}

.footer__inner {
  padding-block: var(--space-16);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.footer__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-4);
}

.footer__brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 36ch;
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: rgba(155, 77, 235, 0.15);
  border-color: var(--color-purple);
  color: var(--color-purple-light);
}

.footer__links {
  display: flex;
  gap: var(--space-12);
  justify-content: flex-end;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-2);
}

.footer__col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--color-text); }

.footer__bottom {
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-6);
}

.footer__bottom .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__bottom p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer__disclaimer {
  font-size: 0.7rem !important;
  max-width: 70ch;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; }

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

  .problem__grid { grid-template-columns: 1fr; gap: var(--space-10); }

  .steps {
    grid-template-columns: 1fr;
  }
  .step__connector {
    width: 60px;
    height: 2px;
    margin-top: 0;
    margin-inline: auto;
    background: linear-gradient(to right, var(--color-purple), var(--color-blue));
  }

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

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

  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { justify-content: flex-start; }
}

/* ── HERO RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Large tablet: box narrower, more of image visible */
  .hero__overlay-box {
    width: clamp(320px, 44%, 480px);
    padding: 32px 36px;
  }
}

@media (max-width: 768px) {
  /* Tablet: box fills more width but stays as overlay */
  .hero__visual {
    height: clamp(500px, 90vw, 640px);
  }
  .hero__overlay-box {
    width: clamp(300px, 70%, 460px);
    left: 24px;
    padding: 28px 32px;
    top: 50%;
    transform: translateY(-50%);
  }
  .hero__img-full {
    object-position: 65% center;
  }
}

@media (max-width: 600px) {
  /* Mobile: image on top, text block below — full width, no overlay */
  .hero__visual {
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }
  .hero__img-full {
    width: 100%;
    height: 58vw;
    min-height: 240px;
    max-height: 360px;
    object-fit: cover;
    object-position: 55% 20%;
    flex-shrink: 0;
  }
  .hero__overlay-box {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(155, 77, 235, 0.2) !important;
    /* Generous mobile padding — matches desktop feel */
    padding: 36px 32px 40px 32px !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(10, 9, 14, 0.96) !important;
  }
  .hero__headline {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }
  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .hero__cta-group .btn { text-align: center; justify-content: center; }
  .hero__cta-stack,
  .gs__cta-stack { align-items: stretch; width: 100%; }
  .hero__cta-stack .btn,
  .gs__cta-stack .btn { width: 100%; }
  .hero__preview-link { justify-content: center; }
  .donation-callout { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px; width: calc(100vw - 32px); max-width: none; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .what__grid { grid-template-columns: 1fr; }
  .sample__header { flex-direction: column; }
  .sample__item { grid-template-columns: 1fr; }
  .sample__item-num { font-size: var(--text-xl); }
  .trust-row { gap: var(--space-5); }
  .get-started__inner { padding: var(--space-10) var(--space-5); }
  .coupon-box__row { flex-direction: column; }
  .section { padding-block: clamp(var(--space-12), 6vw, var(--space-16)); }
  .btn--lg { font-size: var(--text-base); padding: var(--space-4) var(--space-6); min-height: 52px; }
  .btn--xl { font-size: var(--text-lg); padding: var(--space-5) var(--space-8); min-height: 60px; }
  .faq__question { font-size: var(--text-base); padding: var(--space-5); min-height: 56px; }
  .nav__inner { height: 60px; }
  .stat-card__num { font-size: var(--text-xl); }
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow  { animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s both; }
.hero__headline { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s both; }
.hero__sub      { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.3s both; }
.hero__cta-group { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.4s both; }
.hero__disclaimer { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.5s both; }
.hero__stats    { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.6s both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── SCROLL REVEAL (CSS-driven, no inline opacity) ─────── */
.will-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── PAIN CARD FIX — text should not wrap to single words ── */
.pain-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.pain-card__top {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

/* ── STAT CARDS visible even before JS runs ─────────────── */
.hero__stats { opacity: 1; }
.stat-card   { opacity: 1; transform: none; }

/* ── SECTION TRANSITIONS — ensure sections are always visible */
.problem, .how, .what, .sample, .social, .get-started, .faq, .footer {
  opacity: 1;
}

/* ── STEP CONNECTOR — hide on mobile correctly ───────────── */
@media (max-width: 900px) {
  .step__connector { display: none; }
  .steps { display: flex; flex-direction: column; gap: var(--space-4); }
}

/* ── SCROLLING MARQUEE TICKER ────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding-block: var(--space-3);
}
.ticker-track {
  display: flex;
  gap: var(--space-12);
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.ticker-item::before {
  content: '✦';
  color: var(--color-purple);
  font-size: 8px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ── PROBLEM IMAGE ──────────────────────────────────────── */
.problem__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-4);
  border: 1px solid var(--color-border);
  position: relative;
}

.problem__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: saturate(0.7) brightness(0.85);
  transition: filter 0.4s ease;
}

.problem__image-wrap:hover .problem__image {
  filter: saturate(0.9) brightness(0.9);
}

/* ── HOW IT WORKS IMAGE ─────────────────────────────────── */
.how__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-12);
  border: 1px solid rgba(155,77,235,0.25);
  box-shadow: 0 0 60px rgba(155,77,235,0.2), 0 0 40px rgba(59,124,244,0.1);
}

.how__image {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.how__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,9,14,0.1) 0%,
    rgba(10,9,14,0.0) 40%,
    rgba(10,9,14,0.7) 100%
  );
  pointer-events: none;
}

@media (max-width: 900px) {
  .how__image  { max-height: 220px; }
}

@media (max-width: 600px) {
  .problem__image { height: 160px; }
  .how__image  { max-height: 170px; }
}

/* ============================================================
   POLISH PASS — Readability, Images, Stats Centering
   ============================================================ */

/* ── HERO TEXT READABILITY ─────────────────────────────── */
/* Make gradient headline more vivid with stronger purple-to-blue */
.gradient-text {
  background: linear-gradient(135deg, #c17bff 0%, #6fa4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: none;
}

/* Hero body text: full white for max legibility */
.hero__sub {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Disclaimer: brighter so it's actually readable */
.hero__disclaimer {
  color: rgba(232, 230, 240, 0.80) !important;
  font-size: clamp(0.82rem, 0.78rem + 0.2vw, 0.92rem);
}

/* Headline base text: pure white */
.hero__headline {
  color: #ffffff;
}

/* ── STATS BAR: CENTER NUMBER + LABEL ──────────────────── */
.stat-card {
  text-align: center;
  align-items: center;
}

.stat-card__num {
  text-align: center;
}

.stat-card__label {
  text-align: center;
}

/* ── SECTION LABEL VISIBILITY ──────────────────────────── */
/* Make all section labels fully bright (no fade) */
.section-label {
  opacity: 1 !important;
  visibility: visible !important;
}

.section-label--visible {
  opacity: 1 !important;
  visibility: visible !important;
  color: var(--color-purple-light);
  font-size: clamp(0.8rem, 0.75rem + 0.2vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

/* ── FEATURE CARDS WITH IMAGES ─────────────────────────── */
.feature-card--image {
  padding: 0;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card__img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  flex-shrink: 0;
}

.feature-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card--image:hover .feature-card__img {
  transform: scale(1.06);
}

.feature-card--image h3,
.feature-card--image p {
  padding: 0 var(--space-6);
  text-align: center;
}

.feature-card--image h3 {
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.feature-card--image p {
  margin-bottom: var(--space-6);
}

/* ── CREDIBILITY CARDS WITH IMAGES ─────────────────────── */
.cred-card--image {
  padding: 0;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cred-card__img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  flex-shrink: 0;
}

.cred-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cred-card--image:hover .cred-card__img {
  transform: scale(1.05);
}

.cred-card--image h3,
.cred-card--image p {
  padding: 0 var(--space-5);
  text-align: center;
}

.cred-card--image h3 {
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.cred-card--image p {
  margin-bottom: var(--space-6);
}

/* ── GENERAL BODY TEXT READABILITY ─────────────────────── */
/* Any muted text should be at minimum 70% white, not grey */
.section-sub,
.problem__text p,
.step__content p,
.feature-card p,
.cred-card p {
  color: var(--color-text-muted);
}

/* Ensure section headings are never faint */
.section-heading,
.section-heading.centered {
  color: var(--color-text) !important;
}

/* ── RESPONSIVE ADJUSTMENTS ────────────────────────────── */
@media (max-width: 900px) {
  .feature-card__img-wrap,
  .cred-card__img-wrap {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .feature-card__img-wrap,
  .cred-card__img-wrap {
    height: 160px;
  }
}

/* ── PINK-PURPLE GRADIENT SECONDARY CTA ─────────────────── */
.btn--frosted {
  background: linear-gradient(135deg, #c2185b 0%, #9b4deb 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn--frosted:hover {
  background: linear-gradient(135deg, #d81b60 0%, #ab5df5 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(194, 24, 91, 0.40);
  transform: translateY(-1px);
}

.btn--frosted svg {
  opacity: 0.9;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.btn--frosted:hover svg {
  opacity: 1;
}

/* ── SAMPLE REPORT DOWNLOAD BLOCK ──────────────────────── */
.sample__download-wrap {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.sample__download-desc {
  color: var(--color-text-muted);
  font-size: clamp(0.85rem, 0.8rem + 0.2vw, 0.95rem);
  text-align: center;
  max-width: 420px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE POLISH — ≤600px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {

  /* ── NAV: Logo 25% smaller on mobile ── */
  .nav__logo-img {
    height: 82px;       /* 110px × 0.75 */
    max-width: 244px;
  }

  .nav__inner {
    height: 96px;       /* proportionally reduced from 124px */
    padding-inline: 16px;
    gap: var(--space-3);
  }

  /* ── NAV CTA: tighter padding so it never clips ── */
  .btn--sm {
    font-size: 0.72rem;
    padding: 8px 12px;
    white-space: nowrap;
  }

  /* ── STATS BAR: enforce 2×2 grid, prevent overflow ── */
  .hero__stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  /* ── HERO: breathing room from edges ── */
  .hero__text-block,
  .hero__overlay-box {
    padding: 28px 20px 32px !important;
  }

  /* ── SECTION PADDING: tighter on mobile ── */
  .section {
    padding-block: clamp(var(--space-10), 8vw, var(--space-14)) !important;
  }

  /* ── PROBLEM CARDS: full-width, slightly less padding ── */
  .pain-card {
    padding: var(--space-6) var(--space-5);
  }

  /* ── HOW IT WORKS CTA button: don't overflow ── */
  .how__cta .btn,
  .sample__cta-wrap .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    font-size: var(--text-sm);
  }

  /* ── SAMPLE SECTION: full-width buttons ── */
  .sample__download-wrap .btn,
  .sample__cta-wrap .btn--frosted {
    width: 100%;
    justify-content: center;
  }

  /* ── WHAT YOU GET: single column on small phones ── */
  .what__grid {
    grid-template-columns: 1fr;
  }

  /* ── CREDIBILITY CARDS: stack fully ── */
  .cred__grid {
    grid-template-columns: 1fr;
  }

  /* ── TESTIMONIALS: card padding ── */
  .testimonial {
    padding: var(--space-6) var(--space-5);
  }

  /* ── FAQ: slightly smaller question text ── */
  .faq__question {
    font-size: 0.9rem;
    padding: var(--space-4) var(--space-4);
  }

  /* ── FOOTER: tighter layout ── */
  .footer__inner {
    gap: var(--space-8);
  }

  /* ── CONTAINER PADDING: ensure no content touches edges ── */
  .container {
    padding-inline: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE IMAGE IMPROVEMENTS — ≤600px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {

  /* Feature cards — taller images on mobile for better visual impact */
  .feature-card__img-wrap {
    height: 220px;
  }

  .feature-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  /* Credibility cards — taller, face-centered for pharmacist image */
  .cred-card__img-wrap {
    height: 220px;
  }

  .cred-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }

  /* Pharmacist image — centre on face */
  .cred-card--image:first-child .cred-card__img {
    object-position: center 15%;
  }

  /* Problem & How It Works images — full width, generous height */
  .problem__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-xl);
  }

  .how__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-xl);
  }

  /* Hero image — taller on mobile so woman is more visible */
  .hero__img-full {
    height: 300px;
    object-fit: cover;
    object-position: center 15%;
  }
}

/* ═══════════════════════════════════════════════════════════
   SAMPLE ITEM SUPPLEMENT IMAGES
   ═══════════════════════════════════════════════════════════ */
.sample__item-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: var(--space-4) 0;
  flex-shrink: 0;
}

.sample__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.sample__item:hover .sample__item-img {
  transform: scale(1.04);
}

/* Blurred item — blur the image too */
.sample__item--blurred .sample__item-img-wrap {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

@media (max-width: 600px) {
  .sample__item-img-wrap {
    height: 180px;
  }
}

/* ═══════════════════════════════════════════════════════════
   SAMPLE ITEM — REPORT-STYLE HEADER (num+name left, mol right)
   ═══════════════════════════════════════════════════════════ */

/* Override the old 2-col grid — switch to flex column */
.sample__item:has(.sample__item-header) {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Header row: left side (num + name) + right thumbnail */
.sample__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-4);
  width: 100%;
}

.sample__item-header-left {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex: 1;
  min-width: 0;
}

/* Number inline with name */
.sample__item-header .sample__item-num {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--color-purple);
  line-height: 1;
  flex-shrink: 0;
  font-family: 'Cabinet Grotesk', sans-serif;
}

/* Name next to number */
.sample__item-header .sample__item-name {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 0;
}

/* Molecular thumbnail — matches report style */
.sample__mol-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.sample__mol-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: #ffffff;
  border: 1.5px solid rgba(155, 77, 235, 0.3);
  border-radius: 10px;
  padding: 8px;
  display: block;
}

.sample__mol-label {
  font-size: 0.6rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  font-style: italic;
}

/* Body takes full width */
.sample__item-body {
  width: 100%;
}

/* Hide old standalone item-num (now inside header) */
.sample__item > .sample__item-num {
  display: none;
}

/* Suppress old full-width image wrap */
.sample__item-img-wrap {
  display: none;
}

/* Blurred item — blur the mol thumbnail too */
.sample__item--blurred .sample__mol-img {
  filter: blur(5px);
}

@media (max-width: 600px) {
  .sample__item:has(.sample__item-header) {
    display: flex;
    flex-direction: column;
  }

  .sample__mol-img {
    width: 80px;
    height: 80px;
  }

  .sample__item-header .sample__item-num {
    font-size: 1.7rem;
  }

  .sample__item-header .sample__item-name {
    font-size: 0.95rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   GUARANTEE BLOCK
   ═══════════════════════════════════════════════════════════ */
.guarantee-block {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  margin: var(--space-8) 0 var(--space-6);
  padding: var(--space-6) var(--space-7);
  background: linear-gradient(135deg, rgba(155, 77, 235, 0.08) 0%, rgba(59, 124, 244, 0.06) 100%);
  border: 1px solid rgba(155, 77, 235, 0.25);
  border-radius: var(--radius-xl);
  text-align: left;
}

.guarantee-block__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(155, 77, 235, 0.18), rgba(59, 124, 244, 0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b07ef8;
  margin-top: 2px;
}

.guarantee-block__badge {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b07ef8;
  margin-bottom: var(--space-2);
}

.guarantee-block__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 var(--space-2);
}

.guarantee-block__text strong {
  color: var(--color-text);
}

.guarantee-block__link {
  font-size: 0.8rem;
  color: var(--color-purple);
  text-decoration: none;
  opacity: 0.85;
}

.guarantee-block__link:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .guarantee-block {
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-5);
    text-align: center;
    align-items: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER DISCLAIMER — EXPANDED
   ═══════════════════════════════════════════════════════════ */
.footer__disclaimer {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__disclaimer p {
  font-size: 0.72rem;
  color: rgba(200, 195, 220, 0.55);
  line-height: 1.75;
  margin-bottom: var(--space-3);
  max-width: 900px;
}

.footer__disclaimer p:last-child {
  margin-bottom: 0;
}

.footer__disclaimer strong {
  color: rgba(200, 195, 220, 0.75);
}

.footer__disclaimer a {
  color: rgba(176, 126, 248, 0.7);
  text-decoration: none;
}

.footer__disclaimer a:hover {
  color: rgba(176, 126, 248, 1);
  text-decoration: underline;
}

/* ── DISCIPLINE BAR ─────────────────────────────────────── */
.discipline-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 48px;
}
.discipline-tag {
  display: inline-block;
  padding: 7px 16px;
  background: rgba(155, 77, 235, 0.10);
  border: 1px solid rgba(155, 77, 235, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #c9a8f5;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ── FOUNDER QUOTE ──────────────────────────────────────── */
.founder-quote-section {
  background: linear-gradient(135deg, rgba(155,77,235,0.07) 0%, rgba(59,124,244,0.05) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: clamp(48px, 6vw, 80px) 0;
}
.founder-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.founder-quote__text {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 36px;
  position: relative;
  letter-spacing: -0.01em;
}
.founder-quote__text::before {
  content: '\201C';
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-purple);
  opacity: 0.25;
  font-family: Georgia, serif;
}
.founder-quote__attr {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.founder-quote__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid rgba(155,77,235,0.4);
  flex-shrink: 0;
}
.founder-quote__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}
.founder-quote__title {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ── PREP TIP ───────────────────────────────────────────── */
.prep-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(59, 124, 244, 0.10);
  border: 1px solid rgba(59, 124, 244, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 18px 0 4px;
  text-align: left;
}
.prep-tip svg {
  color: #7eb3ff;
  flex-shrink: 0;
  margin-top: 2px;
}
.prep-tip span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ── PRIVACY NOTE ───────────────────────────────────────── */
.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 16px auto 0;
  max-width: 560px;
  text-align: left;
}
.privacy-note svg {
  color: #8a87a0;
  flex-shrink: 0;
  margin-top: 3px;
}
.privacy-note span {
  font-size: 0.78rem;
  color: #8a87a0;
  line-height: 1.55;
}

@media (max-width: 600px) {
  .discipline-tag {
    font-size: 0.72rem;
    padding: 6px 12px;
  }
  .founder-quote__text {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  .founder-quote__attr {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ── PDF VIEWER MODAL ──────────────────────────────────────────── */
#pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

#pdf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 10, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

#pdf-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  max-height: 92dvh;
  background: #12101a;
  border: 1px solid rgba(155, 77, 235, 0.2);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(155,77,235,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: pdf-modal-in 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes pdf-modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

#pdf-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  gap: 12px;
}

#pdf-modal__title-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

#pdf-modal__title {
  font-family: var(--font-display, 'Cabinet Grotesk', sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #e8e6f0;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

#pdf-modal__sample-badge {
  font-size: 11px;
  font-weight: 500;
  color: #f0a500;
  background: rgba(240, 165, 0, 0.12);
  border: 1px solid rgba(240, 165, 0, 0.25);
  border-radius: 4px;
  padding: 1px 7px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  width: fit-content;
}

#pdf-modal__disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(155, 77, 235, 0.06);
  border-bottom: 1px solid rgba(155, 77, 235, 0.12);
  font-size: 11.5px;
  color: #9b87c8;
  flex-shrink: 0;
  line-height: 1.5;
}

#pdf-modal__controls {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

#pdf-modal__controls button,
#pdf-modal__close {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #ccc8e0;
  cursor: pointer;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}

#pdf-modal__controls button:hover,
#pdf-modal__close:hover {
  background: rgba(155, 77, 235, 0.2);
  color: #fff;
}

#pdf-page-info {
  font-size: 13px;
  color: #8b87a8;
  padding: 0 8px;
  white-space: nowrap;
  min-width: 52px;
  text-align: center;
}

#pdf-modal__body {
  /* Half-page window — user must scroll; harder to screenshot entire page */
  height: 48vh;
  max-height: 480px;
  min-height: 260px;
  flex-shrink: 0;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  gap: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

#pdf-pages {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.pdf-page {
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: 6px solid #0a090e;
  /* Shimmer placeholder while page hasn't rendered yet */
  min-height: 200px;
  background: linear-gradient(90deg, #141120 25%, #1c1830 50%, #141120 75%);
  background-size: 200% 100%;
  animation: pdf-shimmer 1.5s infinite;
}

.pdf-page--rendered {
  background: none;
  animation: none;
  min-height: unset;
}

@keyframes pdf-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.pdf-page__canvas {
  display: block;
  max-width: 100%;
  pointer-events: none;
}

/* Block right-click context menu visually via pointer-events on canvas */
#pdf-canvas {
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  display: block;
  pointer-events: none; /* prevents right-click save-image */
}

#pdf-loading {
  font-size: 14px;
  color: #8b87a8;
  padding: 48px 0;
}

#pdf-modal__footer {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11.5px;
  color: #6b6785;
  flex-shrink: 0;
  background: rgba(0,0,0,0.2);
}

/* Mobile tweaks */
@media (max-width: 520px) {
  #pdf-modal { padding: 8px; }
  #pdf-modal__panel { border-radius: 12px; max-height: 96dvh; }
  #pdf-modal__title { font-size: 12px; }
  #pdf-modal__body { height: 44vh; max-height: 360px; }
}

/* ── INLINE PDF PEEK WIDGET ──────────────────────────────────────── */
.sample__pdf-peek {
  margin-top: 32px;
  border: 1px solid rgba(155, 77, 235, 0.2);
  border-radius: 16px;
  overflow: hidden;
  background: #0e0c16;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(155,77,235,0.08);
}

.sample__pdf-peek-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(155, 77, 235, 0.07);
  border-bottom: 1px solid rgba(155, 77, 235, 0.14);
  gap: 12px;
  flex-wrap: wrap;
}

.sample__pdf-peek-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #a08ec8;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.sample__pdf-peek-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.sample__pdf-peek-badge {
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.sample__pdf-peek-badge--demo {
  color: #f0a500;
  background: rgba(240, 165, 0, 0.1);
  border: 1px solid rgba(240, 165, 0, 0.22);
}

.sample__pdf-peek-badge--blur {
  color: #8b87c8;
  background: rgba(155, 77, 235, 0.1);
  border: 1px solid rgba(155, 77, 235, 0.22);
}

.sample__pdf-peek-window {
  position: relative;
  /* Fixed-height window — shows roughly half a page */
  height: 340px;
  overflow: hidden;
  background: #0a0810;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  user-select: none;
  -webkit-user-select: none;
}

#peek-canvas {
  display: block;
  max-width: 100%;
  pointer-events: none;
}

.sample__pdf-peek-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #6b6785;
  background: #0a0810;
}

/* Gradient fade at bottom edge — entices scrolling, hides hard cutoff */
.sample__pdf-peek-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 8, 16, 0.92) 100%);
  pointer-events: none;
}

.sample__pdf-peek-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #c2185b 0%, #9b4deb 55%, #3b7cf4 100%);
  border: none;
  border-top: none;
  font-family: var(--font-display, 'Cabinet Grotesk', sans-serif);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.18s;
  box-shadow: 0 4px 24px rgba(155, 77, 235, 0.35);
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.sample__pdf-peek-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(155, 77, 235, 0.5);
}

.sample__pdf-peek-cta:active {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 640px) {
  .sample__pdf-peek-window { height: 240px; }
  .sample__pdf-peek-fade { height: 80px; }
}

/* ── HERO PRICING LINE ──────────────────────────────────────── */
.hero__pricing-line {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(232, 230, 240, 0.55);
  letter-spacing: 0.01em;
}

/* ── TESTIMONIAL PHOTO AVATARS ──────────────────────────────── */
.testimonial__avatar--photo,
.testimonial--pro .testimonial__avatar--photo {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center 15% !important;
  flex-shrink: 0 !important;
  border: 2px solid rgba(155, 77, 235, 0.35) !important;
  display: block !important;
  background: none !important;
  aspect-ratio: 1 / 1 !important;
}

/* ── CHECKOUT CHARITY LINE ──────────────────────────────────── */
.get-started__charity-line {
  color: rgba(155, 180, 255, 0.7);
  font-size: var(--text-xs);
  margin-top: var(--space-2);
}

/* ── FOOTER CHARITY LINE ────────────────────────────────────── */
.footer__charity {
  font-size: var(--text-xs);
  color: rgba(155, 180, 255, 0.6);
  margin-top: var(--space-2);
  margin-bottom: var(--space-3);
}

/* ── CHARITY STRIP ──────────────────────────────────────────── */
.charity-strip {
  background: linear-gradient(135deg, rgba(40, 20, 70, 0.95) 0%, rgba(15, 12, 28, 0.98) 100%);
  border-top: 1px solid rgba(155, 77, 235, 0.2);
  border-bottom: 1px solid rgba(155, 77, 235, 0.15);
  padding: var(--space-6) 0;
}

.charity-strip__inner {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.charity-strip__icon {
  flex-shrink: 0;
  color: #9b4deb;
  opacity: 0.85;
}

.charity-strip__text {
  flex: 1;
}

.charity-strip__primary {
  font-size: var(--text-base);
  font-weight: 600;
  color: #e8e6f0;
  margin: 0 0 var(--space-1) 0;
  max-width: none;
}

.charity-strip__secondary {
  font-size: var(--text-sm);
  color: rgba(200, 196, 220, 0.65);
  margin: 0;
  max-width: none;
}

.charity-strip__link {
  flex-shrink: 0;
  font-size: var(--text-sm);
  font-weight: 500;
  color: #9b4deb;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.charity-strip__link:hover {
  color: #b87aff;
}

@media (max-width: 600px) {
  .charity-strip__inner {
    flex-wrap: wrap;
    gap: var(--space-3);
  }
  .charity-strip__link {
    width: 100%;
  }
}

/* ── /IMPACT PAGE ───────────────────────────────────────────── */
/* ═══════════════════════════════════════════
   IMPACT PAGE — REDESIGNED
   ═══════════════════════════════════════════ */

/* HERO — full-width image with overlay */
.impact-hero {
  position: relative;
  min-height: clamp(380px, 50vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 7vw, 100px);
}
.impact-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.35;
  z-index: 0;
}
.impact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 9, 14, 0.2) 0%,
    rgba(10, 9, 14, 0.55) 60%,
    rgba(10, 9, 14, 1) 100%
  );
  z-index: 1;
}
.impact-hero .container {
  position: relative;
  z-index: 2;
}
.impact-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9b4deb;
  background: rgba(155, 77, 235, 0.1);
  border: 1px solid rgba(155, 77, 235, 0.28);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.impact-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  color: #e8e6f0;
  margin: 0 0 20px;
  line-height: 1.05;
}
.impact-hero__heading span {
  background: linear-gradient(135deg, #9b4deb, #3b7cf4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.impact-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(220, 216, 235, 0.8);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.65;
}

/* STATS ROW — horizontal 3-up below hero */
.impact-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(155, 77, 235, 0.12);
  border-top: 1px solid rgba(155, 77, 235, 0.12);
  border-bottom: 1px solid rgba(155, 77, 235, 0.12);
}
.impact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 32px);
  background: rgba(10, 9, 14, 0.9);
  text-align: center;
}
.impact-stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, #9b4deb, #3b7cf4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.impact-stat__label {
  font-size: 0.78rem;
  color: rgba(200, 196, 220, 0.6);
  line-height: 1.4;
  max-width: 12ch;
}

/* MISSION — clean 2-col on desktop */
.impact-mission {
  padding: clamp(60px, 8vw, 100px) 0;
  background: rgba(155, 77, 235, 0.025);
  border-bottom: 1px solid rgba(155, 77, 235, 0.1);
}
.impact-mission__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.impact-mission__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9b4deb;
  margin-bottom: 12px;
}
.impact-mission__text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.impact-mission__text p {
  color: rgba(200, 196, 220, 0.72);
  line-height: 1.72;
  margin-bottom: 16px;
  font-size: 1rem;
}
.impact-mission__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.impact-mission__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.75;
}
.impact-mission__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(155, 77, 235, 0.2);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(155,77,235,0.08) 0%, transparent 60%);
}

/* CHARITIES SECTION */
.impact-charities {
  padding: clamp(60px, 8vw, 100px) 0;
}
.impact-charities__header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.impact-charities__intro {
  font-size: 1rem;
  color: rgba(200, 196, 220, 0.62);
  max-width: 56ch;
  margin: 12px auto 0;
  line-height: 1.65;
}

/* Charity cards grid */
.charity-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.charity-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(155, 77, 235, 0.14);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
  display: flex;
  flex-direction: column;
}
.charity-card:hover {
  border-color: rgba(155, 77, 235, 0.32);
  background: rgba(155, 77, 235, 0.045);
  transform: translateY(-3px);
}
.charity-card__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.charity-card__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(155, 77, 235, 0.12);
  border: 1px solid rgba(155, 77, 235, 0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b4deb;
  margin-top: 2px;
}
.charity-card__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #e8e6f0;
  line-height: 1.3;
  margin-bottom: 4px;
}
.charity-card__focus {
  font-size: 0.72rem;
  color: #9b4deb;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.charity-card__desc {
  font-size: 0.88rem;
  color: rgba(200, 196, 220, 0.62);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.charity-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #3b7cf4;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: color 150ms;
}
.charity-card__link:hover { color: #6fa4ff; }

/* CTA */
.impact-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 100px) 0;
}
.impact-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.impact-cta__inner h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
.impact-cta__inner p {
  color: rgba(200, 196, 220, 0.65);
  max-width: 48ch;
  text-align: center;
  line-height: 1.65;
}
.impact-cta__note {
  font-size: 0.78rem;
  color: rgba(200, 196, 220, 0.42) !important;
  letter-spacing: 0.01em;
}

/* MOBILE */
@media (max-width: 768px) {
  .impact-stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .impact-stat__label {
    font-size: 0.72rem;
  }
  .impact-mission__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .impact-mission__visual {
    aspect-ratio: 16/9;
    order: -1; /* image first on mobile */
  }
  .charity-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .charity-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .impact-stats-row {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .impact-stat {
    padding: 20px 24px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    text-align: left;
  }
  .impact-stat__num { font-size: 1.8rem; }
  .impact-stat__label { max-width: none; }
}

/* ── HERO PRICING PILL ──────────────────────────────────────── */
.hero__pricing-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: var(--space-2) var(--space-5);
  background: rgba(155, 77, 235, 0.08);
  border: 1px solid rgba(155, 77, 235, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: rgba(232, 230, 240, 0.85);
  white-space: nowrap;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
}

.hero__pricing-pill-price {
  color: #fff;
  font-weight: 600;
}

.hero__pricing-pill-price .price-was {
  font-weight: 400;
  opacity: 0.5;
  text-decoration: line-through;
  margin-right: 2px;
}

@media (max-width: 480px) {
  .hero__pricing-pill {
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-4);
    white-space: normal;
  }
}

/* ── CTA PRICING PILL (under buttons across page) ───────────── */
.cta-pricing-pill {
  margin-top: var(--space-3);
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  background: rgba(155, 77, 235, 0.08);
  border: 1px solid rgba(155, 77, 235, 0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: rgba(232, 230, 240, 0.8);
  text-align: center;
}

.cta-pricing-pill .price-was {
  text-decoration: line-through;
  opacity: 0.45;
  margin-right: 2px;
}

.cta-pricing-pill strong {
  color: #fff;
  font-weight: 600;
}


/* ── NAV CTA WRAP + PRICING BADGE ───────────────────────────── */
.nav__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.nav__pricing-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(200, 180, 255, 0.75);
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-align: center;
}

.nav__pricing-badge .price-was {
  text-decoration: line-through;
  opacity: 0.45;
  font-weight: 600;
}

/* Hide nav pricing badge on mobile (nav already collapses) */
@media (max-width: 900px) {
  .nav__pricing-badge { display: none; }
}

/* ── FIX GAP BETWEEN BUTTON AND PRICING BADGE ───────────────── */
.how__cta .pricing-reveal__badge,
.sample__cta .pricing-reveal__badge {
  margin-top: var(--space-4);
  margin-bottom: 0;
}

/* Hero badge already has inline margin-top, ensure consistency */
.hero__overlay-box .pricing-reveal__badge {
  margin-top: var(--space-4);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE SPACING + SECTION LABEL IMPROVEMENTS
   ═══════════════════════════════════════════════════════════ */

/* ── Section label — more prominent everywhere ─────────────── */
.section-label {
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.95rem);
  letter-spacing: 0.16em;
  padding: var(--space-1) var(--space-3);
  background: rgba(155, 77, 235, 0.1);
  border: 1px solid rgba(155, 77, 235, 0.25);
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: var(--space-5);
}

/* ── Hero: breathing room below pricing badge before stats ──── */
.hero__overlay-box {
  padding-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}

/* ── Mobile section spacing — more generous ─────────────────── */
@media (max-width: 480px) {
  .section {
    padding-block: clamp(var(--space-14), 10vw, var(--space-20)) !important;
  }

  /* Pricing badge under buttons — more top breathing room */
  .how__cta .pricing-reveal__badge,
  .sample__cta .pricing-reveal__badge {
    margin-top: var(--space-5);
  }

  /* Hero pricing badge bottom spacing */
  .hero__overlay-box .pricing-reveal__badge {
    margin-bottom: var(--space-4);
  }

  /* Section label — ensure pill is readable on mobile */
  .section-label {
    font-size: 0.78rem;
    letter-spacing: 0.13em;
  }
}

/* ── HERO PRICING BADGE: mobile wrap fix ────────────────────── */
@media (max-width: 480px) {
  /* Hero pricing badge — centre and allow graceful wrap */
  .hero__overlay-box .pricing-reveal__badge {
    width: 100%;
    justify-content: center;
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-4);
    line-height: 1.7;
  }
  /* How it works + sample badges: full width centred */
  .how__cta .pricing-reveal__badge,
  .sample__cta .pricing-reveal__badge {
    width: 100%;
    justify-content: center;
    font-size: var(--text-xs);
  }
}

/* ═══════════════════════════════════════════════════════════
   /CLINICIANS PAGE
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.clinicians-hero {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0 clamp(var(--space-12), 5vw, var(--space-20));
  text-align: center;
}

.clinicians-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-hero));
  font-weight: 800;
  color: #e8e6f0;
  margin: var(--space-3) 0 var(--space-5);
  line-height: 1.1;
}

.clinicians-hero__sub {
  font-size: var(--text-lg);
  color: rgba(200, 196, 220, 0.75);
  max-width: 58ch;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}

.clinicians-hero__note {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: rgba(200, 196, 220, 0.45);
}

/* Section headers */
.clinicians-section-header {
  margin-bottom: var(--space-12);
}

.clinicians-section-header .section-heading {
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
}

/* How it works — steps */
.clinicians-how {
  background: rgba(155, 77, 235, 0.03);
  border-top: 1px solid rgba(155, 77, 235, 0.08);
  border-bottom: 1px solid rgba(155, 77, 235, 0.08);
}

.clinicians-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  max-width: 720px;
  margin: 0 auto;
}

.clinicians-step {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}

.clinicians-step__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  background: linear-gradient(135deg, #9b4deb, #3b7cf4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: right;
  padding-top: 4px;
}

.clinicians-step__body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #e8e6f0;
  margin-bottom: var(--space-2);
}

.clinicians-step__body p {
  font-size: var(--text-base);
  color: rgba(200, 196, 220, 0.7);
  line-height: 1.65;
  max-width: none;
  margin: 0;
}

.clinicians-step__body strong {
  color: #e8e6f0;
}

/* What's included */
.clinicians-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto;
}

.clinicians-feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(155, 77, 235, 0.12);
  border-radius: var(--radius-xl);
  transition: border-color 200ms ease;
}

.clinicians-feature:hover {
  border-color: rgba(155, 77, 235, 0.28);
}

.clinicians-feature__icon {
  flex-shrink: 0;
  color: #9b4deb;
  margin-top: 2px;
}

.clinicians-feature h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: #e8e6f0;
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.clinicians-feature p {
  font-size: var(--text-sm);
  color: rgba(200, 196, 220, 0.65);
  line-height: 1.65;
  max-width: none;
  margin: 0;
}

/* Who qualifies */
.clinicians-who {
  background: rgba(59, 124, 244, 0.03);
  border-top: 1px solid rgba(59, 124, 244, 0.08);
  border-bottom: 1px solid rgba(59, 124, 244, 0.08);
}

.clinicians-who__inner {
  max-width: 760px;
  margin: 0 auto;
}

.clinicians-who__sub {
  font-size: var(--text-base);
  color: rgba(200, 196, 220, 0.65);
  line-height: 1.65;
  margin-top: var(--space-4);
  max-width: none;
}

.clinicians-qualifies {
  list-style: none;
  padding: 0;
  margin: var(--space-8) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.clinicians-qualifies li {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-base);
  color: rgba(232, 230, 240, 0.9);
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(59, 124, 244, 0.12);
  border-radius: var(--radius-lg);
  transition: border-color 180ms ease;
}

.clinicians-qualifies li:hover {
  border-color: rgba(59, 124, 244, 0.28);
}

.clinicians-qualifies li svg {
  flex-shrink: 0;
  color: #3b7cf4;
}

/* Apply CTA */
.clinicians-apply {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.clinicians-apply__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.clinicians-apply__sub {
  font-size: var(--text-base);
  color: rgba(200, 196, 220, 0.65);
  max-width: 52ch;
  text-align: center;
  line-height: 1.65;
}

.clinicians-apply__btn {
  min-width: 300px;
}

.clinicians-apply__note {
  font-size: var(--text-xs);
  color: rgba(200, 196, 220, 0.4);
}

.clinicians-apply__note a {
  color: rgba(155, 77, 235, 0.75);
  text-decoration: none;
}

.clinicians-apply__note a:hover {
  color: #9b4deb;
}

@media (max-width: 600px) {
  .clinicians-steps { gap: var(--space-6); }
  .clinicians-step { flex-direction: row; gap: var(--space-4); }
  .clinicians-step__num { font-size: var(--text-xl); width: 36px; }
  .clinicians-features { grid-template-columns: 1fr; }
  .clinicians-apply__btn { min-width: unset; width: 100%; }
}

/* ── GET STARTED: brighter micro text ───────────────────────── */
.get-started .get-started__micro {
  color: rgba(232, 230, 240, 0.72);
}
.get-started .get-started__intro-note {
  color: rgba(232, 230, 240, 0.65);
}
.get-started .get-started__charity-line {
  color: rgba(180, 200, 255, 0.85);
}
.get-started .privacy-note svg {
  color: rgba(180, 180, 220, 0.7);
}
.get-started .privacy-note span {
  color: rgba(220, 218, 235, 0.72);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV — HAMBURGER + DROPDOWN
   ═══════════════════════════════════════════════════════════ */

/* Hamburger: hidden everywhere except inside @media */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e8e6f0;
  border-radius: 2px;
  transition: transform 260ms ease, opacity 200ms ease;
  transform-origin: center;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Dropdown panel: hidden everywhere, only rendered inside @media */
.nav__mobile {
  display: none;
}
.nav__mobile.is-open {
  display: flex;
  flex-direction: column;
  gap: 0;
  /* Fixed so it escapes any stacking context from sticky/backdrop-filter */
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(10, 9, 14, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(155, 77, 235, 0.18);
  padding: 16px 20px 24px;
  z-index: 99999;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.75);
  animation: mobileMenuIn 200ms ease forwards;
}
@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Links inside dropdown */
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(155, 77, 235, 0.1);
  padding-bottom: 16px;
}
.nav__mobile-links a {
  display: block;
  padding: 13px 12px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(232, 230, 240, 0.82);
  text-decoration: none;
  border-radius: 8px;
  transition: background 150ms, color 150ms;
}
.nav__mobile-links a:hover,
.nav__mobile-links a[aria-current="page"] {
  background: rgba(155, 77, 235, 0.12);
  color: #fff;
}

/* Start My Assessment CTA inside dropdown — centred */
.nav__mobile-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 4px;
}

/* Mobile-only CTA in nav bar — hidden on desktop */
.nav__cta-mobile {
  display: none !important;
  font-size: 0.82rem;
  padding: 9px 16px;
  white-space: nowrap;
}

/* ≤900px: activate hamburger mode */
@media (max-width: 900px) {
  .nav__hamburger { display: flex; }
  .nav__cta-mobile { display: inline-flex !important; }
  .nav__links { display: none !important; }
  .nav__cta-wrap { display: none !important; }
  .nav__cta-desktop { display: none !important; }
  .nav__pricing-badge { display: none !important; }
  /* Push CTA + hamburger to the right, with gap */
  .nav__inner { gap: 12px; }
}
