/* =============================================================================
   CPA landing template (unbranded)
   Visual language ported from the GamechangePartners reference build:
   white page, huge black Gilroy display type, hand-drawn accent squiggle,
   sticker speech-bubbles, light-grey 5rem panels, black pill buttons.
   Ships with no brand: see the .brand slot at the foot of this file.
   Self-contained: no CDN, no external font host, no tracker.
   ========================================================================== */

/* ---------- fonts (local, byte-identical to the platform originals) ------- */
@font-face {
  font-family: GilroyRegular;
  src: url(../fonts/font-BjQ91J8j.woff2) format("woff2"),
       url(../fonts/font-zEF5vdjc.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: GilroyBold;
  src: url(../fonts/font-LXcSOhG1.woff2) format("woff2"),
       url(../fonts/font-BhTSfrBX.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: GilroyExtraBold;
  src: url(../fonts/font-CTbqClmR.woff2) format("woff2"),
       url(../fonts/font-B5BjXnqp.woff) format("woff");
  font-display: swap;
}

/* ---------- tokens -------------------------------------------------------- */
:root {
  --font-base: GilroyRegular;
  --font-bold: GilroyBold;
  --font-extra-bold: GilroyExtraBold;

  /* light surface ramp, straight off the reference build */
  --bg-color: #fff;
  --color: #000;
  --color-hint: #8c96af;
  --section-bg: #f6f7fa;
  --card-bg: #fff;
  --divider-color: #eaebed;
  --border-color: #e9e9f2;
  --form-bg: rgb(231 239 248 / 70%);

  /* accent set taken straight from the reference build */
  --accent: #dcfc17;          /* the lime that carries every hover + the squiggle */
  --purple-color: #9500ff;
  --aqua-color: #01ffff;
  --magenta-color: #ff00c8;
  --green-color: #66ff00;

  /* sticker bubble hues */
  --sticker-pink: #ff00c8;
  --sticker-blue: #9500ff;
  --sticker-violet: #9500ff;
  --sticker-cyan: #01ffff;

  --error-color: #e60023;

  --transition-duration: .3s;
  --transition-timing-function: cubic-bezier(.4, 0, .2, 1);

  --container-width: 1334px;
  --measure: 120rem;          /* 1200px inner column, as on the reference */
  --radius-panel: 5rem;
  --radius-card: 3rem;
  --radius-pill: 10rem;
  --radius-field: 2.5rem;
}

/* ---------- reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

fieldset { min-width: 0; border: 0; }
legend { display: block; padding: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

html {
  /* 62.5% == 10px at the default 16px root, so every rem reads as px/10 like
     the reference build's hard 10px root — but still honours user font size. */
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--font-base), sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--color);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 2px dashed var(--purple-color); outline-offset: .4rem; }

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

/* ---------- layout shell -------------------------------------------------- */
#layout { display: flex; flex-direction: column; min-height: 100vh; overflow: hidden; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main { padding-top: 19.6rem; }

.section { --offset-bottom: 10rem; position: relative; margin-bottom: var(--offset-bottom); }

/* minmax(0,1fr) rather than the implicit `auto` track: a grid item's automatic
   minimum size is its min-content width, so one long Russian word would blow
   the track — and every nested max-width:100% with it — past the viewport. */
.section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: var(--max-width, var(--measure));
  max-width: 100%;
  margin: 0 auto;
  gap: var(--gap, 4rem);
}

.section__bg {
  padding: var(--padding, 10rem);
  background-color: var(--section-bg);
  border-radius: var(--radius-panel);
}

.section__info { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; }

/* the black disc that sits above every heading on the reference site */
.section__icon {
  --size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  margin: 0 auto;
  background-color: var(--color);
  border-radius: 50%;
}

