/* =========================================================================
   PureMuze — Design System
   Built from "PureMuze Visual Style Guide v1"
   Colors, type scale, spacing and components match the style guide tokens.
   ========================================================================= */

:root {
  /* Color tokens */
  --color-sky: #8ECEFD;   /* exact hero/nav colour from the mockup */
  --color-sky-mid: #AEE1FF;
  --color-sky-soft: #C9EBFF;
  --color-navy: #071E56;
  --color-lime: #E9FF4F;
  --color-lime-hover: #DDF238;
  --color-pink: #FFA4BE;
  --color-pink-cta: #FF9BB8;
  --color-lavender: #CDB7FF;
  --color-lavender-cta: #B894F6;
  --color-blue-soft: #BFE5FF;
  --color-cream: #FFF9F2;
  --color-offwhite: #FAFBFC;
  --color-card: #FFFFFF;
  --color-border: #DDEAF5;
  --color-muted: #506079;
  --color-success: #17B26A;
  --color-lavender-bg: #F2ECFF;

  /* Fonts */
  --font-display: "Fredoka", "Arial Rounded MT Bold", "Nunito", sans-serif;
  --font-body: "Nunito Sans", "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Radii */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 12px 40px rgba(7, 30, 86, 0.06);
  --shadow-bar: 0 16px 40px rgba(7, 30, 86, 0.08);
  --shadow-pop: 0 24px 60px rgba(7, 30, 86, 0.12);

  /* Layout */
  --maxw: 1200px;
  --gutter: 40px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--color-navy);
  background: var(--color-offwhite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; margin: 0 0 .5em; line-height: 1.08; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 88px 0; }
