/* ============================================================
   THE FINGERPRINT — sarah-v3
   Built from Sarah's Figma design (file DjDqggIELMwdaiEEPWSmnf,
   node 7:5, pulled 1 Sep 2026). Card-on-canvas layout: every
   section is a rounded card floating on a warm putty ground,
   coloured cards carry a 50px paper-grain tile at 40% overlay.

   Palette (from the Figma, exact):
     putty ground  #f0eae6   ink text   #241f1f
     navy          #1d2b54   royal blue #3956a8
     blush         #fbedf0   bubblegum  #eeadc0
     yellow        #f3c846   red        #af271d
     raspberry     #d34062   warm white #fbf8f2

   Type: Archivo (variable, Black for display), Newsreader
   (self-hosted variable, body serif), Space Mono (labels,
   eyebrows, buttons).
   ============================================================ */

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/recommended/Newsreader/Newsreader[opsz,wght].woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/recommended/Newsreader/Newsreader-Italic[opsz,wght].woff2") format("woff2");
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}

:root {
  --putty: #f0eae6;
  --ink: #241f1f;
  --navy: #1d2b54;
  --royal: #3956a8;
  --blush: #fbedf0;
  --bubblegum: #eeadc0;
  --yellow: #f3c846;
  --red: #af271d;
  --raspberry: #d34062;
  --warm-white: #fbf8f2;

  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --mono: "Space Mono", "Courier New", monospace;

  --gutter: clamp(10px, 3.74vw, 55px);
  --card-x: clamp(22px, 3.5vw, 52px);
  --card-y: clamp(48px, 5.4vw, 80px);
  --radius: 12px;
  --gap: 16px;
  --measure: 760px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--putty);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding: var(--gap) var(--gutter) 0;
}

img { max-width: 100%; display: block; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff;
  padding: 10px 18px; z-index: 100;
  font-family: var(--mono); font-size: 13px;
}
.skip:focus { left: 8px; top: 8px; }

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

/* ---------- cards (sections) ---------- */
.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: var(--gap);
  padding: var(--card-y) var(--card-x);
  background: #fff;
}
main > .card:first-child { margin-top: 0; }