.section__icon svg { width: 45%; height: auto; color: #fff; }

.section__t {
  max-width: 100rem;
  margin: 0 auto;
  font-family: var(--font-bold), sans-serif;
  font-size: 6rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  word-break: break-word;
}

.section__text {
  max-width: 100rem;
  margin: 0 auto;
  font-family: var(--font-bold), sans-serif;
  font-size: 2.4rem;
  line-height: 1.25;
  text-align: center;
}

.section__text--hint {
  font-family: var(--font-base), sans-serif;
  font-size: 1.8rem;
  color: var(--color-hint);
}

.section__actions { display: flex; justify-content: center; gap: 1.6rem; flex-wrap: wrap; }

/* ---------- the hand-drawn squiggle under one word ------------------------ */
.highlight { position: relative; display: inline-block; white-space: nowrap; }

.highlight::after {
  --height: 2.4rem;
  position: absolute;
  right: -.06em;
  bottom: -.14em;
  left: -.06em;
  height: var(--height);
  background-image: url(../images/squiggle.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  content: "";
}

/* ---------- sticker speech-bubbles --------------------------------------- */
.sticker {
  position: absolute;
  top: var(--top, auto);
  right: var(--right, auto);
  bottom: var(--bottom, auto);
  left: var(--left, auto);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .8rem;
  height: 4.4rem;
  padding: 0 1.6rem;
  font-family: var(--font-bold), sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  background-color: var(--sticker-bg, var(--sticker-pink));
  border-radius: var(--radius-pill);
  transform: rotate(var(--rotate, 0deg));
  pointer-events: none;
}

/* the little tail that makes the pill read as a speech bubble */
.sticker::after {
  position: absolute;
  bottom: -.9rem;
  left: var(--tail-left, auto);
  right: var(--tail-right, auto);
  width: 0;
  height: 0;
  border-top: 1.6rem solid var(--sticker-bg, var(--sticker-pink));
  border-right: 1.6rem solid transparent;
  content: "";
  transform: skewX(-12deg);
}

.sticker__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  background-color: rgb(255 255 255 / 92%);
  border-radius: 50%;
}

.sticker__dot svg { width: 1.6rem; height: 1.6rem; color: var(--sticker-bg, var(--sticker-pink)); }

.sticker--lime { --sticker-bg: var(--accent); color: #000; }
.sticker--lime .sticker__dot { background-color: rgb(0 0 0 / 88%); }
.sticker--lime .sticker__dot svg { color: var(--accent); }

/* ---------- buttons ------------------------------------------------------- */
.btn {
  --height: 4rem;
  --font-size: 1.4rem;
  --padding: 0 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--height);
  padding: var(--padding);
  font-family: var(--font-bold), sans-serif;
  font-size: var(--font-size);
  line-height: 1;
  white-space: nowrap;
  background-color: transparent;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition-duration: var(--transition-duration);
  transition-property: background-color, border-color, color, box-shadow;
  transition-timing-function: var(--transition-timing-function);
}

.btn--lg { --height: 4.8rem; --font-size: 1.8rem; --padding: 0 4rem; }

/* primary: solid black pill that lights up lime on hover, with the label
   flipping to black — exactly the reference site's button behaviour. */
.btn--primary { color: #fff; background-color: var(--color); }

.btn--primary:hover {
  color: var(--color);
  background-color: var(--accent);
  box-shadow: 0 4px 20px var(--accent);
}

.btn--primary:active { box-shadow: none; }

.btn--secondary {
  color: var(--color);
  border: .1rem solid var(--color);
}

.btn--secondary:hover { color: #fff; background-color: var(--color); }

.btn:disabled, .btn--disabled { opacity: .45; pointer-events: none; }

/* ---------- header -------------------------------------------------------- */
.header {
  position: fixed;
  top: 2rem;
  right: 2rem;
  left: 2rem;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  height: 7.6rem;
  max-width: calc(var(--container-width) - 3rem);
  margin: 0 auto;
  padding: 0 2rem;
  background-color: rgb(255 255 255 / 80%);
  -webkit-backdrop-filter: blur(2.5rem);
  backdrop-filter: blur(2.5rem);
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 20px rgb(0 0 0 / 6%);
}

.header__nav { display: flex; justify-content: center; gap: .4rem; }

.header__nav a {
  display: flex;
  align-items: center;
  height: 3.6rem;
  padding: 0 1.6rem;
  font-family: var(--font-bold), sans-serif;
  font-size: 1.2rem;
  background-color: rgb(0 0 0 / 2%);
  border-radius: var(--radius-pill);
  transition: background-color var(--transition-duration) var(--transition-timing-function);
}

.header__nav a:hover { background-color: rgb(0 0 0 / 10%); }

/* ---------- hero ---------------------------------------------------------- */
.hero .section__inner { --gap: 3.2rem; }

.hero__t {
  max-width: 100rem;
  margin: 0 auto;
  font-family: var(--font-bold), sans-serif;
  font-size: 10rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  overflow-wrap: break-word;
}

.hero__t .highlight::after { --height: 3rem; }

/* the pale rounded columns the reference site floats behind its hero/form */
.waves {
  position: absolute;
  top: var(--waves-top, 12rem);
  left: 50%;
  z-index: -1;
  display: flex;
  gap: 2.6rem;
  width: 151rem;
  height: 44rem;
  overflow: hidden;
  transform: translateX(-50%);
  pointer-events: none;
}

.waves__item {
  align-self: flex-end;
  width: 10.2rem;
  height: 34.2rem;
  background: linear-gradient(180deg, var(--section-bg) 0%, rgb(246 247 250 / 0%) 100%);
  border-radius: var(--radius-pill);
  transition: transform 1.4s var(--transition-timing-function);
  transition-delay: var(--rise-delay, 0ms);
}

.waves.is-visible .waves__item { transform: translateY(calc(var(--rise) * -1)); }

.waves__item:nth-of-type(1)  { --rise: 2rem;    --rise-delay: 0ms; }
.waves__item:nth-of-type(2)  { --rise: 8.4rem;  --rise-delay: 40ms; }
.waves__item:nth-of-type(3)  { --rise: 20.6rem; --rise-delay: 80ms; }
.waves__item:nth-of-type(4)  { --rise: 16.6rem; --rise-delay: 120ms; }
.waves__item:nth-of-type(5)  { --rise: 12.8rem; --rise-delay: 160ms; }
.waves__item:nth-of-type(6)  { --rise: 25rem;   --rise-delay: 200ms; }
.waves__item:nth-of-type(7)  { --rise: 18rem;   --rise-delay: 240ms; }
.waves__item:nth-of-type(8)  { --rise: 27.2rem; --rise-delay: 280ms; }
.waves__item:nth-of-type(9)  { --rise: 34rem;   --rise-delay: 320ms; }
.waves__item:nth-of-type(10) { --rise: 31rem;   --rise-delay: 360ms; }
.waves__item:nth-of-type(11) { --rise: 28rem;   --rise-delay: 400ms; }
.waves__item:nth-of-type(12) { --rise: 37rem;   --rise-delay: 440ms; }

/* ---------- cards --------------------------------------------------------- */
.benefits__list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; }
.benefits__row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; }

.card {
  --padding: 4rem 3.2rem;
  position: relative;
  padding: var(--padding);
  overflow: hidden;
  text-align: center;
  background-color: var(--card-bg);
  border: .1rem solid transparent;
  border-radius: var(--radius-card);
  transition-duration: var(--transition-duration);
  transition-property: background-color, border-color, color;
  transition-timing-function: var(--transition-timing-function);
}

/* the illustration well at the top of each tall card */
.card__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16rem;
  margin-bottom: 2.4rem;
}

