/* ==========================================================================
   Credit Academy $247 sale page
   Visual family: Credit 101 (dark teal-black, teal accent, Syne + DM Sans).
   Tokens below are the same values the Credit 101 page uses, with two small
   accessibility changes: lighter muted/dim text and dark text on the teal button.
   ========================================================================== */

:root {
  --bg: #04110f;
  --bg-2: #081a17;
  --bg-3: #0d2420;
  --bg-4: #12302b;
  --teal: #0fb8a4;
  --teal-bright: #2dd9c6;
  --glow: rgba(15, 184, 164, .15);
  --glow-strong: rgba(15, 184, 164, .28);
  --text: #edfaf8;
  --muted: #8dc0b8;
  --dim: #6f9f97;
  --line: rgba(15, 184, 164, .14);
  --line-bright: rgba(15, 184, 164, .34);

  --font-display: 'Syne', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --gutter: clamp(20px, 5vw, 40px);
  --container: 1120px;
  --radius: 18px;
  --section-y: clamp(48px, 6vw, 76px);
  --nav-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image: radial-gradient(rgba(15, 184, 164, .13) 1px, transparent 1.2px);
  background-size: 28px 28px;
  color: var(--text);
  font: 400 1rem/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; }
s { text-decoration-thickness: 2px; }

.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

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

