/* ==========================================================================
   Powermove Audit LP - "Benchmark Beater"
   Display: Anton | Body/data: Poppins | Script accent: Caveat
   ========================================================================== */

/* ---- Fonts ---------------------------------------------------------------- */
@font-face {
  font-family: "Anton";
  src: url("../assets/fonts/Anton-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("../assets/fonts/Caveat-subset.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---- Tokens --------------------------------------------------------------- */
:root {
  --royal: #1B4DCE;
  --royal-deep: #123B9E;
  --royal-bright: #2A5CE8;
  --navy: #001B49;
  --azure: #0584FE;
  --lime: #95D934;
  --ice: #F3F8FF;
  --black: #0A0A0A;
  --white: #FFFFFF;
  /* Secondary text on ice/white: darker slate for legible contrast (was #4A5A78). */
  --ink-muted: #3A4A63;

  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;

  --wrap: 1120px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 16px;
  --hairline: 1px solid rgba(0, 27, 73, 0.10);
  --shadow: 0 18px 48px -20px rgba(0, 27, 73, 0.35);
  --shadow-soft: 0 8px 28px -14px rgba(0, 27, 73, 0.28);
}

/* ---- Reset / base --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500; /* Poppins Medium as the body default; 600 = emphasis, 400 = fine print */
  font-size: 1.0625rem; /* 17px */
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

@media (min-width: 768px) {
  body { font-size: 1.125rem; } /* 18px */
}

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

/* the hidden attribute must always win over component display rules */
[hidden] { display: none !important; }

a { color: var(--azure); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Tabular figures for all numeric readouts (replaces the old mono treatment).
   Poppins SemiBold + tabular-nums so digits line up as they change. */
.tnum {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* Lime highlighter swipe: navy text on a lime marker block, matching the main
   site's lime-block-with-dark-text device. Reserved for result/money stats
   (79 leads / 6x ROAS / -42%) - a result highlight, so lime is semantically
   correct, never decorative. Contrast navy #001B49 on lime #95D934 ~= 9.8:1
   (well above the 4.5:1 AA floor). */
.swipe {
  color: var(--navy);
  background: var(--lime);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0.04em 0.3em;
  border-radius: 4px 7px 5px 8px;
  box-shadow: 0 2px 0 rgba(0, 27, 73, 0.15);
}

/* Handwritten value accent (Caveat), used sparingly - max 2 places. */
.value-anchor {
  font-family: var(--font-script);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

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

.skip-link {
  position: absolute;
  left: 0; top: 0;
  transform: translateY(-120%);
  background: var(--lime);
  color: var(--black);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  z-index: 100;
  transition: transform 0.15s ease;
}
.skip-link:focus { transform: translateY(0); text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--azure);
  outline-offset: 2px;
  border-radius: 4px;
}

/* The lime pop word / result highlight */
.pop { color: var(--lime); }

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.1;
  text-align: center;
  padding: 0.95rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:hover { text-decoration: none; }
.btn--lime {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 10px 24px -12px rgba(149, 217, 52, 0.9);
}
.btn--lime:hover { transform: translateY(-2px); }
.btn--royal {
  background: var(--royal);
  color: var(--white);
}
.btn--royal:hover { transform: translateY(-2px); background: var(--royal-bright); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(0, 27, 73, 0.25);
}
.btn--ghost:hover { border-color: var(--navy); }

/* ---- Header (sticky, all viewports - it is short) ------------------------- */
.site-header {
  background: var(--royal-deep);
  position: sticky;
  top: 0;
  z-index: 80;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.logo img { width: clamp(150px, 30vw, 200px); height: auto; }
/* Real CTA button, scaled down from .btn--lime, right-aligned in the header.
   Desktop-only: on mobile the bottom sticky bar is the persistent CTA, and
   two simultaneous sticky lime CTAs read as spam. */
.header-cta {
  flex: none;
  padding: 0.55rem 1.1rem;
  font-size: 0.9375rem;
}
@media (max-width: 767px) {
  .header-cta { display: none; }
}
/* The sticky header overlaps in-page anchor targets; nudge the scroll stop so
   the wizard heading is not hidden under the bar. */
#wizard { scroll-margin-top: 5rem; }

/* ---- Hero (royal) --------------------------------------------------------- */
.hero {
  background:
    radial-gradient(120% 90% at 72% 8%, var(--royal-bright) 0%, var(--royal) 46%, var(--royal-deep) 100%);
  color: var(--white);
  padding-block: clamp(2.5rem, 7vw, 5rem);
}
.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
}
.eyebrow {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}
.hero__h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.94;
  font-size: clamp(2.5rem, 7vw, 4.5rem); /* 40 - 72px */
  text-shadow: 0 3px 0 rgba(0, 17, 47, 0.35);
  margin: 0 0 1rem;
  text-wrap: balance;
}
/* "AVERAGE RESULTS." is the outcome you do NOT want, so it is struck through
   in muted white - reserving lime for the CTA and the proof metrics that beat
   average. Kept on one line so mobile never orphans a word. */
.hero__h1 .hero__neg {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.66);
  text-decoration: line-through;
  text-decoration-thickness: 0.07em;
  text-decoration-color: rgba(255, 255, 255, 0.66);
}
.hero__sub {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.75rem;
}
.hero__ctawrap { position: relative; max-width: 360px; }
.hero__cta { width: 100%; max-width: 360px; }
/* Handwritten "valued at $4,000" accent beside the hero CTA. */
.value-anchor--hero {
  display: block;
  margin: 0.65rem 0 0;
  font-size: 1.5rem;
  color: #BFE0FF;
  text-align: center;
  transform: rotate(-3deg);
  transform-origin: center;
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1.5rem 0 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}
.trust-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-chips li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--azure);
  flex: none;
}
.trust-chips--center { justify-content: center; }

