/* =========================================================
   VP+ EDITOR ACCESS PASS — funnel styles (v2 finish pass)

   Design language mirrors aiclippingagency.com: a lighter
   #202124-family canvas, Geist type, embossed capsules,
   glossy layered cards with inset highlights, one accent
   tint per section, white checkout inputs on a purple panel.
   Palette stays VP+ (cyan primary, mint for money, violet
   secondary) with gold/blue/coral as section support colors.
   Mobile-first; a single centered column at every viewport.
   ========================================================= */

:root {
  /* Canvas — lighter charcoal family like the reference. */
  --bg:        hsl(228 7% 12%);          /* ~#1c1d22 */
  --bg-deep:   hsl(230 9% 8%);
  --bg-strip:  hsl(228 8% 10%);
  --card:      hsl(228 7% 16%);
  --card-2:    hsl(228 7% 18%);
  --border:    hsl(0 0% 100% / .09);
  --border-2:  hsl(215 25% 70% / .24);

  --fg:        hsl(0 0% 100%);
  --muted:     hsl(228 9% 74%);
  --dim:       hsl(228 6% 56%);

  /* VP+ palette + section support colors */
  --accent:    hsl(180 74% 63%);
  --accent-2:  hsl(180 80% 76%);
  --mint:      hsl(160 76% 56%);
  --violet:    hsl(258 90% 78%);
  --blue:      hsl(212 94% 72%);
  --gold:      hsl(43 96% 62%);
  --coral:     hsl(0 78% 64%);
  --star:      hsl(51 100% 55%);

  /* Navy product-UI panels (marketplace / stats recreations) */
  --navy:      hsl(225 42% 10%);
  --navy-2:    hsl(224 40% 14%);
  --navy-line: hsl(224 30% 24%);
  --navy-num:  hsl(212 92% 76%);

  /* Depth recipe — measured off the reference. Every card, pill and
     panel sits inside a crisp 2px near-black ring (that's the
     "sticker" pop), with a light inset top line and a 145deg
     three-stop surface gradient. */
  --ring-c:    hsl(232 16% 3%);
  --gloss:     linear-gradient(180deg, hsl(0 0% 100% / .06), hsl(0 0% 100% / 0) 45%);
  --emb:       0 0 0 2px var(--ring-c), inset 0 1px 0 hsl(0 0% 100% / .1);
  --emb-pill:  0 0 0 2px var(--ring-c), inset 0 1px 0 hsl(0 0% 100% / .26), inset 0 -7px 12px hsl(0 0% 0% / .18);
  --lift:      0 16px 38px -20px hsl(0 0% 0% / .85);
  --card-grad: linear-gradient(145deg, hsl(240 4% 18% / .96), hsl(240 6% 11% / .98) 52%, hsl(240 5% 14% / .96));
  --panel-line: hsl(215 20% 65% / .24);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 30px;

  --wrap: 640px;
  --pad: 20px;

  --font: 'Geist', 'Inter', ui-sans-serif, -apple-system, BlinkMacSystemFont,
          'Segoe UI', Roboto, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace;
  --pixel: 'Geist Pixel', 'Geist Mono', ui-monospace, monospace;
}

/* Geist Pixel Square (SIL OFL) — the reference's label face, self-hosted. */
@font-face {
  font-family: 'Geist Pixel';
  src: url('media/fonts/geist-pixel-square.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  color-scheme: dark;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-tap-highlight-color: transparent;
}
a, button, summary, select, input { touch-action: manipulation; }
:focus-visible { outline: 2px solid hsl(180 74% 63% / .75); outline-offset: 2px; }
::selection { background: hsl(180 74% 63% / .3); }

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, hsl(258 85% 65% / .12), transparent 34%),
    radial-gradient(circle at 82% 0%, hsl(180 74% 63% / .08), transparent 36%),
    linear-gradient(hsl(228 6% 13%) 0%, hsl(230 5% 15%) 52%, hsl(228 6% 13%) 100%);
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
[hidden] { display: none !important; }
h1, h2, h3, p, ul, ol, blockquote, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
strong, b { font-weight: 700; }

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + var(--pad) * 2);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  padding: .7rem 1rem; border-radius: 0 0 var(--r-sm) 0;
  background: var(--accent); color: hsl(228 9% 10%); font-weight: 700; font-size: .85rem;
}
.skip:focus { left: 0; }

/* Shared text helpers */
.accent { color: var(--accent); }
.money  { color: var(--mint); }
.u {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: hsl(0 0% 100% / .9);
  text-decoration-skip-ink: none;
}
.u--money { text-decoration-color: var(--mint); }
.dead {
  color: var(--coral);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.h2 {
  text-align: center;
  font-size: clamp(1.42rem, 5.9vw, 1.95rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.lede {
  margin-top: .85rem;
  text-align: center;
  color: var(--muted);
  font-size: .94rem;
  text-wrap: pretty;
}
.lede strong { color: var(--fg); }

/* Kicker capsules — the reference's chrome: purple gradient-border
   pill (light top -> dark bottom), dark 2px ring, inner shading,
   pixel-face label. Variants change only the label color. */
.kicker-pill {
  width: fit-content;
  margin: 0 auto 1rem;
  display: flex; align-items: center; gap: .45rem;
  padding: .48rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(hsl(255 30% 21%), hsl(254 35% 15%)) padding-box,
    linear-gradient(hsl(268 100% 82%), hsl(262 43% 54%) 48%, hsl(260 36% 10%)) border-box;
  box-shadow: var(--emb-pill);
  font-family: var(--pixel);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--accent);
}
.kicker-pill svg { width: 14px; height: 14px; flex-shrink: 0; }
.kicker-pill--cyan   { color: var(--accent); }
.kicker-pill--violet { color: var(--violet); }
.kicker-pill--mint   { color: var(--mint); }
.kicker-pill--coral  { color: var(--coral); }
.kicker-pill--gold   { color: var(--gold); }
.kicker-pill--blue   { color: var(--blue); }
.kicker-pill--mint svg { color: var(--mint); }

/* Scroll reveal — only when JS is on (html.js). */
html.js [data-rv] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
html.js [data-rv].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-rv] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   1 — HEADER
   ========================================================= */
.top {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, hsl(228 8% 14%), hsl(228 8% 12%));
  box-shadow: 0 1px 0 hsl(0 0% 100% / .04) inset;
}
.top__inner {
  max-width: calc(var(--wrap) + var(--pad) * 2);
  margin-inline: auto;
  padding: .85rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top__logo { height: 24px; width: auto; }
.top__profile { display: flex; align-items: center; gap: .6rem; }
.top__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    conic-gradient(from 210deg, var(--accent), var(--violet), var(--mint), var(--accent)) border-box;
}
.top__who { display: flex; flex-direction: column; line-height: 1.3; }
.top__name {
  display: inline-flex; align-items: center; gap: .3rem;
  font-weight: 700; font-size: .95rem;
  white-space: nowrap;
}
.top__verified { width: 15px; height: 15px; color: hsl(203 89% 53%); flex-shrink: 0; }
.top__subs { font-size: .74rem; font-weight: 600; color: var(--mint); white-space: nowrap; }