.section--compact { padding: 56px 0; }
.section--cream { background: var(--color-cream); }
.section--offwhite { background: var(--color-offwhite); }
.section--lavender { background: var(--color-lavender-bg); }
.section--white { background: #fff; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 14px;
}
.lead { font-size: 19px; color: var(--color-muted); max-width: 720px; }
.center .lead { margin-left: auto; margin-right: auto; }
.section h2 { font-size: 36px; }
.text-lime { color: var(--color-lime); }
.text-navy { color: var(--color-navy); }
.muted { color: var(--color-muted); }
.maxw-720 { max-width: 720px; }
.maxw-820 { max-width: 820px; }
.mb-0 { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 18px 32px;
  min-height: 48px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:focus-visible { outline: 3px solid var(--color-navy); outline-offset: 3px; }
.btn--primary { background: var(--color-lime); color: var(--color-navy); }
.btn--primary:hover { background: var(--color-lime-hover); transform: translateY(-1px); }
.btn--secondary {
  background: transparent; color: var(--color-navy);
  border: 1.5px solid rgba(7,30,86,.35); padding: 16px 28px;
}
.btn--secondary:hover { background: rgba(7,30,86,.05); transform: translateY(-1px); }
.btn--pink { background: var(--color-pink-cta); color: var(--color-navy); }
.btn--pink:hover { background: #ff86a9; transform: translateY(-1px); }
.btn--lavender { background: var(--color-lavender-cta); color: #fff; }
.btn--lavender:hover { background: #a87df0; transform: translateY(-1px); }
.btn--white { background:#fff; color: var(--color-navy); box-shadow: var(--shadow-card); }
.btn--white:hover { transform: translateY(-1px); }
.btn--block { width: 100%; }
.btn--lg { padding: 20px 38px; font-size: 17px; }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  /* Header is the same flat #8ECEFD as the hero on every page and every scroll
     state, so the nav reads as part of the hero and the wordmark never changes. */
  background: var(--color-sky);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.nav-light { background: var(--color-sky); }
.site-header.is-stuck, .site-header.nav-light.is-stuck {
  background: rgba(142,206,253,.95); backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(7,30,86,.10);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: -.03em; display:inline-flex; align-items:center; }
.brand .pure { color: var(--color-navy); }
.brand .muze { color: var(--color-lime); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-weight: 700; font-size: 15px; color: var(--color-navy); }
.nav-links a:hover { color: var(--color-lavender-cta); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.nav-toggle span { display:block; width: 26px; height: 2.5px; background: var(--color-navy); border-radius: 2px; margin: 5px 0; transition: .25s; }

/* Header wordmark: navy "Pure" + lime "Muze" on the flat #8ECEFD bar, per the
   mockup. Navy is 9.3:1; lime is 1.5:1 and is a deliberate brand choice, not an
   oversight - do not "fix" it to a darker colour without asking Charles.
   The footer keeps white "Pure" + lime "Muze", which is 8:1+ on navy. */
.site-footer .brand .pure { color: #fff; }
.site-footer .brand .muze { color: var(--color-lime); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(320px, 86vw);
  background: #fff; box-shadow: var(--shadow-pop);
  transform: translateX(100%); transition: transform .28s ease;
  z-index: 200; padding: 28px 26px; display: flex; flex-direction: column; gap: 6px;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a { padding: 14px 6px; font-weight: 700; border-bottom: 1px solid var(--color-border); }
.mobile-drawer .btn { margin-top: 18px; }
.drawer-close { align-self: flex-end; background: none; border: none; font-size: 26px; color: var(--color-navy); line-height: 1; margin-bottom: 8px; }
.scrim { position: fixed; inset: 0; background: rgba(7,30,86,.35); opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 150; }
.scrim.open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--color-sky);
  padding: 32px 0 96px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; min-height: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.7); border-radius: var(--radius-pill);
  padding: 8px 16px; font-weight: 800; font-size: 13px; letter-spacing: .04em; color: var(--color-navy);
  margin-bottom: 22px;
}
.hero h1 { font-size: 82px; line-height: .95; letter-spacing: -0.04em; color: #fff; margin-bottom: 22px; }
.hero h1 .lime { color: var(--color-lime); }
.hero-sub { font-size: 20px; color: var(--color-navy); max-width: 520px; margin-bottom: 30px; font-weight: 500; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-micro { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--color-navy); }

/* Hero visual: blobs + photo slot + snapshot card */
.hero-visual { position: relative; min-height: 620px; }
.blob { position: absolute; z-index: 1; }
.blob-pink { width: 340px; height: 420px; background: var(--color-pink); border-radius: 999px 999px 999px 999px; right: 110px; top: 20px; }
.blob-lime { width: 230px; height: 230px; background: var(--color-lime); border-radius: 999px; right: 285px; top: 175px; opacity: .9; }
.hero-photo {
  /* Sits lower and larger than the hero box so her feet fall past the hero's
     bottom edge. .hero has overflow:hidden and .trust-wrap sits on top of that
     edge (margin-top:-56px, z-index:20), so the crop line is hidden behind the
     trust bar - matching the mockup, where she is cut off mid-calf. */
  position: absolute; z-index: 2; right: 100px; bottom: -150px;
  width: 500px; height: 740px;
  background: none; box-shadow: none; border-radius: 0; overflow: visible;
  pointer-events: none;
}
.hero-photo picture { display: block; width: 100%; height: 100%; }
.hero-photo img {
  display: block; width: 100%; height: 100%;
  object-fit: contain; object-position: bottom center;
}
.snapshot-card {
  position: absolute; z-index: 3; right: -14px; top: 70px; width: 278px;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-pop);
  padding: 22px 22px 18px;
}
.snapshot-card h4 { font-family: var(--font-body); font-weight: 800; font-size: 15px; margin-bottom: 14px; }
.snapshot-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid var(--color-border); }
.snapshot-row:first-of-type { border-top: none; }
.snapshot-ico { width: 34px; height: 34px; border-radius: 999px; flex: none; display: flex; align-items: center; justify-content: center; }
.snapshot-row b { font-size: 14px; display: block; }
.snapshot-row span { font-size: 12px; color: var(--color-muted); }
.snapshot-cta { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; background: var(--color-lavender-bg); border-radius: var(--radius-md); padding: 12px 16px; font-weight: 800; font-size: 13px; }

/* ---------- Trust bar ---------- */
.trust-wrap { margin-top: -56px; position: relative; z-index: 20; }
.trust-bar {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-bar);
  padding: 26px 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.trust-item { display: flex; align-items: center; gap: 14px; padding: 0 14px; }
.trust-item + .trust-item { border-left: 1px solid var(--color-border); }
.trust-ico { width: 44px; height: 44px; border-radius: 999px; background: var(--color-blue-soft); flex: none; display: flex; align-items: center; justify-content: center; }
.trust-item b { display: block; font-size: 15px; font-family: var(--font-body); font-weight: 800; }
.trust-item span { font-size: 13px; color: var(--color-muted); }

/* ---------- Icon circles / benefits ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.benefit { text-align: center; }
.icon-circle { width: 72px; height: 72px; border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.benefit h3 { font-family: var(--font-body); font-weight: 800; font-size: 17px; margin-bottom: 6px; }
.benefit p { font-size: 14px; color: var(--color-muted); }
.split { display: grid; grid-template-columns: .9fr 1.6fr; gap: 48px; align-items: center; }

/* ---------- Cards / programs ---------- */
.card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-card);
}
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.program-card .tag {
  display: inline-block; font-weight: 800; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-pill); margin-bottom: 18px;
}
.tag--lime { background: var(--color-lime); color: var(--color-navy); }
.tag--lavender { background: var(--color-lavender-bg); color: var(--color-lavender-cta); }
.tag--pink { background: #ffe6ee; color: #d6336c; }
.program-card h3 { font-size: 26px; }
.program-card p { color: var(--color-muted); font-size: 16px; }
.program-card.lime { background: #FCFFE6; border-color: #EEF6B8; }
.program-card.lavender { background: #FAF7FF; border-color: #EBE2FF; }
.program-card.pink { background: #FFF5F8; border-color: #FFE0EA; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--color-lavender-cta); box-shadow: var(--shadow-pop); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--color-lavender-cta); color: #fff; font-weight: 800; font-size: 12px;
  padding: 7px 16px; border-radius: var(--radius-pill); letter-spacing: .04em; white-space: nowrap;
}
.price-card h3 { font-family: var(--font-body); font-weight: 800; font-size: 20px; margin-bottom: 4px; }
.price-card .price-desc { color: var(--color-muted); font-size: 14px; min-height: 40px; }
.price-amount { font-family: var(--font-display); font-weight: 700; font-size: 46px; letter-spacing: -.03em; margin: 12px 0 4px; }
.price-card.low .price-amount { color: #9bbf00; }
.price-card.standard .price-amount { color: #3aa0e6; }
.price-card.enhanced .price-amount { color: var(--color-lavender-cta); }
.price-amount small { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--color-muted); }
.feature-list { list-style: none; margin: 18px 0 24px; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.feature-list .check { color: var(--color-success); flex: none; margin-top: 2px; }
.price-card .actions { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.fineprint { font-size: 13px; color: var(--color-muted); max-width: 760px; margin: 26px auto 0; text-align: center; }

/* ---------- Steps ---------- */
/* Auto-balances to however many steps are in the row (5 on how-it-works, 3 on
   the program pages). The connector line spans first circle to last, not the
   full container, so it never trails past the final step. */
.steps { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 16px; position: relative; }
.step { text-align: center; position: relative; }
.step-num { width: 56px; height: 56px; border-radius: 999px; background: var(--color-blue-soft); color: var(--color-navy); font-family: var(--font-display); font-weight: 700; font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; position: relative; z-index: 2; }
.step h3 { font-family: var(--font-body); font-weight: 800; font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--color-muted); }
.steps::before {
  content: ""; position: absolute; top: 28px; height: 2px; z-index: 1;
  /* half a column in from each edge = dead centre of the first and last circle */
  left: calc(50% / var(--step-count, 5)); right: calc(50% / var(--step-count, 5));
  background: repeating-linear-gradient(90deg, var(--color-border) 0 8px, transparent 8px 16px);
}
.steps--3 { --step-count: 3; }
.steps--4 { --step-count: 4; }
.steps--5 { --step-count: 5; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(90deg, #8ECEFD 0%, #C9EBFF 50%, #8ECEFD 100%); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.commitment {
  background: var(--color-blue-soft); border-radius: var(--radius-lg); padding: 36px 40px;
  display: grid; grid-template-columns: auto 1.4fr 1fr auto; gap: 30px; align-items: center;
}
.commit-shield { width: 84px; height: 84px; border-radius: 999px; background: var(--color-lime); display: flex; align-items: center; justify-content: center; flex: none; }
.commit-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.commit-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; font-weight: 600; }
.commit-list .check { color: var(--color-success); flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-navy); color: #cdd6ea; padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 30px; }
.footer-about { font-size: 14px; color: #9fb0d0; max-width: 280px; margin-top: 16px; }
.footer-col h4 { font-family: var(--font-body); font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: #b9c5dd; }
.footer-col a:hover { color: var(--color-lime); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: #8094b6; }
.footer-bottom .socials { display: flex; gap: 14px; }
.footer-bottom .socials a { width: 34px; height: 34px; border-radius: 999px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.footer-legal-note { font-size: 12px; color: #6f83a8; margin-top: 18px; line-height: 1.6; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(180deg, #8ECEFD 0%, #EAF6FF 100%); padding: 64px 0 56px; }
.page-hero h1 { font-size: 56px; color: var(--color-navy); }
.page-hero .lead { margin-top: 8px; }
.breadcrumb { font-size: 13px; font-weight: 700; color: var(--color-muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--color-lavender-cta); }

/* ---------- Prose (blog/legal) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 30px; margin-top: 1.4em; }
.prose h3 { font-size: 22px; font-family: var(--font-body); font-weight: 800; margin-top: 1.4em; }
.prose p, .prose li { font-size: 17px; color: #243a6b; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.2em; display: flex; flex-direction: column; gap: 8px; }
.prose a { color: var(--color-lavender-cta); font-weight: 700; text-decoration: underline; }
.prose blockquote { border-left: 4px solid var(--color-lavender); background: var(--color-lavender-bg); margin: 1.4em 0; padding: 18px 24px; border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.callout { background: var(--color-lavender-bg); border-radius: var(--radius-md); padding: 20px 24px; font-size: 15px; margin: 24px 0; }
.callout b { color: var(--color-navy); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 4px; font-family: var(--font-body); font-weight: 800; font-size: 18px; color: var(--color-navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .plus { flex: none; width: 26px; height: 26px; border-radius: 999px; background: var(--color-lavender-bg); display: flex; align-items: center; justify-content: center; transition: transform .2s; font-size: 18px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 4px 22px; color: var(--color-muted); font-size: 16px; }
.faq-group-title { font-size: 22px; margin: 40px 0 8px; }

/* ---------- Quiz ---------- */
.quiz-wrap { max-width: 640px; margin: 0 auto; }
.quiz-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-bar); padding: 40px; }
.progress { height: 8px; background: var(--color-border); border-radius: 999px; overflow: hidden; margin-bottom: 8px; }
.progress-fill { height: 100%; background: var(--color-lavender-cta); width: 0; transition: width .35s ease; border-radius: 999px; }
.progress-label { font-size: 13px; font-weight: 700; color: var(--color-muted); margin-bottom: 28px; }
.quiz-step { display: none; animation: fade .35s ease; }
.quiz-step.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.quiz-step h2 { font-size: 28px; }
.quiz-step .help { color: var(--color-muted); font-size: 15px; margin-bottom: 24px; }
.options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.option {
  width: 100%; text-align: left; background: #fff; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md); padding: 18px 20px; font-weight: 700; font-size: 16px; color: var(--color-navy);
  display: flex; align-items: center; gap: 14px; transition: .15s;
}
.option:hover { border-color: var(--color-lavender-cta); background: #faf7ff; }
.option.selected { border-color: var(--color-lavender-cta); background: var(--color-lavender-bg); }
.option .dot { width: 22px; height: 22px; border-radius: 999px; border: 2px solid var(--color-border); flex: none; display:flex; align-items:center; justify-content:center; }
.option.selected .dot { border-color: var(--color-lavender-cta); background: var(--color-lavender-cta); }
.option.selected .dot::after { content: ""; width: 8px; height: 8px; border-radius: 999px; background: #fff; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 800; font-size: 14px; margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 15px 16px; border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 16px; color: var(--color-navy); background:#fff;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--color-lavender-cta); }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 26px; gap: 12px; }
.quiz-back { background: none; border: none; color: var(--color-muted); font-weight: 700; font-size: 15px; padding: 12px; }
.quiz-back:hover { color: var(--color-navy); }
.quiz-result { text-align: center; }
.result-score { width: 150px; height: 150px; border-radius: 999px; margin: 0 auto 22px; display:flex; flex-direction: column; align-items:center; justify-content:center; background: conic-gradient(var(--color-lavender-cta) var(--deg,260deg), var(--color-border) 0); }
.result-score .inner { width: 122px; height: 122px; background:#fff; border-radius:999px; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.result-score .num { font-family: var(--font-display); font-weight: 700; font-size: 44px; line-height: 1; color: var(--color-navy); }
.result-score .lbl { font-size: 11px; font-weight: 800; letter-spacing: .08em; color: var(--color-muted); text-transform: uppercase; }
.disclaimer { font-size: 12px; color: var(--color-muted); text-align:center; margin-top: 20px; }

/* ---------- Misc components ---------- */
.pill-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-pill); padding: 8px 16px; font-size: 13px; font-weight: 700; }
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.stat { background:#fff; border:1px solid var(--color-border); border-radius: var(--radius-lg); padding: 28px; text-align:center; box-shadow: var(--shadow-card); }
.stat .big { font-family: var(--font-display); font-weight: 700; font-size: 40px; color: var(--color-lavender-cta); letter-spacing:-.03em; }
.stat .lbl { font-size: 14px; color: var(--color-muted); }
.reviewer-card { display:flex; gap: 22px; align-items:center; background:#fff; border:1px solid var(--color-border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-card); }
.reviewer-avatar { width: 86px; height: 86px; border-radius:999px; flex:none; background: linear-gradient(150deg, var(--color-lavender) 0%, var(--color-pink) 100%); display:flex; align-items:center; justify-content:center; font-family: var(--font-display); font-weight:700; font-size: 30px; color:#fff; }
.note-banner { background: var(--color-lavender-bg); border-radius: var(--radius-md); padding: 16px 22px; font-size: 14px; display:flex; gap:12px; align-items:flex-start; }
.blog-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.blog-card { display:flex; flex-direction:column; overflow:hidden; }
.blog-card .thumb { height: 160px; border-radius: var(--radius-md); margin-bottom: 18px; }
.blog-card h3 { font-size: 20px; }
.blog-card .meta { font-size: 12px; font-weight: 700; color: var(--color-muted); text-transform: uppercase; letter-spacing:.06em; margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--color-muted); }
.blog-card a.more { margin-top: auto; font-weight: 800; font-size: 14px; color: var(--color-lavender-cta); }
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--color-navy); color:#fff; padding: 14px 22px; border-radius: var(--radius-pill); font-weight:700; font-size:14px; box-shadow: var(--shadow-pop); z-index: 300; transition: transform .3s; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 64px; }
  /* narrower visual column - pull the lime blob in so it clears the headline */
  .blob-lime { width: 200px; height: 200px; right: 200px; top: 190px; }
  .blob-pink { width: 300px; height: 380px; right: 80px; }
  .hero-photo { right: 60px; width: 450px; height: 680px; bottom: -140px; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .steps { grid-template-columns: repeat(3,1fr); row-gap: 30px; }
  .steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .commitment { grid-template-columns: 1fr; text-align: left; }
}
@media (max-width: 880px) {
  :root { --gutter: 22px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; margin-top: 10px; }
  .hero-photo { right: 50%; transform: translateX(50%); width: 430px; height: 640px; bottom: -130px; }
  .hero h1 { font-size: 48px; }
  .hero-sub { font-size: 18px; }
  .section { padding: 56px 0; }
  .section h2 { font-size: 30px; }
  .page-hero h1 { font-size: 40px; }
  .trust-bar { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-item { border-left: none !important; }
  .cards-3, .cards-2, .price-grid, .blog-grid, .stat-grid, .form-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 24px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .price-card.featured { order: -1; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 40px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .quiz-card { padding: 26px 20px; }
  .snapshot-card { display: none; }
  .blob-pink { width: 230px; height: 290px; right: 50%; transform: translateX(50%) translateX(14px); top: 60px; }
  .blob-lime { width: 190px; height: 190px; right: 50%; transform: translateX(50%) translateX(-6px); bottom: 20px; }
  .hero-photo { width: 320px; height: 470px; right: 50%; transform: translateX(50%); bottom: -125px; }
}

/* =========================================================================
   PROGRAMS — router, program hero, product cards
   Added 08.05.26 when the four LaunchPad programs became real pages.
   ========================================================================= */

/* ---- homepage router ---- */
.router-section { background: linear-gradient(180deg, #FFFFFF 0%, var(--color-offwhite) 100%); }
.router-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.router-card {
  display: flex; flex-direction: column; background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--color-border); overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.router-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); border-color: var(--rc); }
.router-media {
  background: color-mix(in srgb, var(--rc) 26%, #fff);
  height: 168px; display: flex; align-items: center; justify-content: center; padding: 18px;
}
.router-media img { width: auto; height: 100%; max-width: 100%; object-fit: contain; }
.router-copy { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.router-goal { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--color-navy); line-height: 1.15; }
.router-prog { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--color-muted); }
.router-sub { font-size: 14px; color: var(--color-muted); margin-top: 2px; }
.router-go { margin-top: auto; padding-top: 14px; font-weight: 800; font-size: 14px; color: var(--color-navy); }
.router-card:hover .router-go .arrow { transform: translateX(4px); }

/* ---- program page hero ---- */
.prog-hero { background: linear-gradient(180deg, var(--color-sky) 0%, #DCF0FF 62%, var(--color-offwhite) 100%); padding: 20px 0 64px; }
.prog-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; margin-top: 18px; }
.prog-hero h1 { font-size: 54px; line-height: 1.02; margin: 14px 0 16px; }
.prog-bestfor {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 20px;
  background: rgba(255,255,255,.72); border-radius: var(--radius-md); padding: 14px 18px;
  font-size: 15px; font-weight: 600; color: var(--color-navy); max-width: 540px;
}
.prog-hero-art { position: relative; display: flex; align-items: center; justify-content: center; min-height: 320px; }
.prog-hero-blob { position: absolute; width: 300px; height: 300px; border-radius: 999px; opacity: .55; }
.prog-hero-art img { position: relative; width: 300px; height: auto; object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(7,30,86,.18)); }

/* ---- program switcher strip ---- */
.prog-strip { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.prog-chip {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px;
  border: 1.5px solid var(--color-border); border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14.5px; color: var(--color-navy); background: #fff;
  transition: border-color .15s ease, transform .15s ease;
}
.prog-chip:hover { border-color: var(--color-navy); transform: translateY(-1px); }
.prog-chip.is-current { background: var(--color-navy); color: #fff; border-color: var(--color-navy); }
.prog-chip .dot { width: 9px; height: 9px; border-radius: 999px; flex: none; }

/* ---- product cards ---- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 38px; }
.product-card {
  display: flex; flex-direction: column; background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--color-border); overflow: hidden; box-shadow: var(--shadow-card);
}
.product-media { height: 200px; display: flex; align-items: center; justify-content: center; padding: 22px; }
.product-media img { width: auto; height: 100%; max-width: 100%; object-fit: contain; }
.product-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 { font-size: 19px; font-family: var(--font-display); margin: 10px 0 4px; }
.product-dose { font-size: 14px; color: var(--color-muted); margin-bottom: 14px; }
.product-benefits { font-size: 14px; }
.product-ingredients { font-size: 13px; color: var(--color-muted); margin: 16px 0 0; line-height: 1.5; }
.product-ingredients b { color: var(--color-navy); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.product-foot { margin-top: auto; padding-top: 20px; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.product-from { display: block; font-size: 12px; font-weight: 700; color: var(--color-muted); }
.product-price { font-size: 26px; font-weight: 800; color: var(--color-navy); line-height: 1.1; }
.product-per { display: block; font-size: 12px; color: var(--color-muted); }
.maxw-760 { max-width: 760px; margin: 0 auto; }

@media (max-width: 1024px) {
  .router-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .prog-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .prog-hero h1 { font-size: 42px; }
  .prog-hero-art { min-height: 240px; }
  .prog-hero-art img, .prog-hero-blob { width: 230px; height: auto; }
  .prog-hero-blob { height: 230px; }
}
@media (max-width: 640px) {
  .router-grid, .product-grid { grid-template-columns: 1fr; }
  .prog-hero h1 { font-size: 34px; }
  .product-foot { flex-direction: column; align-items: stretch; }
  .product-foot .btn { width: 100%; }
}

/* ---- nav dropdown for Programs ---- */
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-links .caret { font-size: 10px; opacity: .6; transition: transform .15s ease; }
.nav-links .has-sub:hover .caret { transform: rotate(180deg); }
.subnav {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 268px; background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-pop); padding: 8px;
  list-style: none; opacity: 0; visibility: hidden; transition: opacity .15s ease, transform .15s ease;
  z-index: 120;
}
.nav-links .has-sub:hover .subnav,
.nav-links .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.subnav::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.subnav li a {
  display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: 10px;
  font-size: 14.5px; font-weight: 700; color: var(--color-navy); white-space: nowrap;
}
.subnav li a:hover { background: var(--color-offwhite); color: var(--color-navy); }
.subnav .dot { width: 9px; height: 9px; border-radius: 999px; flex: none; }
.subnav-all { border-top: 1px solid var(--color-border); margin-top: 6px; padding-top: 4px; }
.subnav-all a { font-size: 13.5px; color: var(--color-muted) !important; }
.mobile-drawer .drawer-sub { padding-left: 20px; font-size: 14.5px; font-weight: 600; color: var(--color-muted); }

/* ---- four-program price grid ---- */
.price-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.prog-price { display: flex; flex-direction: column; }
.prog-price-head { display: flex; align-items: center; gap: 13px; margin-bottom: 12px; }
.prog-price-head h3 { font-size: 17px; margin: 0; line-height: 1.2; }
.prog-price .price-desc { min-height: 42px; }
.prog-price .feature-list { font-size: 14px; }
.prog-price .actions { margin-top: auto; padding-top: 18px; display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 1100px) { .price-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .price-grid--4 { grid-template-columns: 1fr; } }

/* ---- quiz result: program match ---- */
.result-badge {
  display: inline-block; padding: 9px 20px; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--color-navy); margin-bottom: 18px;
}
.result-alt { font-size: 14.5px; color: var(--color-muted); margin: 16px 0 22px; }
.result-alt a { font-weight: 800; }

/* ============================================================
   ADDED 08.06.26 — portal nav entry, FAQ index, price table,
   accessibility skip link.
   ============================================================ */

/* Skip link: keyboard users land on it first, sighted users never see it.
   Also a small accessibility signal search engines read. */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--color-navy); color: #fff; padding: 12px 18px;
  border-radius: 0 0 10px 0; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* Patient portal entry in the primary nav. LegitScript expects a reviewer to
   find the portal login without hunting; this is the same "My Portal" pattern
   the OpenLoop-built storefront uses. */
.nav-portal {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 15px; color: var(--color-navy);
  padding: 10px 14px; border-radius: 999px; text-decoration: none;
  border: 1.5px solid rgba(7,30,86,.22); background: rgba(255,255,255,.55);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.nav-portal svg { display: block; }
.nav-portal:hover { background: #fff; border-color: rgba(7,30,86,.45); transform: translateY(-1px); }
.nav-portal:focus-visible { outline: 3px solid var(--color-navy); outline-offset: 2px; }
.site-footer .socials a { display: inline-flex; }

/* FAQ page: jump index across the seven groups. */
.faq-jumps { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.faq-jump {
  font-size: 14px; font-weight: 700; text-decoration: none;
  color: var(--color-navy); background: #fff; border: 1.5px solid var(--color-border);
  border-radius: 999px; padding: 8px 14px; transition: border-color .18s ease, transform .18s ease;
}
.faq-jump:hover { border-color: var(--color-navy); transform: translateY(-1px); }
.faq-group-title { scroll-margin-top: 96px; }
.maxw-860 { max-width: 860px; margin: 0 auto; }
.tag--sky { background: var(--color-sky); color: var(--color-navy); }

/* Pricing: the full 18-medication table. */
.ptable-wrap { overflow-x: auto; margin-top: 34px; border-radius: 16px; border: 1px solid var(--color-border); background: #fff; }
.ptable { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 640px; }
.ptable th {
  text-align: left; padding: 14px 18px; font-size: 13px; letter-spacing: .04em;
  text-transform: uppercase; color: #506079; border-bottom: 2px solid var(--color-border);
  background: #FBFCFE;
}
.ptable td { padding: 15px 18px; border-bottom: 1px solid var(--color-border); vertical-align: top; }
.ptable tr:last-child td { border-bottom: 0; }
.ptable-head td {
  background: #F6F8FC; font-family: var(--font-display); font-size: 17px;
  padding-top: 20px; padding-bottom: 14px;
}
.ptable-head a { color: var(--color-navy); text-decoration: none; }
.ptable-head a:hover { text-decoration: underline; }
.ptable-head .dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 9px; }
.ptable-sub { display: block; font-size: 13px; color: #506079; margin-top: 3px; font-weight: 400; }
.ptable-price { font-weight: 800; white-space: nowrap; }
.ptable-per { display: block; font-size: 12px; color: #506079; font-weight: 400; }

@media (max-width: 980px) {
  .nav-portal { display: none; }
}

/* Inline links inside lead paragraphs were visually indistinguishable from
   body copy, which hides real navigation from readers and crawlers alike. */
.lead a, .faq-a-inner a, .footer-about a {
  color: var(--color-lavender-cta); font-weight: 700;
  text-decoration: underline; text-underline-offset: 2px;
}
.lead a:hover, .faq-a-inner a:hover { color: var(--color-navy); }

/* Program pages: the chip strip and the program note used to be two separate
   88px-padded sections directly under the hero. One tighter band instead. */
.prog-band { padding: 34px 0 42px; background: var(--color-offwhite); }
.prog-band .prog-strip { margin-bottom: 0; }
.prog-hero { padding-bottom: 48px; }
.prog-band + .section--offwhite { padding-top: 56px; }

/* Price cards: "from" prefix when a program has more than one price. */
.price-from {
  display: inline-block; font-family: var(--font-body); font-size: 14px;
  font-weight: 700; color: #506079; margin-right: 6px; vertical-align: middle;
}

/* Contact page routes */
.contact-routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-route {
  display: flex; gap: 15px; align-items: flex-start; text-decoration: none;
  background: #fff; border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
  padding: 22px; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.contact-route:hover { border-color: var(--rc, var(--color-navy)); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(7,30,86,.08); }
.contact-route b { display: block; color: var(--color-navy); font-size: 17px; margin-bottom: 6px; }
.contact-route .muted { display: block; font-size: 14px; line-height: 1.55; }
.contact-go { display: inline-block; margin-top: 12px; font-weight: 700; font-size: 14px; color: var(--color-navy); }
.contact-route:hover .contact-go .arrow { transform: translateX(3px); }

.contact-direct { margin-top: 30px; }
.contact-direct h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 14px; }
.contact-emails { list-style: none; padding: 0; margin: 0 0 20px; }
.contact-emails li { padding: 14px 0; border-bottom: 1px solid var(--color-border); }
.contact-emails li:last-child { border-bottom: 0; }
.contact-emails b { display: block; font-size: 15px; color: var(--color-navy); }
.contact-emails a { display: block; font-weight: 700; margin: 2px 0 3px; }
.contact-emails .muted { font-size: 14px; }

.field textarea {
  width: 100%; border: 1.5px solid var(--color-border); border-radius: 12px;
  padding: 13px 15px; font: inherit; font-size: 16px; color: var(--color-navy);
  background: #fff; resize: vertical; min-height: 120px;
}
.field textarea:focus { outline: none; border-color: var(--color-navy); }

@media (max-width: 900px) {
  .contact-routes { grid-template-columns: 1fr; }
}

@media (max-width: 1180px) and (min-width: 861px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; max-width: 460px; }
}
/* Contact page: the emergency notice sat a full section-gap below a short form. */
.contact-emergency { padding: 12px 0 72px; }

/* Honeypot: off-screen rather than display:none, because some bots skip
   display:none fields. Screen readers skip it via aria-hidden on the wrapper. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Price cards lost their bullet list (it read as filler). Keep margin-top:auto
   on .actions so the buttons still bottom-align across all four cards, and give
   the kicker a min-height so the prices line up on the same row too. */
.prog-price .price-desc { min-height: 42px; margin-bottom: 0; }
.prog-price .price-amount { margin: 18px 0 26px; }
