/* ===========================================================
   ProofPop — home page components
   =========================================================== */

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  padding-block: clamp(48px, 8vw, 96px) clamp(64px, 9vw, 120px);
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% -10%, var(--mint-tint) 0%, transparent 58%),
    var(--paper);
}
.hero__head { max-width: 760px; margin-inline: auto; }
.hero h1 {
  font-size: clamp(46px, 8.4vw, 88px);
  letter-spacing: -0.045em;
  margin-top: 22px;
}
.hero h1 .swipe-word {
  position: relative;
  color: var(--mint-deep);
}
.hero__sub {
  font-size: clamp(18px, 2.5vw, 23px);
  color: var(--ink-2);
  max-width: 50ch;
  margin: 22px auto 0;
}

/* ---------------- SCRATCH CARD ---------------- */
.scratch-wrap { margin: clamp(40px, 6vw, 64px) auto 0; max-width: 520px; }
.scratch {
  position: relative;
  width: 100%;
  aspect-ratio: 8 / 5.4;
  border-radius: var(--r-lg);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.scratch__reveal {
  position: absolute; inset: 0; z-index: 1;
  display: grid; place-items: center;
  padding: clamp(24px, 5%, 40px);
  background:
    radial-gradient(120% 120% at 50% 0%, var(--mint-tint) 0%, var(--paper) 70%);
}
.reveal__form, .reveal__success { width: 100%; max-width: 360px; text-align: center; }
.reveal__success { display: none; }
.scratch__reveal.is-success .reveal__form { display: none; }
.scratch__reveal.is-success .reveal__success { display: block; }

.reveal__eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mint-deep); margin: 0 0 8px;
}
.reveal__title { font-size: clamp(22px, 3.4vw, 27px); letter-spacing: -0.03em; }
.reveal__form form {
  display: flex; gap: 8px; margin-top: 18px;
}
.reveal__form input[type="email"] {
  flex: 1; min-width: 0;
  font-family: inherit; font-size: 15px;
  padding: 12px 15px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper); color: var(--ink);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.reveal__form input:focus {
  outline: none; border-color: var(--mint);
  box-shadow: 0 0 0 3px var(--mint-tint);
}
.reveal__form input[aria-invalid="true"] { border-color: oklch(0.62 0.16 28); }
.reveal__form .btn { padding: 12px 20px; font-size: 15px; }
.reveal__fine { font-size: 13px; color: var(--ink-3); margin-top: 13px; }
.reveal__success .check {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--mint); display: grid; place-items: center;
  margin: 0 auto 14px;
}
.reveal__success h3 { font-size: 22px; letter-spacing: -0.02em; }
.reveal__success p { color: var(--ink-2); margin-top: 8px; font-size: 15px; }

.scratch__canvas, .scratch__particles {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%;
}
.scratch__canvas { cursor: grab; touch-action: none; transition: opacity .55s var(--ease); }
.scratch__canvas:active { cursor: grabbing; }
.scratch__particles { z-index: 3; pointer-events: none; }
.scratch.is-revealed .scratch__canvas,
.scratch.is-revealed .scratch__particles { opacity: 0; pointer-events: none; }