/* =========================================================
   2 — HERO
   ========================================================= */
.hero {
  padding: clamp(1.9rem, 6vw, 3rem) 0 1.8rem;
  text-align: center;
  background:
    radial-gradient(90% 60% at 50% 0%, hsl(230 10% 8% / .8), transparent 70%),
    radial-gradient(70% 40% at 50% 100%, hsl(180 74% 63% / .05), transparent 70%);
}
.hero__badges {
  display: flex; justify-content: center; align-items: center;
  gap: .5rem; flex-wrap: wrap; margin-bottom: 1.15rem;
}
.hero__badges { gap: 0; }
.chip {
  display: inline-flex; align-items: center; gap: .42rem;
  padding: .46rem .85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background:
    linear-gradient(hsl(228 8% 22%), hsl(228 9% 13%)) padding-box,
    linear-gradient(hsl(0 0% 100% / .5), hsl(228 8% 30%) 48%, hsl(230 10% 6%)) border-box;
  box-shadow: var(--emb-pill);
  font-family: var(--pixel);
  font-size: .66rem; font-weight: 400; letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 480px) {
  .chip { font-size: .72rem; padding: .5rem 1rem; }
}
.chip--new { color: var(--fg); position: relative; z-index: 1; }
.chip__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint), inset 0 -1px 1px hsl(0 0% 0% / .3);
}
/* Fused to the NEW chip, like the reference. */
.chip--plain {
  margin-left: -8px;
  padding-left: 1.15rem;
  color: var(--violet);
  background:
    linear-gradient(hsl(255 30% 21%), hsl(254 35% 15%)) padding-box,
    linear-gradient(hsl(268 100% 82%), hsl(262 43% 54%) 48%, hsl(260 36% 10%)) border-box;
}

.hero__title {
  font-size: clamp(1.3rem, 5.6vw, 1.85rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.01em;
  text-wrap: pretty;
}
.hero__title em { font-style: italic; }
.hero__lede {
  margin: 1.05rem auto 0;
  max-width: 30rem;
  font-size: .97rem;
  color: var(--dim);
  text-wrap: pretty;
}
.hero__lede strong { display: block; color: var(--muted); font-size: .95rem; margin-bottom: .3rem; }
.hero__lede em { font-style: italic; }

/* ---------- VSL ---------- */
.vsl { margin-top: 1.5rem; }
.vsl__frame {
  position: relative;
  width: min(100%, 400px);
  margin-inline: auto;
  aspect-ratio: 5 / 8;
  border-radius: 34px;
  border: 1px solid hsl(215 25% 70% / .28);
  background: linear-gradient(145deg, hsl(240 4% 17%), hsl(240 6% 9%) 52%, hsl(240 5% 13%));
  overflow: hidden;
  box-shadow:
    0 0 0 2px var(--ring-c),
    inset 0 1px 0 hsl(0 0% 100% / .12),
    0 0 44px hsl(258 85% 66% / .1),
    0 34px 80px -32px hsl(0 0% 0% / .95),
    0 0 70px -34px hsl(180 74% 63% / .45);
}
.vsl__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #000;
}
.vsl__label {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1rem 1.55rem;
  background: linear-gradient(180deg, hsl(0 0% 0% / .72), transparent);
  font-family: var(--pixel);
  font-size: .72rem; font-weight: 400; letter-spacing: .04em;
  color: var(--mint);
  pointer-events: none;
}
.eq { display: inline-flex; align-items: flex-end; gap: 2.5px; height: 13px; }
.eq i {
  width: 3px; border-radius: 2px;
  background: var(--mint);
  animation: eqb 1.1s ease-in-out infinite;
}
.eq i:nth-child(1) { height: 55%; animation-delay: 0s; }
.eq i:nth-child(2) { height: 100%; animation-delay: -.35s; }
.eq i:nth-child(3) { height: 70%; animation-delay: -.7s; }
.eq i:nth-child(4) { height: 90%; animation-delay: -.5s; }
@keyframes eqb { 50% { transform: scaleY(.35); } }
@media (prefers-reduced-motion: reduce) { .eq i { animation: none; } }

.vsl__unmute {
  position: absolute; inset: 0; margin: auto; z-index: 3;
  width: fit-content; height: fit-content;
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  padding: .95rem 1.4rem 1.05rem;
  border: 2px solid var(--mint);
  border-radius: 14px;
  background: hsl(160 30% 6% / .78);
  color: var(--mint);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 0 0 4px hsl(160 76% 56% / .15), 0 18px 50px -18px hsl(0 0% 0% / .9);
}
.vsl__unmute-line { font-size: .76rem; font-weight: 700; }
.vsl__unmute svg { width: 30px; height: 30px; }
.vsl__unmute-cta { font-size: .86rem; font-weight: 800; letter-spacing: .04em; }

.vsl__play {
  position: absolute; inset: 0; margin: auto; z-index: 3;
  width: 74px; height: 74px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: hsl(228 9% 10%);
  box-shadow:
    inset 0 2px 0 hsl(0 0% 100% / .5),
    0 0 0 8px hsl(180 74% 63% / .2),
    0 12px 44px -6px hsl(180 74% 63% / .6);
}
.vsl__play svg { width: 30px; height: 30px; margin-left: 3px; }

/* =========================================================
   3 — REAL EDITORS. REAL EARNINGS.
   ========================================================= */
.proof { padding: 2.6rem 0 1rem; }
.proof__head {
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 1.2rem;
}
.proof__grid { display: grid; gap: .9rem; }