/* Mobile: tighten the hero's vertical rhythm so the top of the calculator card
   crests the fold - a "there is something to do here" signal - without moving
   it above the CTA (reco 6). Trims padding and the gaps around the sub, the
   $4,000 anchor and the bullet list. */
@media (max-width: 767px) {
  .hero { padding-block: 1.75rem 1.75rem; }
  .hero__grid { gap: 1.5rem; }
  .eyebrow { margin-bottom: 0.75rem; }
  .hero__sub { margin-bottom: 1rem; }
  .hero__ctawrap { margin-top: 0.25rem; }
  .value-anchor--hero { margin-top: 0.5rem; }
  .trust-chips { margin-top: 1rem; }
}

/* ---- Calculator card ------------------------------------------------------ */
.calc {
  background: var(--white);
  color: var(--navy);
  border: var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.calc__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
  color: var(--navy);
}
.calc__field { margin-bottom: 1.1rem; }
.calc__field label,
.field label {
  display: block;
  font-weight: 500;
  font-size: 0.9375rem;
  margin-bottom: 0.4rem;
}
.calc__labelrow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.calc__spendval {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--royal);
}
.calc input[type="range"] {
  width: 100%;
  accent-color: var(--royal);
  cursor: pointer;
}
.calc select,
.calc input[type="number"],
.field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(0, 27, 73, 0.2);
  border-radius: 10px;
  background: var(--white);
}
.calc select:focus,
.calc input:focus,
.field input:focus { border-color: var(--azure); }

.calc__result {
  margin: 1.25rem 0 0.75rem;
  padding: 1.1rem 1.15rem;
  background: var(--ice);
  border-radius: 12px;
}
.calc__result p { margin: 0; }
/* Primary readout: the painful cost-per-lead leads the block, in the same unit
   as the proof cards ($/lead) so the contrast lands with no maths. Deliberately
   NOT lime - lime is the win colour, and this is the expensive number the proof
   cards below beat. Royal, large, tabular. */
.calc__cpl {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.calc__cpl-figure {
  font-size: clamp(2rem, 5.5vw, 2.6rem);
  line-height: 1;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  color: var(--royal);
}
.calc__cpl-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}
/* Supporting line: the click/lead volume the cost is derived from, demoted. */
.calc__support {
  margin-top: 0.7rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(0, 27, 73, 0.12);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink-muted);
}
.calc__support .tnum { color: var(--navy); }
.calc__disclaimer {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
  margin: 0.75rem 0 0.35rem;
}
.calc__fineprint {
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0.5rem 0 1.25rem;
}
.calc__cta { width: 100%; }

/* ---- Section headings ----------------------------------------------------- */
.section-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.98;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  color: var(--navy);
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  max-width: 22ch;
}
.section-h2--black { color: var(--black); }

/* ---- Proof strip (ice) ---------------------------------------------------- */
.proof { background: var(--ice); padding-block: clamp(3rem, 7vw, 5rem); }
.proof__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .proof__grid { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--white);
  border: var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