.card__t { font-family: var(--font-bold), sans-serif; font-size: 2rem; font-weight: 400; line-height: 1.15; }
.card__text { margin-top: 1rem; font-size: 1.6rem; line-height: 1.35; color: var(--color-hint); }

.card--row {
  --padding: 2.4rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  text-align: left;
}

.card--row .card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.2rem;
  height: 7.2rem;
  color: var(--color);
  border: .2rem solid var(--color);
  border-radius: 1.8rem;
}

.card--row .card__icon svg { width: 3.6rem; height: 3.6rem; }

/* ---------- the little chip cluster used as card artwork ------------------ */
.chips { position: relative; width: 100%; height: 100%; }

.chip {
  position: absolute;
  top: var(--top);
  left: var(--left);
  display: flex;
  align-items: center;
  height: 3.6rem;
  padding: 0 1.4rem;
  font-family: var(--font-bold), sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  background-color: var(--chip-bg, var(--color));
  border-radius: var(--radius-pill);
  transform: rotate(var(--rotate, 0deg));
}

.chip--light { color: var(--color); background-color: #fff; box-shadow: 0 2px 12px rgb(0 0 0 / 10%); }
.chip--pink { --chip-bg: var(--magenta-color); }
.chip--blue { --chip-bg: var(--purple-color); }
.chip--violet { --chip-bg: var(--accent); color: var(--color); }
.chip--aqua { --chip-bg: var(--aqua-color); color: var(--color); }

/* a sparkline that stands in for the reference site's analytics thumbnail */
.spark { width: 100%; height: 100%; }
.spark svg { width: 100%; height: 100%; }

/* ---------- audience pills ------------------------------------------------ */
.audience { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }

.audience__item {
  display: flex;
  align-items: center;
  height: 3.6rem;
  padding: 0 1.8rem;
  font-family: var(--font-bold), sans-serif;
  font-size: 1.3rem;
  background-color: var(--section-bg);
  border-radius: var(--radius-pill);
}

/* ---------- steps --------------------------------------------------------- */
.steps__list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; }

