/* =================================================
   PEPTIDE PARTNER VSL — BRAND TOKENS
   ================================================= */
:root {
  /* Brand colors */
  --teal: #0FB5A8;
  --teal-deep: #0A6E68;
  --teal-darker: #064842;
  --teal-soft: #E6F7F5;
  --teal-mist: #F4FBFA;

  /* Neutrals */
  --ink: #0E1A1F;
  --ink-2: #1F2E33;
  --slate: #4A5860;
  --slate-2: #6B7780;
  --line: #E5EAEC;
  --line-2: #EEF2F3;
  --bg: #FFFFFF;
  --bg-alt: #FAFBFC;

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --maxw-narrow: 820px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 8px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(14, 26, 31, 0.04), 0 1px 3px rgba(14, 26, 31, 0.06);
  --shadow-md: 0 4px 12px rgba(14, 26, 31, 0.05), 0 8px 24px rgba(14, 26, 31, 0.06);
  --shadow-lg: 0 12px 32px rgba(14, 26, 31, 0.08), 0 24px 48px rgba(14, 26, 31, 0.08);
  --shadow-teal: 0 8px 24px rgba(15, 181, 168, 0.25), 0 16px 40px rgba(15, 181, 168, 0.18);
}

/* =================================================
   RESET / BASE
   ================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--maxw-narrow); }
.center { text-align: center; }

/* =================================================
   NAV
   ================================================= */
/* =================================================
   SCARCITY BANNER (sticky, sits above nav)
   ================================================= */
.scarcity {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(95deg, #0A6E68 0%, #0FB5A8 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.scarcity--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.scarcity__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: nowrap;
}
.scarcity__pulse {
  position: relative;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  animation: scarcityPulse 1.8s ease-out infinite;
}
@keyframes scarcityPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.scarcity__copy {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}
.scarcity__copy strong { color: #fff; font-weight: 700; }
.scarcity__detail { color: rgba(255, 255, 255, 0.82); margin-left: 6px; }
.scarcity__detail-full { display: inline; }
.scarcity__detail-short { display: none; }
.scarcity__cta-label-full { display: inline; }
.scarcity__cta-label-short { display: none; }
.scarcity__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.scarcity__cta:hover {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.5);
}
.scarcity__close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}
.scarcity__close:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-2);
}
.has-scarcity .nav { top: 48px; }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-deep);
}
.brand__name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* =================================================
   BUTTONS
   ================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn--primary {
  background: var(--teal);
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  box-shadow: var(--shadow-teal);
}
.btn--primary:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
}
.btn--white {
  background: #fff;
  color: var(--teal-deep);
  padding: 16px 32px;
  font-size: 17px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn--white:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 18px;
  font-size: 14px;
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--bg-alt); border-color: var(--teal); color: var(--teal-deep); }
.btn--lg { padding: 18px 36px; font-size: 18px; }
.btn--sm { padding: 9px 18px; font-size: 14px; }

/* =================================================
   HERO
   ================================================= */
.hero {
  position: relative;
  padding: 64px 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--teal-mist) 0%, transparent 70%),
    var(--bg);
  text-align: center;
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 181, 168, 0.18);
  flex-shrink: 0;
}
.eyebrow__text-mobile { display: none; }
.nowrap { white-space: nowrap; }

.hero__headline {
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 auto 24px;
  max-width: 1000px;
  color: var(--ink);
}
.accent { color: var(--teal-deep); }
.accent--light { color: var(--teal); }

.hero__subhead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  color: var(--slate);
  max-width: 760px;
  margin: 0 auto 40px;
}
.hero__subhead strong { color: var(--ink); font-weight: 600; }

/* VSL frame */
.vsl {
  max-width: 920px;
  margin: 0 auto 36px;
}
.vsl__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
  cursor: pointer;
  border: 1px solid var(--line);
}
.vsl__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.vsl__frame:hover .vsl__img { transform: scale(1.02); }
.vsl__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(15, 181, 168, 0.5), 0 0 0 6px rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}
.vsl__play:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--teal-deep); }
.vsl__play svg { margin-left: 4px; }
.vsl__badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 26, 31, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}
.vsl__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(15, 181, 168, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(15, 181, 168, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(15, 181, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 181, 168, 0); }
}