.scratch__hint {
  position: absolute; z-index: 4; left: 50%; bottom: 18px;
  transform: translateX(-50%);
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: oklch(0.34 0.02 180 / 0.7);
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.scratch__hint.is-hidden { opacity: 0; }

.scratch-note {
  text-align: center; color: var(--ink-3); font-size: 15px;
  margin: 20px auto 0; max-width: 42ch;
}
.scratch-skip {
  display: inline-block; margin-top: 12px;
  font-size: 13px; color: var(--ink-3); text-decoration: underline; text-underline-offset: 3px;
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.scratch-skip:hover { color: var(--mint-deep); }

/* ---------------- PROBLEM ---------------- */
.problem { background: var(--mist); }
.problem__quote {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 500; letter-spacing: -0.03em; line-height: 1.18;
  max-width: 20ch;
}
.problem__quote em { color: var(--mint-deep); font-style: normal; }
.problem__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: clamp(48px, 6vw, 72px);
}
.pain { padding-top: 24px; border-top: 2px solid var(--ink); }
.pain h3 { font-size: 19px; margin-bottom: 8px; }
.pain p { color: var(--ink-2); font-size: 16px; }
@media (max-width: 780px) { .problem__grid { grid-template-columns: 1fr; gap: 8px; } }

/* ---------------- PILLARS ---------------- */
.pillars__head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.pillar {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--line);
}
.pillar:nth-child(even) .pillar__mock { order: -1; }
.pillar__tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: 0.14em;
  color: var(--mint-deep); margin-bottom: 16px;
}
.pillar__tag .swipe-chip {
  width: 26px; height: 14px; border-radius: 3px;
  background: linear-gradient(120deg, var(--foil), var(--foil-2));
  position: relative; overflow: hidden;
}
.pillar__tag .swipe-chip::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--mint), var(--mint-deep));
  transform: translateX(-100%); transition: transform .5s var(--ease);
}
.pillar:hover .swipe-chip::after { transform: translateX(0); }
.pillar h3 { font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.03em; }
.pillar > div > p { color: var(--ink-2); margin-top: 14px; font-size: 17px; max-width: 46ch; }
.pillar__list { list-style: none; padding: 0; margin: 20px 0 0; }
.pillar__list li {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 9px 0; color: var(--ink); font-size: 16px;
}
.pillar__list li::before {
  content: ""; flex: none; width: 19px; height: 19px; margin-top: 2px;
  border-radius: 50%; background: var(--mint-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233a8a6b' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center;
}
@media (max-width: 820px) {
  .pillar { grid-template-columns: 1fr; gap: 28px; }
  .pillar:nth-child(even) .pillar__mock { order: 0; }
}

/* ---- mockups ---- */
.mock {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  padding: 22px; overflow: hidden;
}
.mock__bar {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.08em;
  color: var(--ink-3); text-transform: uppercase; margin-bottom: 18px;
}
.mock__bar .dot-row { display: flex; gap: 5px; }
.mock__bar .dot-row span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }

/* PROVE dashboard */
.dash__big { font-size: clamp(34px, 5vw, 48px); font-weight: 600; letter-spacing: -0.04em; }
.dash__big span { color: var(--mint-deep); }
.dash__sub { color: var(--ink-2); font-size: 15px; margin-top: 4px; }
.dash__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 22px 0 18px; }
.dash__stat { background: var(--mist); border-radius: var(--r-sm); padding: 13px 14px; }
.dash__stat b { display: block; font-size: 22px; letter-spacing: -0.02em; }
.dash__stat .mono { color: var(--ink-3); font-size: 10.5px; }
.dash__bars { display: flex; align-items: flex-end; gap: 6px; height: 56px; }
.dash__bars i { flex: 1; background: var(--mint-tint-2); border-radius: 3px 3px 0 0; }
.dash__bars i:last-child { background: var(--mint); }
.dash__net {
  margin-top: 16px; display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 14px; border-top: 1px dashed var(--line);
  font-size: 14px; color: var(--ink-2);
}
.dash__net b { color: var(--mint-deep); font-size: 16px; }