/* Even vertical rhythm: fixed gap between the three blocks (swipe stat,
   support line, attribution) instead of an auto-margin push, so the gap
   above the attribution never balloons and the attribution never sits
   cramped against the card's bottom edge. Consistent at 1440 and 375. */
.proof__card { padding: 1.85rem 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
/* Client logo: one uniform chip for all three so the treatment reads
   consistent regardless of each source logo's own colours or quality - same
   height, same ice tile, same hairline, centred. True colour at rest (the old
   grayscale turned the pale-gold LUXE wordmark invisible). Widths flex to each
   mark; height is fixed so the row of three reads as a set. */
.proof__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0.35rem 0.7rem;
  margin-bottom: 0.15rem;
  background: var(--ice);
  border: 1px solid rgba(0, 27, 73, 0.12);
  border-radius: 9px;
}
.proof__logo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
/* LUXE ships as a pale-gold wordmark that all but vanishes on light. Deepen
   the gold so it clears contrast on the ice chip without swapping the asset. */
.proof__logo--luxe img { filter: saturate(1.35) brightness(0.72); }
/* Stat-first: the number leads on its own line, plain words support it. */
.proof__big {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 3.1rem);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0;
}
.proof__big .swipe { font-size: inherit; }
.proof__support {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--navy);
  margin: 0;
}
.proof__eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.4;
}
.proof__cta-wrap { text-align: center; margin-top: clamp(1.75rem, 4vw, 2.5rem); }

/* ---- Red flags (white) - interactive self-diagnosis ----------------------- */
.flags { background: var(--white); padding-block: clamp(3rem, 7vw, 5rem); }
.flags__list { display: grid; gap: 0; border-top: 1px solid rgba(10,10,10,0.12); }
.flags__item { border-bottom: 1px solid rgba(10,10,10,0.12); }
/* Whole row is the tick target (label wraps the checkbox), so tapping the
   text toggles the flag. Keyboard: the native checkbox stays focusable. */