.steps__list .card { border-color: var(--divider-color); }

.card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  margin: 0 auto 2rem;
  font-family: var(--font-bold), sans-serif;
  font-size: 1.8rem;
  color: #fff;
  background-color: var(--color);
  border-radius: 50%;
}

/* ---------- form section -------------------------------------------------- */
.form-section { --offset-bottom: 8rem; }
.form-section .section__inner { --gap: 4rem; }
.form-section .section__t { max-width: 102rem; font-size: 10rem; }
.form-section .section__t .highlight::after { --height: 3rem; }
.form-section .section__icon { --size: 9rem; }
.form-section__info { display: grid; grid-template-columns: minmax(0, 1fr); max-width: 100rem; margin: 0 auto; gap: 2rem; }

.form-wrapper {
  position: relative;
  width: min(70rem, 100%);
  margin: 0 auto;
  padding: 6rem 5rem;
  background-color: var(--form-bg);
  -webkit-backdrop-filter: blur(2.5rem);
  backdrop-filter: blur(2.5rem);
  border-radius: var(--radius-panel);
  box-shadow: 0 4px 50px rgb(0 0 0 / 10%);
}

.form-wrapper__header {
  --size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  margin: 0 auto 2rem;
  background-color: var(--color);
  border-radius: 50%;
}

.form-wrapper__header svg { width: 2.4rem; height: 2.4rem; color: #fff; }

.form-wrapper__t {
  margin-bottom: 3.2rem;
  font-family: var(--font-bold), sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
}

/* ---------- form ---------------------------------------------------------- */
.form { max-width: 100%; margin: 0 auto; }
.form__group { position: relative; }
.form__group:not(:last-child) { margin-bottom: 2.4rem; }

.form__question-label {
  display: block;
  margin-bottom: 1.2rem;
  font-family: var(--font-bold), sans-serif;
  font-size: 1.4rem;
}

.form__hint { margin-left: .8rem; font-family: var(--font-base), sans-serif; font-size: 1.2rem; color: var(--color-hint); }

/* option chips — the reference site's pill tabs, reused as radio/checkbox UI */
.form__options { display: flex; flex-wrap: wrap; gap: .8rem; }
.form__option { position: relative; display: inline-flex; }

.form__option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form__option-box {
  display: inline-flex;
  align-items: center;
  min-height: 4rem;
  padding: 0 2rem;
  font-family: var(--font-bold), sans-serif;
  font-size: 1.4rem;
  background-color: #fff;
  border: .1rem solid var(--border-color);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition-duration: var(--transition-duration);
  transition-property: background-color, border-color, color;
  transition-timing-function: var(--transition-timing-function);
}

.form__option-box:hover { border-color: var(--accent); }

.form__option input:checked + .form__option-box {
  color: #fff;
  background-color: var(--color);
  border-color: var(--color);
}

.form__option input:focus-visible + .form__option-box { outline: 2px dashed var(--purple-color); outline-offset: .3rem; }

.form__field { position: relative; }

.form__control {
  width: 100%;
  padding: 2.6rem 2.4rem 1rem;
  font-family: var(--font-bold), sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  background-color: #fff;
  border: .1rem solid var(--border-color);
  border-radius: var(--radius-field);
  transition: border-color var(--transition-duration) var(--transition-timing-function);
}

/* the placeholder doubles as the floating label's resting text, so it only
   surfaces once the field is focused and the label has moved out of the way */
.form__control::placeholder { color: transparent; }
.form__control:focus::placeholder { color: var(--color-hint); }
.form__control:hover:not(.error) { border-color: var(--accent); }
.form__control:focus { outline: none; border-color: var(--accent); }
.form__control.error { border-color: var(--error-color); }
.form__control.error ~ .form__label { color: var(--error-color); }

.form__label {
  position: absolute;
  top: 2rem;
  left: 0;
  padding-left: 2.4rem;
  font-family: var(--font-bold), sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-hint);
  pointer-events: none;
  transition-duration: var(--transition-duration);
  transition-property: top, font-size, color;
  transition-timing-function: var(--transition-timing-function);
}