/* Hero bullets — believability */
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px 28px;
  max-width: 820px;
  text-align: left;
}
.hero__bullets--4col {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  gap: 14px 22px;
}
.hero__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.4;
}
.hero__bullets--4col .hero__bullet { font-size: 13.5px; }
.hero__bullets--4col .hero__bullet svg { width: 18px; height: 18px; margin-top: 1px; }
.hero__bullet svg { color: var(--teal); flex-shrink: 0; }
.hero__bullet strong { color: var(--ink); font-weight: 600; }

.hero__cta { margin-top: 8px; }
.hero__cta-note {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--slate-2);
}

/* =================================================
   TRUST STRIP
   ================================================= */
.trust {
  padding: 28px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.trust .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
}
.trust__inner {
  flex-direction: column;
  gap: 10px;
}
.trust__label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-2);
  font-weight: 600;
}
.trust__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
}
.trust__sep { color: var(--teal); }

/* Marquee (mobile only) */
.trust__marquee { display: none; }
.trust__marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 8px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  padding-right: 18px;
  animation: trustScroll 28s linear infinite;
}
@keyframes trustScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =================================================
   SECTIONS
   ================================================= */
.section {
  padding: 96px 0;
}
.section--alt {
  background: var(--bg-alt);
}
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-deep);
  margin: 0 0 16px;
  text-align: center;
}
.section__eyebrow--light {
  color: var(--teal);
  opacity: 0.85;
}
.section__eyebrow--left { text-align: left; }
.section__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-align: center;
  margin: 0 0 24px;
  color: var(--ink);
}
.section__title--light { color: #fff; }
.section__lede {
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.65;
  color: var(--slate);
  margin: 0 0 16px;
}
.section__lede.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section__lede strong { color: var(--ink); font-weight: 600; }
.section__lede em { font-style: italic; color: var(--ink-2); }

/* =================================================
   TERMINAL EXPLAINER
   ================================================= */
.terminal {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}
.terminal__copy { padding-right: 8px; }
.terminal__title {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--ink);
}
.terminal__body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  margin: 0 0 22px;
}
.terminal__body strong { color: var(--ink); font-weight: 600; }
.terminal__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.terminal__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}
.terminal__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  margin-top: 1px;
}

/* Browser-window mockup */
.terminal__visual {
  perspective: 1200px;
}
.terminal__window {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotateY(-2deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.terminal__window:hover { transform: rotateY(0) rotateX(0); }
.terminal__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.terminal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E1E6E8;
}
.terminal__dot:nth-child(1) { background: #FF6058; }
.terminal__dot:nth-child(2) { background: #FFBE2F; }
.terminal__dot:nth-child(3) { background: #28C840; }
.terminal__url {
  margin-left: 12px;
  font-size: 12px;
  color: var(--slate-2);
  background: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.terminal__body-mock { padding: 28px 28px 32px; }
.terminal__step {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 12px;
}
.terminal__q {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.terminal__opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.terminal__opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  background: #fff;
  transition: all 0.2s ease;
}
.terminal__opt--active {
  border-color: var(--teal);
  background: var(--teal-mist);
  color: var(--teal-darker);
  box-shadow: 0 0 0 4px rgba(15, 181, 168, 0.1);
}
.terminal__opt-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.terminal__progress {
  height: 6px;
  background: var(--line-2);
  border-radius: 999px;
  overflow: hidden;
}
.terminal__progress-bar {
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-deep));
  border-radius: 999px;
}

/* =================================================
   DUAL FUNNEL (in-person + online)
   ================================================= */
.funnel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 24px;
  margin-top: 48px;
}
.funnel__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.funnel__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft);
}
.funnel__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.funnel__tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}
.funnel__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}
.funnel__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  margin: 0 0 22px;
  flex-grow: 1;
}
.funnel__yield {
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.funnel__yield span { color: var(--slate-2); }
.funnel__yield strong { color: var(--teal-deep); font-weight: 700; }
.funnel__or {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--slate-2);
  background: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  align-self: center;
}
.funnel__note {
  margin-top: 28px;
  text-align: center;
  font-size: 15px;
  color: var(--slate);
  font-style: italic;
}

/* =================================================
   REALISM CALLOUT
   ================================================= */