.flags__label {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 0.25rem;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.flags__label:hover { background: rgba(27, 77, 206, 0.04); }
/* Custom-styled checkbox: real input, accent-coloured, comfortably sized and
   keyboard focusable (default focus-visible ring applies). */
.flags__check {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  accent-color: var(--royal);
  cursor: pointer;
}
.flags__num {
  font-size: 1.25rem;
  /* royal (7:1 on white) not azure (3.66:1) - 20px/600 counts as normal text */
  color: var(--royal);
  flex: none;
  width: 2.25rem;
}
/* Editorial weight, not another headline: Poppins 600 sentence case. The
   section H2 stays Anton; only the five flag lines were shouting before. */
.flags__text {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.35;
  font-size: clamp(1.0625rem, 1.6vw + 0.75rem, 1.375rem); /* ~17px mobile - 22px desktop */
  color: var(--black);
}
/* Ticked rows read as "yes, that is me" - subtle ice fill + navy text. */
.flags__label:has(.flags__check:checked) { background: var(--ice); }
.flags__counter {
  margin: 1.5rem 0 0;
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.4;
  color: var(--navy);
}
.flags__cta { margin-top: 1.25rem; }

/* ---- Trust (ice) ---------------------------------------------------------- */
.trust { background: var(--ice); padding-block: clamp(3rem, 7vw, 5rem); }
.review {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.review__stars { color: #F5B400; font-size: 1.5rem; letter-spacing: 0.15em; line-height: 1; }
.review__quote { margin: 1rem 0 1.25rem; }
.review__quote p {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--navy);
  margin: 0;
}
.review__cite { font-size: 0.8125rem; color: var(--ink-muted); letter-spacing: 0.04em; }

/* Anchored panel: photo + credentials sit together on a card instead of
   floating alone on ice, so the real proof (named brands, team size) reads as
   a deliberate lockup. Tighter whitespace, credentials pulled out of the
   sentence into a stat line + brand chips. */
.founders {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
@media (min-width: 640px) {
  .founders { flex-direction: row; justify-content: flex-start; text-align: left; }
}
.founders__photowrap { flex: none; }
.founders__group {
  width: clamp(180px, 38vw, 260px);
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.founders__copy { max-width: 44ch; }
.founders__names { font-weight: 600; font-size: 1.0625rem; margin: 0 0 0.35rem; color: var(--navy); }
.founders__lead { margin: 0 0 1.1rem; color: var(--ink-muted); font-size: 0.9375rem; }
.founders__lead .tnum { color: var(--royal); }
.founders__brands-label {
  margin: 0 0 0.6rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}
.founders__brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
@media (min-width: 640px) { .founders__brands-row { justify-content: flex-start; } }
.founders__brands-row li {
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(0, 27, 73, 0.16);
  border-radius: 8px;
  background: var(--ice);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

/* ---- Review wall (ice) ---------------------------------------------------- */
.reviews { background: var(--ice); padding-block: clamp(3rem, 7vw, 5rem); }
.reviews__head {
  text-align: center;
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
}
.reviews__stars { color: #F5B400; font-size: 1.75rem; letter-spacing: 0.12em; line-height: 1; }
.reviews__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--navy);
  margin: 0.6rem 0 0;
}
.reviews__title .tnum { color: var(--royal); }
.reviews__source { margin: 0.6rem 0 0; font-size: 0.875rem; font-weight: 600; }
.reviews__source a { color: var(--royal); }

/* Masonry via CSS columns: cards keep their natural height, no ragged grid
   rows. break-inside:avoid keeps a card whole across a column boundary. */
.reviews__grid {
  columns: 1;
  column-gap: 1.25rem;
}
@media (min-width: 640px) { .reviews__grid { columns: 2; } }
@media (min-width: 960px) { .reviews__grid { columns: 3; } }
.reviews__card {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  padding: 1.5rem 1.4rem;
}
.reviews__cardstars { color: #F5B400; font-size: 1.05rem; letter-spacing: 0.1em; line-height: 1; margin-bottom: 0.75rem; }
.reviews__text p {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 0.75rem;
}
.reviews__text p:last-child { margin-bottom: 0; }
/* Pinned context chip: keeps "5.0 / 36 reviews" in view while the wall
   scrolls, so the aggregate is never lost cards deep. Decorative
   (aria-hidden) - the section head carries the accessible heading. Sticks
   just below the sticky site header. */
.reviews__chip {
  position: sticky;
  top: 4rem;
  z-index: 40;
  width: max-content;
  max-width: 90%;
  margin: 0 auto clamp(1.25rem, 3vw, 1.75rem);
  padding: 0.4rem 0.95rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-soft);
}
.reviews__chipstar { color: #F5B400; }

/* Featured hierarchy: the three most detailed reviews lead the wall (George
   hero-sized + two standouts) so the strongest proof is not left to scroll
   position. All text stays verbatim and fully visible - this is layout
   weight only. Every remaining review flows in the masonry below at full
   length. */
.reviews__featured {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .reviews__featured { grid-template-columns: 1fr 1fr; }
  .reviews__card--hero { grid-column: 1 / -1; }
}
@media (min-width: 960px) {
  .reviews__featured { grid-template-columns: 1.5fr 1fr 1fr; align-items: stretch; }
  .reviews__card--hero { grid-column: 1; }
}
.reviews__card--hero,
.reviews__card--standout {
  border-top: 3px solid var(--royal);
  padding: 1.75rem 1.6rem;
}
.reviews__card--standout .reviews__text p { font-size: 1rem; line-height: 1.5; }
.reviews__card--hero .reviews__text p { font-size: 1.0625rem; line-height: 1.55; }
@media (min-width: 960px) {
  .reviews__card--hero .reviews__text p { font-size: 1.15rem; }
}

/* Desktop hover affordance: cards lift and deepen their shadow so the wall
   feels alive. Guarded by hover: hover (never on touch) and zeroed under
   reduced motion by the global rule. */
@media (hover: hover) {
  .reviews__card, .proof__card {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .reviews__card:hover, .proof__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }
}
.reviews__cite {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  margin: 1rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 27, 73, 0.1);
}
.reviews__name { font-weight: 600; font-size: 0.9375rem; color: var(--navy); }
.reviews__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}
.reviews__cta-wrap { text-align: center; margin-top: clamp(1.75rem, 4vw, 2.5rem); }

/* Compact density where the wall is single-column (mobile): tighter padding,
   1.4 line-height and slightly smaller body trim ~25-30% of vertical length
   without hiding a single word. */
@media (max-width: 639px) {
  .reviews__card { padding: 1.15rem 1.15rem; margin-bottom: 1rem; }
  .reviews__text p { font-size: 0.875rem; line-height: 1.4; margin-bottom: 0.55rem; }
  .reviews__card--hero .reviews__text p,
  .reviews__card--standout .reviews__text p { font-size: 0.9375rem; line-height: 1.45; }
  .reviews__cite { margin-top: 0.75rem; padding-top: 0.6rem; }
  .reviews__featured { gap: 1rem; margin-bottom: 1rem; }
  .reviews__card--hero, .reviews__card--standout { padding: 1.3rem 1.2rem; }
}

/* ---- Pull-quote band (navy) ----------------------------------------------- */
/* One navy moment in the long light middle: a single verbatim standout in big
   Anton, gold stars, attributed. Breaks the ice/white monotony and re-injects
   brand colour before the offer band. */
.pullquote {
  background:
    radial-gradient(120% 140% at 50% 0%, var(--royal-deep) 0%, var(--navy) 70%);
  color: var(--white);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.pullquote__inner { text-align: center; max-width: 900px; }
.pullquote__stars {
  color: #F5B400;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.pullquote__q { margin: 0; }
.pullquote__q p {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.06;
  font-size: clamp(1.6rem, 4.2vw, 3.1rem);
  margin: 0;
  text-shadow: 0 2px 0 rgba(0, 17, 47, 0.35);
  text-wrap: balance;
}
.pullquote__cite {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  margin: 1.5rem 0 0;
}
.pullquote__name { font-weight: 600; font-size: 1rem; color: var(--white); }
.pullquote__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}

/* ---- Wizard (white card on royal) ----------------------------------------- */
.wizard-band {
  background:
    radial-gradient(120% 120% at 50% 0%, var(--royal-bright) 0%, var(--royal) 55%, var(--royal-deep) 100%);
  padding-block: clamp(3rem, 7vw, 5rem);
}
/* Kicker/eyebrow above the process cards - the cap statement is the band's
   hero, so this drops to a small Poppins label. Kept an h2 for structure. */
.wizard-band__how {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}
/* 3-step process, the band's centrepiece: glass cards with line icons, an
   azure number chip, and hand-drawn marker arrows between them on desktop. */
.timeline {
  display: grid;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.timeline__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  padding: 1.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
}
@supports (backdrop-filter: blur(8px)) {
  .timeline__step { backdrop-filter: blur(8px); }
}
.timeline__icon {
  width: 44px;
  height: 44px;
  color: var(--white);
}
/* Filled azure number chip (aria-hidden - the step text carries the meaning). */
.timeline__num {
  flex: none;
  width: 1.9rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--azure);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}
.timeline__text {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.35;
}
.timeline__text strong { font-weight: 700; }
/* Hand-drawn white marker arrow, sitting in the gap between cards (desktop
   only). Overflows the card's right edge into the grid gap. aria-hidden. */
.timeline__arrow {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  width: 56px;
  height: 35px;
  transform: translate(calc(50% + 1rem), -50%);
  color: var(--white);
  opacity: 0.7;
  pointer-events: none;
}
@media (min-width: 760px) {
  .timeline__arrow { display: block; }
}

/* Merged "honest offer" copy - the cap statement is the band's hero line. */
.wizard-band__intro {
  text-align: center;
  color: var(--white);
  max-width: var(--wrap);
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
}
.wizard-band__lead {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.04;
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  max-width: none;
  margin: 0 auto 1.5rem;
  text-shadow: 0 2px 0 rgba(0, 17, 47, 0.28);
}
/* Continuity line shown only when the wizard spend band was prefilled from
   the calculator. */
.wizard-band__prefill {
  margin: 1rem auto 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #BFE0FF;
}

/* ---- Team strip (on royal, above the wizard card) ------------------------- */
/* Third rhythm unit: a deliberate large gap separates it from the cap
   statement above and the wizard card below. */
.team-strip {
  text-align: center;
  max-width: 640px;
  margin: clamp(2.5rem, 6vw, 4rem) auto clamp(2rem, 5vw, 3rem);
}
.team-strip__row {
  display: flex;
  justify-content: center;
  padding-left: 18px; /* balance the negative overlap of the first avatar */
}
.team-strip__avatar {
  width: 46px;
  height: 46px;
  margin-left: -18px; /* tighter overlap */
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
}
.team-strip__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.team-strip__line {
  margin: 1rem auto 0;
  max-width: 40ch;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 480px) {
  .team-strip__avatar { width: 38px; height: 38px; margin-left: -14px; }
  .team-strip__row { padding-left: 14px; }
}
.wizard {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
/* Handwritten "valued at $4,000" accent on the wizard title (white card). */
.value-anchor--wizard {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 1.6rem;
  color: var(--azure);
  transform: rotate(-3deg);
}
.wizard__reassure {
  margin: 0.9rem 0 0;
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  text-align: center;
}
.wizard__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: var(--navy);
  margin: 0 0 1.25rem;
}
/* Substantiates the "$4,000" anchor: what the audit actually covers. */
.wizard__covers {
  display: grid;
  gap: 0.5rem 1rem;
  margin: 0 0 1.5rem;
}
@media (min-width: 480px) { .wizard__covers { grid-template-columns: 1fr 1fr; } }
.wizard__covers li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--navy);
}
/* Royal tick, not lime - lime is reserved for action/CTAs only. */
.wizard__covers li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 6px;
  height: 11px;
  border: solid var(--royal);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(40deg);
}