.card--blush { background: var(--blush); }
.card--bubblegum { background: var(--bubblegum); }
.card--navy { background: var(--navy); color: #fff; }
.card--royal { background: var(--royal); color: #fff; }
.card--warm { background: var(--warm-white); }

/* mobile-only / desktop-only blocks (the two Figma frames differ in
   copy and components; 700px is the hand-off point) */
.only-m { display: none !important; }
@media (max-width: 700px) {
  .only-m { display: revert !important; }
  .only-d { display: none !important; }
}

/* paper-grain tile on coloured cards, same recipe as the Figma:
   50px tile, 40% opacity, overlay blend. It blends with the card's
   own background only (isolation) and paints UNDER the content. */
.card { isolation: isolate; }
.card--grain::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: url("assets/v3/texture.png") top left / 50px 50px repeat;
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.card > * { position: relative; z-index: 1; }

/* ---------- type ---------- */
.d {
  font-family: var(--sans);
  font-weight: 900;
  font-variation-settings: "wdth" 100;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.d--hero { font-size: clamp(40px, 6.6vw, 96px); line-height: 0.92; letter-spacing: -0.03em; text-transform: uppercase; }
@media (max-width: 640px) { .d--hero { font-size: 11vw; } }
.d--peak { font-size: clamp(38px, 5.2vw, 76px); line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; }
.d--xl { font-size: clamp(30px, 3.2vw, 46px); }
.d--lg { font-size: clamp(28px, 3vw, 44px); }
.d--md { font-size: clamp(25px, 2.6vw, 38px); }
.d--sm { font-size: clamp(23px, 2.35vw, 34px); }
.d--xs { font-size: clamp(21px, 2vw, 29px); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 14px;
}
.eyebrow--red { color: var(--red); }

/* centered copy column, text left-aligned (Figma: 760px col) */
.col {
  max-width: var(--measure);
  margin-inline: auto;
}
.prose p { margin-top: 20px; font-size: 17px; line-height: 1.75; }
.prose p:first-child { margin-top: 0; }
.prose--lg p { font-size: 19px; line-height: 1.8; }
.prose .lead { font-size: 24px; line-height: 1.6; }
.prose .dots {
  color: rgba(57, 86, 168, 0.45);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.6em;
  margin-top: 28px;
}
.prose .dots + p { margin-top: 28px; }

.hl { color: var(--yellow); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  border: 2.5px solid transparent;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(36, 31, 31, 0.18); }
.btn--pill { border-radius: 999px; }
.btn--ghost {
  background: transparent;
  border-color: var(--yellow);
  color: var(--yellow);
  border-radius: 999px;
}
.btn--ghost:hover { box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25); }
.btn--red { background: var(--red); color: #fff; font-size: 14px; padding: 18px 36px; }
.btn--red-pill { background: var(--red); color: #fff; font-size: 14px; padding: 18px 36px; border-radius: 999px; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

.starts-note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(36, 31, 31, 0.6);
  text-transform: uppercase;
  margin-top: 18px;
  text-align: center;
}

/* ============================================================
   COHORT ANNOUNCEMENT (mobile frame)
   ============================================================ */
.announce {
  position: relative;
  background: var(--bubblegum);
  isolation: isolate;
  margin: calc(-1 * var(--gap)) calc(-1 * var(--gutter)) 0;
  padding: 15px var(--gutter);
  text-align: center;
}
.announce p {
  position: relative;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  margin-top: var(--gap);
  padding: 30px var(--card-x) 64px;
}
.hero__fp {
  position: absolute;
  left: -210px; top: 294px;
  width: 760px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 4px;
  margin-bottom: 56px;
}
.nav__wordmark {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
}
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}
.nav__links a:hover { color: #fff; }
.nav .btn--nav {
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 14px 28px;
}
.nav__burger {
  background: none;
  border: 0;
  padding: 8px 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav__burger span {
  display: block;
  width: 30px; height: 3px;
  background: #fff;
  border-radius: 2px;
}
.nav__menu[hidden] { display: none; }
.nav__menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: -32px 0 24px;
}
.nav__menu a {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.hero__inner {
  display: flex;
  gap: 44px;
  align-items: center;
}
.hero__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 26px; align-items: flex-start; }
.hero__sub {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1.45;
  color: var(--yellow);
}
.hero__q {
  font-family: var(--sans);
  font-weight: 900;
  font-variation-settings: "wdth" 100;
  font-size: clamp(27px, 3vw, 43px);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: #fff;
  text-wrap: balance;
}
.hero__photo { flex: 0 0 auto; width: min(400px, 30vw); }
.arch {
  border: 5px solid var(--yellow);
  border-radius: 200px 200px var(--radius) var(--radius);
  overflow: hidden;
  aspect-ratio: 400 / 548;
}
.arch img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   EARLY PROOF + BLUE QUOTE (shared quote panel shapes)
   ============================================================ */
.quote-panel { text-align: center; }
.quote-panel .col { max-width: 860px; }
.quote-panel__pull { margin-bottom: 18px; }
.quote-panel__body { font-size: 15px; line-height: 1.75; color: rgba(36, 31, 31, 0.75); }
.quote-panel__name { font-weight: 700; font-size: 15px; margin-top: 18px; }
.quote-panel__role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--royal);
  margin-top: 10px;
}
.card--navy .quote-panel__body { color: rgba(255, 255, 255, 0.8); }
.card--navy .quote-panel__name { color: #fff; }
.card--navy .quote-panel__role { color: var(--yellow); }

.deco-avatar {
  position: absolute;
  right: clamp(8px, 4vw, 60px);
  top: 40px;
  width: clamp(90px, 12vw, 175px);
  transform: rotate(8deg);
  pointer-events: none;
  z-index: 1;
}
.deco-avatar--faq { top: 24px; width: clamp(80px, 10vw, 135px); }

/* ============================================================
   DIVIDER BAND (bubblegum interstitial)
   ============================================================ */
.divider-band { text-align: center; padding-block: clamp(40px, 4.5vw, 66px); }
.divider-band__fp { width: 34px; margin: 0 auto 14px; opacity: 0.55; }
.divider-band .eyebrow { color: rgba(36, 31, 31, 0.55); }
.divider-band .d { margin-bottom: 24px; }
.divider-band .btn { margin-bottom: 4px; }

/* ============================================================
   MARMITE (navy split)
   ============================================================ */
.marmite {
  display: grid;
  grid-template-areas: "head photo" "copy photo";
  grid-template-columns: 1fr clamp(260px, 33vw, 480px);
  grid-template-rows: auto 1fr;
  padding: 0;
}
.marmite__fp {
  position: absolute;
  left: -80px; bottom: -40px;
  width: 360px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.marmite__head {
  grid-area: head;
  color: #fff;
  padding: clamp(48px, 6vw, 88px) clamp(24px, 3.8vw, 56px) 22px clamp(24px, 4.4vw, 64px);
}
.marmite__copy {
  grid-area: copy;
  min-width: 0;
  padding: 0 clamp(24px, 3.8vw, 56px) clamp(48px, 6vw, 88px) clamp(24px, 4.4vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.marmite__nutella { font-size: 21px; line-height: 1.7; color: rgba(255, 255, 255, 0.85); }
.marmite__body { font-size: 17px; line-height: 1.75; color: rgba(255, 255, 255, 0.85); }
.marmite__tag { font-style: italic; font-size: 26px; color: rgba(255, 255, 255, 0.7); }
.marmite__photo { grid-area: photo; }
.marmite__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SO! THAT'S THE FINGERPRINT (steps)
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 54px;
}
.step { text-align: left; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.step__badge {
  width: 170px; height: 170px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.step__badge img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0.7;
}
.step__num {
  position: relative;
  font-family: var(--sans);
  font-weight: 900;
  font-variation-settings: "wdth" 100;
  font-size: 54px;
  line-height: 1;
  color: var(--raspberry);
}
.step p { font-size: 17px; line-height: 1.75; }
.center-cta { display: flex; flex-direction: column; align-items: center; padding-top: 56px; }

/* ============================================================
   YOU WON'T BE DOING IT ALONE
   ============================================================ */
.alone { text-align: center; }
.alone .d { color: var(--raspberry); margin-bottom: 16px; }
.alone__line { font-style: italic; font-size: 21px; color: rgba(36, 31, 31, 0.8); }
.alone__line + .alone__line { margin-top: 8px; color: var(--ink); }
.alone__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
  text-align: left;
}
.alone__card {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 28px;
  font-size: 17px;
  line-height: 1.7;
}

/* ============================================================
   HONESTY / generic centered-column sections
   ============================================================ */
.kicker {
  font-size: 22px;
  color: var(--royal);
  font-style: italic;
  margin-top: 10px;
}
.section-head { margin-bottom: 26px; }
.section-head .d { margin-top: 0; }

/* ============================================================
   CTA BAND (royal blue)
   ============================================================ */
.cta-band {
  text-align: center;
  padding-block: clamp(48px, 5vw, 72px);
  overflow: visible;
  z-index: 2;
}
.cta-band .d { color: #fff; }
/* frame-level Sherlock sticker: lower-left of the blue band, spilling
   onto the F.I.N.D. card below (1470w frame, node 196:2) */
.deco-avatar--band {
  left: 12%;
  right: auto;
  top: auto;
  bottom: -140px;
  width: clamp(120px, 14.7vw, 211px);
  transform: rotate(-8deg);
  z-index: 3;
}
.cta-band__price {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin: 14px 0 28px;
}
.cta-band .cta-row { justify-content: center; }

/* ============================================================
   F.I.N.D. PHASES
   ============================================================ */
.phases-head { text-align: center; margin-bottom: 8px; }
.phases-head .method {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--royal);
  margin-top: 12px;
}
.phases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.phase {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 34px;
  overflow: hidden;
}
.phase__weeks {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--royal);
  margin-bottom: 8px;
}
.phase__title {
  font-family: var(--sans);
  font-weight: 900;
  font-variation-settings: "wdth" 100;
  font-size: 24px;
  margin-bottom: 10px;
}
.phase p { font-size: 15px; line-height: 1.7; color: rgba(36, 31, 31, 0.75); }
.phase__letter {
  position: absolute;
  top: 15px; right: 26px;
  font-family: var(--sans);
  font-weight: 900;
  font-variation-settings: "wdth" 100;
  font-size: 52px;
  line-height: 1;
  color: rgba(211, 64, 98, 0.2);
}

/* ============================================================
   TOOLKIT (what's included)
   ============================================================ */
.toolkit { display: flex; gap: clamp(32px, 4.4vw, 64px); align-items: center; }
.toolkit__photo { flex: 0 0 clamp(260px, 28vw, 420px); display: flex; justify-content: center; }
.polaroid {
  background: var(--warm-white);
  border: 1px solid rgba(36, 31, 31, 0.1);
  border-radius: 2px;
  padding: 20px 20px 96px;
  transform: rotate(3deg);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1)) drop-shadow(0 16px 17px rgba(0, 0, 0, 0.24));
  width: min(100%, 370px);
}
.polaroid img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; object-position: 50% 12%; }
.toolkit__copy { flex: 1; min-width: 0; }
.toolkit__sub { font-style: italic; font-size: 19px; color: var(--royal); margin: 10px 0 18px; }
.tools { list-style: none; margin-bottom: 22px; }
.tool {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(57, 86, 168, 0.15);
}
.tool__icon { flex: 0 0 52px; width: 52px; height: 52px; object-fit: contain; }
.tool__name {
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  color: var(--royal);
  line-height: 1.3;
}
.tool p { font-size: 16px; line-height: 1.52; color: rgba(36, 31, 31, 0.78); }