.skip { position: fixed; left: 12px; top: 12px; z-index: 100; background: var(--teal-bright); color: #03110f; padding: 10px 16px; border-radius: 10px; font-weight: 700; text-decoration: none; }
.skip:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

:focus-visible { outline: 3px solid var(--teal-bright); outline-offset: 3px; border-radius: 6px; }

.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.container--narrow { --container: 820px; }

/* ---------- Type ---------- */
.eyebrow {
  margin: 0 0 14px;
  font: 700 .72rem/1.2 var(--font-display);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
}
.h2 {
  margin: 0 0 16px;
  font: 800 clamp(1.7rem, 1.1rem + 2.6vw, 2.75rem)/1.12 var(--font-display);
  letter-spacing: -.01em;
  text-wrap: balance;
}
.h3 {
  text-wrap: balance;
  margin: 0 0 10px;
  font: 700 clamp(1.15rem, 1.05rem + .5vw, 1.4rem)/1.2 var(--font-display);
}
.lead { color: var(--muted); font-size: clamp(1rem, .95rem + .3vw, 1.15rem); max-width: 60ch; }
.accent { color: var(--teal-bright); }
.nowrap { white-space: nowrap; }

.section-head { text-align: center; margin: 0 auto clamp(26px, 3.5vw, 44px); max-width: 900px; }
.section-head .lead { margin-inline: auto; }
.section-head--left { text-align: left; margin-inline: 0; }
.section-head--left .lead { margin-inline: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 1em 1.6em;
  border: 0; border-radius: 12px;
  background: linear-gradient(180deg, #22d3bd, #0fb8a4);
  color: #03110f;
  font: 700 1rem/1.1 var(--font-display);
  text-decoration: none; text-align: center; white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(45, 217, 198, .45) inset, 0 12px 34px -10px rgba(15, 184, 164, .65);
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.07); box-shadow: 0 0 0 1px rgba(45, 217, 198, .6) inset, 0 16px 40px -10px rgba(15, 184, 164, .8); }
.btn:active { transform: translateY(0); }
.btn--sm { min-height: 40px; padding: .8em 1.15em; font-size: .9rem; border-radius: 10px; }
.btn--lg { padding: 1.2em 2em; font-size: 1.0625rem; }
.btn--block { display: flex; width: 100%; }
.btn .icon { width: 1.15em; height: 1.15em; }
.cta-compact { display: none; }

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(13, 36, 32, .78), rgba(8, 26, 23, .78));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -34px rgba(0, 0, 0, .9);
}
.card::before {
  content: ''; position: absolute; inset: 0 24px auto; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: .55; pointer-events: none;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  background: rgba(4, 17, 15, .82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { width: min(var(--container), 100% - 2 * var(--gutter)); height: 100%; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.wordmark { text-decoration: none; font: 800 1.05rem/1 var(--font-display); letter-spacing: -.005em; white-space: nowrap; }
.wordmark span, .footer__brand span { font: 300 1.05rem/1 var(--font-body); letter-spacing: .01em; }
.nav__right { display: flex; align-items: center; gap: 22px; }
.nav__price { margin: 0; display: flex; align-items: baseline; gap: 8px; font-size: .9rem; color: var(--muted); }
.nav__price s { color: var(--dim); }
.nav__price strong { color: var(--teal-bright); font: 800 1.15rem var(--font-display); }
.nav__note { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--dim); }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow-x: clip; text-align: center;
  padding: clamp(44px, 7vw, 92px) 0 clamp(60px, 8vw, 104px);
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(15, 184, 164, .22), transparent 72%),
    linear-gradient(180deg, var(--bg) 0%, rgba(4, 17, 15, .93) 34%, rgba(4, 22, 20, .66) 66%, rgba(4, 17, 15, .5) 100%),
    linear-gradient(rgba(4, 44, 39, .45), rgba(4, 44, 39, .45)),
    url("../assets/img/hero-city.jpg") 55% 62% / cover no-repeat;
  -webkit-mask-image: linear-gradient(180deg, #000 0, #000 62%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0, #000 62%, transparent 100%);
}
.hero__title .line { display: block; text-wrap: balance; }
.hero__inner { display: flex; flex-direction: column; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 clamp(20px, 3vw, 30px);
  padding: 9px 16px; border-radius: 999px;
  background: rgba(15, 184, 164, .1); border: 1px solid var(--line-bright);
  font: 700 .72rem/1 var(--font-display); letter-spacing: .18em; text-transform: uppercase; color: var(--teal-bright);
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 10px var(--teal-bright); }
.hero__title {
  margin: 0 0 clamp(18px, 2.5vw, 26px);
  max-width: 17ch;
  font: 800 clamp(1.7rem, 1rem + 4.2vw, 4.1rem)/1.08 var(--font-display);
  letter-spacing: -.012em;
  text-wrap: balance;
}
.hero__sub { max-width: 40rem; margin: 0 0 clamp(24px, 3.5vw, 34px); color: #b5d8d2; font-size: clamp(1.02rem, .96rem + .35vw, 1.2rem); }
.price--hero { margin-bottom: clamp(20px, 3vw, 28px); }
.micro { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 22px; margin: 20px 0 0; list-style: none; color: var(--muted); font-size: .875rem; }
.micro li + li::before { content: '\00b7'; margin-right: 22px; color: var(--dim); }
.micro a { color: var(--teal-bright); text-underline-offset: 3px; }

/* Short laptop screens: tighten the hero so the price and button stay in the first screen */
@media (min-width: 821px) and (max-height: 860px) {
  .hero { padding: 36px 0 56px; }
  .pill { margin-bottom: 18px; }
  .hero__title { font-size: clamp(2.2rem, 1rem + 3.4vw, 3.4rem); margin-bottom: 16px; }
  .hero__sub { margin-bottom: 20px; font-size: 1.02rem; }
  .price--hero { margin-bottom: 16px; }
  .price--hero .price__now { font-size: clamp(3rem, 2rem + 3vw, 4.25rem); }
  .micro { margin-top: 14px; }
}

/* ---------- Price ---------- */
.price { display: flex; align-items: baseline; justify-content: center; flex-wrap: wrap; gap: 4px 16px; }
.price__was { font: 600 clamp(1.25rem, 1rem + 1vw, 1.7rem)/1 var(--font-display); color: var(--dim); text-decoration-color: rgba(237, 250, 248, .6); }
.price__now { font: 800 clamp(3.4rem, 2.2rem + 5.2vw, 5.6rem)/1 var(--font-display); letter-spacing: -.025em; color: var(--teal-bright); text-shadow: 0 0 44px rgba(45, 217, 198, .35); }
.price__note { font: 700 .8rem/1 var(--font-display); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ---------- Zion ---------- */
.zion { padding: var(--section-y) 0 clamp(40px, 5vw, 64px); }
.zion__grid { display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: center; margin-bottom: clamp(56px, 7vw, 88px); }
.zion__photo { margin: 0; position: relative; }
.zion__photo::before { content: ''; position: absolute; inset: -18px; background: radial-gradient(closest-side, var(--glow-strong), transparent 72%); z-index: -1; }
.zion__photo img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 20px; border: 1px solid var(--line-bright); box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .9); }
.zion__copy .h2 { margin-bottom: 18px; }
.zion__copy p { color: #b5d8d2; font-size: 1.05rem; max-width: 60ch; }
.why {
  margin: 0 0 20px; padding: 0 0 0 22px; border-left: 3px solid var(--teal);
  font: 700 clamp(1.15rem, 1rem + .9vw, 1.5rem)/1.35 var(--font-display); color: var(--text);
  text-wrap: pretty;
}

/* ---------- Proof ---------- */
.proof__head { text-align: center; margin: 0 auto clamp(24px, 3.5vw, 40px); max-width: 640px; }
.proof__head .h3 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem); font-weight: 800; margin-bottom: 8px; }
.proof__note { color: var(--muted); font-size: .95rem; margin: 0; }
.proof__grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 22px; align-items: stretch; }
.proof__col { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.proof-card { display: flex; flex-direction: column; margin: 0; overflow: hidden; min-width: 0; }
.proof-card--fill { flex: 1 1 auto; }
.proof-card figcaption { display: flex; flex-direction: column; gap: 4px; padding: 14px 18px 16px; }
.proof-card figcaption strong { font: 700 .98rem/1.3 var(--font-display); color: var(--text); }
.proof-card figcaption span { color: var(--muted); font-size: .92rem; line-height: 1.5; }

.media { position: relative; display: block; width: 100%; aspect-ratio: var(--ar, 4 / 3); background: #000; overflow: hidden; padding: 0; border: 0; }
.proof-card--fill .media { flex: 1 1 auto; }
.media img, .media video { position: absolute; inset: 0; width: 100%; height: 100%; }
.media img { object-fit: contain; }
.media video { object-fit: cover; }
/* Display crop only: the wide screenshot has a lot of empty dark space, so the card zooms
   into the part with the text. The full, uncropped image opens in the lightbox. */
.media--crop img { object-fit: cover; object-position: left top; }
.zoom { cursor: zoom-in; }
.zoom:hover img { filter: brightness(1.08); }
.zoom__hint { position: absolute; right: 10px; bottom: 10px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: rgba(4, 17, 15, .72); color: var(--text); border: 1px solid var(--line-bright); }
.zoom__hint .icon { width: 18px; height: 18px; }
.zoom__hint--tr { top: 10px; bottom: auto; }

.video-ui { position: absolute; left: 10px; top: 10px; display: flex; gap: 8px; }
.video-btn { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; cursor: pointer; background: rgba(4, 17, 15, .74); color: #fff; border: 1px solid var(--line-bright); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.video-btn:hover { background: rgba(15, 184, 164, .35); }
.video-btn .icon { width: 20px; height: 20px; }

.quote { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: clamp(20px, 4vw, 48px); padding: 24px clamp(22px, 3vw, 36px); margin: 0; }
.quote blockquote { margin: 0; max-width: 62ch; font-size: clamp(1.02rem, .95rem + .35vw, 1.2rem); line-height: 1.5; color: var(--text); }
.quote figcaption { display: flex; align-items: center; gap: 12px; flex: none; font-size: .88rem; color: var(--muted); line-height: 1.35; }
.quote figcaption strong { color: var(--text); font-family: var(--font-display); }
.avatar { display: grid; place-items: center; width: 40px; height: 40px; flex: none; border-radius: 50%; background: var(--bg-4); border: 1px solid var(--line-bright); font: 700 .8rem var(--font-display); color: var(--teal-bright); }

.proof__swipe { display: none; }

/* ---------- Offer ---------- */
.offer { padding: var(--section-y) 0; background: linear-gradient(180deg, transparent, rgba(8, 26, 23, .82) 10%, rgba(8, 26, 23, .82) 90%, transparent); }
.offer__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px; }
.feature { grid-column: span 5; padding: clamp(22px, 3vw, 32px); display: flex; flex-direction: column; }
.feature--lg { grid-column: span 6; }
.feature--row { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.5fr); gap: clamp(20px, 4vw, 48px); align-items: center; }
.feature--strip { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 20px; padding-block: 22px; }
.feature--strip .feature__icon { margin-bottom: 0; }
.feature--strip p:not(.feature__tag) { margin: 0; }
.feature p { color: var(--muted); }
.feature p:last-child { margin-bottom: 0; }
.feature .h3 { margin-bottom: 8px; }
.feature--lg .h3 { font-size: clamp(1.3rem, 1.1rem + .9vw, 1.75rem); }
.feature__icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 18px; border-radius: 14px; background: var(--glow); border: 1px solid var(--line-bright); color: var(--teal-bright); }
.feature__icon .icon { width: 24px; height: 24px; }
.feature__tag { margin: 0 0 6px; font: 700 .7rem/1 var(--font-display); letter-spacing: .2em; text-transform: uppercase; color: var(--teal); }
.feature__list { list-style: none; display: grid; gap: 14px; margin: 0; }
.feature__list li { position: relative; display: flex; flex-direction: column; gap: 2px; padding: 0 0 0 26px; color: var(--muted); font-size: .98rem; }
.feature__list li::before { content: ''; position: absolute; left: 0; top: .5em; width: 10px; height: 10px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px var(--glow-strong); }
.feature__list strong { color: var(--text); font: 700 1rem/1.35 var(--font-display); }
.pips { display: flex; gap: 8px; margin-top: 14px; }
.pips i { width: 12px; height: 12px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px var(--glow-strong); }
.cta-row { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: clamp(30px, 4vw, 48px); text-align: center; }
.cta-row__note { margin: 0; color: var(--muted); }
.cta-row__note s { color: var(--dim); }
.cta-row__note strong { color: var(--teal-bright); font-family: var(--font-display); }