.realism {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--teal-mist) 0%, #fff 100%);
  border: 1.5px solid var(--teal-soft);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.realism__badge {
  flex-shrink: 0;
  background: var(--teal-deep);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-top: 2px;
}
.realism__copy {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
.realism__copy strong { color: var(--teal-deep); font-weight: 700; }

/* =================================================
   CURIOSITY HOOK
   ================================================= */
.hook {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--ink);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hook::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(15, 181, 168, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.hook__copy {
  position: relative;
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.4;
}
.hook__accent {
  color: var(--teal);
}
.hook__sub {
  position: relative;
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}

/* =================================================
   GRID + CARDS
   ================================================= */
.grid { display: grid; gap: 20px; margin-top: 48px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft);
}
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}
.card__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0;
}

/* =================================================
   STEPS
   ================================================= */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 24px;
  margin-top: 56px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.step__num {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 16px;
}
.step__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}
.step__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0;
}
.step__connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--line), var(--teal), var(--line));
  margin-top: 60px;
  position: relative;
}
.step__connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  transform: rotate(45deg);
}

/* =================================================
   NUMBERS CARDS
   ================================================= */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.num-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.num-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.num-card--featured {
  background: linear-gradient(180deg, #fff 0%, var(--teal-mist) 100%);
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-teal);
}
.num-card__tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.num-card__label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate-2);
  margin-bottom: 16px;
}
.num-card--featured .num-card__label { color: var(--teal-deep); }
.num-card__patients {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.num-card__patients span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  margin-top: 6px;
  letter-spacing: 0;
}
.num-card__protocol {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 20px;
}
.num-card__divider {
  width: 40px;
  height: 1px;
  background: var(--line);
  margin: 0 auto 20px;
}
.num-card--featured .num-card__divider { background: var(--teal); }
.num-card__revenue {
  font-size: 44px;
  font-weight: 800;
  color: var(--teal-deep);
  letter-spacing: -0.03em;
  line-height: 1;
}
.num-card__sub {
  font-size: 13px;
  color: var(--slate-2);
  margin-top: 6px;
}
.num-card__annual {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
  letter-spacing: -0.005em;
}
.num-card__annual::before {
  content: 'Annually: ';
  color: var(--slate-2);
  font-weight: 500;
}
.num-card--featured .num-card__annual { border-top-color: rgba(15, 181, 168, 0.4); }
.numbers-grid__footnote {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--slate-2);
  font-style: italic;
}

/* =================================================
   MATH SECTION (dark)
   ================================================= */