/* ============================================================
   WHY ME
   ============================================================ */
.whyme {
  display: grid;
  grid-template-areas: "photo head" "photo copy";
  grid-template-columns: clamp(240px, 24vw, 340px) 1fr;
  grid-template-rows: auto 1fr;
  column-gap: clamp(32px, 4.4vw, 64px);
  align-items: center;
}
.whyme__head { grid-area: head; align-self: end; }
.whyme__copy { grid-area: copy; }
.whyme__photo { grid-area: photo; text-align: center; }
.whyme__photo .arch {
  border-color: var(--royal);
  border-width: 4px;
  border-radius: 170px 170px var(--radius) var(--radius);
  aspect-ratio: 340 / 440;
}
.whyme__caption { font-style: italic; font-size: 22px; margin-top: 18px; }
.whyme__cred { font-size: 19px; font-style: italic; color: var(--royal); margin: 10px 0 18px; }
.whyme__copy .prose p { font-size: 16px; color: rgba(36, 31, 31, 0.85); margin-top: 16px; }
.whyme__copy .btn { margin-top: 26px; }
.deco-avatar--whyme { top: 20px; right: -26px; width: 92px; }

/* ============================================================
   PROOF GRID (testimonials)
   ============================================================ */
.proof-head { text-align: center; margin-bottom: 40px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.quote-card {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 32px;
}
.quote-card blockquote { font-size: 16px; line-height: 1.75; color: rgba(36, 31, 31, 0.88); }
.quote-card__name { font-weight: 700; font-size: 15px; margin-top: 16px; }
.quote-card__role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--royal);
  margin-top: 8px;
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee-head { text-align: center; margin-bottom: 40px; }
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.guarantee-grid h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wdth" 100;
  font-size: 20px;
  margin-bottom: 10px;
}
.guarantee-grid p { font-size: 16px; line-height: 1.7; color: rgba(36, 31, 31, 0.75); }