.tcard {
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  background: var(--gloss), var(--card-grad);
  box-shadow: var(--emb), var(--lift);
  padding: 1.05rem 1.1rem 1.15rem;
}
.tcard__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: .8rem; margin-bottom: .65rem;
}
.tcard__badge {
  display: inline-flex; align-items: center; gap: .38rem;
  padding: .38rem .75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background:
    linear-gradient(hsl(255 30% 21%), hsl(254 35% 15%)) padding-box,
    linear-gradient(hsl(268 100% 82%), hsl(262 43% 54%) 48%, hsl(260 36% 10%)) border-box;
  box-shadow: var(--emb-pill), 0 0 16px -6px hsl(258 90% 78% / .45);
  color: var(--violet);
  font-family: var(--pixel);
  font-size: .64rem; font-weight: 400; letter-spacing: .03em;
  white-space: nowrap;
}
.tcard__badge svg { width: 13px; height: 13px; filter: drop-shadow(0 0 4px hsl(258 90% 78% / .6)); }
.tcard__person { display: inline-flex; align-items: center; gap: .55rem; min-width: 0; }
.tcard__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid hsl(0 0% 100% / .18);
  box-shadow: 0 4px 10px -4px hsl(0 0% 0% / .7);
}
.tcard__who { display: flex; flex-direction: column; line-height: 1.25; text-align: left; min-width: 0; }
.tcard__who strong { font-size: .86rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tcard__who span { font-size: .7rem; color: var(--dim); }

.stars { display: inline-flex; align-items: center; gap: .45rem; }
.stars span { color: var(--star); font-size: .9rem; letter-spacing: .14em; text-shadow: 0 0 12px hsl(51 100% 55% / .35); }
.stars b { font-size: .78rem; color: var(--muted); }
.stars--gold span { font-size: 1rem; }

.tcard__quote {
  margin-top: .55rem;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.42;
  text-align: left;
  text-wrap: pretty;
}
.tcard__chips { margin-top: .8rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.tcard__chips span {
  padding: .3rem .65rem;
  border-radius: 999px;
  background: hsl(0 0% 0% / .28);
  border: 1px solid hsl(0 0% 100% / .07);
  box-shadow: inset 0 1.5px 3px hsl(0 0% 0% / .45), 0 1px 0 hsl(0 0% 100% / .05);
  font-size: .68rem; font-weight: 600; color: var(--muted);
}
.tcard--solo { margin-top: 1rem; }

@media (min-width: 900px) {
  .proof .wrap { max-width: 1080px; }
  .proof__grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   4 — OFFER
   ========================================================= */
.offer { padding: 2.6rem 0 0; }
.offer__title {
  text-align: center;
  font-size: clamp(1.7rem, 7vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -.015em;
}
.offer__sub {
  margin-top: .5rem;
  text-align: center;
  color: var(--muted);
  font-size: .94rem;
}
.offer__sub strong { color: var(--fg); }

/* Marketplace recreation (also used inside #what) */
.market {
  margin-top: 1.4rem;
  border: 1px solid var(--navy-line);
  border-radius: var(--r-md);
  background: var(--gloss), linear-gradient(180deg, var(--navy-2), var(--navy));
  box-shadow: var(--emb), var(--lift);
  overflow: hidden;
}
.market__bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem 1rem;
  border-bottom: 1px solid hsl(224 30% 20%);
  font-size: .7rem; font-weight: 600; letter-spacing: .08em;
  color: hsl(220 30% 74%);
}
.market__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .45; } }
.market__rows > li { border-bottom: 1px solid hsl(224 30% 17%); }
.market__rows > li:last-child { border-bottom: 0; }
.mrow {
  display: flex; align-items: center; justify-content: space-between;
  gap: .8rem; padding: .85rem 1rem;
}
.mrow__main { min-width: 0; text-align: left; }
.mrow__title { font-size: .9rem; font-weight: 700; line-height: 1.3; }
.mrow__tags { margin-top: .45rem; display: flex; flex-wrap: wrap; gap: .32rem; }
.mrow__side {
  display: flex; flex-direction: column; align-items: flex-end; gap: .45rem;
  flex-shrink: 0;
}
.mrow__price { font-family: var(--mono); font-weight: 700; font-size: .95rem; color: var(--navy-num); white-space: nowrap; text-shadow: 0 0 14px hsl(212 92% 76% / .35); }
.mrow__price i { font-style: normal; font-size: .66rem; color: hsl(220 25% 55%); }
.mrow__apply {
  padding: .32rem .85rem;
  border-radius: 9px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / .5), 0 4px 12px -4px hsl(180 74% 55% / .6);
  color: hsl(225 42% 10%);
  font-size: .72rem; font-weight: 800;
}

.tag {
  padding: .22rem .5rem;
  border-radius: 6px;
  font-size: .6rem; font-weight: 700; letter-spacing: .05em;
  background: hsl(0 0% 100% / .06);
  border: 1px solid hsl(0 0% 100% / .1);
  color: var(--muted);
  white-space: nowrap;
}
.tag--cyan { color: var(--accent); border-color: hsl(180 74% 63% / .35); background: hsl(180 74% 63% / .09); }
.tag--violet { color: var(--violet); border-color: hsl(258 90% 78% / .35); background: hsl(258 90% 78% / .09); }
.market .tag { background: hsl(224 38% 17%); border-color: hsl(224 30% 24%); color: hsl(220 30% 70%); }
.market .tag--cyan { background: hsl(180 74% 63% / .1); border-color: hsl(180 74% 63% / .32); color: var(--accent); }
.market .tag--violet { background: hsl(258 90% 78% / .1); border-color: hsl(258 90% 78% / .32); color: var(--violet); }

/* The offer panel — one elevated container, reference-style. */
.offer-panel {
  margin-top: 1.6rem;
  padding: 1.45rem 1.2rem 1.5rem;
  border: 1px solid var(--panel-line);
  border-radius: 28px;
  background: linear-gradient(145deg, hsl(240 4% 19% / .96), hsl(240 6% 10% / .98) 52%, hsl(240 5% 14% / .96));
  box-shadow:
    var(--emb),
    0 0 34px hsl(180 74% 63% / .08),
    0 0 54px hsl(258 85% 66% / .07),
    0 24px 70px hsl(0 0% 0% / .34);
}
.panel-pill {
  width: fit-content;
  margin: 0 auto 1.1rem;
  display: flex; align-items: center; gap: .45rem;
  padding: .48rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(hsl(255 30% 21%), hsl(254 35% 15%)) padding-box,
    linear-gradient(hsl(268 100% 82%), hsl(262 43% 54%) 48%, hsl(260 36% 10%)) border-box;
  box-shadow: var(--emb-pill);
  font-family: var(--pixel);
  font-size: .72rem; font-weight: 400; letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--violet);
}
.panel-pill svg { width: 15px; height: 15px; color: var(--mint); }

.included { display: grid; }
.included li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .85rem 0;
  border-bottom: 1px dashed hsl(0 0% 100% / .13);
}
.included li:last-of-type { border-bottom: 0; }
.included__check {
  --c: var(--mint);
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(130% 130% at 50% 16%, color-mix(in srgb, var(--c) 28%, transparent), transparent 60%),
    linear-gradient(180deg, hsl(228 11% 14%), hsl(231 13% 8%));
  border: 1.5px solid color-mix(in srgb, var(--c) 70%, hsl(228 10% 22%));
  box-shadow:
    inset 0 1px 0 hsl(0 0% 100% / .2),
    0 0 10px -2px color-mix(in srgb, var(--c) 55%, transparent);
  color: color-mix(in srgb, var(--c) 86%, white);
  margin-top: .1rem;
}
.included__check svg { width: 11px; height: 11px; filter: drop-shadow(0 0 4px color-mix(in srgb, var(--c) 70%, transparent)); }
.included li p { font-size: .88rem; color: var(--muted); line-height: 1.5; text-align: left; }
.included li p strong { color: var(--fg); }
.included li.included__guarantee p strong { color: var(--mint); }
.included__check--shield svg { width: 14px; height: 14px; }