.math {
  background: linear-gradient(135deg, var(--teal-darker) 0%, var(--teal-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.math::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(15, 181, 168, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(15, 181, 168, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.math .container { position: relative; }
.math__stat {
  text-align: center;
  margin: 48px 0 40px;
}
.math__stat-num {
  font-size: clamp(80px, 14vw, 140px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, #fff 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.math__stat-label {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
}
.math__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 40px 0;
}
.math__item {
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
}
.math__item-num {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.math__item-label {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
.math__divider {
  font-size: 32px;
  color: var(--teal);
  font-weight: 700;
}
.math__closer-emph {
  display: inline-block;
  white-space: nowrap;
  font-weight: 600;
  color: #fff;
}
.math__closer {
  text-align: center;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 32px auto 0;
  line-height: 1.65;
}
.math__closer strong { color: #fff; font-weight: 700; }

/* =================================================
   RISK REVERSAL
   ================================================= */
.reversal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.reversal__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.reversal__x {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFEFEF;
  color: #D63838;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.reversal__item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.reversal__item span {
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate);
}

/* =================================================
   FAQ
   ================================================= */
.faq {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq__item[open] { border-color: var(--teal); }
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--teal);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq__item[open] .faq__q::after {
  content: '−';
  transform: rotate(0deg);
}
.faq__a {
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
}
.faq__a strong { color: var(--ink); font-weight: 600; }

/* =================================================
   FINAL CTA
   ================================================= */
.cta {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: #fff;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta .container { position: relative; }
.cta__headline {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: #fff;
}
.cta__headline-accent {
  color: #ffffff;
  background: linear-gradient(120deg, #ffffff 0%, #c4f5f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  display: inline-block;
}
.cta__sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 36px;
}
.cta__micronote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 18px 0 0;
}

/* =================================================
   FOOTER
   ================================================= */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 36px;
  font-size: 14px;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  font-weight: 700;
  font-size: 16px;
}
.footer__brand span { color: #fff; }
.footer__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__contact a { color: #fff; transition: color 0.15s; }
.footer__contact a:hover { color: var(--teal); }
.footer__disclaimer {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 18px;
  max-width: 920px;
}
.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* =================================================
   GUARANTEE SECTION
   ================================================= */
.guarantee-section { padding: 96px 0; background: var(--bg-alt); }
.guarantee {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px 48px 48px;
  text-align: center;
  box-shadow: 0 24px 60px -28px rgba(10, 110, 104, 0.18);
  overflow: hidden;
}
.guarantee::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(15, 181, 168, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 88% 100%, rgba(10, 110, 104, 0.06) 0%, transparent 45%);
  pointer-events: none;
}
.guarantee > * { position: relative; }
.guarantee__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-deep);
  margin: 0 auto 20px;
}
.guarantee__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-deep);
  margin: 0 0 12px;
}
.guarantee__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--ink);
}
.guarantee__lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 680px;
  margin: 0 auto 36px;
}
.guarantee__lede strong { color: var(--ink); font-weight: 600; }
.guarantee__split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
  margin: 0 0 32px;
  text-align: left;
}
.guarantee__col {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guarantee__col-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.guarantee__col-text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.guarantee__or {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--slate-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  align-self: center;
}
.guarantee__close {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.guarantee__close strong { color: var(--teal-deep); font-weight: 700; }

/* =================================================
   RESPONSIVE
   ================================================= */
@media (max-width: 960px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step__connector {
    width: 2px;
    height: 24px;
    margin: 0 auto;
    background: linear-gradient(to bottom, var(--line), var(--teal), var(--line));
  }
  .step__connector::after {
    right: 50%;
    top: auto;
    bottom: -3px;
    transform: translateX(50%) rotate(135deg);
  }
  .numbers-grid { grid-template-columns: 1fr; }
  .reversal { grid-template-columns: 1fr; }
  .hero__bullets--4col { grid-template-columns: repeat(2, 1fr); }
  .math__row { grid-template-columns: 1fr; gap: 16px; justify-items: stretch; }
  .math__divider { transform: rotate(90deg); justify-self: center; padding: 4px 0; }
  .terminal { grid-template-columns: 1fr; gap: 36px; }
  .terminal__copy { padding-right: 0; }
  .funnel { grid-template-columns: 1fr; }
  .funnel__or { margin: 0 auto; }
  .realism { flex-direction: column; gap: 14px; padding: 24px; }
}

@media (max-width: 960px) {
  .guarantee { padding: 44px 28px 36px; }
  .guarantee__split { grid-template-columns: 1fr; gap: 12px; }
  .guarantee__or { margin: 4px auto; }
}

@media (max-width: 640px) {
  .hero { padding: 40px 0 56px; }
  .section { padding: 64px 0; }
  .cta { padding: 64px 0; }
  .grid--3 { grid-template-columns: 1fr; }
  .vsl__play { width: 64px; height: 64px; }
  .vsl__play svg { width: 24px; height: 24px; }
  .vsl__badge { font-size: 11px; padding: 6px 10px; bottom: 10px; left: 10px; }
  .hero__bullets { grid-template-columns: 1fr; }
  .btn--lg { padding: 14px 24px; font-size: 16px; }
  .footer__top { flex-direction: column; align-items: flex-start; }

  /* ----- Mobile hero tightening ----- */
  .eyebrow {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 20px;
    max-width: 100%;
    white-space: nowrap;
  }
  .eyebrow__text-full { display: none; }
  .eyebrow__text-mobile { display: inline; }
  .hero__headline {
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }
  .hero__headline br { display: none; }
  .hero__subhead {
    font-size: 16px;
    line-height: 1.5;
  }

  /* ----- Mobile trust strip: swap to looping marquee ----- */
  .trust { padding: 18px 0; overflow: hidden; }
  .trust .container { padding-left: 0; padding-right: 0; }
  .trust__inner { gap: 8px; }
  .trust__items { display: none; }
  .trust__marquee {
    display: block;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }

  /* ----- Numbers headline tightening on mobile ----- */
  .section__title { font-size: 26px; line-height: 1.22; }
  #numbers .section__title { font-size: 24px; }

  /* ----- Math row: ensure arrow doesn't overlap card ----- */
  .math__row { gap: 12px; }

  /* ----- Scarcity banner: compact 2-line layout on mobile ----- */
  .scarcity__inner {
    flex-wrap: nowrap;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    align-items: center;
  }
  .scarcity__pulse { flex: 0 0 auto; width: 8px; height: 8px; align-self: center; }
  .scarcity__copy {
    font-size: 12px;
    line-height: 1.25;
    flex: 1 1 auto;
    min-width: 0;
  }
  .scarcity__copy strong { display: block; font-weight: 700; font-size: 12.5px; }
  .scarcity__detail {
    display: block;
    margin-left: 0;
    margin-top: 1px;
    font-size: 11px;
    line-height: 1.25;
    opacity: 0.88;
  }
  .scarcity__detail-full { display: none; }
  .scarcity__detail-short { display: block; }
  .scarcity__cta {
    flex: 0 0 auto;
    font-size: 11.5px;
    padding: 5px 10px;
    white-space: nowrap;
  }
  .scarcity__cta-label-full { display: none; }
  .scarcity__cta-label-short { display: inline; }
  .scarcity__close {
    flex: 0 0 auto;
    padding: 4px;
  }
  .has-scarcity .nav { top: 56px; }

  .math__divider {
    font-size: 24px;
    line-height: 1;
    padding: 0;
    margin: 4px auto;
    display: block;
    width: max-content;
  }
}

/* =================================================
   FOOTER BRAND ROW (replaces footer__top after contact strip removal)
   ================================================= */
.footer__brand-row {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* =================================================
   MODAL SYSTEM (lead capture + video processing)
   ================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 6vh 16px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal.modal--open { display: flex; }
body.modal-open { overflow: hidden; }

.modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 24, 28, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
  cursor: pointer;
  animation: modalFadeIn 0.18s ease-out;
}
.modal__card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 480px;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 60px -10px rgba(10, 24, 28, 0.35), 0 8px 24px rgba(10, 24, 28, 0.18);
  animation: modalPopIn 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto 0;
}
.modal__card--compact { max-width: 420px; }

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(15, 181, 168, 0.08);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.modal__close:hover {
  background: rgba(15, 181, 168, 0.18);
  color: var(--teal-deep, #0A6E68);
  transform: rotate(90deg);
}
.modal__close:focus-visible {
  outline: 2px solid var(--teal, #0FB5A8);
  outline-offset: 2px;
}

.modal__body { padding-top: 4px; }
.modal__body--center { text-align: center; }

.modal__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--teal, #0FB5A8);
  margin: 0 0 10px;
}
.modal__title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.modal__lede {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(10, 24, 28, 0.7);
  margin: 0 0 22px;
}
.modal__body--center .modal__lede { margin-bottom: 24px; }

/* =================================================
   LEAD FORM
   ================================================= */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lead-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.lead-form__field input,
.lead-form__field select {
  font: inherit;
  font-size: 15px;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid var(--line, #e3e8eb);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.lead-form__field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%230A6E68' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.lead-form__field input::placeholder { color: rgba(10, 24, 28, 0.35); }
.lead-form__field input:focus,
.lead-form__field select:focus {
  outline: none;
  border-color: var(--teal, #0FB5A8);
  box-shadow: 0 0 0 3px rgba(15, 181, 168, 0.18);
}
.lead-form__field input:invalid:not(:placeholder-shown) {
  border-color: rgba(220, 80, 60, 0.55);
}
.lead-form__submit {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}
.lead-form__micronote {
  font-size: 12.5px;
  color: rgba(10, 24, 28, 0.55);
  margin: 4px 0 0;
  text-align: center;
  line-height: 1.5;
}

/* Success state */
.lead-form__success {
  text-align: center;
  padding: 8px 0 4px;
}
.lead-form__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(15, 181, 168, 0.12);
  color: var(--teal, #0FB5A8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 16px;
  animation: successPop 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.lead-form__success-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.lead-form__success-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(10, 24, 28, 0.7);
  margin: 0 auto;
  max-width: 360px;
}

/* Video processing icon */
.video-processing__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(15, 181, 168, 0.12);
  color: var(--teal, #0FB5A8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 18px;
}
.video-processing__icon svg {
  animation: clockSpin 8s linear infinite;
  transform-origin: center;
}

/* Animations */
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalPopIn {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes successPop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes clockSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Mobile */
@media (max-width: 560px) {
  .modal { padding: 4vh 12px 24px; }
  .modal__card { padding: 28px 20px 22px; border-radius: 16px; }
  .modal__title { font-size: 19px; }
  .modal__lede { font-size: 14px; }
  .lead-form__row { grid-template-columns: 1fr; gap: 14px; }
  .lead-form__field input,
  .lead-form__field select { font-size: 16px; }
}

/* Ensure [hidden] beats display:flex on form + reveal */
.lead-form[hidden],
.lead-form__field[hidden],
.lead-form__success[hidden] { display: none !important; }

/* =================================================
   PLANS — TWO-TIER PRICING (sits inside .math)
   ================================================= */
.section__lede--light {
  color: rgba(255, 255, 255, 0.85);
}
.section__lede--light strong { color: #fff; font-weight: 600; }

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 48px auto 40px;
  align-items: stretch;
  max-width: 1040px;
}
.plan {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  text-align: left;
}
.plan--featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1.5px solid var(--teal);
  box-shadow: 0 16px 48px rgba(15, 181, 168, 0.18), 0 0 0 1px rgba(15, 181, 168, 0.3) inset;
}
.plan__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--teal);
  color: var(--teal-darker);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(15, 181, 168, 0.4);
}
.plan__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 8px;
}
.plan__name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.15;
}
.plan__tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 24px;
  line-height: 1.5;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 8px;
}
.plan__price-amount {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.plan__price-unit {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.plan__price-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 24px;
  line-height: 1.5;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.plan__price-note strong { color: #fff; font-weight: 600; }
.plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}
.plan__list strong { color: #fff; font-weight: 600; }
.plan__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(15, 181, 168, 0.2);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
}
.plan--featured .plan__check {
  background: var(--teal);
  color: var(--teal-darker);
}
.plan__footer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 16px 0 0;
  font-style: italic;
  line-height: 1.5;
}

/* Buttons used in plans */
.btn--full {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.18s ease;
  cursor: pointer;
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-1px);
}