/* PROTECT cart */
.cart__line {
  display: flex; align-items: center; gap: 13px; padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart__thumb { width: 42px; height: 42px; border-radius: 7px; flex: none; background: var(--foil); }
.cart__thumb.is-gift { background: var(--mint-tint-2); position: relative; }
.cart__thumb.is-gift::after {
  content: "★"; position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--mint-deep); font-size: 16px;
}
.cart__line .name { font-size: 15px; }
.cart__line .meta { font-size: 12.5px; color: var(--ink-3); }
.cart__line .price { margin-left: auto; font-weight: 500; font-size: 15px; }
.cart__line .price.free { color: var(--mint-deep); }
.cart__code {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  background: var(--mist); border: 1px dashed var(--foil-2); border-radius: 7px;
  padding: 8px 12px; font-family: 'Geist Mono', monospace; font-size: 12.5px; color: var(--ink-2);
}
.cart__code b { color: var(--ink); }
.budget { margin-top: 18px; }
.budget__top { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-2); margin-bottom: 7px; }
.budget__track { height: 8px; border-radius: 99px; background: var(--mist); overflow: hidden; }
.budget__fill { height: 100%; width: 45%; background: linear-gradient(90deg, var(--mint), var(--mint-deep)); border-radius: 99px; }

/* TRUST list lives in pillar__list, plus a small badge mock */
.trust__mock { display: grid; gap: 11px; }
.trust__row {
  display: flex; align-items: center; gap: 12px;
  background: var(--mist); border-radius: var(--r-sm); padding: 13px 15px;
}
.trust__row .ic {
  width: 30px; height: 30px; border-radius: 8px; flex: none;
  background: var(--mint-tint); display: grid; place-items: center; color: var(--mint-deep);
  font-family: 'Geist Mono', monospace; font-size: 13px; font-weight: 500;
}
.trust__row .t { font-size: 14.5px; }
.trust__row .t b { font-weight: 500; }
.trust__row.alert { background: var(--mint-tint); }

/* ---------------- THE GAMES ---------------- */
.games { background: var(--ink); color: oklch(0.93 0.006 180); }
.games .eyebrow { color: var(--mint); }
.games .section-title { color: var(--paper); }
.games .section-lead { color: oklch(0.74 0.008 180); }
.games__stage {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(24px, 4vw, 48px);
  align-items: end;
}
@media (max-width: 880px) { .games__stage { grid-template-columns: 1fr; gap: 40px; } }

/* fake browser (desktop) */
.browser {
  border-radius: 12px; overflow: hidden; background: var(--md-sand);
  box-shadow: var(--shadow-lg); border: 1px solid oklch(0.4 0.01 180 / 0.5);
}
.browser__chrome {
  display: flex; align-items: center; gap: 14px; padding: 11px 14px;
  background: oklch(0.94 0.006 80); border-bottom: 1px solid oklch(0.86 0.01 80);
}
.browser__dots { display: flex; gap: 6px; }
.browser__dots span { width: 11px; height: 11px; border-radius: 50%; background: oklch(0.82 0.01 80); }
.browser__url {
  flex: 1; background: var(--paper); border-radius: 6px; padding: 5px 12px;
  font-family: 'Geist Mono', monospace; font-size: 11.5px; color: var(--md-char);
}
.browser__body { position: relative; padding: 26px; min-height: 320px; }

/* demo storefront — MERIDIAN */
.store__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.store__name { font-weight: 600; letter-spacing: 0.18em; font-size: 15px; color: var(--md-char); }
.store__nav { display: flex; gap: 18px; font-size: 12px; color: oklch(0.45 0.01 65); letter-spacing: 0.05em; text-transform: uppercase; }
.store__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.store__card .ph {
  aspect-ratio: 3/4; border-radius: 8px;
  background-image:
    repeating-linear-gradient(135deg, oklch(0.82 0.03 76) 0 8px, oklch(0.79 0.035 74) 8px 16px);
}
.store__card .ph.c2 { background-image: repeating-linear-gradient(135deg, oklch(0.5 0.02 60) 0 8px, oklch(0.46 0.02 58) 8px 16px); }
.store__card .ph.c3 { background-image: repeating-linear-gradient(135deg, oklch(0.7 0.05 48) 0 8px, oklch(0.66 0.055 46) 8px 16px); }
.store__card p { font-size: 12px; color: var(--md-char); margin-top: 7px; }
.store__card .pr { color: oklch(0.45 0.01 65); }