/* ============================================================
   FOR YOU / NOT FOR YOU
   ============================================================ */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4.4vw, 64px); }
.fit h3 {
  font-family: var(--sans);
  font-weight: 900;
  font-variation-settings: "wdth" 100;
  font-size: 24px;
  margin-bottom: 20px;
}
.fit ul { list-style: none; }
.fit li {
  position: relative;
  padding-left: 26px;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(36, 31, 31, 0.85);
}
.fit li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--royal);
}
.fit--no li::before { background: var(--red); }

/* ============================================================
   ESSENTIALS STRIP
   ============================================================ */
.essentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-block: clamp(36px, 4vw, 56px);
}
.essentials .eyebrow { margin-bottom: 8px; font-size: 12px; }
.essentials__value {
  font-family: var(--sans);
  font-weight: 900;
  font-variation-settings: "wdth" 100;
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.essentials__note { font-size: 14px; line-height: 1.6; color: rgba(36, 31, 31, 0.7); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { text-align: center; }
.pricing__sub { font-size: 16px; color: rgba(36, 31, 31, 0.6); max-width: 560px; margin: 10px auto 0; }
.pricing__choose {
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wdth" 100;
  font-size: 20px;
  margin-top: 18px;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 40px auto 0;
  align-items: stretch;
}
.plan {
  position: relative;
  background: #fff;
  border: 2px solid var(--bubblegum);
  border-radius: var(--radius);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: center;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.plan:hover { border-color: var(--raspberry); }
.plan[aria-checked="true"] {
  background: var(--blush);
  border-color: var(--royal);
}
.plan__badge {
  background: var(--yellow);
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
}
.plan__label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--royal);
}
.plan__amount {
  font-family: var(--sans);
  font-weight: 900;
  font-variation-settings: "wdth" 100;
  font-size: 33px;
  line-height: 1.2;
}
.plan__amount .permo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
}
.plan__note { font-size: 14px; color: rgba(36, 31, 31, 0.55); }
.plan__note--saves { font-weight: 700; color: var(--red); }
/* pay-in-full's own action and the two monthly cards' embedded
   PayPal buttons are sized and positioned the same way — a pill,
   ~44px tall, pinned to the bottom of the (equal-height, grid-
   stretched) card, so all three read as one matching row. PayPal's
   own button can't take our exact colors/font, so .plan__buy is
   styled to match ITS rendered look (solid black pill) instead. */