.wizard__dots {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
}
.wizard__dot {
  width: 32px; height: 5px;
  border-radius: 999px;
  background: rgba(0, 27, 73, 0.14);
}
.wizard__dot.is-active { background: var(--royal); }

.wizard-step { border: 0; margin: 0; padding: 0; display: none; }
.wizard-step[data-active] { display: block; }
.wizard-step__legend {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--navy);
  padding: 0;
  margin-bottom: 1.1rem;
}

.opt-grid { display: grid; gap: 0.75rem; }
@media (min-width: 480px) {
  .opt-grid { grid-template-columns: repeat(2, 1fr); }
}
.opt {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 27, 73, 0.2);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.opt:hover { border-color: var(--royal); }
.opt input { accent-color: var(--royal); width: 1.15rem; height: 1.15rem; flex: none; }
.opt:has(input:checked) { border-color: var(--royal); background: var(--ice); }

.field { margin-bottom: 1rem; }
.field label .req { color: var(--azure); }

.wizard__hint {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--azure);
}

.wizard__nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.wizard__nav .btn { flex: 1; }
#wizard-back { flex: 0 0 auto; }

.wizard__thankyou { text-align: center; }
.wizard__thankyou .btn { width: 100%; max-width: 380px; }
.wizard__ty-line { color: var(--ink-muted); margin: 1rem 0 0; }
.wizard__ty-access { margin: 0.75rem 0 0; font-size: 0.9375rem; }
.wizard__ty-access a { color: var(--royal); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.wizard__fallback {
  margin: 1.25rem 0 0;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.9375rem;
}

/* ---- Sticky mobile CTA ----------------------------------------------------- */
/* Hidden by default; JS toggles .is-visible once the visitor scrolls past the
   hero CTA, and hides it again while the wizard or footer is in view
   (js/main.js initStickyCta). Mobile only. */
.sticky-cta {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--black);
  font-weight: 600;
  padding: 1rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px -10px rgba(0, 27, 73, 0.5);
}
.sticky-cta:hover { text-decoration: none; }
@media (max-width: 767px) {
  .sticky-cta {
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(130%);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .sticky-cta.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ---- Access page (utility, noindex) --------------------------------------- */
.access { background: var(--white); padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.access__wrap { max-width: 720px; }
.access__h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.98;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy);
  margin: 0 0 1rem;
}
.access__optional { color: var(--ink-muted); }
.access__intro {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--navy);
  margin: 0 0 0.9rem;
  max-width: 60ch;
}
/* Reassurance stated once, up top, instead of repeated under every platform. */
.access__note--top { margin: 0 0 clamp(2rem, 4vw, 2.75rem); }
/* Four platforms as cards with a jump-to icon each. */
.access__grid { display: grid; gap: 1.25rem; }
@media (min-width: 720px) { .access__grid { grid-template-columns: 1fr 1fr; } }
.access__card {
  background: var(--white);
  border: var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.access__cardhead {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.access__icon {
  flex: none;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--ice);
  color: var(--royal);
}
.access__icon svg { width: 22px; height: 22px; }
.access__h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: var(--black);
  margin: 0;
}
.access__steps {
  list-style: decimal;
  padding-left: 1.4rem;
  display: grid;
  gap: 0.65rem;
}
.access__steps li { font-size: 1rem; line-height: 1.55; color: var(--navy); padding-left: 0.25rem; }
.access__email { font-weight: 600; color: var(--royal); word-break: break-word; }
.access__id { font-weight: 600; color: var(--royal); }
.access__note {
  margin: 1.1rem 0 0;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--ink-muted);
  max-width: 60ch;
}