/* spin wheel popup (matches MERIDIAN: charcoal + terracotta) */
.wheel-pop {
  position: absolute; right: 22px; bottom: 22px; width: 248px;
  background: var(--md-char); color: oklch(0.95 0.01 80);
  border-radius: 14px; padding: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.wheel-pop h4 { font-size: 16px; color: var(--paper); letter-spacing: -0.01em; }
.wheel-pop p { font-size: 12px; color: oklch(0.78 0.01 80); margin-top: 3px; }
.spin-frame { position: relative; width: 150px; height: 150px; margin: 14px auto 4px; }
.spin-wheel {
  width: 100%; height: 100%; border-radius: 50%;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
  background: conic-gradient(
    var(--md-terra) 0 60deg, oklch(0.9 0.02 78) 60deg 120deg,
    var(--md-terra) 120deg 180deg, oklch(0.9 0.02 78) 180deg 240deg,
    var(--md-terra) 240deg 300deg, oklch(0.9 0.02 78) 300deg 360deg);
  box-shadow: inset 0 0 0 5px oklch(0.95 0.01 80 / 0.15);
}
.spin-frame .hub {
  position: absolute; inset: 0; margin: auto; width: 34px; height: 34px;
  background: var(--paper); border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,.3);
}
.spin-frame .ptr {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; border-left: 9px solid transparent; border-right: 9px solid transparent;
  border-top: 14px solid var(--paper); z-index: 2;
}
.wheel-pop__cta { margin-top: 8px; text-align: center; }
.wheel-pop__cta span { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 0.1em; color: var(--md-sand-2); }

/* phone (mobile) with scratch popup */
.phone {
  width: 248px; margin-inline: auto;
  background: #0c0d0d; border-radius: 36px; padding: 11px;
  box-shadow: var(--shadow-lg); border: 1px solid oklch(0.4 0.01 180 / 0.5);
}
.phone__screen {
  position: relative; background: var(--md-sand); border-radius: 27px; overflow: hidden;
  aspect-ratio: 9/18.5; padding: 16px;
}
.phone__notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 78px; height: 20px; background: #0c0d0d; border-radius: 0 0 12px 12px; z-index: 5;
}
.phone .store__name { font-size: 12px; margin-top: 12px; }
.phone .store__grid { grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 12px; }
.phone .store__card p { font-size: 10px; }
.scratch-pop {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: var(--md-char); color: var(--paper);
  border-radius: 16px; padding: 16px; box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.scratch-pop h4 { font-size: 14px; color: var(--paper); }
.scratch-pop p { font-size: 11px; color: oklch(0.8 0.01 80); margin-top: 2px; }
.scratch-pop__foil {
  margin-top: 11px; height: 58px; border-radius: 9px; position: relative; overflow: hidden;
  background: linear-gradient(120deg, #c9d6cf, #a7b8b0 55%, #c2d0c9);
  display: grid; place-items: center;
}
.scratch-pop__foil .revealed {
  font-family: 'Geist Mono', monospace; font-size: 13px; letter-spacing: 0.06em;
  color: var(--md-terra); font-weight: 500;
}
.scratch-pop__foil::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: 58%;
  background: linear-gradient(120deg, #c9d6cf, #9fb1aa);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
  box-shadow: -3px 0 8px rgba(0,0,0,0.12);
}
.games__label {
  text-align: center; margin-top: clamp(40px, 5vw, 56px);
  font-size: clamp(20px, 3vw, 28px); color: var(--paper); letter-spacing: -0.02em;
}
.games__label span { color: var(--mint); }
.games__note { text-align: center; color: oklch(0.66 0.008 180); font-size: 14px; margin-top: 10px; }

/* ---------------- HOW IT WORKS ---------------- */
.how__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px,4vw,44px); margin-top: clamp(44px,5vw,64px); }
.step__n {
  font-family: 'Geist Mono', monospace; font-size: 13px; color: var(--mint-deep);
  letter-spacing: 0.1em; margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 12px;
}
.step__n::before { content: ""; width: 38px; height: 2px; background: var(--mint); }
.step h3 { font-size: 21px; letter-spacing: -0.02em; }
.step p { color: var(--ink-2); margin-top: 9px; font-size: 16px; }
.step p b { color: var(--ink); font-weight: 500; }
@media (max-width: 780px) { .how__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------------- PRICING ---------------- */
.pricing { background: var(--mist); }
.pricing__head { text-align: center; max-width: 620px; margin: 0 auto clamp(36px,4vw,52px); }
.bill { display: inline-flex; align-items: center; gap: 13px; margin-top: 24px; font-size: 15px; color: var(--ink-2); }
.bill b { color: var(--ink); font-weight: 500; }
.bill .save { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--mint-deep); letter-spacing: 0.06em; }
.switch { position: relative; width: 48px; height: 27px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: var(--foil); border-radius: 99px; transition: background .2s var(--ease); }
.switch .knob { position: absolute; top: 3px; left: 3px; width: 21px; height: 21px; background: var(--paper); border-radius: 50%; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease); }
.switch input:checked ~ .track { background: var(--mint); }
.switch input:checked ~ .knob { transform: translateX(21px); }
.switch input:focus-visible ~ .track { box-shadow: 0 0 0 3px var(--mint-tint); }