.plan__buy {
  /* margin-top:auto alone pushes this to the bottom of the (grid-
     stretched, equal-height) card — no padding-top here, since this
     element is ALSO its own flex container centering the button
     text, and padding eaten into a fixed-height border-box element
     shifts that centered text off-centre (measured ~8.6px low) */
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
  height: 44px;
  /* PayPal's rendered subscribe button carries ~11px of invisible
     padding below its visible pill (measured directly against the
     live iframe) — this margin matches so all three plan buttons'
     visible bottom edges line up despite PayPal's box being taller
     than ours */
  margin-bottom: 11px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  /* black, matching the two PayPal buttons — the earlier
     "unprofessional" look was the text sitting off-centre (fixed
     above), not the colour; with that fixed, black reads as one
     consistent row instead of a mismatch */
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.plan__buy:hover { background: var(--raspberry); }
.plan__pp-btn {
  margin-top: auto;
  padding-top: 18px;
  width: 100%;
  max-width: 220px;
}
/* brief nudge toward the plan cards when "Get in now" is clicked
   before any plan is selected — no plan is pre-picked, so this is
   the fallback instead of silently guessing one for the buyer */
@keyframes plans-attn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(211, 64, 98, 0); }
  30% { box-shadow: 0 0 0 6px rgba(211, 64, 98, 0.25); }
}
.plans--attn .plan { animation: plans-attn 0.9s ease-out; border-radius: var(--radius); }
.pricing__cta-wrap { position: relative; display: inline-flex; margin-top: 40px; }
.pricing__hand {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-56%) rotate(8deg);
  width: clamp(110px, 12vw, 185px);
  pointer-events: none;
}
.pricing__fine { font-size: 14px; color: rgba(36, 31, 31, 0.6); margin-top: 36px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-card { padding-block: 68px; }
.faq-head { text-align: center; margin-bottom: 32px; }
.faq { max-width: 920px; margin-inline: auto; }
.faq__item {
  background: var(--blush);
  border-radius: 8px;
  padding: 15px 24px;
  margin-top: 8px;
}
.faq__item summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  line-height: 1.4;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 20px;
  color: var(--royal);
  flex: 0 0 auto;
}
.faq__item[open] summary::after { content: "–"; }
.faq__body p { font-size: 16px; line-height: 1.7; color: rgba(36, 31, 31, 0.75); padding-top: 10px; }

/* ============================================================
   FINAL CLOSE
   ============================================================ */
.close { text-align: center; padding-block: clamp(56px, 6vw, 84px); }
.close .col { max-width: 880px; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.close__spots {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--red);
  text-transform: uppercase;
}
.close .btn { margin-top: 16px; }
.close__chat { font-size: 16px; color: rgba(36, 31, 31, 0.75); }
.close__chat a { color: inherit; }

/* ============================================================
   FOOTER — full-bleed navy strip (1470w frame: 56/107 padding,
   brand left + legal links right, © / site on the bottom row)
   ============================================================ */
