@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/bricolage-grotesque-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("/assets/fonts/hanken-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --paper: #071a38;
  --paper-soft: #0d2b57;
  --ink: #f6dc8c;
  --ink-soft: #d4bd78;
  --blue: #123f7a;
  --blue-deep: #041229;
  --coral: #e1b84d;
  --coral-soft: #f2d784;
  --mint: #f6e4a9;
  --line: #7d6a35;
  --whatsapp: #51d87f;
  --white-tint: #fff1bd;
  --shadow: 12px 14px 0 var(--coral);
  --font-display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --font-body: "Hanken Grotesk", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --content: 1200px;
}

@supports (color: oklch(0.5 0.1 180)) {
  :root {
    --paper: oklch(0.22 0.065 255);
    --paper-soft: oklch(0.29 0.08 255);
    --ink: oklch(0.89 0.1 88);
    --ink-soft: oklch(0.78 0.075 88);
    --blue: oklch(0.36 0.115 255);
    --blue-deep: oklch(0.16 0.05 255);
    --coral: oklch(0.78 0.14 84);
    --coral-soft: oklch(0.88 0.09 88);
    --mint: oklch(0.93 0.06 92);
    --line: oklch(0.55 0.075 86);
    --whatsapp: oklch(0.76 0.18 151);
    --white-tint: oklch(0.96 0.055 92);
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

::selection {
  background: var(--coral);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
}

.header-inner {
  width: min(calc(100% - 3rem), var(--content));
  min-height: 5.25rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-symbol {
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.brand-text {
  display: grid;
  font-family: var(--font-display);
  font-size: 0.79rem;
  font-weight: 540;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.brand-text strong {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: 0.015em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.desktop-nav a {
  position: relative;
  padding-block: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.4rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--coral);
  transition: transform 220ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  justify-self: end;
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms var(--ease-out);
}

.header-action:hover {
  transform: translateY(-2px);
  background: var(--blue);
}

.hero {
  width: min(100%, 1500px);
  min-height: calc(100svh - 5.25rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  align-self: center;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(2rem, 6vw, 7rem) clamp(4rem, 7vw, 7rem) max(2rem, calc((100vw - var(--content)) / 2));
}

.eyebrow,
.section-index,
.purchase-kicker {
  margin: 0 0 1.4rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.outcomes h2,
.buying-heading h2,
.faq h2,
.closing h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 720;
  font-stretch: 92%;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.5rem, 6.8vw, 7.75rem);
}

.hero h1 span {
  color: var(--blue);
}

.hero-intro {
  max-width: 62ch;
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  color: inherit;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), background 180ms ease;
}

.button svg {
  width: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: square;
  stroke-linejoin: miter;
  transition: transform 200ms var(--ease-out);
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 currentColor;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  background: var(--coral);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-coral {
  background: var(--coral);
  color: var(--ink);
}

.text-link {
  width: fit-content;
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
}

.text-link:hover {
  color: var(--blue);
}

.hero-assurance {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 640;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-assurance span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 0.75rem;
  background: var(--coral);
  border-radius: 50%;
}

.cover-stage {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  isolation: isolate;
  background: var(--blue);
}

.cover-stage::before,
.cover-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40%;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--paper) 32%, transparent);
  transform: rotate(45deg);
}

.cover-stage::before {
  top: -12%;
  right: -12%;
}

.cover-stage::after {
  bottom: -22%;
  left: -14%;
}

.hero-cover {
  position: absolute;
  width: min(43%, 19rem);
  box-shadow: var(--shadow);
  will-change: transform;
  animation: cover-in 900ms var(--ease-out) both;
}

.hero-cover-local {
  top: 9%;
  left: 9%;
  z-index: 2;
  transform: rotate(-4deg);
}

.hero-cover-traffic {
  right: 9%;
  bottom: 9%;
  z-index: 3;
  transform: rotate(4deg);
  animation-delay: 110ms;
}

.stage-label {
  position: absolute;
  z-index: 4;
  padding: 0.75rem 0.9rem;
  background: var(--mint);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.05;
  box-shadow: 5px 5px 0 var(--ink);
}

.stage-label-top {
  top: 7%;
  right: 7%;
  transform: rotate(3deg);
}

.stage-label-bottom {
  bottom: 8%;
  left: 7%;
  background: var(--coral);
  transform: rotate(-3deg);
}

@keyframes cover-in {
  from {
    opacity: 0;
    transform: translateY(2rem) rotate(0);
  }
}

.outcomes {
  padding: clamp(5rem, 10vw, 9rem) max(1.5rem, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--ink);
  color: var(--paper);
}

.outcomes-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.outcomes .section-index {
  color: var(--coral);
}

.outcomes h2 {
  max-width: 8ch;
  font-size: clamp(3.2rem, 6vw, 6.25rem);
}

.outcome-list {
  border-top: 1px solid color-mix(in srgb, var(--paper) 25%, transparent);
}

.outcome {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  border-bottom: 1px solid color-mix(in srgb, var(--paper) 25%, transparent);
}

.outcome-number {
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 760;
}

.outcome h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 660;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.outcome p {
  max-width: 45ch;
  margin: 0;
  color: color-mix(in srgb, var(--paper) 72%, transparent);
}

.catalogue {
  padding: clamp(5rem, 9vw, 9rem) 1.5rem clamp(6rem, 11vw, 11rem);
}

.section-heading {
  width: min(100%, var(--content));
  margin: 0 auto clamp(5rem, 10vw, 9rem);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  column-gap: clamp(2rem, 8vw, 8rem);
}

.section-heading .section-index {
  grid-column: 1;
}

.section-heading h2 {
  grid-column: 1;
  max-width: 11ch;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.section-heading > p:last-child {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  max-width: 42ch;
  margin: 0 0 0.6rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.product {
  width: min(100%, var(--content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.product + .product {
  margin-top: clamp(8rem, 16vw, 15rem);
}

.product-visual {
  position: relative;
  min-height: min(44rem, 65vw);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.product-visual .book-backdrop {
  position: absolute;
  z-index: -1;
  width: 88%;
  height: 85%;
  background: var(--coral);
  transform: rotate(-3deg);
}

.product-visual img {
  width: min(64%, 20rem);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: transform 550ms var(--ease-out);
}

.product-visual:hover img {
  transform: rotate(0) translateY(-0.5rem);
}

.visual-note {
  position: absolute;
  top: 8%;
  right: 3%;
  z-index: 2;
  padding: 0.8rem 1rem;
  background: var(--mint);
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 730;
  line-height: 1.1;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(3deg);
}

.product-copy {
  padding-block: 1rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.product-meta span {
  padding: 0.38rem 0.7rem;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.2;
}

.product h3 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 5.5rem);
  font-weight: 700;
  font-stretch: 92%;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.product-lead {
  max-width: 54ch;
  margin: 1.6rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}

.feature-list {
  max-width: 42rem;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  position: relative;
  padding: 0.9rem 0 0.9rem 2rem;
  border-bottom: 1px solid var(--line);
}

.feature-list li::before {
  content: "↗";
  position: absolute;
  left: 0.2rem;
  top: 0.88rem;
  color: var(--blue);
  font-weight: 800;
}

.product-purchase {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.price {
  display: grid;
  line-height: 1;
}

.price strong {
  font-family: var(--font-display);
  font-size: 2.65rem;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.price span {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 620;
}

.product-traffic {
  position: relative;
  padding: clamp(3rem, 7vw, 7rem);
  background: var(--blue-deep);
  color: var(--paper);
}

.product-traffic::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  right: -1.25rem;
  width: 6rem;
  height: 6rem;
  border: 1px solid var(--coral);
  transform: rotate(45deg);
}

.product-traffic .product-lead,
.product-traffic .price span {
  color: color-mix(in srgb, var(--paper) 74%, transparent);
}

.product-traffic .feature-list,
.product-traffic .feature-list li {
  border-color: color-mix(in srgb, var(--paper) 25%, transparent);
}

.product-traffic .feature-list li::before {
  color: var(--coral);
}

.product-traffic .product-visual .book-backdrop {
  background: var(--coral);
  transform: rotate(3deg);
}

.product-traffic .product-visual img {
  transform: rotate(-2deg);
}

.product-traffic .product-visual:hover img {
  transform: rotate(0) translateY(-0.5rem);
}

.product-traffic .visual-note {
  right: auto;
  left: 1%;
  background: var(--paper);
  color: var(--ink);
  transform: rotate(-3deg);
}

.buying {
  padding: clamp(5rem, 10vw, 10rem) max(1.5rem, calc((100vw - var(--content)) / 2));
  background: var(--coral);
}

.buying-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 2rem;
  align-items: end;
}

.buying-heading .section-index {
  color: var(--ink);
}

.buying-heading h2 {
  max-width: 13ch;
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
}

.steps {
  margin: clamp(3.5rem, 7vw, 6rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.steps li {
  min-height: 9.5rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
}

.steps li + li {
  border-left: 1px solid var(--ink);
}

.steps > li > span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 780;
}

.steps strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 730;
  letter-spacing: -0.02em;
}

.steps p {
  margin: 0.4rem 0 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.purchase-board {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 7rem);
  background: var(--paper);
  box-shadow: 12px 14px 0 var(--ink);
}

.purchase-intro h3 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.purchase-intro > p:last-child {
  max-width: 43ch;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
}

.product-options {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  border: 0;
}

.product-options label {
  min-height: 4.8rem;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.9rem;
  align-items: center;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 180ms var(--ease-out);
}

.product-options label:hover {
  border-color: var(--blue);
  transform: translateX(3px);
}

.product-options label:has(input:checked) {
  border-color: var(--blue);
  background: color-mix(in srgb, var(--blue) 8%, var(--paper));
}

.product-options input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  accent-color: var(--blue);
}

.product-options label > span {
  display: grid;
  line-height: 1.3;
}

.product-options strong {
  font-size: 0.98rem;
}

.product-options small {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.mbway-box {
  margin-top: 1rem;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--ink);
  color: var(--paper);
}

.mbway-box > div {
  display: grid;
}

.mbway-box span {
  color: color-mix(in srgb, var(--paper) 72%, transparent);
  font-size: 0.78rem;
  font-weight: 620;
}

.mbway-box > div > strong {
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: 0.035em;
}

#payment-amount {
  color: var(--ink);
  font-size: inherit;
}

.copy-button {
  min-height: 2.75rem;
  padding: 0.55rem 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid color-mix(in srgb, var(--paper) 45%, transparent);
  background: transparent;
  color: var(--paper);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.copy-button:hover {
  background: var(--paper);
  color: var(--ink);
}

.copy-button svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.copy-status {
  min-height: 1.4rem;
  margin: 0.35rem 0 0;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.button-whatsapp {
  width: 100%;
  margin-top: 0.4rem;
  background: var(--whatsapp);
  color: var(--ink);
}

.button-whatsapp svg,
.floating-whatsapp svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-whatsapp:hover {
  box-shadow: 5px 5px 0 var(--ink);
}

.purchase-note {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-align: center;
}

.faq {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
  padding: clamp(6rem, 11vw, 11rem) 0;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 9vw, 9rem);
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 8rem;
}

.faq h2 {
  max-width: 8ch;
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
}

.faq-heading > p:not(.section-index) {
  max-width: 36ch;
  margin: 1.5rem 0 1rem;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--ink);
}

.faq summary {
  min-height: 5.2rem;
  padding: 1.35rem 0;
  display: grid;
  grid-template-columns: 1fr 1.5rem;
  gap: 1.5rem;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 660;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  position: relative;
  width: 1.3rem;
  height: 1.3rem;
}

.faq summary span::before,
.faq summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease-out);
}

.faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq details p {
  max-width: 62ch;
  margin: -0.25rem 3rem 1.6rem 0;
  color: var(--ink-soft);
}

.closing {
  min-height: 36rem;
  padding: clamp(4rem, 9vw, 9rem) max(1.5rem, calc((100vw - var(--content)) / 2));
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 3rem;
  background: var(--blue);
  color: var(--paper);
}

.closing p {
  margin: 0 0 1rem;
  color: var(--coral-soft);
  font-weight: 700;
}

.closing h2 {
  max-width: 10ch;
  font-size: clamp(4rem, 8.5vw, 8.5rem);
}

.site-footer {
  padding: clamp(3rem, 6vw, 5rem) max(1.5rem, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  background: var(--ink);
  color: var(--paper);
}

.brand-footer {
  color: var(--paper);
  align-self: start;
}

.brand-footer .brand-text strong {
  color: var(--coral);
}

.footer-contact {
  display: grid;
  align-content: start;
  justify-self: center;
}

.footer-contact p {
  margin: 0 0 0.5rem;
  color: color-mix(in srgb, var(--paper) 55%, transparent);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-contact span {
  color: var(--paper);
  font-weight: 650;
}

.footer-contact a {
  text-decoration-color: var(--coral);
}

.footer-meta {
  justify-self: end;
  align-self: end;
  text-align: right;
}

.footer-meta p {
  margin: 0.25rem 0 0;
  color: color-mix(in srgb, var(--paper) 62%, transparent);
  font-size: 0.78rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  min-height: 3.4rem;
  padding: 0.75rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--whatsapp);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.floating-whatsapp:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.floating-whatsapp.is-suppressed {
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
}

.floating-whatsapp svg {
  width: 1.3rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
  }

  .hero-copy {
    padding-left: 2rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7.5vw, 6.2rem);
  }

  .stage-label-top {
    right: 4%;
  }

  .product-traffic {
    padding: 3rem;
  }
}

@media (max-width: 900px) {
  .header-inner {
    width: min(calc(100% - 2rem), var(--content));
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: clamp(4rem, 11vw, 6rem) 1.5rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.7rem, 12vw, 7rem);
  }

  .cover-stage {
    min-height: min(45rem, 110vw);
  }

  .hero-cover {
    width: min(40%, 18rem);
  }

  .outcomes {
    grid-template-columns: 1fr;
  }

  .outcomes-intro,
  .faq-heading {
    position: static;
  }

  .outcomes h2 {
    max-width: 10ch;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading .section-index,
  .section-heading h2,
  .section-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .section-heading > p:last-child {
    margin-top: 1.5rem;
  }

  .product {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-visual {
    min-height: min(42rem, 90vw);
  }

  .product-traffic .product-copy {
    order: 2;
  }

  .product-traffic .product-visual {
    order: 1;
  }

  .product-traffic {
    overflow: hidden;
  }

  .buying-heading,
  .purchase-board,
  .faq {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: auto;
  }

  .steps li + li {
    border-left: 0;
    border-top: 1px solid var(--ink);
  }

  .closing {
    min-height: 32rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    justify-self: end;
    text-align: right;
  }

  .footer-meta {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 1rem;
  }

  html {
    scroll-padding-top: 4.75rem;
  }

  .header-inner {
    min-height: 4.6rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-symbol {
    width: 2rem;
    height: 2rem;
  }

  .brand-text {
    font-size: 0.67rem;
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .header-action {
    min-height: 2.75rem;
    padding-inline: 0.85rem;
    font-size: 0.82rem;
  }

  .hero-copy {
    padding: 4.5rem 1.25rem 4rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5.2rem);
  }

  .hero-intro {
    font-size: 1.03rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .cover-stage {
    min-height: 135vw;
  }

  .hero-cover {
    width: 45%;
    box-shadow: 8px 9px 0 var(--ink);
  }

  .hero-cover-local {
    top: 10%;
    left: 7%;
  }

  .hero-cover-traffic {
    right: 7%;
    bottom: 10%;
  }

  .stage-label {
    font-size: 0.7rem;
  }

  .hero-assurance span:not(:last-child)::after {
    display: none;
  }

  .outcomes {
    padding-inline: 1.25rem;
  }

  .outcomes h2,
  .section-heading h2,
  .buying-heading h2,
  .faq h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .outcome {
    grid-template-columns: 2.5rem 1fr;
  }

  .catalogue {
    padding-inline: 1.25rem;
  }

  .product-visual {
    min-height: 125vw;
  }

  .product-visual img {
    width: 62%;
    box-shadow: 8px 9px 0 var(--ink);
  }

  .visual-note {
    top: 6%;
    font-size: 0.75rem;
  }

  .product h3 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .product-purchase {
    align-items: stretch;
    flex-direction: column;
  }

  .product-purchase .button {
    width: 100%;
  }

  .product-traffic {
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
    padding: 4rem 1.25rem;
  }

  .product-traffic::before {
    display: none;
  }

  .buying {
    padding-inline: 1.25rem;
  }

  .purchase-board {
    width: calc(100% + 0.5rem);
    margin-left: -0.25rem;
    padding: 2rem 1.25rem;
    gap: 2.5rem;
    box-shadow: 7px 8px 0 var(--ink);
  }

  .mbway-box {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-button {
    justify-content: center;
  }

  .faq {
    width: calc(100% - 2.5rem);
  }

  .faq summary {
    grid-template-columns: 1fr 1.25rem;
    gap: 0.75rem;
  }

  .closing {
    min-height: 28rem;
    padding-inline: 1.25rem;
  }

  .closing h2 {
    font-size: clamp(3.8rem, 17vw, 6rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 1.25rem;
  }

  .footer-contact,
  .footer-meta {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }

  .floating-whatsapp {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 3.25rem;
    height: 3.25rem;
    min-height: 0;
    padding: 0.85rem;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 360px) {
  .header-action {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .cover-stage {
    min-width: 0;
  }

  .hero h1 {
    font-size: 2.8rem;
    font-stretch: 88%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* Blue lacquer and gold foil theme */
.brand-text strong,
.hero h1 span,
.eyebrow,
.section-index,
.purchase-kicker,
.copy-status {
  color: var(--coral);
}

.header-action:hover {
  background: var(--coral-soft);
  color: var(--paper);
}

.button-primary,
.button-coral {
  color: var(--paper);
}

.button-primary:hover,
.button-coral:hover {
  box-shadow: 5px 5px 0 var(--ink);
}

.cover-stage::before,
.cover-stage::after {
  border-color: color-mix(in srgb, var(--coral) 52%, transparent);
}

.stage-label,
.visual-note {
  color: var(--paper);
  box-shadow: 5px 5px 0 var(--paper);
}

.outcomes {
  background: var(--blue-deep);
  color: var(--ink);
}

.outcome-list,
.outcome {
  border-color: color-mix(in srgb, var(--coral) 42%, transparent);
}

.outcome p {
  color: var(--ink-soft);
}

.feature-list,
.feature-list li {
  border-color: color-mix(in srgb, var(--coral) 45%, transparent);
}

.feature-list li::before {
  color: var(--coral);
}

.product-traffic {
  background: var(--blue);
  color: var(--ink);
}

.product-traffic .product-lead,
.product-traffic .price span {
  color: var(--ink-soft);
}

.product-traffic .feature-list,
.product-traffic .feature-list li {
  border-color: color-mix(in srgb, var(--coral) 45%, transparent);
}

.product-traffic .visual-note {
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--blue-deep);
}

.buying {
  background: var(--paper-soft);
}

.purchase-board {
  background: var(--blue);
  box-shadow: 12px 14px 0 var(--coral);
}

.product-options label {
  border-color: color-mix(in srgb, var(--coral) 48%, transparent);
  background: var(--paper);
}

.product-options label:hover,
.product-options label:has(input:checked) {
  border-color: var(--coral);
}

.product-options label:has(input:checked) {
  background: color-mix(in srgb, var(--coral) 13%, var(--paper));
}

.product-options input {
  accent-color: var(--coral);
}

.mbway-box {
  background: var(--blue-deep);
  color: var(--ink);
  border: 1px solid var(--coral);
}

.mbway-box span {
  color: var(--ink-soft);
}

.copy-button {
  border-color: color-mix(in srgb, var(--coral) 60%, transparent);
  color: var(--ink);
}

.copy-button:hover {
  background: var(--coral);
  color: var(--paper);
}

.button-whatsapp,
.floating-whatsapp {
  color: var(--paper);
}

.faq-list,
.faq details {
  border-color: color-mix(in srgb, var(--coral) 58%, transparent);
}

.faq summary span::before,
.faq summary span::after {
  background: var(--coral);
}

.closing {
  background: var(--blue);
  color: var(--ink);
}

.site-footer {
  background: var(--blue-deep);
  color: var(--ink);
}

.brand-footer {
  color: var(--ink);
}

.footer-contact p,
.footer-meta p {
  color: var(--ink-soft);
}

.footer-contact a,
.footer-contact span {
  color: var(--ink);
}

.floating-whatsapp {
  box-shadow: 5px 5px 0 var(--blue-deep);
  transition: opacity 180ms ease, transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.floating-whatsapp:hover {
  box-shadow: 7px 7px 0 var(--blue-deep);
}

::selection {
  background: var(--coral);
  color: var(--paper);
}