.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 820px; margin-inline: auto; }
@media (max-width: 720px) { .plans { grid-template-columns: 1fr; } }
.plan {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px); display: flex; flex-direction: column;
}
.plan--paid { border-color: var(--mint); box-shadow: 0 0 0 1px var(--mint), var(--shadow-md); position: relative; }
.plan__flag {
  position: absolute; top: -12px; right: 26px;
  background: var(--mint); color: oklch(0.2 0.04 170); font-size: 12px; font-weight: 500;
  padding: 5px 13px; border-radius: 99px; letter-spacing: -0.01em;
}
.plan__name { font-family: 'Geist Mono', monospace; font-size: 13px; letter-spacing: 0.1em; color: var(--ink-3); text-transform: uppercase; }
.plan__price { margin: 16px 0 4px; display: flex; align-items: baseline; gap: 4px; }
.plan__price .amt { font-size: clamp(40px,5vw,52px); font-weight: 600; letter-spacing: -0.04em; }
.plan__price .per { color: var(--ink-3); font-size: 15px; }
.plan__tagline { color: var(--ink-2); font-size: 15px; min-height: 22px; }
.plan ul { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 11px; flex: 1; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--ink); }
.plan li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%;
  background: var(--mint-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233a8a6b' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.pricing__promise {
  text-align: center; max-width: 640px; margin: clamp(34px,4vw,46px) auto 0;
  font-size: clamp(17px,2.2vw,20px); color: var(--ink); font-weight: 500; letter-spacing: -0.01em;
}
.pricing__promise span { color: var(--mint-deep); }

/* ---------------- FAQ ---------------- */
.faq__wrap { max-width: 760px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: clamp(17px,2.2vw,20px); font-weight: 500; color: var(--ink);
  letter-spacing: -0.02em; padding: 22px 44px 22px 0; position: relative;
  display: flex; align-items: center;
}
.faq__q::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 13px; height: 13px;
  margin-top: -6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23567' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  transition: transform .25s var(--ease);
}
.faq__item.is-open .faq__q::after { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a p { color: var(--ink-2); font-size: 16px; line-height: 1.65; padding-bottom: 24px; max-width: 60ch; }

/* ---------------- closing CTA ---------------- */
.closing { text-align: center; }
.closing h2 { font-size: clamp(30px,5vw,52px); letter-spacing: -0.04em; }
.closing p { color: var(--ink-2); font-size: clamp(17px,2.2vw,20px); margin: 18px auto 30px; max-width: 44ch; }