.form__control:focus ~ .form__label,
.form__control:not(:placeholder-shown) ~ .form__label { top: 1.1rem; font-size: 1rem; }

.form__other-input { display: block; margin-top: .8rem; }
.form__other-input .form__control { padding: 1.3rem 2.4rem; }

.form__error {
  display: block;
  margin-top: .8rem;
  padding-left: .4rem;
  font-family: var(--font-bold), sans-serif;
  font-size: 1.1rem;
  color: var(--error-color);
}

.form__group--actions { display: flex; justify-content: center; margin-top: 3.2rem; }
.form__group--actions .btn { min-width: 22rem; }

.alert { margin-bottom: 2rem; padding: 1.4rem 2rem; font-size: 1.3rem; border-radius: var(--radius-field); }
.alert--error { color: var(--error-color); background-color: rgb(230 0 35 / 8%); }

.hidden { display: none !important; }

/* ---------- success state ------------------------------------------------- */
.form-success { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.6rem; justify-items: center; text-align: center; }
.form-success__icon { width: 6.4rem; height: 6.4rem; color: var(--color); }
.form-success__t { font-family: var(--font-bold), sans-serif; font-size: 2.4rem; font-weight: 400; }
.form-success__text { font-size: 1.6rem; color: var(--color-hint); }

/* ---------- footer -------------------------------------------------------- */
.footer { padding: 3rem 0 2rem; }
.footer__inner { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.6rem; justify-items: center; }
.footer__logo { height: 3rem; width: auto; opacity: .35; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }

.footer__links a {
  font-family: var(--font-bold), sans-serif;
  font-size: 1.2rem;
  color: var(--color-hint);
  text-decoration: underline;
  transition: color var(--transition-duration) var(--transition-timing-function);
}

.footer__links a:hover { color: var(--color); }
.footer__copy { font-size: 1.2rem; color: var(--color-hint); }

/* ---------- scroll reveal (stands in for the reference site's AOS) --------
   The hidden state is scoped to a class app.js sets on <html> itself, so if the
   script is blocked or throws, nothing ever disappears. */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity .6s var(--transition-timing-function),
              transform .6s var(--transition-timing-function);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-reveal [data-reveal].is-visible { opacity: 1; transform: none; }

/* =============================================================================
   Responsive — the reference ladder: 1329 / 959 / 639 / 479
   ========================================================================== */