/* Compact math row inside the new pricing section */
.math__row--compact {
  margin: 8px 0 24px;
}
.math__row--compact .math__item {
  padding: 20px 18px;
}
.math__row--compact .math__item-num {
  font-size: 42px;
}
.math__row--compact .math__item-label {
  font-size: 13px;
}

/* Responsive: stack plans on narrow screens */
@media (max-width: 880px) {
  .plans {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .plan {
    padding: 32px 24px;
  }
  .plan__name { font-size: 26px; }
  .plan__price-amount { font-size: 44px; }
}

@media (max-width: 520px) {
  .plan { padding: 28px 20px; }
  .plan__name { font-size: 24px; }
  .plan__price-amount { font-size: 38px; }
  .plan__badge {
    right: 16px;
    font-size: 10px;
    padding: 5px 12px;
  }
}

/* =================================================
   AFLU RX BRAND OVERRIDES — AFLU wordmark + RX sub-brand tag
   ================================================= */
.brand {
  align-items: center;
  gap: 8px;
}
.brand__wordmark {
  height: 18px;
  width: auto;
  color: var(--ink);
  display: block;
}
@media (min-width: 640px) {
  .brand__wordmark { height: 20px; }
}
.brand__rx {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 7px;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  position: relative;
  top: -1px;
}
@media (min-width: 640px) {
  .brand__rx { height: 20px; font-size: 12px; padding: 0 8px; }
}

.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__brand-wordmark {
  height: 22px;
  width: auto;
  color: #fff;
  display: block;
}
.footer__brand-rx {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

/* Nav actions row (Sign in + Book a Call) */
.nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.nav__signin {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.nav__signin:hover {
  color: var(--teal-deep);
}
@media (max-width: 520px) {
  .nav__signin { display: none; }
  .nav__actions { gap: 0; }
}

/* Single-plan layout — when only the Operator card exists */
.plans--single {
  grid-template-columns: 1fr;
  max-width: 520px;
}
