:root {
  color-scheme: light;
  --navy-950: #061726;
  --navy-900: #0a2238;
  --navy-800: #11334c;
  --gold-600: #876627;
  --gold-500: #c6a35e;
  --gold-300: #e0c991;
  --sand-50: #f7f3eb;
  --white: #fff;
  --text: #142331;
  --muted: #5c6974;
  --danger: #a63e36;
  --success: #226c52;
  --line: rgba(10, 34, 56, 0.14);
  --container: 74rem;
  --content: 47rem;
  --radius-sm: 0.65rem;
  --radius-lg: 1.5rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  overflow-x: clip;
  padding-bottom: calc(5.25rem + env(safe-area-inset-bottom));
  color: var(--text);
  background: var(--sand-50);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main, section, header, footer, div, form, fieldset, article, aside { min-width: 0; }
img, svg, iframe, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

p, ul, ol, h1, h2, h3, fieldset { margin-top: 0; }
p, li { overflow-wrap: break-word; }

h1, h2, h3 {
  margin-bottom: 1rem;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 { max-width: 18ch; font-size: clamp(2.45rem, 6vw, 4.75rem); }
h2 { max-width: 22ch; font-size: clamp(2rem, 5vw, 3.6rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
strong { font-weight: 750; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid var(--navy-900);
  outline-offset: 4px;
}

.site-header :focus-visible,
.hero :focus-visible,
.comparison-card--strategy :focus-visible,
.process :focus-visible,
.audience--not-fit :focus-visible,
.analysis :focus-visible,
.final-cta :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--gold-300);
}

.lead-form :focus-visible {
  outline-color: var(--navy-900);
}

::selection { color: var(--navy-950); background: var(--gold-300); }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow { max-width: var(--content); }

.section {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.microcopy, .disclaimer {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  color: var(--navy-950);
  background: var(--gold-300);
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.button, .mobile-sticky-cta {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-size: 0.925rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover, .mobile-sticky-cta:hover { transform: translateY(-2px); }
.button:active, .mobile-sticky-cta:active { transform: translateY(0); }

.button--primary, .mobile-sticky-cta {
  color: var(--navy-950);
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.button--primary:hover, .mobile-sticky-cta:hover {
  background: var(--gold-300);
  border-color: var(--gold-300);
}

.button--secondary {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.button--secondary:hover { background: var(--navy-800); border-color: var(--navy-800); }

.button--ghost {
  color: var(--navy-900);
  background: transparent;
  border-color: rgba(10, 34, 56, 0.35);
}

.button--ghost:hover { background: var(--sand-50); border-color: var(--navy-900); }

.button--whatsapp { color: var(--white); background: #176b4b; border-color: #176b4b; }
.button--whatsapp:hover { background: #0f563b; border-color: #0f563b; }

.button:disabled, .button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(6, 23, 38, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__inner {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand { display: inline-flex; align-items: center; flex: 0 1 auto; }
.brand img {
  width: clamp(8rem, 33vw, 10.5rem);
  mix-blend-mode: screen;
}

.header-cta {
  min-height: 3rem;
  flex: 0 0 auto;
  padding-inline: 1rem;
  font-size: 0.825rem;
}

.hero {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-950);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -13rem;
  width: min(26rem, 100vw);
  height: min(26rem, 100vw);
  border: 1px solid rgba(198, 163, 94, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
}

.hero h1, .hero h2, .hero h3 { color: var(--white); }
.hero .eyebrow { color: var(--gold-300); }
.hero__content > p:not(.eyebrow, .microcopy) { max-width: 43rem; }

.hero__lead {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.075rem, 3.5vw, 1.25rem);
  line-height: 1.6;
}

.hero__content > .button { width: 100%; margin-block: 0.75rem 0.5rem; }

.hero__benefits {
  margin-block: 1.25rem 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
}

.hero__benefits li { display: flex; align-items: center; gap: 0.4rem; }
.hero__benefits span { color: var(--gold-300); font-weight: 900; }
.hero .microcopy { margin-top: 0.75rem; color: rgba(255, 255, 255, 0.58); }
.hero__media { align-self: center; }

.video-teaser {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  overflow: hidden;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  text-decoration: none;
}

.video-teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 23, 38, 0.38);
  transition: background-color 180ms ease;
}

.video-teaser:hover::after { background: rgba(6, 23, 38, 0.22); }

.video-teaser img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-teaser > span { position: relative; z-index: 1; }

.video-teaser > span:last-child {
  align-self: end;
  margin: 1.25rem;
  font-size: 0.875rem;
  font-weight: 800;
  text-align: center;
}

.video-teaser__play {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  align-self: end;
  margin-bottom: 3.75rem;
  padding-left: 0.2rem;
  color: var(--navy-950);
  background: var(--gold-500);
  border-radius: 50%;
  font-size: 1.25rem;
}

.problem, .comparison, .audience--fit, .faq { background: var(--sand-50); }
.problem h2, .concept h2 { margin-bottom: 1.5rem; }

.feature-list {
  margin: 2rem 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.callout {
  margin: 2rem 0 0;
  padding: 1.25rem 1.35rem;
  color: var(--navy-900);
  background: rgba(198, 163, 94, 0.14);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.concept { background: var(--white); }
.concept .narrow { position: relative; }

.concept .narrow::before {
  content: "";
  display: block;
  width: 3.5rem;
  height: 2px;
  margin-bottom: 2rem;
  background: var(--gold-500);
}

.comparison__grid { margin-top: 2.5rem; display: grid; gap: 1rem; }

.comparison-card {
  padding: clamp(1.4rem, 5vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.comparison-card h3 { padding-bottom: 1rem; border-bottom: 1px solid currentColor; }
.comparison-card .check-list { margin: 1.5rem 0 0; }

.comparison-card--traditional { color: var(--muted); background: rgba(255, 255, 255, 0.55); }

.comparison-card--strategy {
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.comparison-card--strategy h3 { color: var(--white); }
.check-list { padding: 0; list-style: none; }

.check-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.4rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 1.32rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold-500);
  border-radius: 50%;
}

.hero__benefits li { padding: 0; }
.hero__benefits li::before { display: none; }

.disclaimer {
  margin: 1.25rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.video-section { color: var(--muted); background: var(--white); }
.section-heading { max-width: 48rem; margin-bottom: 2.25rem; }

.video-player {
  width: min(100%, 61rem);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-inline: auto;
  background: var(--navy-950);
  border-radius: var(--radius-lg);
}

.video-player__button, .video-player iframe { width: 100%; height: 100%; border: 0; }

.video-player__button {
  position: relative;
  display: block;
  padding: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.video-player__button:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: -6px;
  box-shadow: inset 0 0 0 8px var(--navy-950);
}

.video-player__button img { width: 100%; height: 100%; object-fit: cover; }

.video-player__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(6, 23, 38, 0.36);
  transition: background-color 180ms ease;
}

.video-player__overlay span {
  width: clamp(4rem, 14vw, 5.5rem);
  height: clamp(4rem, 14vw, 5.5rem);
  display: grid;
  place-items: center;
  padding-left: 0.25rem;
  color: var(--navy-950);
  background: var(--gold-500);
  border-radius: 50%;
  font-size: clamp(1.25rem, 4vw, 1.7rem);
  transition: transform 180ms ease;
}

.video-player__button:hover .video-player__overlay { background: rgba(6, 23, 38, 0.2); }
.video-player__button:hover .video-player__overlay span { transform: scale(1.05); }

.section-cta {
  width: min(100%, 61rem);
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.section-cta p { margin-bottom: 0; }

.process {
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy-900);
}

.process h2, .process h3 { color: var(--white); }
.process .eyebrow { color: var(--gold-300); }

.process__grid {
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process__grid > li {
  padding-block: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-card__number {
  margin-bottom: 2.5rem;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.process-card p:last-child { margin-bottom: 0; }
.process .callout { color: var(--white); background: rgba(198, 163, 94, 0.1); }

.simulator { background: var(--white); }

.simulator__grid, .analysis__grid, .authority__grid, .site-footer__grid {
  display: grid;
  gap: 2.5rem;
}

.simulator-form, .lead-form {
  padding: clamp(1.25rem, 5vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold-500);
  border-radius: var(--radius-lg);
  box-shadow: 0 1.5rem 3.75rem rgba(6, 23, 38, 0.1);
}

.simulator-form { display: grid; gap: 0.35rem; }
.simulator-form .button, .form-step > .button { width: 100%; margin-top: 0.75rem; }
.form-field { margin-bottom: 1rem; }

.form-field > label, .choice-grid legend {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.form-field > label span { color: var(--muted); font-size: 0.8rem; font-weight: 500; }

.form-field input:not([type="checkbox"]), .form-field select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0.9rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(10, 34, 56, 0.27);
  border-radius: var(--radius-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input::placeholder { color: var(--muted); opacity: 1; }
.form-field input:hover, .form-field select:hover { border-color: rgba(10, 34, 56, 0.52); }

.form-field input:focus, .form-field select:focus {
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(198, 163, 94, 0.18);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.choice-grid[aria-invalid="true"] { border-color: var(--danger); }

.choice-grid[aria-invalid="true"] .choice-card span { border-color: var(--danger); }

.field-error {
  min-height: 1.25rem;
  display: block;
  margin-top: 0.25rem;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-status, .form-feedback { margin: 0; font-size: 0.875rem; font-weight: 700; }

.form-status:not(:empty), .form-feedback:not(:empty), .form-success, .form-alternative {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.form-success {
  color: var(--success);
  background: rgba(34, 108, 82, 0.1);
  border: 1px solid rgba(34, 108, 82, 0.25);
}

.form-alternative { color: var(--text); background: var(--sand-50); border: 1px solid var(--line); }
.form-alternative .button { width: 100%; }

.audience { color: var(--text); }
.card-grid { margin-top: 2.5rem; display: grid; gap: 1rem; }

.content-card {
  position: relative;
  padding: 1.5rem 0 1.5rem 1.25rem;
  border-top: 1px solid var(--line);
}

.content-card::before {
  content: "";
  position: absolute;
  top: 1.75rem;
  left: 0;
  width: 0.35rem;
  height: 2.75rem;
  background: var(--gold-500);
  border-radius: 999px;
}

.content-card h3 { font-size: 1.3rem; }
.content-card p { margin-bottom: 0; color: var(--muted); }

.audience--not-fit {
  color: rgba(255, 255, 255, 0.73);
  background: var(--navy-800);
}

.audience--not-fit h2 { color: var(--white); }
.audience--not-fit .check-list { margin-block: 1.5rem 2rem; }

.audience--not-fit .button--secondary {
  color: var(--navy-950);
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.authority { background: var(--white); }

.authority__facts {
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
  border-top: 1px solid var(--line);
}

.authority__facts li { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.authority__facts li::before { content: "—"; margin-right: 0.7rem; color: var(--gold-600); }

.analysis {
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy-950);
}

.analysis h2 { color: var(--white); }
.analysis .eyebrow { color: var(--gold-300); }
.analysis__grid { align-items: start; }
.lead-form { color: var(--text); }

.form-step__label {
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  color: var(--gold-600);
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.choice-grid {
  margin-bottom: 1rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  border: 0;
}

.choice-grid legend { width: 100%; margin-bottom: 0.75rem; }
.choice-card { position: relative; cursor: pointer; }

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.choice-card span {
  min-height: 3rem;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid rgba(10, 34, 56, 0.22);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 750;
  line-height: 1.35;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.choice-card:hover span { border-color: var(--gold-600); }

.choice-card input:checked + span {
  color: var(--navy-950);
  background: rgba(198, 163, 94, 0.2);
  border-color: var(--gold-600);
}

.choice-card input:focus-visible + span {
  outline: 3px solid var(--navy-900);
  outline-offset: 3px;
}

.form-field--consent > label {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  align-items: start;
  gap: 0.7rem;
  cursor: pointer;
}

.form-field--consent input {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0.15rem 0 0;
  accent-color: var(--gold-600);
}

.form-actions { display: grid; gap: 0.65rem; }

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.text-link { color: var(--gold-300); font-weight: 800; }
.analysis__whatsapp {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 0.5rem 0.25rem;
}
.faq-list { margin-top: 2rem; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; font-family: inherit; }

.faq-item button {
  width: 100%;
  min-height: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--navy-900);
  background: transparent;
  border: 0;
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--gold-600);
  border: 1px solid rgba(168, 131, 63, 0.5);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-item button[aria-expanded="true"]::after {
  content: "−";
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.faq-item section { padding: 0 2.75rem 1.25rem 0; color: var(--muted); }
.faq-item section p { margin-bottom: 0; }

.final-cta {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy-900);
  text-align: center;
}

.final-cta::before, .final-cta::after {
  content: "";
  position: absolute;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(198, 163, 94, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta::before { top: -10rem; left: -8rem; }
.final-cta::after { right: -8rem; bottom: -10rem; }
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { margin-inline: auto; color: var(--white); }
.final-cta .eyebrow { color: var(--gold-300); }

.final-cta .microcopy {
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.57);
}

.site-footer {
  padding-block: 4rem 2rem;
  color: rgba(255, 255, 255, 0.65);
  background: #03101b;
  font-size: 0.875rem;
}

.site-footer a:hover { color: var(--gold-300); }
.site-footer .brand { margin-bottom: 1.25rem; }
.site-footer address { font-style: normal; }
.site-footer strong { color: var(--white); }

.site-footer__legal {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

.site-footer__legal p { margin-bottom: 0; }

.mobile-sticky-cta {
  position: fixed;
  z-index: 200;
  right: 1rem;
  bottom: calc(0.75rem + env(safe-area-inset-bottom));
  left: 1rem;
  min-height: 3.25rem;
  box-shadow: 0 0.75rem 2rem rgba(6, 23, 38, 0.3);
}

@media (min-width: 30rem) {
  .hero__content > .button,
  .simulator-form .button,
  .form-step > .button,
  .form-alternative .button { width: auto; }

  .feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-list li:nth-child(odd) { padding-right: 1rem; }

  .feature-list li:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid var(--line);
  }

  .form-actions { grid-template-columns: auto minmax(0, 1fr); }
}

@media (min-width: 48rem) {
  body { padding-bottom: 0; }
  .container { width: min(calc(100% - 3rem), var(--container)); }
  .site-header__inner { min-height: 5rem; }

  .header-cta {
    min-height: 3rem;
    padding-inline: 1.35rem;
    font-size: 0.9rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(18rem, 0.97fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5.5rem);
  }

  .comparison__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .section-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .process__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .process__grid > li { padding: 2rem; }

  .process__grid > li:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .simulator__grid, .analysis__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(22rem, 1.15fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 6rem);
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 2rem;
  }

  .authority__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 7rem);
  }

  .choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choice-grid legend { grid-column: 1 / -1; }

  .site-footer__grid {
    grid-template-columns: 1.1fr 1fr 0.9fr;
    gap: 2.5rem;
  }

  .mobile-sticky-cta { display: none; }
}

@media (min-width: 64rem) {
  .hero {
    min-height: calc(100svh - 5rem);
    display: grid;
    align-items: center;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(23rem, 0.84fr);
    align-items: start;
  }

  .hero h1 {
    max-width: 20ch;
    font-size: clamp(2.75rem, 3.4vw, 3.75rem);
    line-height: 1.02;
  }

  .hero__media {
    align-self: start;
    margin-top: clamp(2.75rem, 4vw, 3.75rem);
  }

  .process__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .process__grid > li,
  .process__grid > li:nth-child(odd) {
    padding: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process__grid > li:first-child { padding-left: 0; }

  .process__grid > li:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .choice-grid:not(.choice-grid--term) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 75rem) {
  .card-grid--five { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  body {
    padding-bottom: 0;
    color: #000;
    background: #fff;
    font-size: 10.5pt;
  }

  .site-header,
  .site-footer .brand,
  .mobile-sticky-cta,
  .button,
  .video-teaser__play,
  .video-player__overlay,
  .simulator-form,
  .lead-form { display: none !important; }

  .section { padding-block: 1.5rem; break-inside: avoid; }

  .hero,
  .process,
  .audience--not-fit,
  .analysis,
  .final-cta,
  .site-footer,
  .comparison-card--strategy { color: #000; background: #fff; }

  .hero h1,
  .hero h2,
  .hero h3,
  .process h2,
  .process h3,
  .audience--not-fit h2,
  .analysis h2,
  .final-cta h2,
  .comparison-card--strategy h3,
  .site-footer strong { color: #000; }
}