@media (hover: hover) and (min-width: 960px) {
  .card:hover { border-color: var(--divider-color); }
  .benefits__row--three .card:first-child:hover { color: #fff; background-color: var(--color); }
  .benefits__row--three .card:first-child:hover .card__text { color: rgb(255 255 255 / 70%); }
}

@media (min-width: 960px) {
  .benefits__row--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .benefits__row--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps__list { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
  .footer__inner { grid-template-columns: auto 1fr auto; align-items: center; }
}

@media (max-width: 1329px) {
  .container { max-width: 1000px; }
  /* Below this the text column reaches the page edge, so the stickers would
     land on top of the headline. The reference site hand-tunes their position
     per breakpoint; they are decorative, so we simply drop them. */
  .sticker { display: none; }
  .hero__t { font-size: 8rem; }
  .form-section .section__t { font-size: 8rem; }
  .waves { width: 120rem; gap: 1.8rem; }
  .waves__item { width: 8rem; }
}

@media (max-width: 959px) {
  .main { padding-top: 13.6rem; }
  .section { --offset-bottom: 6rem; }
  .section__bg { --padding: 4rem 3rem; }
  .section__t { font-size: 5rem; }
  .hero__t { font-size: 6rem; }
  .form-section .section__t { font-size: 6rem; }
  .form-section .section__icon { --size: 7rem; }
  .form-wrapper { padding: 4rem 3rem; border-radius: var(--radius-card); }
  .header { height: 6.4rem; top: 1.2rem; right: 1.2rem; left: 1.2rem; padding: 0 1.2rem 0 1.6rem; grid-template-columns: auto auto; justify-content: space-between; }
  .header__nav { display: none; }
  /* header is brand + CTA from here down, so the lockup gives up some width */
  .header .brand__logo { width: 13.6rem; height: 3.5rem; }
  .waves { display: none; }
  .sticker { display: none; }
}

@media (max-width: 639px) {
  .section__bg { --padding: 3.2rem 2rem; }
  .section__text { font-size: 2rem; }
  .section__text--hint { font-size: 1.6rem; }
  .hero__t { font-size: 5rem; }
  .form-section .section__t { font-size: 5rem; }
  .card { --padding: 3.2rem 2.4rem; }
  .form-wrapper { padding: 3.2rem 2rem; }
}

@media (max-width: 479px) {
  .container { padding: 0 1.2rem; }
  .section__t { font-size: 3.6rem; }
  .hero__t { font-size: 3.6rem; }
  .form-section .section__t { font-size: 3.6rem; }
  .hero__t .highlight::after,
  .form-section .section__t .highlight::after { --height: 1.4rem; }
  .btn { --padding: 0 2rem; }
  .btn--lg { --font-size: 1.6rem; --padding: 0 2.4rem; }
  .card--row { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .form__group--actions .btn { width: 100%; min-width: 0; }
}

/* =============================================================================
   Sections added to follow the reference build's fuller structure:
   dashboard preview / who / tools / formats / support
   ========================================================================== */

/* ---------- dashboard preview -------------------------------------------- */
.preview { --offset-bottom: 10rem; margin-top: -2rem; }

.preview__overlay {
  width: 101.4rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 2.4rem;
  background-color: var(--section-bg);
  border-radius: 3.2rem;
  box-shadow: 0 4px 100px rgb(0 0 0 / 15%);
}

.app {
  display: grid;
  grid-template-columns: 20rem minmax(0, 1fr);
  overflow: hidden;
  background-color: #fff;
  border-radius: 2rem;
}

.app__side { display: grid; align-content: start; gap: 1.2rem; padding: 2rem 1.6rem; border-right: .1rem solid var(--border-color); }

.app__brand { display: flex; align-items: center; margin-bottom: 1.2rem; }
.app__logo { display: block; width: 9.4rem; height: 2.4rem; color: var(--color); }

.app__nav { height: 1rem; background-color: #edeff4; border-radius: 1rem; }
.app__nav:nth-of-type(2) { width: 80%; }
.app__nav:nth-of-type(3) { width: 62%; }
.app__nav:nth-of-type(4) { width: 74%; }
.app__nav:nth-of-type(5) { width: 56%; }
.app__nav--active { width: 88%; background-color: var(--color); }

.app__body { display: grid; align-content: start; gap: 1.6rem; padding: 2rem; }

.app__bar { display: flex; align-items: center; gap: 1rem; }
.app__search { flex: 1; height: 3.2rem; background-color: #f2f4f8; border-radius: 1rem; }
.app__pill { width: 9rem; height: 3.2rem; background-color: #f2f4f8; border-radius: 1rem; }
.app__pill--sm { width: 3.2rem; }

.app__tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }

.app__tile {
  display: grid;
  gap: .8rem;
  padding: 1.2rem 1.4rem;
  background-color: #f7f8fb;
  border-radius: 1.2rem;
}

.app__tile b { font-family: var(--font-bold), sans-serif; font-size: 1.1rem; font-weight: 400; color: var(--color-hint); }
.app__tile i { width: 60%; height: 1.2rem; background-color: #dfe3ec; border-radius: 1rem; }
.app__tile:nth-of-type(4) i { width: 75%; background-color: var(--accent); }

.app__chart { height: 20rem; padding: 1rem; background-color: #f7f8fb; border-radius: 1.2rem; }
.app__chart svg { width: 100%; height: 100%; }

/* ---------- chat illustration inside a benefit card ---------------------- */
.chat { display: grid; gap: .8rem; width: 100%; padding: 0 .4rem; }
.chat__row { display: flex; align-items: center; justify-content: flex-end; gap: .6rem; }
.chat__row--in { justify-content: flex-start; }

.chat__ava { width: 2.8rem; height: 2.8rem; background-color: var(--magenta-color); border-radius: 50%; }
.chat__ava--mgr { background-color: var(--purple-color); }

.chat__bubble {
  padding: .9rem 1.2rem;
  font-family: var(--font-bold), sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
  text-align: left;
  background-color: #f2f4f8;
  border-radius: 1.4rem;
}

.chat__bubble--mgr { color: #fff; background-color: var(--purple-color); }
.chat__bubble--dots { display: flex; gap: .4rem; padding: 1.1rem 1.2rem; }
.chat__bubble--dots i { width: .6rem; height: .6rem; background-color: #c2c8d6; border-radius: 50%; }

/* ---------- who ----------------------------------------------------------- */
.who__list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; }
.card--tint { text-align: left; background-color: var(--section-bg); }
.card--tint .card__text { margin-top: 1.2rem; }

/* ---------- tools --------------------------------------------------------- */
.tools__list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.2rem; }

.tools__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem 3rem;
  text-align: left;
  background-color: #fff;
  border-radius: var(--radius-card);
  transition: background-color var(--transition-duration) var(--transition-timing-function);
}

.tools__num { font-family: var(--font-bold), sans-serif; font-size: 2rem; color: var(--color-hint); }

.tools__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: .1rem solid var(--divider-color);
  border-radius: 50%;
  transition-duration: var(--transition-duration);
  transition-property: background-color, border-color, color;
  transition-timing-function: var(--transition-timing-function);
}

.tools__arrow svg { width: 1.8rem; height: 1.8rem; }

/* ---------- formats ------------------------------------------------------- */
.formats__list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; align-items: start; }
.formats__list .card { text-align: left; border-color: var(--divider-color); }

.formats__tag {
  display: inline-flex;
  align-items: center;
  height: 3.2rem;
  margin-bottom: 1.6rem;
  padding: 0 1.6rem;
  font-family: var(--font-bold), sans-serif;
  font-size: 1.3rem;
  background-color: var(--accent);
  border-radius: var(--radius-pill);
}

/* ---------- support ------------------------------------------------------- */
.support__list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.2rem; max-width: 82rem; margin: 0 auto; }

.support__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.6rem;
  padding: 2rem 2.4rem;
  font-family: var(--font-bold), sans-serif;
  font-size: 1.8rem;
  text-align: left;
  background-color: #fff;
  border-radius: 2rem;
}

.support__mark { width: 1.2rem; height: 1.2rem; background-color: var(--accent); border-radius: 50%; }

@media (hover: hover) and (min-width: 960px) {
  .tools__item:hover { background-color: var(--accent); }
  .tools__item:hover .tools__num { color: var(--color); }
  .tools__item:hover .tools__arrow { color: #fff; background-color: var(--color); border-color: var(--color); }
  .who__list .card--tint:hover { background-color: #fff; border-color: var(--divider-color); }
}

@media (min-width: 960px) {
  .who__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .who__list .card:nth-of-type(4),
  .who__list .card:nth-of-type(5) { grid-column: span 1; }
  .formats__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 959px) {
  .preview__overlay { padding: 1.2rem; border-radius: 1.8rem; }
  .app { grid-template-columns: minmax(0, 1fr); }
  .app__side { display: none; }
  .app__tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .app__chart { height: 16rem; }
  .tools__item { padding: 2rem; gap: 1.4rem; }
  .support__item { font-size: 1.6rem; padding: 1.6rem 2rem; }
}

@media (max-width: 639px) {
  .tools__item { grid-template-columns: auto minmax(0, 1fr); }
  .tools__arrow { display: none; }
}

/* ---------- brand ----------------------------------------------------------
   The Gamechange Partners lockup (`#i-logo`, disc mark + wordmark) is a single
   monochrome shape, so it just inherits `color` from wherever it sits. */
.brand { display: flex; align-items: center; gap: 1rem; }

.brand__logo {
  display: block;
  width: 15.6rem;
  height: 4rem;
  color: var(--color);
}

.brand--muted { opacity: .4; }

/* the `.header` variant above is more specific, so it is repeated here */
@media (max-width: 479px) {
  .brand__logo,
  .header .brand__logo { width: 11.7rem; height: 3rem; }
}
