/* ============================================================
   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: 80px;
  -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(var(--space-6), 5vw, var(--space-12));
}

.section {
  padding-block: clamp(var(--space-16), 8vw, 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-3);
  display: block;
}

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

.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-muted);
  margin-bottom: var(--space-10);
  max-width: 640px;
}

.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(155, 77, 235, 0.15);
  border: 1px solid rgba(155, 77, 235, 0.35);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-purple-light);
}

.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: var(--text-xs); padding: var(--space-2) var(--space-4); }
.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; }

.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: var(--color-border);
}
.btn--ghost:hover {
  color: var(--color-text);
  border-color: var(--color-purple);
  background: rgba(155, 77, 235, 0.08);
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  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(var(--space-6), 5vw, var(--space-12));
  height: 68px;
  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: 40px;
  width: auto;
  object-fit: contain;
}

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

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
}

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

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

/* Desktop: side-by-side split */
.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
}

/* LEFT: dark text panel */
.hero__text-panel {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
  padding: clamp(var(--space-16), 7vw, var(--space-24)) clamp(var(--space-8), 5vw, var(--space-16));
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.45;
  z-index: 0;
}

.hero__glow--purple {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-purple), transparent 70%);
  top: -150px;
  left: -80px;
}

.hero__glow--blue {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-blue), transparent 70%);
  bottom: -80px;
  left: 30%;
  opacity: 0.25;
}

.hero__text-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

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

.hero__headline {
  font-size: clamp(2.4rem, 1rem + 4.5vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.hero__sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: var(--space-10);
  line-height: 1.65;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

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

/* RIGHT: full image panel */
.hero__img-panel {
  position: relative;
  overflow: hidden;
}

.hero__img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  display: block;
}

/* Subtle left-edge blend */
.hero__img-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,9,14,0.4) 0%, transparent 20%);
  z-index: 1;
  pointer-events: none;
}

/* STATS BAR */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  padding: var(--space-8) clamp(var(--space-6), 5vw, var(--space-12));
  border-top: 1px solid var(--color-divider);
  background: var(--color-surface);
}

.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-muted);
  margin-bottom: var(--space-4);
  max-width: 56ch;
}

.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);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--space-4);
  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-muted);
}

/* ── 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-muted);
  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-muted);
  line-height: 1.6;
}

/* ── 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-muted);
  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-muted);
  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);
}

.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: var(--space-8);
}

.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-muted);
  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;
  gap: var(--space-4);
}

.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; }
}

@media (max-width: 900px) {
  /* Tablet: stack image on top, text below */
  .hero__split {
    grid-template-columns: 1fr;
    grid-template-rows: 55vw auto;
    min-height: unset;
  }
  .hero__img-panel {
    order: -1;
    height: 55vw;
    max-height: 480px;
  }
  .hero__img-full {
    object-position: 50% 20%;
  }
  .hero__img-panel::before {
    background: linear-gradient(to bottom, rgba(10,9,14,0.1) 0%, transparent 30%, rgba(10,9,14,0.35) 100%);
  }
  .hero__text-panel {
    padding: var(--space-12) var(--space-6) var(--space-8);
  }
}

@media (max-width: 600px) {
  .hero__split {
    grid-template-rows: 72vw auto;
  }
  .hero__img-panel {
    height: 72vw;
    max-height: 380px;
  }
  .hero__img-full {
    object-position: 50% 15%;
  }
  .hero__text-panel {
    padding: var(--space-8) var(--space-5);
  }
  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .hero__cta-group .btn { text-align: center; justify-content: center; }
  .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);
}
.pain-card p {
  max-width: 100%;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── 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; }
}

/* ── HERO IMAGE ─────────────────────────────────────────── */
.hero__image-wrap {
  position: relative;
  width: 100%;
  margin-top: var(--space-16);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 0 80px rgba(155,77,235,0.15), var(--shadow-lg);
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 480px;
}

.hero__image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    var(--color-bg) 100%
  );
  pointer-events: 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) {
  .hero__image { max-height: 280px; }
  .how__image  { max-height: 220px; }
}

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