/* /special — paid-traffic landing page. Real product screens, framed. */
*, *::before, *::after { box-sizing: border-box; }
:root {
  --bg: #06080d; --panel: #0b0e16; --line: #1a1f2a; --line-2: #232937;
  --text: #f2f3f5; --muted: #9aa0ab; --dim: #656b77;
  --green: #9dfbc1; --purple: #9214f1; --purple-lt: #b45cff;
  --gold: #f5a742; --gold-hot: #ffd79a; --ink: #150d02; --red: #ff5a6e;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --ease: cubic-bezier(.2,.8,.2,1); --k: .55;
}
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; padding-bottom: 52px; background: var(--bg); color: var(--text); font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; line-height: 1.45; overflow-x: hidden; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: 1060px; margin: 0 auto; padding: 0 16px; }

.bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 0 2px; }
.bar__brand { display: flex; align-items: center; gap: 8px; font-weight: 650; font-size: 15px; }
.bar__brand img { width: 24px; height: 24px; }
.bar__live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: p 2.4s infinite; }
@keyframes p { 0%{box-shadow:0 0 0 0 rgba(157,251,193,.55)} 70%{box-shadow:0 0 0 8px rgba(157,251,193,0)} 100%{box-shadow:0 0 0 0 rgba(157,251,193,0)} }