/* ---- FAQ (white) ---------------------------------------------------------- */
.faq { background: var(--white); padding-block: clamp(3rem, 7vw, 5rem); }
.faq__list { border-top: 1px solid rgba(10, 10, 10, 0.12); max-width: 820px; }
/* Royal left-accent gives the plainest section brand texture and marks the
   open item clearly; the open row also fills ice. De-template is visual only -
   the questions and answers are unchanged (JSON-LD FAQPage still mirrors). */
.faq__item {
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  border-left: 3px solid transparent;
  padding-left: 1rem;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.faq__item[open] {
  border-left-color: var(--royal);
  background: var(--ice);
}
.faq__q {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0.85rem 1.15rem 0;
  font-weight: 600;
  font-size: clamp(1.0625rem, 1.2vw + 0.8rem, 1.25rem);
  color: var(--black);
}
.faq__q::-webkit-details-marker { display: none; }
/* Plus/minus affordance drawn with CSS so it needs no icon font. */
.faq__q::after {
  content: "+";
  flex: none;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--royal);
}
.faq__item[open] .faq__q::after { content: "\2212"; } /* minus */
.faq__a {
  padding: 0 0.85rem 1.25rem 0;
  max-width: 68ch;
}
.faq__a p { margin: 0; color: var(--ink-muted); line-height: 1.6; }