.footer {
  position: relative;
  isolation: isolate;
  background: var(--navy);
  margin: var(--gap) calc(-1 * var(--gutter)) 0;
  padding: clamp(44px, 4vw, 56px) clamp(22px, 7.3vw, 107px);
  /* clearance so the fixed sticky bar never hides the © row */
  padding-bottom: calc(clamp(44px, 4vw, 56px) + 72px);
}
.footer > * { position: relative; z-index: 1; }
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__wordmark {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #fff;
}
.footer__tagline {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  max-width: 480px;
}
.footer__nav { display: flex; gap: 28px; }
.footer__nav a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  width: fit-content;
}
.footer__nav a:hover { color: #fff; text-decoration: underline; }
.footer__rule {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin: 28px 0 24px;
}
.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}
.footer__legal a { color: inherit; text-decoration: none; }
.footer__legal a:hover { color: #fff; }

/* ============================================================
   STICKY BAR (mobile frame; #stickybar wiring lives in app.js)
   ============================================================ */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(22px, 7.3vw, 107px);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-bar::before {
  content: "";
  position: absolute; inset: 0;
  background: url("assets/v3/texture.png") top left / 50px 50px repeat;
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.sticky-bar.is-visible { transform: none; }
.sticky-bar__note {
  position: relative;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.sticky-bar .btn { position: relative; }
@media (prefers-reduced-motion: reduce) {
  .sticky-bar { transition: none; }
}

/* ============================================================
   THANK-YOU PAGE (thanks-v3.html, same stylesheet)
   ============================================================ */
.ty-hero {
  text-align: center;
  padding-block: clamp(48px, 5vw, 80px);
}
.ty-hero .nav__wordmark { display: block; margin-bottom: clamp(40px, 5vw, 72px); }
.ty-hero__eyebrow { color: var(--yellow); }
.step a { color: var(--royal); }
/* no sticky bar on the thank-you page, so no clearance needed */
.footer--flush { padding-bottom: clamp(44px, 4vw, 56px); }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 16px 44px 16px 20px;
  max-width: min(92vw, 520px);
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  z-index: 60;
}
.toast a { color: var(--yellow); }
.toast__close {
  position: absolute;
  right: 8px; top: 6px;
  background: none; border: 0;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 6px;
}

/* ---------- reveals (driven by app.js: .section gets .is-live) ---------- */
.reveal { opacity: 0; transform: translateY(18px); }
.section.is-live .reveal, .footer.is-live .reveal {
  opacity: 1; transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section.is-live .reveal:nth-child(2) { transition-delay: 0.08s; }
.section.is-live .reveal:nth-child(3) { transition-delay: 0.16s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .section.is-live .reveal, .footer.is-live .reveal { transition: none; }
  .btn { transition: none; }
  .btn:hover { transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero__inner { flex-direction: column; align-items: flex-start; }
  .hero__photo { width: min(346px, 88vw); align-self: center; }
  .nav__links { display: none; }
  .marmite {
    grid-template-areas: "head" "photo" "copy";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .marmite__head { padding: 44px 22px 8px; }
  .marmite__photo { margin: 0 22px; }
  .marmite__photo img { height: auto; }
  .marmite__copy { padding: 18px 22px 44px; }
  .alone__grid { grid-template-columns: 1fr; }
  .phases { grid-template-columns: 1fr; }
  .toolkit { flex-direction: column; align-items: flex-start; }
  .toolkit__photo { flex: none; align-self: center; }
  .whyme {
    grid-template-areas: "head" "photo" "copy";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 24px;
  }
  .whyme__head { align-self: start; }
  .whyme__photo { width: min(300px, 82vw); justify-self: center; }
  .proof-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .fit { grid-template-columns: 1fr; gap: 36px; }
  .essentials { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 420px; }
}

/* the 390 frame: full-bleed cards that butt together (each card's
   rounded top sits over the one above), 22/44 padding, full-width
   CTAs, badge-beside-text steps, corner-tucked avatars */
@media (max-width: 700px) {
  :root { --card-x: 22px; --card-y: 44px; }
  body { padding: 0; }
  .card { margin-top: -12px; }
  main > .card:first-child { margin-top: 0; }
  .announce { margin: 0; padding: 12px 22px; }
  .hero { margin-top: -12px; padding-top: 24px; }
  .footer { margin: -12px 0 0; padding: 44px 22px calc(44px + 104px); }
  .footer--flush { padding-bottom: 44px; }
  .footer__top { flex-direction: column; gap: 0; }
  .footer__tagline { font-size: 19px; margin-top: 14px; }
  .footer__nav { flex-direction: column; gap: 12px; margin-top: 26px; }
  .footer__nav a { font-size: 17px; }
  .footer__legal { flex-direction: column; margin-top: 0; line-height: 2.2; }
  .sticky-bar { flex-direction: column; gap: 8px; padding: 12px 22px 14px; }
  .sticky-bar .btn { width: 100%; }
  .nav { margin-bottom: 40px; }
  .cta-row { flex-direction: column; align-items: stretch; width: 100%; }
  .card .btn { width: 100%; }
  .close .col > .reveal { width: 100%; }
  .nav .btn, .toast .toast__close { width: auto; }
  .steps { grid-template-columns: 1fr; gap: 30px; padding-top: 36px; }
  .step { flex-direction: row; align-items: flex-start; gap: 18px; }
  .step__badge { flex: 0 0 84px; width: 84px; height: 104px; }
  .step__num { font-size: 30px; }
  .center-cta { padding-top: 40px; }
  .essentials { grid-template-columns: 1fr; }
  .quote-panel { text-align: center; }
  /* the bottom-right sticker needs a clear band under the attribution;
     centred text runs the full width at this size and lands under her */
  .quote-panel > .deco-avatar ~ .col { padding-bottom: 88px; }
  /* the 8deg rotation paints a box ~1.13x the declared width, so the inset
     has to clear the overhang as well or the card's overflow:hidden slices
     the sticker down its side */
  .deco-avatar { top: auto; bottom: 12px; right: 14px; width: 96px; }
  .deco-avatar--faq { top: 8px; bottom: auto; right: 14px; width: 102px; }
  .deco-avatar--whyme { top: 16px; bottom: auto; right: 14px; width: 92px; }
  .marmite .hl { color: #fff; }
  .pricing__hand { display: none; }
  .polaroid { width: min(100%, 308px); }
  .footer { text-align: left; }
}

/* ============================================================
   LEGAL PAGE
   legal.html runs on this stylesheet and reuses the card, prose
   and footer systems. Only two things are its own: the header
   card's wordmark spacing (same treatment as .ty-hero) and the
   bulleted list, which mirrors .fit li's dot marker without
   inheriting .fit's 24px container size.
   ============================================================ */
.legal-hero .nav__wordmark { display: block; margin-bottom: clamp(40px, 5vw, 72px); }
.legal-hero__eyebrow { color: var(--yellow); }

.legal-list { list-style: none; margin-top: 20px; }
.legal-list li {
  position: relative;
  padding-left: 26px;
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.75;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--royal);
}

/* h3s inside the legal prose need air above them; .prose only
   spaces paragraphs. */
.prose h3 { margin-top: 38px; }
.prose h3:first-child { margin-top: 0; }

/* ============================================================
   CONTRAST CORRECTIONS — Tamara's call, 10 Sep 2026
   NOT IN SARAH'S FIGMA. Three small-text pairings from the file
   fell under WCAG AA (4.5:1 for text below 18.66px bold). Each
   is corrected ONLY on the ground where it failed; the palette
   tokens are untouched, so every other use of these colours —
   including the same classes on navy, blush and white — renders
   exactly as designed.

     yellow  on royal      4.29 -> 4.57   #F3C846 -> #F4D061
     red     on bubblegum  3.63 -> 4.57   #AF271D -> #942118
     royal   on bubblegum  3.70 -> 4.58   #3956A8 -> #304990

   Each is the smallest shift along luminance that clears the
   bar. If the Figma is ever re-synced, these three need
   carrying across or the failures return.
   ============================================================ */
.card--royal .btn--ghost { border-color: #F4D061; color: #F4D061; }
.card--bubblegum .eyebrow { color: #304990; }
.card--bubblegum .eyebrow--red { color: #942118; }
/* The divider band's eyebrow is deliberately near-black at 55%, not
   royal, and it already passed. This block sits after that rule at the
   same specificity, so it has to be handed back explicitly. */
.card--bubblegum.divider-band .eyebrow { color: rgba(36, 31, 31, 0.55); }