.price {
  margin: 1.2rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px dashed hsl(0 0% 100% / .13);
  display: flex; align-items: baseline; justify-content: center;
  gap: .7rem; flex-wrap: wrap;
}
.price__old { color: var(--dim); text-decoration: line-through; font-size: 1.1rem; font-weight: 600; }
.price__new { font-size: 1.3rem; font-weight: 700; }
.price__new b { color: var(--mint); font-size: 2rem; font-weight: 800; text-shadow: 0 0 24px hsl(160 76% 56% / .35); }
.price__off {
  align-self: center;
  padding: .32rem .7rem;
  border-radius: 999px;
  background: var(--gloss), linear-gradient(180deg, hsl(160 76% 56% / .14), hsl(160 76% 56% / .05)), var(--card);
  border: 1px solid hsl(160 76% 56% / .4);
  box-shadow: var(--emb);
  color: var(--mint);
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
}

/* =========================================================
   5 — CHECKOUT
   ========================================================= */
.checkout { position: relative; padding: 1.9rem 0 2.4rem; }
.checkout::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 180px;
  background-image:
    linear-gradient(to right, hsl(258 60% 60% / .13) 1px, transparent 1px),
    linear-gradient(to bottom, hsl(258 60% 60% / .13) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(to top, black, transparent);
  mask-image: linear-gradient(to top, black, transparent);
  pointer-events: none;
}
.checkout .wrap { position: relative; z-index: 1; }
.checkout__panel {
  border-radius: 28px;
  border: 1px solid hsl(258 45% 55% / .45);
  background:
    radial-gradient(120% 90% at 50% 0%, hsl(258 42% 22% / .9), transparent 62%),
    linear-gradient(145deg, hsl(257 28% 16% / .97), hsl(256 30% 10% / .98) 52%, hsl(256 26% 13% / .97));
  box-shadow:
    var(--emb),
    0 0 44px hsl(258 85% 60% / .14),
    0 0 34px hsl(180 74% 63% / .06),
    0 30px 90px -40px hsl(258 60% 45% / .5),
    0 24px 70px hsl(0 0% 0% / .34);
  padding: 1.55rem 1.2rem 1.45rem;
  text-align: center;
}
.checkout__ready {
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  color: var(--violet);
}
.checkout__step {
  margin-top: .45rem;
  font-size: 1.1rem; font-weight: 800; letter-spacing: .02em;
  color: var(--violet);
}
.checkout__step span { color: var(--fg); }
.checkout__form { margin-top: 1.15rem; display: grid; gap: .75rem; }

.field { display: block; }
.field__label {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
/* White inputs on the purple panel — measured: 48px, 14px/600. */
.field__input {
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  border-radius: 14px;
  border: 1px solid hsl(220 14% 88%);
  background: #fff;
  color: hsl(228 30% 10%);
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.field__input::placeholder { color: hsl(228 8% 55%); font-weight: 500; }
.field__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px hsl(180 74% 63% / .35);
}
.field__input[aria-invalid="true"] { border-color: var(--coral); box-shadow: 0 0 0 3px hsl(0 78% 64% / .3); }
.field__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555a66' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 9 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .95rem center;
  background-size: 16px;
  padding-right: 2.7rem;
}

.checkout__consent {
  display: flex; gap: .6rem; align-items: flex-start;
  text-align: left;
  font-size: .72rem; color: hsl(258 20% 72%); line-height: 1.45;
  padding: .2rem .1rem;
}
.checkout__consent input {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px; height: 18px; margin-top: .12rem;
  border-radius: 5px;
  background: #fff;
  box-shadow: inset 0 -1px 0 hsl(0 0% 0% / .12);
  display: grid; place-items: center;
  cursor: pointer;
}
.checkout__consent input::after {
  content: "";
  width: 9px; height: 5px;
  border-left: 2.4px solid hsl(228 10% 13%);
  border-bottom: 2.4px solid hsl(228 10% 13%);
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
}
.checkout__consent input:checked { background: linear-gradient(180deg, var(--accent-2), var(--accent)); }
.checkout__consent input:checked::after { opacity: 1; }
.checkout__error {
  font-size: .8rem; font-weight: 600; color: hsl(0 90% 78%);
  text-align: left;
}

/* CTA button — ported 1:1 from the reference (bottom-lit gradient,
   2px dark ring, bright inset top line, dual glow halo), in cyan. */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  min-height: 56px;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(hsl(184 62% 42%) 0%, var(--accent) 52%, hsl(176 90% 84%) 100%);
  color: hsl(195 50% 5%);
  font-weight: 900;
  font-size: clamp(.8rem, 3.9vw, .96rem);
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 0 0 2px var(--ring-c),
    inset 0 1px 0 hsl(177 95% 88% / .95),
    inset 0 -1px 0 hsl(0 0% 100% / .18),
    0 16px 38px hsl(180 74% 63% / .18),
    0 10px 30px hsl(190 60% 18% / .2);
  transition: transform .15s ease, filter .15s ease;
}
.btn-cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-cta:active { transform: translateY(1px); filter: brightness(.97); }
.btn-cta svg { width: 17px; height: 17px; flex-shrink: 0; }
.checkout__submit { width: 100%; margin-top: .35rem; padding-inline: 1rem; }

.gpill {
  margin: 1.05rem auto 0;
  width: fit-content;
  max-width: 100%;
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem 1.1rem;
  border: 1px solid var(--panel-line);
  border-radius: 999px;
  background: linear-gradient(hsl(228 7% 17%), hsl(228 8% 12%));
  box-shadow: var(--emb-pill);
  font-size: .76rem; font-weight: 600; color: hsl(220 15% 83%);
}
.gpill svg { width: 15px; height: 15px; color: var(--violet); flex-shrink: 0; filter: drop-shadow(0 0 5px hsl(258 90% 78% / .6)); }
.checkout__panel .gpill {
  border-color: hsl(258 60% 65% / .4);
  background: linear-gradient(hsl(258 32% 22%), hsl(257 34% 15%));
  color: hsl(258 25% 85%);
}

.trust { margin-top: .95rem; }
.trust__line { font-size: .8rem; font-weight: 600; color: var(--violet); }
.trust__line--violet { color: var(--violet); }
.trust__row {
  margin-top: .55rem;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.trust__avatars { display: inline-flex; }
.trust__avatars img {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid hsl(258 30% 20%);
  object-fit: cover;
}
.trust__avatars img + img { margin-left: -9px; }
.cta__block .trust__avatars img { border-color: var(--card); }

/* =========================================================
   6 — WINS TICKER
   ========================================================= */
.ticker {
  margin-top: .4rem;
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-strip), hsl(228 9% 9%));
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / .04);
  overflow: hidden;
  padding: .85rem 0;
}
.ticker__track {
  display: flex; align-items: center; gap: 1.6rem;
  width: max-content;
  font-family: var(--mono);
  font-size: .78rem; font-weight: 600;
  color: var(--mint);
  white-space: nowrap;
}
.ticker__track i { font-style: normal; color: hsl(160 40% 35%); }