/* ---------- hero ---------- */
.hero { display: grid; grid-template-columns: minmax(0,1fr) 46%; gap: 6px; align-items: center; padding: 4px 0 0; }
.hero__copy { position: relative; z-index: 4; }
h1 { font-size: clamp(24px, 6.6vw, 42px); line-height: 1.04; letter-spacing: -.03em; font-weight: 700; margin: 0; }
h1 em { font-style: normal; color: var(--gold-hot); }
.vp { display: block; text-decoration: none; color: inherit; margin: 0 0 12px; }
.vp__back { display: inline-block; margin-top: 7px; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .04em; color: var(--green); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 4px; }
.vp:hover .vp__back { color: #fff; }
.btn { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 13px 18px; border: 0; border-radius: 12px; font-size: 16px; font-weight: 700; letter-spacing: -.01em; text-decoration: none; cursor: pointer; font-family: inherit; background: linear-gradient(135deg, var(--gold-hot), var(--gold) 52%, #e08f2a); color: var(--ink); box-shadow: 0 10px 30px rgba(245,167,66,.3); transition: transform .14s ease, box-shadow .14s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(245,167,66,.44); }
.under { font-family: var(--mono); font-size: 10px; color: var(--dim); margin-top: 8px; }
.scale { font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .05em; color: var(--muted); margin-top: 6px; }
.scale b { color: var(--green); font-weight: 700; }

.stage { position: relative; height: 330px; perspective: 800px; overflow-x: clip; }
.stage__glow { position: absolute; left: 50%; top: 48%; width: 120%; height: 84%; transform: translate(-50%,-50%); background: radial-gradient(48% 54% at 46% 50%, rgba(146,20,241,.62), transparent 70%), radial-gradient(36% 42% at 64% 60%, rgba(157,251,193,.28), transparent 72%); filter: blur(12px); pointer-events: none; }
.phone { position: absolute; left: 50%; top: 50%; width: 146px; height: 300px; margin: -150px 0 0 -80px; border-radius: 26px; padding: 7px; background: linear-gradient(150deg, #2b3243, #0d1017 55%); box-shadow: 0 34px 70px rgba(0,0,0,.72), 0 0 0 1px rgba(255,255,255,.07), 0 0 60px rgba(146,20,241,.34); transform: rotateY(-30deg) rotateX(7deg) rotateZ(-2deg); transform-style: preserve-3d; z-index: 2; }
.screen { position: absolute; inset: 7px; border-radius: 20px; overflow: hidden; background: #07090f; border: 1px solid rgba(255,255,255,.05); }
.shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 0; }
.shot.on { opacity: 1; z-index: 2; }
.shot.next { opacity: 1; z-index: 1; }
.screen::after { content: ""; position: absolute; inset: -40% 0; background: repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 3px); opacity: 0; pointer-events: none; z-index: 3; }
.screen.fuzz::after { opacity: 1; animation: scan .44s steps(6,end); }
.screen.fuzz .shot.on { animation: fuzz .44s steps(7,end); }
@keyframes scan { from { transform: translateY(-18%); } to { transform: translateY(18%); } }
@keyframes fuzz {
  0%   { transform: none; clip-path: inset(0); filter: none; }
  14%  { transform: translate(-7px,2px) skewX(-9deg); clip-path: inset(6% 0 60% 0); filter: hue-rotate(70deg) contrast(1.7); }
  28%  { transform: translate(6px,-3px); clip-path: inset(38% 0 22% 0); filter: saturate(3); }
  42%  { transform: translate(-5px,1px) skewX(7deg); clip-path: inset(62% 0 4% 0); filter: hue-rotate(-70deg) brightness(1.3); }
  58%  { transform: translate(4px,0); clip-path: inset(18% 0 46% 0); filter: contrast(2); }
  74%  { transform: translate(-2px,2px); clip-path: inset(0); filter: none; opacity: .5; }
  100% { transform: none; clip-path: inset(0); filter: none; opacity: 0; }
}
/* eight tiles in flight; JS rotates every book through them */
.fly { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.fly img { position: absolute; left: 50%; top: 46%; width: 30px; height: 30px; margin: -15px 0 0 -15px; border-radius: 8px; object-fit: cover; background: #11151f; padding: 4px; box-shadow: 0 12px 26px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.1), 0 0 18px rgba(157,251,193,.25); opacity: 0; animation: emit 7.2s var(--ease) infinite; }
.fly img:nth-child(1) { --tx:-150px; --ty:-125px; }  .fly img:nth-child(2) { --tx:-172px; --ty:-18px; }
.fly img:nth-child(3) { --tx:-150px; --ty:95px; }    .fly img:nth-child(4) { --tx:128px;  --ty:-118px; }
.fly img:nth-child(5) { --tx:158px;  --ty:6px; }     .fly img:nth-child(6) { --tx:132px;  --ty:118px; }
.fly img:nth-child(7) { --tx:-52px;  --ty:-168px; }  .fly img:nth-child(8) { --tx:-96px;  --ty:160px; }
@media (max-width: 779px) {
  .fly img:nth-child(1) { --tx:-110px; --ty:-250px; } .fly img:nth-child(2) { --tx:60px;   --ty:-240px; }
  .fly img:nth-child(3) { --tx:140px;  --ty:-120px; } .fly img:nth-child(4) { --tx:145px;  --ty:30px; }
  .fly img:nth-child(5) { --tx:120px;  --ty:170px; }  .fly img:nth-child(6) { --tx:40px;   --ty:260px; }
  .fly img:nth-child(7) { --tx:-100px; --ty:220px; }  .fly img:nth-child(8) { --tx:-140px; --ty:-40px; }
}
@keyframes emit {
  0%   { transform: translate(-10px,0) scale(.3); opacity: 0; }
  12%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { transform: translate(calc(var(--tx) * var(--k)), calc(var(--ty) * var(--k))) scale(1.15); opacity: 0; }
}

/* ---------- six tiles ---------- */
section { padding: 18px 0; }
.tiles { display: grid; gap: 12px; }
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.tile { border: 1px solid var(--line); border-radius: 14px; background: var(--panel); padding: 14px; overflow: hidden; min-width: 0; }
/* each card is a numbered step in the plan; the picture does the talking */
.how__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 2px 0 12px; }
.how__head h2 { font-size: 24px; letter-spacing: -.028em; margin: 0; font-weight: 700; }
.how__head p { margin: 0; font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; color: var(--dim); white-space: nowrap; }
.tile__k { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text); margin-bottom: 10px; }
.tile__k b { width: 20px; height: 20px; flex: none; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; font-size: 10.5px; }
.tile--sm .tile__k { font-size: 10.5px; }
.tile--sm { padding: 12px; }
.frame { margin: 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--line-2); background: #0b1020; box-shadow: 0 18px 40px rgba(0,0,0,.45); }
.frame img { width: 100%; height: auto; }
.foot { display: flex; justify-content: space-between; gap: 10px; margin-top: 10px; font-family: var(--mono); font-size: 10px; color: var(--dim); }
.foot b { color: var(--green); font-weight: 700; }
.foot i { font-style: normal; color: var(--gold); font-weight: 700; }
.tile--sm .foot { font-size: 9px; margin-top: 8px; }

/* community: a Discord room */
.frame--stack { margin-top: 8px; }
.disc { border-radius: 10px; background: #313338; padding: 10px 10px 8px; }
.disc__top { display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 11px; font-weight: 700; color: #b5bac1; padding: 0 2px 8px; border-bottom: 1px solid #3f4147; margin-bottom: 8px; }
.disc__top u { text-decoration: none; color: #80848e; margin-right: 4px; }
.dm { display: flex; gap: 9px; align-items: flex-start; padding: 4px 2px; }
.dm img { width: 28px; height: 28px; border-radius: 50%; flex: none; margin-top: 1px; background: #1e1f22; }
.dm div { min-width: 0; font-size: 12.5px; line-height: 1.35; color: #dbdee1; }
.dm b { display: block; font-size: 12px; font-weight: 600; margin-bottom: 1px; }
.dm b.u1 { color: #57f287; } .dm b.u2 { color: #f5a742; } .dm b.u3 { color: #eb459e; }
.dm b s { text-decoration: none; color: #949ba4; font-weight: 400; font-size: 10px; margin-left: 6px; }

/* ---------- price: All Access lit in the middle, button fixed beneath ---------- */
.offer { position: relative; overflow: hidden; border: 1px solid rgba(245,167,66,.4); border-radius: 16px; background: #07090f url(/assets/shots/wins-mobile.webp) center top / cover no-repeat; padding: 20px 14px 18px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.offer::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,7,12,.7), rgba(5,7,12,.8) 45%, rgba(5,7,12,.72)); }
.offer__gap { height: 8px; }
.offer > * { position: relative; }
.offer__k { font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.tiers { display: grid; grid-template-columns: 1fr 1.22fr 1fr; gap: 8px; align-items: end; margin-bottom: 12px; }
.tier { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px; padding: 12px 6px 11px; border-radius: 12px; border: 1px solid rgba(139,92,246,.45); background: linear-gradient(rgba(139,92,246,.05), rgba(139,92,246,.05)) #0a0b12; cursor: pointer; color: var(--text); font-family: inherit; }
.tier--best { border-color: var(--gold); background: linear-gradient(rgba(245,167,66,.09), rgba(245,167,66,.09)) #0b0a08; box-shadow: 0 0 0 1px rgba(245,167,66,.4), 0 14px 38px rgba(245,167,66,.18); padding: 18px 6px 14px; }
.tier__tag { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--gold); color: var(--ink); padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.tier__r { width: 17px; height: 17px; border-radius: 50%; border: 2px solid var(--line-2); display: grid; place-items: center; }
.tier.on .tier__r { border-color: var(--gold); }
.tier.on .tier__r::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.tier__n { font-weight: 700; font-size: 13px; line-height: 1.1; }
.tier--best .tier__n { font-size: 16px; }
.tier__d { font-size: 9.5px; color: var(--dim); line-height: 1.2; }
.tier--best .tier__d { color: var(--gold-hot); font-weight: 600; font-size: 10.5px; }
.tier__was { font-family: var(--mono); font-size: 10.5px; color: var(--dim); text-decoration: line-through; text-decoration-color: var(--red); }
.tier__now { font-family: var(--mono); font-size: 17px; font-weight: 700; color: var(--gold-hot); line-height: 1; }
.tier--best .tier__now { font-size: 22px; }
.tier__now s { font-size: 9px; color: var(--dim); font-weight: 500; text-decoration: none; }
.offer .btn { display: flex; min-height: 56px; font-size: 17px; max-width: 420px; margin-left: auto; margin-right: auto; }
.fine { font-size: 11.5px; color: var(--muted); text-align: center; margin: 11px 0 0; text-shadow: 0 1px 8px #000, 0 0 2px #000; }

.also { text-align: center; padding-top: 2px; }
.also p { font-size: 13px; color: var(--dim); margin: 0 0 11px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.chips span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .05em; padding: 6px 11px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--muted); }

.gcard { border: 1px solid rgba(157,251,193,.28); border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.guar { position: relative; overflow: hidden; border: 0; border-radius: 0; background: #07090f url(/assets/shots/screen-mobile.webp) center / cover no-repeat; padding: 26px 18px 22px; text-align: center; }
.guar::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 62% 78% at 50% 48%, rgba(3,5,10,.94), rgba(3,5,10,.78) 55%, rgba(3,5,10,.5)); }
.guar > * { position: relative; }
.guar h2 { text-shadow: 0 2px 14px rgba(0,0,0,.95); }
.guar__def { color: var(--muted); text-shadow: 0 1px 8px rgba(0,0,0,.95); }
.guar__k { font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--green); }
.guar h2 { font-size: 21px; line-height: 1.25; letter-spacing: -.025em; margin: 8px 0 10px; font-weight: 700; }
.guar__def { font-family: var(--mono); font-size: 11px; color: var(--dim); margin: 0 0 16px; }
.guar .btn { display: inline-flex; min-width: 240px; }
footer { padding: 24px 0 36px; text-align: center; font-size: 11.5px; color: var(--dim); border-top: 1px solid var(--line); margin-top: 16px; }

@media (min-width: 780px) {
  :root { --k: 1; }
  .hero { grid-template-columns: 1fr 48%; gap: 20px; padding-top: 10px; }
  .btn { display: inline-flex; min-width: 240px; }
  .under { font-size: 11px; }
  .stage { height: 520px; }
  .phone { width: 236px; height: 486px; margin: -243px 0 0 -130px; border-radius: 34px; padding: 9px; }
  .screen { inset: 9px; border-radius: 27px; }
  .fly img { width: 50px; height: 50px; margin: -25px 0 0 -25px; border-radius: 11px; padding: 5px; }
  .tiles { grid-template-columns: repeat(3, 1fr); align-items: start; }   /* no dead space under short tiles */
  .pair { display: contents; }
  .tile--sm { padding: 14px; } .tile--sm h3 { font-size: 17px; margin-bottom: 11px; } .tile--sm .foot { font-size: 10px; }
  .tiers { gap: 12px; }
  .offer { background-image: url(/assets/shots/wins-wide.webp); }
  .guar { background-image: url(/assets/shots/screen-wide.webp); padding: 34px 24px 28px; }
  .guar h2 { font-size: 24px; max-width: 620px; margin-left: auto; margin-right: auto; }
  .tier { padding: 16px 12px 14px; } .tier--best { padding: 22px 12px 18px; }
  .tier__n { font-size: 15px; } .tier--best .tier__n { font-size: 18px; }
  .tier__d { font-size: 11px; } .tier__now { font-size: 20px; } .tier--best .tier__now { font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .dot, .fly img { animation: none; }
  .fly img { opacity: .9; transform: translate(calc(var(--tx) * var(--k)), calc(var(--ty) * var(--k))); }
  .screen.fuzz .shot.on, .screen.fuzz::after { animation: none; }
  .shot { transition: opacity .35s ease; }
  .btn { transition: none; }
}

/* ---------- progress bar: intro, how, offer (gold), guarantee ---------- */
.prog { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; padding: 9px 22px calc(5px + env(safe-area-inset-bottom)); background: rgba(6,8,13,.84); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
.prog__line { position: relative; height: 3px; border-radius: 3px; background: var(--line-2); margin: 3px 6px 20px; }
.prog__fill { position: absolute; left: 0; top: 0; height: 100%; width: 0; border-radius: 3px; background: linear-gradient(90deg, var(--purple), var(--green)); }
.prog__stop { position: absolute; top: 50%; transform: translate(-50%,-50%); text-decoration: none; text-align: center; padding: 16px 14px; margin: -16px -14px; }
.prog__stop b { display: block; width: 11px; height: 11px; margin: 0 auto; border-radius: 50%; background: var(--bg); border: 2px solid var(--line-2); transition: background .2s, border-color .2s; }
.prog__stop.done b, .prog__stop.on b { border-color: var(--green); background: var(--green); }
.prog__stop span { position: absolute; left: 50%; top: 29px; transform: translateX(-50%); font-family: var(--mono); font-size: 8.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--dim); white-space: nowrap; }
.prog__stop.on span { color: var(--text); }
.prog__stop--offer b { width: 18px; height: 18px; border-color: var(--gold); background: var(--gold); display: grid; place-items: center; animation: gift 2.2s infinite; }
.prog__stop--offer b svg { width: 11px; height: 11px; }
.prog__stop--offer span { color: var(--gold); font-weight: 700; }
.prog__stop--offer.done b, .prog__stop--offer.on b { border-color: var(--gold-hot); background: var(--gold-hot); }
@keyframes gift { 0%{box-shadow:0 0 0 0 rgba(245,167,66,.6)} 70%{box-shadow:0 0 0 9px rgba(245,167,66,0)} 100%{box-shadow:0 0 0 0 rgba(245,167,66,0)} }
@media (min-width: 780px) { .prog { padding-left: max(22px, calc(50% - 530px)); padding-right: max(22px, calc(50% - 530px)); } .prog__stop span { font-size: 9.5px; } }
@media (prefers-reduced-motion: reduce) { .prog__stop--offer b { animation: none; } }

/* ---------- offer: backglow on every size ---------- */
#offer { position: relative; isolation: isolate; }
#offer::before { content: ""; position: absolute; z-index: -1; left: 0; right: 0; top: -60px; bottom: -60px; background: radial-gradient(72% 72% at 50% 50%, rgba(245,167,66,.55), rgba(245,167,66,.16) 48%, transparent 74%); filter: blur(28px); animation: breathe 3.8s ease-in-out infinite; pointer-events: none; }
@keyframes breathe { 0%,100% { opacity: .7; transform: scale(.98); } 50% { opacity: 1; transform: scale(1.03); } }
.offer { box-shadow: 0 0 0 1px rgba(245,167,66,.35), 0 0 120px rgba(245,167,66,.45); }
.offer.hit { animation: hit .7s cubic-bezier(.2,.9,.2,1.3); }
@keyframes hit { 0% { transform: scale(.985); } 45% { transform: scale(1.02); box-shadow: 0 0 0 2px rgba(255,215,154,.8), 0 0 120px rgba(245,167,66,.6); } 100% { transform: none; } }

/* ---------- the community room in a half-width tile ---------- */
@media (max-width: 779px) {
  .pair .disc { padding: 8px 7px 6px; }
  .pair .dm { gap: 7px; padding: 3px 0; }
  .pair .dm img { width: 22px; height: 22px; }
  .pair .dm div { font-size: 11px; line-height: 1.3; }
  .pair .dm b { font-size: 10.5px; }
  .pair .dm b s { display: none; }
  .pair .disc__top { font-size: 10px; padding-bottom: 6px; margin-bottom: 6px; }
}

/* ---------- mobile-only flourish when the bar reaches the offer ---------- */
.rip { position: fixed; inset: 0; z-index: 60; pointer-events: none; display: none; overflow: hidden; }
.rip.go { display: block; }
.rip__sweep { position: absolute; top: -10%; bottom: -10%; width: 42%; left: -50%; background: linear-gradient(90deg, transparent, rgba(245,167,66,.16), rgba(255,215,154,.42), rgba(245,167,66,.16), transparent); filter: blur(5px); transform: skewX(-16deg); }
.rip.go .rip__sweep { animation: sweep .95s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes sweep { to { left: 112%; } }
.rip i.p { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-hot); box-shadow: 0 0 8px rgba(245,167,66,.9); animation: spark 1s cubic-bezier(.2,.7,.3,1) forwards; }
@keyframes spark { 0% { transform: translate(0,0) scale(1); opacity: 1; } 100% { transform: translate(var(--dx), var(--dy)) scale(.25); opacity: 0; } }
.prog__stop--offer.jump b { animation: jump .7s cubic-bezier(.2,.9,.2,1.4); }
@keyframes jump { 0% { transform: scale(1); } 40% { transform: scale(1.7) rotate(-8deg); } 100% { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { #offer::before, .offer.hit, .rip.go .rip__sweep, .rip i.p, .prog__stop--offer.jump b { animation: none; } }

/* ---------- trust row under the hero button ---------- */
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px 14px; margin: 4px 0 8px; }
.trust span { font-family: var(--mono); font-size: 9.5px; letter-spacing: .05em; color: var(--dim); display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.trust span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

/* ---------- live strip: real feed rows, edge-cached, hidden if it fails ---------- */
.live { display: flex; align-items: center; gap: 10px; margin: 6px 0 2px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel); padding: 7px 10px; overflow: hidden; }
.live__k { flex: none; display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.live__track { flex: 1; min-width: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.live__row { display: flex; gap: 22px; width: max-content; animation: tick 46s linear infinite; }
.live:hover .live__row { animation-play-state: paused; }
.live__i { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 10.5px; white-space: nowrap; color: var(--muted); }
.live__i u { text-decoration: none; font-size: 8.5px; font-weight: 700; letter-spacing: .08em; padding: 2px 5px; border-radius: 4px; background: rgba(146,20,241,.16); color: var(--purple-lt); }
.live__i b { color: var(--green); font-weight: 700; }
.live__i s { text-decoration: none; color: var(--dim); }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- sections under the offer ---------- */
.sec__head { margin: 0 0 12px; }
.sec__head h2 { font-size: 22px; letter-spacing: -.028em; margin: 0; font-weight: 700; }
.sec__head p { margin: 4px 0 0; font-size: 13px; color: var(--dim); }
.fine a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

/* the All Access column is one continuous gold box, header included */


.last { text-align: center; padding-top: 6px; }
.last .btn { display: inline-flex; min-width: 260px; }

.ft { padding: 26px 0 40px; border-top: 1px solid var(--line); margin-top: 18px; text-align: center; }
.ft__brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 650; font-size: 15px; }
.ft__brand img { width: 22px; height: 22px; }
.ft__line { margin: 6px 0 10px; font-size: 12.5px; color: var(--muted); }
.ft__links { display: flex; justify-content: center; gap: 10px; font-family: var(--mono); font-size: 11px; color: var(--dim); }
.ft__links a { color: var(--muted); text-decoration: none; }
.ft__links a:hover { color: var(--text); }
.ft__legal { margin: 12px 0 0; font-family: var(--mono); font-size: 10px; color: var(--dim); letter-spacing: .04em; }

@media (min-width: 780px) {
  .sec__head h2 { font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) { .live__row { animation: none; } }

/* ---------- scroll-in reveals: transform + opacity only ---------- */
[data-reveal].in > :nth-child(2) { transition-delay: .05s; } [data-reveal].in > :nth-child(3) { transition-delay: .12s; }
[data-reveal].in > :nth-child(4) { transition-delay: .19s; } [data-reveal].in > :nth-child(5) { transition-delay: .26s; }
[data-reveal].in > :nth-child(6) { transition-delay: .33s; } [data-reveal].in > :nth-child(7) { transition-delay: .40s; }
[data-reveal].in > :nth-child(8) { transition-delay: .47s; } [data-reveal].in > :nth-child(9) { transition-delay: .54s; }
[data-reveal].in > :nth-child(n+10) { transition-delay: .6s; }

/* ---------- after you buy: a timeline that draws itself ---------- */
.tl { position: relative; display: grid; gap: 14px; padding-left: 2px; }
.tl__line { position: absolute; left: 14px; top: 16px; bottom: 16px; width: 2px; border-radius: 2px; background: linear-gradient(180deg, var(--gold), var(--green)); transform-origin: top; transform: scaleY(0); transition: transform 1.1s var(--ease) .1s; }
.tl.in .tl__line { transform: scaleY(1); }
.tstep { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; position: relative; }
.tstep b { width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; font-family: var(--mono); font-size: 12.5px; font-weight: 700; box-shadow: 0 0 0 4px var(--bg); position: relative; z-index: 1; }
.tstep__body { border: 1px solid var(--line); border-radius: 14px; background: var(--panel); padding: 13px 14px; min-width: 0; }
.tstep h3 { margin: 0; font-size: 15.5px; letter-spacing: -.015em; font-weight: 650; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; }
.tstep h3 s { text-decoration: none; font-family: var(--mono); font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--green); }
.tstep p { margin: 4px 0 10px; font-size: 13px; color: var(--muted); line-height: 1.45; }
.mini { display: inline-flex; align-items: center; gap: 8px; max-width: 100%; padding: 8px 11px; border-radius: 10px; background: var(--bg); border: 1px solid var(--line-2); font-family: var(--mono); font-size: 11px; color: var(--muted); }
.mini em { font-style: normal; color: var(--gold-hot); font-weight: 700; }
.mini u { text-decoration: none; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: var(--green); border: 1px solid rgba(157,251,193,.35); padding: 2px 6px; border-radius: 999px; }
.mini .ok { width: 16px; height: 16px; border-radius: 50%; background: var(--green); position: relative; flex: none; transform: scale(0); transition: transform .35s var(--ease) .9s; }
.mini .ok::after { content: ""; position: absolute; left: 5px; top: 2.5px; width: 4px; height: 8px; border: solid var(--ink); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.tl.in .mini .ok { transform: scale(1); }
.avs { display: inline-flex; margin-left: 2px; }
.avs img { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -6px; background: #1e1f22; transform: scale(0); transition: transform .3s var(--ease); }
.avs img:first-child { margin-left: 0; }
.tl.in .avs img:nth-child(1) { transform: scale(1); transition-delay: 1.0s; } .tl.in .avs img:nth-child(2) { transform: scale(1); transition-delay: 1.12s; } .tl.in .avs img:nth-child(3) { transform: scale(1); transition-delay: 1.24s; }
.mini--chat { display: flex; flex-direction: column; align-items: stretch; gap: 6px; font-family: Inter, sans-serif; font-size: 12.5px; padding: 8px; }
.mini--chat .you { align-self: flex-end; background: var(--purple); color: #fff; padding: 6px 10px; border-radius: 12px 12px 3px 12px; max-width: 100%; }
.mini--chat .you .caret { display: inline-block; width: 2px; height: 12px; background: #fff; margin-left: 2px; vertical-align: -2px; animation: blink 1s steps(2) infinite; }
.mini--chat .bot { align-self: flex-start; background: #11151f; color: var(--muted); padding: 6px 10px; border-radius: 12px 12px 12px 3px; border-left: 2px solid var(--green); opacity: 0; transform: translateY(4px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.mini--chat .bot.show { opacity: 1; transform: none; }
@keyframes blink { to { opacity: 0; } }

/* ---------- faq: an accordion that actually moves ---------- */
.q { border: 1px solid var(--line); border-radius: 12px; background: var(--panel); margin-bottom: 8px; overflow: hidden; transition: border-color .2s; }
.q.open { border-color: rgba(245,167,66,.45); }
.q__b { width: 100%; text-align: left; background: none; border: 0; color: var(--text); font-family: inherit; font-size: 15px; font-weight: 600; padding: 14px; min-height: 48px; display: flex; justify-content: space-between; align-items: center; gap: 12px; cursor: pointer; }
.q__b i { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(245,167,66,.45); position: relative; transition: transform .3s var(--ease), background .2s; }
.q__b i::before, .q__b i::after { content: ""; position: absolute; background: var(--gold); left: 50%; top: 50%; transform: translate(-50%,-50%); }
.q__b i::before { width: 10px; height: 2px; } .q__b i::after { width: 2px; height: 10px; }
.q.open .q__b i { transform: rotate(45deg); background: rgba(245,167,66,.12); }
.q__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s var(--ease); }
.q.open .q__a { grid-template-rows: 1fr; }
.q__a > div { overflow: hidden; }
.q__a p { margin: 0; padding: 0 14px 14px; font-size: 14px; color: var(--muted); line-height: 1.55; }

@media (min-width: 780px) {
  .tl { grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 0; }
  .tl__line { left: 15px; right: 15px; top: 15px; bottom: auto; width: auto; height: 2px; background: linear-gradient(90deg, var(--gold), var(--green)); transform-origin: left; transform: scaleX(0); }
  .tl.in .tl__line { transform: scaleX(1); }
  .tstep { grid-template-columns: 1fr; align-content: start; }   /* stretched rows were pushing shorter cards down */
  .tstep b { margin-bottom: 10px; }
  .faq { columns: 2; column-gap: 12px; }
  .q { break-inside: avoid; }
}
@media (prefers-reduced-motion: reduce) {
  .mini--chat .you .caret { animation: none; }
}

/* ---------- plan comparison: All Access is one continuous gold box ---------- */
.cmp { border: 0; border-top: 1px solid var(--line); border-radius: 0; background: var(--panel); padding: 10px 10px 10px 0; overflow: hidden; }
.cmp__row { display: grid; grid-template-columns: minmax(0,1fr) 44px 44px 84px; align-items: stretch; border-top: 1px solid var(--line); }
.cmp__row--head { border-top: 0; }
.cmp__row > span { align-self: center; padding: 10px 8px 10px 12px; font-size: 12.5px; line-height: 1.35; color: var(--muted); }
.c { display: flex; align-items: center; justify-content: center; padding: 10px 0; }
.c b { font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--dim); }
.c b em { font-style: normal; } .c b .sm { display: none; }
.c i { flex: none; width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--line-2); position: relative; }
.c i.y { border-color: rgba(157,251,193,.5); background: rgba(157,251,193,.14); }
.c i.y::after { content: ""; position: absolute; left: 5px; top: 3px; width: 4px; height: 8px; border: solid var(--green); border-width: 0 2px 2px 0; transform: rotate(45deg) scale(0); transition: transform .3s var(--ease) .35s; }
[data-reveal].in .c i.y::after { transform: rotate(45deg) scale(1); }
.c--best { background: rgba(245,167,66,.09); border-left: 1px solid rgba(245,167,66,.6); border-right: 1px solid rgba(245,167,66,.6); }
.cmp__row--head .c--best { background: var(--gold); border-color: var(--gold); border-radius: 10px 10px 0 0; }
.cmp__row--head .c--best b { color: var(--ink); font-size: 10px; letter-spacing: .1em; }
.cmp__row:last-child .c--best { border-bottom: 1px solid rgba(245,167,66,.6); border-radius: 0 0 10px 10px; }
.c--best i { width: 21px; height: 21px; border-width: 1.5px; }
.c--best i.y { background: rgba(157,251,193,.22); border-color: var(--green); box-shadow: 0 0 12px rgba(157,251,193,.28); }
.c--best i.y::after { left: 7px; top: 4px; width: 5px; height: 10px; }
@media (max-width: 779px) { .c b .lg { display: none; } .c b .sm { display: inline; } }
@media (min-width: 780px) {
  .cmp__row { grid-template-columns: minmax(0,1fr) 110px 110px 170px; }
  .cmp__row > span { font-size: 13.5px; padding: 12px 8px 12px 18px; }
  .c { padding: 12px 0; } .c b { font-size: 10px; } .cmp__row--head .c--best b { font-size: 11px; }
}

/* ---------- the price never leaves the screen ---------- */
.sticky { position: fixed; left: 12px; right: 12px; bottom: calc(52px + env(safe-area-inset-bottom)); z-index: 55; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 10px 9px 14px; border-radius: 14px; background: rgba(11,14,22,.96); border: 1px solid rgba(245,167,66,.55); box-shadow: 0 14px 40px rgba(0,0,0,.6), 0 0 30px rgba(245,167,66,.18); text-decoration: none; color: var(--text); transform: translateY(20px); opacity: 0; transition: transform .28s var(--ease), opacity .28s var(--ease); }
.sticky[hidden] { display: flex; pointer-events: none; }
.sticky.show { transform: none; opacity: 1; pointer-events: auto; }
.sticky__l { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.sticky__l b { font-size: 13.5px; font-weight: 700; }
.sticky__l s { text-decoration: none; font-family: var(--mono); font-size: 10.5px; color: var(--gold-hot); }
.sticky__b { flex: none; background: linear-gradient(135deg, var(--gold-hot), var(--gold) 52%, #e08f2a); color: var(--ink); font-weight: 700; font-size: 14px; padding: 10px 16px; border-radius: 10px; }
@media (min-width: 780px) { .sticky { left: auto; right: 24px; bottom: 64px; width: 300px; } }

/* ---------- a peek at the price halfway through the plan ---------- */

/* ---------- the offer is a speed bump, not another card ---------- */
#offer { scroll-margin-top: 10px; padding: 26px 0; }
#guarantee { scroll-margin-top: 10px; }
#offer::after { content: ""; position: absolute; z-index: -2; left: 50%; width: 100vw; transform: translateX(-50%); top: 0; bottom: 0; background: linear-gradient(180deg, transparent, rgba(245,167,66,.07) 18%, rgba(245,167,66,.07) 82%, transparent); border-top: 1px solid rgba(245,167,66,.18); border-bottom: 1px solid rgba(245,167,66,.18); }
.offer__k { font-size: 10px; }
.tier__then { display: block; font-family: var(--mono); font-size: 9px; color: var(--dim); margin-top: 2px; }
.tier__day { display: block; font-family: var(--mono); font-size: 9.5px; color: var(--green); margin-top: 3px; letter-spacing: .02em; }
.offer__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 12px; }
.offer__badges span { font-family: var(--mono); font-size: 9.5px; letter-spacing: .05em; color: var(--muted); border: 1px solid var(--line-2); border-radius: 999px; padding: 5px 9px; display: inline-flex; align-items: center; gap: 5px; }
.offer__badges span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
@media (min-width: 780px) { #offer { padding: 40px 0; } }
.prog__stop--offer span { top: 33px; }
.sticky { padding: 7px 8px 7px 13px; } .sticky__b { padding: 9px 14px; font-size: 13.5px; }

/* ---------- gold ticket: top-right, arrives after a delay, tap applies the code ---------- */
.tkt { position: fixed; top: calc(10px + env(safe-area-inset-top)); right: 12px; z-index: 58; display: flex; align-items: center; gap: 9px; min-height: 44px; padding: 7px 14px 7px 12px; border: 0; border-radius: 10px; cursor: pointer; font-family: inherit; color: var(--ink); text-align: left;
  background: linear-gradient(135deg, var(--gold-hot) 0%, var(--gold) 46%, #e2902f 100%); box-shadow: 0 8px 24px rgba(245,167,66,.4), 0 0 0 1px rgba(255,226,178,.6) inset;
  -webkit-mask-image: radial-gradient(circle at 0 50%, transparent 0 7px, #000 7px), radial-gradient(circle at 100% 50%, transparent 0 7px, #000 7px); mask-image: radial-gradient(circle at 0 50%, transparent 0 7px, #000 7px), radial-gradient(circle at 100% 50%, transparent 0 7px, #000 7px); -webkit-mask-composite: source-in; mask-composite: intersect;
  transform: translate(120%, 0); opacity: 0; transition: transform .5s cubic-bezier(.2,.9,.2,1.15), opacity .3s ease; }
.tkt.in { transform: none; opacity: 1; animation: nudge 6s ease-in-out 3s infinite; }
@keyframes nudge { 0%, 92%, 100% { transform: none; } 94% { transform: rotate(-3deg); } 96% { transform: rotate(3deg); } 98% { transform: rotate(-2deg); } }
.tkt__i { flex: none; margin-left: 4px; }
.tkt__c { display: flex; flex-direction: column; line-height: 1.1; padding-left: 9px; border-left: 2px dashed rgba(21,13,2,.34); }
.tkt__a { font-size: 15px; font-weight: 800; letter-spacing: -.01em; }
.tkt__l { font-family: var(--mono); font-style: normal; font-size: 8.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
.tkt__s { display: none; font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .08em; padding-left: 9px; border-left: 2px dashed rgba(21,13,2,.34); }
.tkt__s u { text-decoration: none; }
.tkt__s em { font-style: normal; font-weight: 500; opacity: .75; margin-left: 4px; }
.tkt.done { cursor: default; animation: none; min-height: 36px; padding: 5px 12px 5px 10px; }
.tkt.done .tkt__c { display: none; } .tkt.done .tkt__s { display: block; }
.tkt:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
@media (min-width: 780px) { .tkt { top: 16px; right: 20px; } }
@media (prefers-reduced-motion: reduce) { .tkt { transition: opacity .2s ease; transform: none; } .tkt.in { animation: none; } }