/* Closing reassurance + inline CTA - ends the content on-voice instead of on a
   generic accordion. */
.faq__close {
  max-width: 820px;
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--navy);
}
.faq__close-cta {
  color: var(--royal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

/* ---- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding-block: 2.5rem;
  /* keep clear of the sticky CTA on mobile */
  padding-bottom: calc(2.5rem + 4.5rem);
}
@media (min-width: 768px) {
  .site-footer { padding-bottom: 2.5rem; }
}
.site-footer__cta { margin-bottom: 1.75rem; }
.site-footer__logo { width: 180px; margin-bottom: 1.25rem; }
.site-footer__line { font-weight: 400; font-size: 0.875rem; letter-spacing: 0.04em; margin: 0 0 0.75rem; }
.site-footer__privacy { font-weight: 400; font-size: 0.875rem; color: rgba(255, 255, 255, 0.72); margin: 0; max-width: 52ch; }
/* Underlined: these links sit inside text blocks, so colour alone is not a
   sufficient distinction (WCAG link-in-text-block). */
.site-footer__link { color: #BFE0FF; text-decoration: underline; text-underline-offset: 3px; }
.site-footer__link:hover { color: #fff; }

/* ---- Mobile pass (<= 480px) ----------------------------------------------- */
/* Mobile-only line break: hidden by default, active under 481px. */
.br-mobile { display: none; }

@media (max-width: 480px) {
  /* Headline: three deliberate lines at impact size - "AVERAGE /
     AGENCIES GET / AVERAGE RESULTS." with lime owning its full line. */
  .br-mobile { display: inline; }
  .hero__h1 { font-size: 2.75rem; }

  /* Trust chips: one tidy stacked column, smaller, never a ragged wrap. */
  .trust-chips {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
  }
  .trust-chips li { white-space: nowrap; }
  .trust-chips--center { align-items: center; }

  /* Tighter section + card padding so content isn't boxed in on small screens. */
  .proof, .flags, .trust, .wizard-band { padding-block: 2.5rem; }
  .proof__card { padding: 1.5rem 1.25rem; gap: 0.65rem; }
  .calc { padding: 1.35rem 1.2rem; }
  .wizard { padding: 1.5rem 1.25rem; }
  .review { padding: 1.6rem 1.35rem; }

  .value-anchor--hero { font-size: 1.35rem; }
}

/* ---- Reduced motion ------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Keep multi-word tokens (names) from breaking mid-name. */
.nowrap { white-space: nowrap; }

/* Partner brand logos in the founders block: consistent height, quiet at
   rest, full colour (official marks must not be recoloured - NSW guideline). */
.founders__brands-row--logos { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.founders__brands-row--logos img { height: 30px; width: auto; opacity: 0.9; }
.founders__brands-row--logos li:nth-child(3) img { height: 34px; }
@media (max-width: 480px) {
  .founders__brands-row--logos { gap: 1rem; }
  .founders__brands-row--logos img { height: 24px; }
  .founders__brands-row--logos li:nth-child(3) img { height: 28px; }
}