[data-marquee] { animation: marquee var(--marquee-dur, 26s) linear infinite; }
[data-marquee] > * { flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  [data-marquee] { animation: none; }
  .ticker, .rail { overflow-x: auto; }
}

/* =========================================================
   7 — WHAT IS THIS?
   ========================================================= */
.what { padding: 3rem 0 .6rem; }
.wstep { margin-top: 1.9rem; }

/* Icon caption rows (also the selling-point rows) */
.irow {
  margin-top: .9rem;
  display: flex; align-items: center; gap: .95rem;
  padding: .95rem 1.05rem;
  border: 1px solid var(--border-2);
  border-radius: 22px;
  background: var(--gloss), var(--card-grad);
  box-shadow: var(--emb), var(--lift);
  text-align: left;
}

/* "Coin" icons — dark centre, bright colored ring, glowing glyph.
   The reference look. Variants only change --c. */
.irow__icon, .bcard__icon, .gcard__shield {
  --c: var(--accent);
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(130% 130% at 50% 16%, color-mix(in srgb, var(--c) 30%, transparent), transparent 60%),
    linear-gradient(180deg, hsl(228 11% 14%), hsl(231 13% 8%));
  border: 2px solid color-mix(in srgb, var(--c) 72%, hsl(228 10% 22%));
  box-shadow:
    inset 0 1px 0 hsl(0 0% 100% / .22),
    inset 0 -7px 14px -7px color-mix(in srgb, var(--c) 50%, transparent),
    0 0 18px -3px color-mix(in srgb, var(--c) 60%, transparent);
  color: color-mix(in srgb, var(--c) 86%, white);
}
.irow__icon svg, .bcard__icon svg, .gcard__shield svg {
  filter: drop-shadow(0 0 5px color-mix(in srgb, var(--c) 75%, transparent));
}
.irow__icon { width: 47px; height: 47px; }
.irow__icon svg { width: 21px; height: 21px; }
.irow__icon--mint,   .bcard__icon--mint   { --c: var(--mint); }
.irow__icon--gold,   .bcard__icon--gold   { --c: var(--gold); }
.irow__icon--blue,   .bcard__icon--blue   { --c: var(--blue); }
.irow__icon--violet, .bcard__icon--violet { --c: var(--violet); }

.irow p { font-size: .89rem; color: var(--muted); line-height: 1.5; }
.irow p strong { color: var(--fg); }

/* Generic recreated-screenshot panel */
.shot {
  border: 1px solid var(--navy-line);
  border-radius: var(--r-md);
  background: var(--gloss), linear-gradient(180deg, var(--navy-2), var(--navy));
  box-shadow: var(--emb), var(--lift);
  overflow: hidden;
}

/* Ads-manager recreation */
.shot-ads__bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem 1rem;
  border-bottom: 1px solid hsl(224 30% 20%);
  font-size: .7rem; font-weight: 600; letter-spacing: .08em;
  color: hsl(220 30% 74%);
}
.shot-ads__rows > li {
  display: flex; align-items: center; gap: .75rem;
  padding: .8rem 1rem;
  border-bottom: 1px solid hsl(224 30% 17%);
}
.shot-ads__rows > li:last-child { border-bottom: 0; }
.shot-ads__status {
  flex-shrink: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: pulse 2s ease-in-out infinite;
}
.shot-ads__info { min-width: 0; flex: 1; text-align: left; }
.shot-ads__info p { font-size: .86rem; font-weight: 700; line-height: 1.3; }
.shot-ads__meta { font-size: .7rem; color: hsl(220 25% 55%); }
.shot-ads__redact {
  flex-shrink: 0;
  width: 64px; height: 12px; border-radius: 6px;
  background: linear-gradient(90deg, hsl(224 32% 20%), hsl(224 32% 28%), hsl(224 32% 20%));
  background-size: 200% 100%;
  animation: shimmer 2.2s linear infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* All-time value card */
.shot-alltime { padding: 1.4rem 1.25rem 1.5rem; text-align: left; }
.shot-alltime__label { font-size: .68rem; font-weight: 700; letter-spacing: .22em; color: hsl(220 25% 55%); }
.shot-alltime__value {
  margin-top: .35rem;
  font-family: var(--mono);
  font-size: clamp(2.3rem, 10.5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--navy-num);
  line-height: 1.05;
  text-shadow: 0 0 30px hsl(212 92% 76% / .35);
}
.shot-alltime__sub { margin-top: .4rem; font-size: .8rem; color: hsl(220 30% 66%); }

/* New-clients chart card */
.shot-chart { padding: 1.15rem 1.25rem 0; }
.shot-chart__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: .8rem;
}
.shot-chart__head p { font-size: .86rem; font-weight: 700; }
.shot-chart__range {
  padding: .3rem .7rem;
  border-radius: 999px;
  border: 1px solid hsl(224 30% 24%);
  background: hsl(224 38% 16%);
  box-shadow: var(--emb);
  font-size: .66rem; font-weight: 600; color: hsl(220 30% 70%);
}
.shot-chart__num {
  margin-top: .55rem;
  display: flex; align-items: baseline; gap: .6rem;
  text-align: left;
}
.shot-chart__num b { font-size: 2.25rem; font-weight: 800; line-height: 1; }
.shot-chart__trend {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 600; color: var(--mint);
}
.shot-chart__trend svg { width: 14px; height: 14px; }
.shot-chart__line { width: 100%; height: 84px; margin-top: .5rem; color: var(--accent); }

/* =========================================================
   8 — CTA BLOCKS
   ========================================================= */