/* ---------- Pillars ---------- */
.pillars { padding: var(--section-y) 0; }
.pillars__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.25fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
.pillars .section-head { position: sticky; top: calc(var(--nav-h) + 32px); margin-bottom: 0; }
.pillars__list { list-style: none; counter-reset: p; }
.pillar { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 18px; padding: 24px 0; border-top: 1px solid var(--line); }
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar__num { font: 800 2.1rem/1 var(--font-display); color: var(--teal-bright); text-shadow: 0 0 26px rgba(45, 217, 198, .35); }
.pillar__title { margin: 0 0 6px; font: 800 clamp(1.15rem, 1.02rem + .6vw, 1.45rem)/1.2 var(--font-display); }
.pillar p { margin: 0; color: var(--muted); max-width: 52ch; }
.pillar .pillar__fine { margin-top: 6px; font-size: .85rem; color: var(--dim); }

/* ---------- Refund ---------- */
.refund { padding: clamp(24px, 4vw, 48px) 0 var(--section-y); }
.refund__card {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(32px, 5vw, 60px) clamp(20px, 5vw, 56px);
  border-radius: 24px; border: 1px solid var(--line-bright);
  background:
    radial-gradient(80% 90% at 50% 0%, rgba(15, 184, 164, .2), transparent 70%),
    linear-gradient(180deg, rgba(13, 36, 32, .9), rgba(8, 26, 23, .9));
  box-shadow: 0 0 0 1px rgba(15, 184, 164, .06), 0 40px 90px -40px rgba(15, 184, 164, .35);
}
.refund__icon { display: inline-grid; place-items: center; width: 56px; height: 56px; margin-bottom: 18px; border-radius: 16px; background: var(--glow); border: 1px solid var(--line-bright); color: var(--teal-bright); }
.refund__icon .icon { width: 28px; height: 28px; }
.refund .eyebrow { display: none; }
.refund__statement { max-width: 34ch; margin: 0 auto clamp(20px, 3vw, 28px); font: 500 clamp(1.3rem, 1rem + 1.6vw, 2rem)/1.35 var(--font-body); color: var(--text); text-wrap: balance; }
.refund__statement strong { color: var(--teal-bright); font-weight: 700; }
.refund__note { max-width: 40ch; margin: 0 auto clamp(26px, 4vw, 40px); font-size: .95rem; color: var(--muted); text-wrap: balance; }
.terms { list-style: none; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
.terms__item { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 14px; background: rgba(4, 17, 15, .6); border: 1px solid var(--line-bright); font-weight: 500; }
.terms__n { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--teal); color: #03110f; font: 700 .78rem/1 var(--font-body); }
.terms__plus, .terms__eq { font: 700 1.5rem/1 var(--font-body); color: var(--teal-bright); }
.terms__result { display: inline-flex; align-items: center; gap: 12px; }
.terms__item--result { background: linear-gradient(180deg, #22d3bd, #0fb8a4); color: #03110f; border-color: transparent; font-weight: 700; font-family: var(--font-display); }

/* ---------- FAQ ---------- */
.faq { padding: var(--section-y) 0 clamp(40px, 5vw, 64px); }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item h3 { margin: 0; }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 22px 4px; background: none; border: 0; text-align: left; cursor: pointer; font: 700 clamp(1rem, .95rem + .3vw, 1.15rem)/1.35 var(--font-display); }
.faq__q:hover span { color: var(--teal-bright); }
.faq__q .icon { color: var(--teal); transition: transform .25s ease; }
.faq__item.is-open .faq__q .icon { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows .28s ease, visibility 0s linear .28s; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; visibility: visible; transition: grid-template-rows .28s ease, visibility 0s; }
.faq__a-inner { overflow: hidden; }
.faq__a-inner > :first-child { margin-top: 0; }
.faq__a-inner > :last-child { margin-bottom: 22px; }
.faq__a p, .faq__a li { color: var(--muted); font-size: 1.02rem; max-width: 62ch; }
.faq__a ul { display: grid; gap: 8px; padding-left: 1.2em; margin: 0 0 22px; }
.faq__a li::marker { color: var(--teal); }

/* ---------- Final CTA ---------- */
.join { padding: clamp(32px, 5vw, 56px) 0 var(--section-y); }
.join__card { max-width: 620px; margin-inline: auto; padding: clamp(24px, 4vw, 40px); text-align: center; border-color: var(--line-bright); box-shadow: 0 0 0 1px rgba(15, 184, 164, .05), 0 44px 100px -44px rgba(15, 184, 164, .4); }
.checks { list-style: none; display: grid; gap: 12px; margin: 0 0 clamp(22px, 3vw, 30px); text-align: left; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: #cfe9e4; }
.checks .icon { margin-top: .2em; color: var(--teal-bright); }
.price--final { margin-bottom: 22px; padding-top: clamp(20px, 3vw, 28px); border-top: 1px solid var(--line); }
.join__fine { margin: 18px 0 0; color: var(--muted); font-size: .88rem; }
.join__fine a { color: var(--teal-bright); text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.footer { padding: 34px 0 44px; border-top: 1px solid var(--line); text-align: center; }
.footer__brand { margin: 0 0 12px; font: 800 1rem var(--font-display); }
.footer__legal { max-width: 68ch; margin: 0 auto; color: var(--dim); font-size: .82rem; line-height: 1.6; }

/* ---------- Sticky bar, toast, lightbox ---------- */
.sticky { display: none; }
.toast {
  position: fixed; left: 50%; top: calc(var(--nav-h) + 14px); z-index: 90;
  max-width: min(92vw, 420px); padding: 12px 18px; border-radius: 12px;
  background: #0d2420; border: 1px solid var(--line-bright); color: var(--text); font-size: .92rem; text-align: center;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .9);
  opacity: 0; transform: translate(-50%, -10px); pointer-events: none; transition: opacity .2s ease, transform .2s ease;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

.lightbox { padding: 0; border: 0; background: transparent; color: var(--text); max-width: 96vw; max-height: 92vh; overflow: auto; -webkit-overflow-scrolling: touch; }
.lightbox::backdrop { background: rgba(2, 8, 7, .9); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
/* Small screens: show the screenshot at a readable width and let it scroll. Large screens: fit it in view. */
.lightbox__img { display: block; width: max(96vw, var(--lb-min, 720px)); max-width: none; height: auto; border-radius: 12px; background: #000; }
@media (min-width: 900px) {
  .lightbox__img { width: auto; max-width: min(1100px, 96vw); max-height: 80vh; margin-inline: auto; }
}
.lightbox__cap { margin: 12px 0 4px; text-align: center; color: var(--muted); font-size: .95rem; position: sticky; left: 0; }
.lightbox__close { position: fixed; right: 14px; top: 14px; z-index: 2; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; cursor: pointer; background: rgba(13, 36, 32, .95); border: 1px solid var(--line-bright); color: #fff; }

/* ---------- Checkout modal (embedded Whop checkout, opens over the page) ----------
   A summary header (product, price, what's included) sits above the Whop-mounted
   form, same pattern as the Credit 101 page's own checkout modal. */
.checkout-modal { padding: 0; border: 0; border-radius: var(--radius); background: var(--bg-2); color: var(--text); width: min(94vw, 460px); max-height: 88vh; overflow: auto; -webkit-overflow-scrolling: touch; box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8), 0 0 0 1px var(--line-bright); }
.checkout-modal::backdrop { background: rgba(2, 8, 7, .82); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }

.checkout-modal__header { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; background: var(--bg-2); border-bottom: 1px solid var(--line); border-radius: var(--radius) var(--radius) 0 0; }
.checkout-modal__title { margin: 0; display: flex; align-items: center; gap: 8px; font: 700 1rem/1.2 var(--font-display); color: var(--text); }
.checkout-modal__badge { font: 700 .72rem/1 var(--font-display); letter-spacing: .04em; color: var(--teal-bright); background: var(--glow); border: 1px solid var(--line-bright); border-radius: 6px; padding: 4px 9px; }
.checkout-modal__close { flex: none; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; cursor: pointer; background: transparent; border: 1px solid var(--line-bright); color: var(--muted); }
.checkout-modal__close:hover { color: var(--text); background: var(--glow); }

.checkout-modal__body { padding: 22px 18px; }
.price--modal { justify-content: flex-start; gap: 3px 12px; margin-bottom: 6px; }
.price--modal .price__now { font-size: clamp(2.4rem, 2rem + 1.5vw, 2.75rem); text-shadow: none; }
.price--modal .price__now sup { font-size: .42em; vertical-align: .55em; }
.checkout-modal__price-sub { margin: 0 0 18px; font: 700 .78rem/1 var(--font-display); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.checkout-modal__bullets { list-style: none; display: grid; gap: 10px; margin: 0 0 18px; padding: 0; }
.checkout-modal__bullets li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--muted); }
.checkout-modal__bullets .icon { width: 15px; height: 15px; flex: none; color: var(--teal); }
.checkout-modal__divider { border: none; border-top: 1px solid var(--line-bright); margin: 0 0 18px; }

.checkout-modal__mount { min-height: 320px; display: grid; place-items: center; }
.checkout-modal__mount:empty::before { content: 'Loading checkout…'; color: var(--muted); font-size: .95rem; padding: 80px 0; }

/* ---------- Trustpilot badge ---------- */
.trustpilot { display: inline-flex; align-items: center; gap: 7px; }
.trustpilot__stars { display: inline-flex; gap: 1px; }
.trustpilot__stars svg { width: 13px; height: 13px; }
.trustpilot__rating { font: 700 .85rem/1 var(--font-display); color: var(--text); }
.trustpilot__logo { height: 13px; width: auto; opacity: .92; }

/* ---------- Reveal on scroll (only when motion is allowed) ---------- */
/* Motion only. Nothing is ever hidden, so a full-page capture or a slow observer cannot leave blank sections. */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal .reveal { transform: translateY(22px); transition: transform .7s cubic-bezier(.2, .7, .2, 1); }
  .js-reveal .reveal.is-in { transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .proof__grid { grid-template-columns: 1fr 1fr; }
  .proof__col--a { grid-column: 1 / -1; }
  .proof__col--a .proof-card { flex-direction: row; }
  .quote { flex-direction: column; align-items: flex-start; }
  .pillars__grid { grid-template-columns: 1fr; }
  .pillars .section-head { position: static; }
  .feature, .feature--lg { grid-column: span 6; }
  .feature--row { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --nav-h: 58px; }
  .nav__price { display: none; }
  .zion__grid { grid-template-columns: 1fr; text-align: left; }
  .zion__photo { width: min(72%, 280px); margin-inline: auto; }
  .offer__grid { grid-template-columns: 1fr; }
  .feature, .feature--lg, .feature--row, .feature--strip { grid-column: auto; }
  body { padding-bottom: 76px; }
  .sticky {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
    background: rgba(4, 17, 15, .94); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line-bright);
    transform: translateY(110%); opacity: 0; visibility: hidden;
    transition: transform .3s ease, opacity .3s ease, visibility 0s linear .3s;
  }
  .sticky.is-visible { transform: none; opacity: 1; visibility: visible; transition: transform .3s ease, opacity .3s ease, visibility 0s; }
  .sticky__price { margin: 0; display: flex; flex-direction: column; line-height: 1.15; font-size: .78rem; color: var(--muted); }
  .sticky__price strong { display: inline; color: var(--teal-bright); font: 800 1.5rem/1 var(--font-display); }
  .sticky__price s { color: var(--dim); margin-right: 6px; }
  .sticky__price span:last-child { text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; }
}

@media (max-width: 760px) {
  /* Proof becomes a swipeable row so the page stays short */
  .proof__grid {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    margin-inline: calc(var(--gutter) * -1); padding: 4px var(--gutter) 14px; scroll-padding-inline: var(--gutter);
    scrollbar-width: thin; scrollbar-color: var(--teal) transparent;
  }
  .proof__col { display: contents; }
  .proof__col--a .proof-card { flex-direction: column; }
  .proof-card { flex: 0 0 min(84%, 340px); scroll-snap-align: start; }
  .proof-card--fill, .proof-card--fill .media { flex: 0 0 auto; }
  .proof-card--fill { flex: 0 0 min(84%, 340px); }
  .quote { flex: 0 0 min(84%, 340px); scroll-snap-align: start; justify-content: flex-start; padding: 22px; }
  .proof__swipe { display: block; margin: 6px 0 0; text-align: center; color: var(--dim); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; }

  .offer__grid { gap: 14px; }
  .pillar { grid-template-columns: 40px minmax(0, 1fr); gap: 14px; }
  .pillar__num { font-size: 1.7rem; }
  .terms { flex-direction: column; align-items: stretch; gap: 8px; }
  .terms__item { justify-content: center; text-align: center; }
  .terms__plus, .terms__eq { text-align: center; }
  .terms__result { flex-direction: column; gap: 8px; align-items: stretch; }
  .terms__result .terms__item { width: 100%; }
}

@media (max-width: 560px) {
  .nav .cta-full { display: none; }
  .nav .cta-compact { display: inline; }
  .btn--lg { width: 100%; max-width: 420px; padding: 1.15em 1.2em; }
  .hero__title { max-width: 14ch; }
  .micro { flex-direction: column; align-items: center; gap: 4px; }
  .micro li + li::before { display: none; }
  .faq__q { padding: 18px 2px; }
}

@media (max-width: 480px) {
  .btn--lg .cta-full { display: none; }
  .btn--lg .cta-compact { display: inline; }
  .btn--lg { font-size: clamp(.9rem, 4.6vw, 1.0625rem); }
}

@media (max-width: 380px) {
  .sticky .cta-full { display: none; }
  .sticky .cta-compact { display: inline; }
  .sticky__price strong { font-size: 1.3rem; }
}

@media (max-width: 340px) {
  .hero__title { font-size: 1.5rem; }
}

@media (max-width: 360px) {
  .pill { letter-spacing: .1em; font-size: .64rem; padding: 8px 12px; }
  .wordmark, .wordmark span { font-size: .88rem; }
  .nav__inner { gap: 10px; }
  .btn--sm { padding: .7em .8em; font-size: .8rem; }
}

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