.cta { padding: 2.2rem 0; }
.cta__block { text-align: center; }
.cta__block .btn-cta { width: min(100%, 400px); }
.cta__title {
  font-size: clamp(1.3rem, 5.4vw, 1.7rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.01em;
  margin-bottom: 1.2rem;
  text-wrap: balance;
}
.cta__block--inline { margin-top: 1.6rem; }

/* =========================================================
   9 — NEW JOBS, DAILY!
   ========================================================= */
.jobs { padding: 2.8rem 0 .8rem; }
.rail { margin-top: 1.5rem; overflow: hidden; }
.rail__track {
  display: flex; gap: .8rem;
  width: max-content;
  padding: .4rem var(--pad) .8rem;
  --marquee-dur: 38s;
}
.jcard {
  width: 240px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  background: var(--gloss), var(--card-grad);
  box-shadow: var(--emb), var(--lift);
  padding: .95rem 1rem 1.05rem;
  text-align: left;
}
.jcard__head { display: flex; align-items: center; gap: .55rem; margin-bottom: .6rem; }
.jcard__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background:
    radial-gradient(130% 130% at 50% 16%, color-mix(in srgb, var(--av, #5cb1ff) 30%, transparent), transparent 62%),
    linear-gradient(180deg, hsl(228 11% 14%), hsl(231 13% 8%));
  border: 1.5px solid color-mix(in srgb, var(--av, #5cb1ff) 65%, hsl(228 10% 22%));
  box-shadow:
    inset 0 1px 0 hsl(0 0% 100% / .2),
    0 0 10px -2px color-mix(in srgb, var(--av, #5cb1ff) 55%, transparent);
  color: color-mix(in srgb, var(--av, #5cb1ff) 85%, white);
  font-size: .78rem; font-weight: 800;
}
.jcard__client { font-size: .78rem; font-weight: 600; line-height: 1.2; }
.jcard__type { font-size: .66rem; color: var(--dim); }
.jcard__title { font-size: .96rem; font-weight: 700; line-height: 1.3; }
.jcard__price { margin-top: .35rem; font-family: var(--mono); font-size: 1.12rem; font-weight: 800; color: var(--mint); text-shadow: 0 0 16px hsl(160 76% 56% / .35); }
.jcard__price i { font-style: normal; font-size: .7rem; font-weight: 600; color: var(--dim); }
.jcard__tags { margin-top: .55rem; display: flex; flex-wrap: wrap; gap: .32rem; }

/* =========================================================
   10 — THIS IS NOT A COURSE
   ========================================================= */
.notacourse { padding: 2.8rem 0 .6rem; }
.points { margin-top: 1.3rem; display: grid; gap: .7rem; }
.points .irow { margin-top: 0; }

/* =========================================================
   11 — THE TRUTH
   ========================================================= */
.truth {
  padding: 3rem 0 .6rem;
  background: radial-gradient(70% 40% at 50% 0%, hsl(0 78% 64% / .05), transparent 70%);
}
.truth__icons {
  margin-top: 1.4rem;
  display: flex; justify-content: center; gap: .9rem;
}
.xicon {
  position: relative;
  width: 66px; height: 66px;
  display: grid; place-items: center;
  border: 1px solid hsl(0 0% 100% / .22);
  border-radius: 20px;
  background:
    radial-gradient(120% 100% at 50% 0%, hsl(0 0% 100% / .1), transparent 55%),
    linear-gradient(180deg, hsl(228 8% 22%), hsl(228 8% 14%));
  box-shadow: var(--emb), var(--lift);
  color: hsl(228 10% 72%);
}
.xicon svg { width: 28px; height: 28px; filter: drop-shadow(0 2px 3px hsl(0 0% 0% / .5)); }
.xicon i { position: absolute; inset: 0; }
.xicon i::before, .xicon i::after {
  content: "";
  position: absolute;
  left: 18%; right: 18%; top: 50%;
  height: 3px;
  border-radius: 2px;
  background: var(--coral);
  box-shadow: 0 0 12px hsl(0 78% 64% / .5);
}
.xicon i::before { transform: rotate(45deg); }
.xicon i::after { transform: rotate(-45deg); }

.truth__body {
  margin: 1.3rem auto 0;
  max-width: 30rem;
  text-align: center;
  color: var(--muted);
  font-size: .94rem;
}
.truth__body strong { color: var(--fg); }
.truth__but {
  margin: 1.2rem auto 0;
  text-align: center;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.4;
}
.truth__label {
  margin: 1.8rem 0 .9rem;
  text-align: center;
  font-family: var(--pixel);
  font-size: .74rem; font-weight: 400; letter-spacing: .04em;
  color: var(--mint);
}
.truth__pills { display: grid; gap: .6rem; max-width: 30rem; margin-inline: auto; }
.truth__pills li {
  padding: .85rem 1.15rem;
  border: 1px solid var(--border-2);
  border-radius: 14px;
  background: var(--gloss), var(--card-grad);
  box-shadow: var(--emb), 0 10px 24px -16px hsl(0 0% 0% / .8);
  text-align: center;
  font-size: .9rem; font-weight: 600; color: var(--muted);
}
.truth__pills li strong { color: var(--fg); }
.truth__pills-key {
  border-color: hsl(180 74% 63% / .55);
  background: var(--gloss), linear-gradient(180deg, hsl(180 74% 63% / .12), hsl(180 74% 63% / .04)), var(--card);
  box-shadow: var(--emb), 0 0 24px -8px hsl(180 74% 63% / .45), 0 10px 24px -16px hsl(0 0% 0% / .8);
  color: var(--fg);
}
.truth__pills-key strong { color: var(--accent); }

/* =========================================================
   13 — WHAT'S INCLUDED (EXPANDED)
   ========================================================= */
.included-x {
  padding: 3rem 0 .6rem;
  background: radial-gradient(70% 30% at 50% 0%, hsl(160 76% 56% / .05), transparent 70%);
}

.statpills {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.statpill {
  padding: .95rem .6rem 1rem;
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  background: var(--gloss), var(--card-grad);
  box-shadow: var(--emb), var(--lift);
  text-align: center;
}
.statpill b {
  display: block;
  font-family: var(--mono);
  font-size: clamp(1.1rem, 5.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: .01em;
  text-shadow: 0 0 20px hsl(160 76% 56% / .35);
}
.statpill > span {
  display: block;
  margin-top: .35rem;
  font-family: var(--pixel);
  font-size: .62rem; font-weight: 400; letter-spacing: .04em;
  color: var(--dim);
}

/* Pass graphic scene */
.pass-scene {
  position: relative;
  height: 300px;
  margin-top: 1.5rem;
  display: grid;
  place-items: center;
}
.pass-card {
  position: relative;
  width: 250px;
  padding: 1.1rem 1.2rem 1.35rem;
  border-radius: 20px;
  border: 1px solid hsl(180 74% 63% / .5);
  background:
    var(--gloss),
    radial-gradient(120% 100% at 0% 0%, hsl(180 74% 63% / .16), transparent 55%),
    linear-gradient(150deg, hsl(228 12% 17%), hsl(230 12% 9%));
  box-shadow:
    inset 0 1px 0 hsl(0 0% 100% / .14),
    0 30px 70px -25px hsl(0 0% 0% / .95),
    0 0 70px -20px hsl(180 74% 63% / .5);
  transform: rotate(-5deg);
  text-align: left;
}
.pass-card__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .9rem;
}
.pass-card__logo { height: 26px; width: auto; }
.pass-card__vp {
  font-family: var(--pixel);
  font-weight: 400; font-size: .8rem; letter-spacing: .06em;
  color: var(--accent);
}
.pass-card__name {
  font-size: 1.1rem; font-weight: 800; letter-spacing: .04em;
  line-height: 1.2;
}
.pass-card__meta {
  margin-top: .3rem;
  font-family: var(--pixel);
  font-size: .62rem; font-weight: 400; letter-spacing: .04em;
  color: var(--dim);
}
.pass-card__strip {
  margin-top: .95rem;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--violet), var(--mint));
  box-shadow: 0 0 14px hsl(258 90% 78% / .4);
  opacity: .9;
}
.pass-card--mini {
  width: 210px;
  margin: 0 auto 1.3rem;
  padding: .9rem 1rem 1.1rem;
  transform: rotate(-4deg);
}
.pass-card--mini .pass-card__name { font-size: .95rem; }
.pass-card--mini .pass-card__logo { height: 21px; }

.pass-orb {
  position: absolute;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid hsl(0 0% 100% / .22);
  background:
    radial-gradient(120% 100% at 50% 0%, hsl(0 0% 100% / .12), transparent 55%),
    linear-gradient(180deg, hsl(228 8% 21%), hsl(228 9% 12%));
  box-shadow: var(--emb), 0 16px 34px -14px hsl(0 0% 0% / .9);
  animation: float 4.5s ease-in-out infinite;
}
.pass-orb svg { width: 24px; height: 24px; filter: drop-shadow(0 3px 5px hsl(0 0% 0% / .55)); }
.pass-orb--tt { top: 12%; left: 8%; color: var(--fg); animation-delay: -1.2s; }
.pass-orb--yt { top: 6%; right: 10%; animation-delay: -2.4s; }
.pass-orb--ig { bottom: 12%; right: 7%; animation-delay: -3.4s; }
@keyframes float { 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .pass-orb, .pass-stat { animation: none; } }

.pass-stat {
  position: absolute;
  z-index: 2;
  bottom: 8%; left: 5%;
  display: flex; flex-direction: column;
  padding: .55rem .8rem .6rem;
  border-radius: 12px;
  border: 1px solid var(--navy-line);
  background: var(--gloss), linear-gradient(180deg, var(--navy-2), var(--navy));
  box-shadow: var(--emb), 0 16px 34px -14px hsl(0 0% 0% / .9);
  animation: float 4.5s ease-in-out infinite;
  animation-delay: -.6s;
  text-align: left;
}
.pass-stat__label { font-size: .52rem; font-weight: 700; letter-spacing: .18em; color: hsl(220 25% 55%); }
.pass-stat__num { font-family: var(--mono); font-size: .95rem; font-weight: 800; color: var(--navy-num); }

.included-x__title {
  margin: .4rem 0 1rem;
  text-align: center;
  font-size: clamp(1.35rem, 5.6vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -.015em;
}

.bcards { display: grid; gap: .7rem; }
.bcard {
  padding: 1.05rem 1.1rem 1.15rem;
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  background: var(--gloss), var(--card-grad);
  box-shadow: var(--emb), var(--lift);
  text-align: left;
}
.bcard__head { display: flex; align-items: center; gap: .75rem; margin-bottom: .55rem; }
.bcard__icon { width: 43px; height: 43px; }
.bcard__icon svg { width: 19px; height: 19px; }
.bcard__head h3 {
  font-size: .8rem; font-weight: 800; letter-spacing: .08em;
  line-height: 1.3;
}
.bcard p { font-size: .88rem; color: var(--muted); line-height: 1.55; }
.bcard p strong { color: var(--fg); }
.bcard p em { font-style: italic; color: var(--fg); }
.bcard--guarantee {
  border-color: hsl(160 76% 56% / .5);
  background:
    var(--gloss),
    radial-gradient(120% 100% at 50% 0%, hsl(160 76% 56% / .12), transparent 60%),
    linear-gradient(180deg, var(--card-2), var(--card));
}
.bcard--guarantee .bcard__icon { --c: var(--mint); }

/* =========================================================
   14 — WHY I'M DOING THIS
   ========================================================= */
.story { padding: 3rem 0 .6rem; }
.story__chip {
  display: flex; flex-direction: column; align-items: center;
  gap: .15rem;
  margin-bottom: 1.1rem;
}
.story__avatar {
  width: 58px; height: 58px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    conic-gradient(from 210deg, var(--accent), var(--violet), var(--mint), var(--accent)) border-box;
  margin-bottom: .4rem;
}
.story__name {
  display: inline-flex; align-items: center; gap: .3rem;
  font-weight: 700; font-size: 1rem;
}
.story__subs { font-size: .78rem; font-weight: 600; color: var(--mint); }
.story__brand { height: 14px; width: auto; margin-top: .35rem; opacity: .85; }

.story__photo { margin-top: 1.3rem; }
.story__photo img {
  width: 100%;
  border-radius: var(--r-md);
  border: 1px solid var(--border-2);
  box-shadow: var(--lift);
}
.story__text {
  margin: 1.4rem auto 0;
  max-width: 32rem;
  display: grid; gap: .95rem;
  text-align: center;
  font-size: .94rem;
  color: var(--muted);
}
.story__text strong { color: var(--fg); }

.story__proof { margin-top: 1.5rem; display: grid; gap: .8rem; }

.chat {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .9rem 1rem;
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  background: var(--gloss), var(--card-grad);
  box-shadow: var(--emb), var(--lift);
  text-align: left;
}
.chat__avatar {
  flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover;
}
.chat__avatar--init {
  display: grid; place-items: center;
  background:
    radial-gradient(130% 130% at 50% 16%, color-mix(in srgb, var(--av, #5cb1ff) 30%, transparent), transparent 62%),
    linear-gradient(180deg, hsl(228 11% 14%), hsl(231 13% 8%));
  border: 1.5px solid color-mix(in srgb, var(--av, #5cb1ff) 65%, hsl(228 10% 22%));
  box-shadow:
    inset 0 1px 0 hsl(0 0% 100% / .2),
    0 0 10px -2px color-mix(in srgb, var(--av, #5cb1ff) 55%, transparent);
  color: color-mix(in srgb, var(--av, #5cb1ff) 85%, white);
  font-size: .92rem; font-weight: 800;
}
.chat__body { min-width: 0; }
.chat__meta strong { font-size: .86rem; }
.chat__meta span { margin-left: .5rem; font-size: .66rem; color: var(--dim); }
.chat__msg { margin-top: .2rem; font-size: .9rem; color: hsl(228 10% 84%); line-height: 1.45; }
.chat__mention {
  padding: .06rem .35rem;
  border-radius: 5px;
  background: hsl(258 90% 78% / .18);
  color: var(--violet);
  font-weight: 600;
  white-space: nowrap;
}

/* =========================================================
   16 — WHO THIS IS (AND ISN'T) FOR
   ========================================================= */
.fit { padding: 3rem 0 .6rem; }
.fit__card {
  margin-top: 1rem;
  padding: 1.2rem 1.15rem 1.25rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-2);
  background: var(--gloss), var(--card-grad);
  box-shadow: var(--emb), var(--lift);
  text-align: left;
}
.fit__card--yes { border-color: hsl(160 76% 56% / .45); }
.fit__card--no { border-color: hsl(0 78% 64% / .4); }
.fit__head {
  font-size: .8rem; font-weight: 800; letter-spacing: .14em;
  margin-bottom: .85rem;
}
.fit__head--yes { color: var(--mint); }
.fit__head--no { color: var(--coral); }
.fit__card ul { display: grid; gap: .7rem; }
.fit__card li {
  display: flex; gap: .65rem; align-items: flex-start;
  font-size: .89rem; color: var(--muted); line-height: 1.5;
}
.fit__mark {
  --c: var(--mint);
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  margin-top: .1rem;
  background:
    radial-gradient(130% 130% at 50% 16%, color-mix(in srgb, var(--c) 28%, transparent), transparent 60%),
    linear-gradient(180deg, hsl(228 11% 14%), hsl(231 13% 8%));
  border: 1.5px solid color-mix(in srgb, var(--c) 70%, hsl(228 10% 22%));
  box-shadow:
    inset 0 1px 0 hsl(0 0% 100% / .2),
    0 0 10px -2px color-mix(in srgb, var(--c) 55%, transparent);
  color: color-mix(in srgb, var(--c) 86%, white);
}
.fit__mark svg { width: 11px; height: 11px; filter: drop-shadow(0 0 4px color-mix(in srgb, var(--c) 70%, transparent)); }
.fit__mark--no { --c: var(--coral); }

/* =========================================================
   17 — THE GUARANTEE
   ========================================================= */
.guarantee { padding: 2.6rem 0 .4rem; }
.gcard {
  padding: 1.9rem 1.25rem 1.8rem;
  border-radius: 28px;
  border: 1px solid hsl(160 60% 60% / .4);
  background:
    radial-gradient(110% 80% at 50% 0%, hsl(160 76% 56% / .13), transparent 60%),
    linear-gradient(145deg, hsl(240 4% 19% / .96), hsl(240 6% 10% / .98) 52%, hsl(240 5% 14% / .96));
  box-shadow:
    var(--emb),
    0 0 44px hsl(160 76% 56% / .12),
    0 30px 80px -35px hsl(160 76% 56% / .35),
    0 24px 70px hsl(0 0% 0% / .34);
  text-align: center;
}
.gcard__shield {
  --c: var(--mint);
  display: inline-grid;
  width: 58px; height: 58px;
  margin-bottom: 1rem;
}
.gcard__shield svg { width: 27px; height: 27px; }
.gcard__title {
  font-size: clamp(1.4rem, 5.9vw, 1.85rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.01em;
}
.gcard p {
  margin: 1rem auto 0;
  max-width: 30rem;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.55;
}
.gcard p strong { color: var(--fg); }

/* =========================================================
   18 — WHY THIS WORKS RIGHT NOW
   ========================================================= */
.whynow {
  padding: 3rem 0 .6rem;
  background: radial-gradient(70% 30% at 50% 0%, hsl(212 94% 72% / .05), transparent 70%);
}
.whynow__closer {
  margin-top: 1.4rem;
  text-align: center;
  font-size: .98rem;
  color: var(--muted);
  line-height: 1.5;
}
.whynow__closer strong { color: var(--fg); font-size: 1.1rem; }

/* =========================================================
   19 — FAQ
   ========================================================= */
.faq { padding: 3rem 0 .6rem; }
.faq__list { margin-top: .4rem; display: grid; gap: .6rem; }
.faq__item {
  border: 1px solid var(--border-2);
  border-radius: 15px;
  background: var(--gloss), var(--card-grad);
  box-shadow: var(--emb), 0 10px 24px -16px hsl(0 0% 0% / .8);
  overflow: hidden;
}
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-size: .92rem; font-weight: 700;
  list-style: none;
  text-align: left;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 8px hsl(180 74% 63% / .5);
  transition: transform .2s ease;
}
.faq__plus::before { left: 0; right: 0; top: 8px; height: 2.4px; }
.faq__plus::after { top: 0; bottom: 0; left: 8px; width: 2.4px; }
.faq__item[open] .faq__plus::after { transform: scaleY(0); }
.faq__a { padding: 0 1.1rem 1.05rem; text-align: left; }
.faq__a p { font-size: .88rem; color: var(--muted); line-height: 1.55; }

/* =========================================================
   20 — FINAL OFFER CARD
   ========================================================= */
.finalcard {
  position: relative;
  padding: 2.6rem 0 3rem;
}
.finalcard::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 160px;
  background-image:
    linear-gradient(to right, hsl(180 74% 63% / .1) 1px, transparent 1px),
    linear-gradient(to bottom, hsl(180 74% 63% / .1) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(to top, black, transparent);
  mask-image: linear-gradient(to top, black, transparent);
  pointer-events: none;
}
.finalcard .wrap { position: relative; z-index: 1; }
.fcard {
  padding: 1.8rem 1.25rem 1.6rem;
  border-radius: 28px;
  border: 1px solid var(--panel-line);
  background:
    radial-gradient(110% 70% at 50% 0%, hsl(180 74% 63% / .12), transparent 60%),
    linear-gradient(145deg, hsl(240 4% 19% / .96), hsl(240 6% 10% / .98) 52%, hsl(240 5% 14% / .96));
  box-shadow:
    var(--emb),
    0 0 44px hsl(180 74% 63% / .12),
    0 0 54px hsl(258 85% 66% / .07),
    0 30px 80px -35px hsl(180 74% 63% / .3),
    0 24px 70px hsl(0 0% 0% / .34);
  text-align: center;
}
.fcard__title {
  font-size: clamp(1.4rem, 5.9vw, 1.85rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.01em;
}
.fcard__sub { margin-top: .5rem; font-size: .94rem; color: var(--muted); }
.fcard .btn-cta { width: min(100%, 400px); margin-top: 1.2rem; }

/* =========================================================
   21 — FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-strip);
  padding: 2.2rem 0 2.6rem;
  text-align: center;
}
.footer__logo { height: 20px; width: auto; margin-inline: auto; opacity: .95; }
.footer__tag {
  margin: .9rem auto 0;
  max-width: 30rem;
  font-size: .82rem; color: var(--muted);
}
.footer__links {
  margin-top: 1rem;
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: .4rem 1.4rem;
  font-size: .8rem; font-weight: 600;
}
.footer__links a { color: var(--muted); }
.footer__links a:hover { color: var(--fg); }
.footer__legal, .footer__disclaimer {
  margin: 1rem auto 0;
  max-width: 34rem;
  font-size: .7rem; color: var(--dim); line-height: 1.5;
}
.footer__copy { margin-top: 1.1rem; font-size: .74rem; color: var(--dim); }
