/* ═══════════════════════════════════════════════════════════════
   TWJ TRADES Ad Funnel Landing Page
   Brand: navy/blue chevrons + gold arrow (from twjtrades.com logo)
   Blue #155EEF · Cyan #2fbcf0 · Gold #d7a62b · Ink #060a12
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ink: #060a12;
  --ink-2: #0a0f1a;
  --panel: #0c1322;
  --panel-2: #101a2e;
  --line: rgba(84, 118, 190, .16);
  --blue: #155eef;
  --blue-hi: #3b82f6;
  --cyan: #2fbcf0;
  --gold: #d7a62b;
  --gold-hi: #f0c351;
  --text: #eef2f9;
  --muted: #93a1b8;
  --grad-blue: linear-gradient(100deg, #155eef 0%, #2fbcf0 100%);
  --glow-blue: 0 10px 40px -8px rgba(21, 94, 239, .55);
  --radius: 18px;
  --r-btn: 10px;
  --r-tag: 6px;
  --z-nav: 50;
  --font-display: 'Oswald', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1160px, 100% - 40px); margin-inline: auto; }
.center { text-align: center; margin-top: 44px; }
.hidden-field { position: absolute; left: -9999px; opacity: 0; }

/* Grid backdrop, blue-tinted (Trading Pool-style, in TWJ colours) */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    linear-gradient(rgba(47, 108, 232, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 108, 232, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}
main, .footer, .nav, .announce, .ticker { position: relative; z-index: 1; }

::selection { background: rgba(21, 94, 239, .45); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-family: var(--font-body);
  border: 0; border-radius: var(--r-btn); cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn-primary {
  background: var(--grad-blue); color: #fff;
  box-shadow: var(--glow-blue), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn-primary:hover { box-shadow: 0 14px 48px -6px rgba(21, 94, 239, .75), inset 0 1px 0 rgba(255,255,255,.25); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255, 255, 255, .04); color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .09); border-color: rgba(120, 160, 235, .4); }
.btn-ghost svg { color: #8397f5; }
.btn-discord { background: #5865f2; color: #fff; }
.btn-discord:hover { background: #6a76f5; transform: translateY(-1px); }
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ── Announcement bar ────────────────────────────────────────── */
.announce {
  background: linear-gradient(90deg, rgba(21, 94, 239, .18), rgba(47, 188, 240, .12));
  border-bottom: 1px solid var(--line);
  padding: 9px 16px; text-align: center; font-size: 13.5px; color: #c3cfe4;
}
.announce strong { color: #fff; }
.announce a {
  color: var(--cyan); font-weight: 700; margin-left: 8px;
  display: inline-flex; align-items: center; gap: 4px;
}
.announce a svg { width: 14px; height: 14px; transition: transform .2s ease; }
.announce a:hover svg { transform: translateX(3px); }

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(6, 10, 18, .78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(6, 10, 18, .92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo img { width: 22px; height: 44px; object-fit: contain; }
.nav-logo span {
  font-family: var(--font-display); font-size: 21px; font-weight: 600;
  letter-spacing: .06em; color: #fff;
}
.nav-logo em { font-style: normal; color: var(--cyan); }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 14.5px; font-weight: 600; color: #b7c2d8; position: relative;
  padding: 6px 0; transition: color .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--grad-blue); border-radius: 2px; transition: right .25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  padding: 10px; cursor: pointer;
}
.nav-burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .25s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column; gap: 4px; padding: 12px 20px 20px;
  border-top: 1px solid var(--line);
}
.nav-mobile a { padding: 12px 6px; font-weight: 600; color: #cdd6e6; border-radius: 10px; }
.nav-mobile a:hover { background: rgba(255, 255, 255, .05); color: #fff; }
.nav-mobile .btn { margin-top: 10px; justify-content: center; padding: 14px; }
.nav-mobile.open { display: flex; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero { position: relative; padding: 84px 0 72px; text-align: center; overflow: hidden; }
.hero-glow {
  position: absolute; inset: -20% -10% auto; height: 130%;
  background:
    radial-gradient(46% 42% at 50% 4%, rgba(21, 94, 239, .28), transparent 65%),
    radial-gradient(30% 34% at 82% 30%, rgba(47, 188, 240, .12), transparent 70%),
    radial-gradient(26% 30% at 14% 36%, rgba(215, 166, 43, .07), transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(52px, 9.6vw, 118px); line-height: .98; letter-spacing: .01em;
  margin: 30px 0 26px;
}
.hero-title span { display: block; }
.hero-title .line-1 { color: #fff; }
.hero-title .line-2 { color: var(--cyan); font-size: 1.28em; }
.hero-title .r8 {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold) 18%, #fff2c2 42%, var(--gold-hi) 50%, #fff2c2 58%, var(--gold) 82%);
  background-size: 260% 100%;
  background-position: var(--r8-shine, 100%) 0;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
  filter: drop-shadow(0 2px 18px rgba(215, 166, 43, .45));
  animation: r8-shine 3.4s ease-in-out infinite;
}
.hero-title.r8-tilt .r8 { animation: none; }
@keyframes r8-shine {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title .r8 { animation: none; -webkit-text-fill-color: var(--gold); }
}
.hero-sub { max-width: 660px; margin: 0 auto 26px; color: var(--muted); font-size: clamp(16px, 2.4vw, 19px); }
.hero-sub strong { color: #dfe7f5; }
.hero-points { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 30px; margin-bottom: 36px; }
.hero-points span { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: #b9c4da; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex: 0 0 auto; }
.dot-green { background: #34d399; }
.dot-live { background: #f23f42; margin-right: 4px; }
.dot-blue { background: var(--cyan); }
.dot-gold { background: var(--gold-hi); }
.hero-ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 64px; }

/* VSL */
/* Animated frame: a conic gradient ring spins around the video
   (crisp rim + blurred halo), HUD corner brackets pulse, and a
   light streak sweeps across every few seconds. All FX layers are
   pointer-events-free so the Wistia player stays fully clickable. */
@property --vsl-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.vsl-wrap { position: relative; max-width: 860px; margin: 0 auto; }

/* R8 moment: CTAs shake + glow gold, video frame pulses gold */
.cta-r8 { animation: cta-shake .55s ease-in-out 2, cta-goldglow 2.6s ease-out; }
@keyframes cta-shake {
  0%, 100% { transform: translateX(0) rotate(0); }
  15% { transform: translateX(-5px) rotate(-1deg); }
  35% { transform: translateX(5px) rotate(1.2deg); }
  55% { transform: translateX(-4px) rotate(-.8deg); }
  75% { transform: translateX(3px) rotate(.6deg); }
}
@keyframes cta-goldglow {
  0% { box-shadow: 0 0 0 0 rgba(240, 195, 81, .8); }
  40% { box-shadow: 0 0 34px 8px rgba(240, 195, 81, .55); }
  100% { box-shadow: 0 0 0 0 rgba(240, 195, 81, 0); }
}
.vsl-r8 .vsl { animation: vsl-goldpulse 2.6s ease-out; }
@keyframes vsl-goldpulse {
  0% { box-shadow: 0 0 0 0 rgba(240, 195, 81, 0); }
  30% { box-shadow: 0 0 60px -4px rgba(240, 195, 81, .65); }
  100% { box-shadow: 0 0 0 0 rgba(240, 195, 81, 0); }
}
@media (prefers-reduced-motion: reduce) { .cta-r8, .vsl-r8 .vsl { animation: none; } }

/* ── Scarcity badge under the VSL + hero CTA morph to gold "JOIN NOW" ── */
/* square box that hangs off the bottom of the video, flush = "attached" */
.vsl-spots {
  display: flex; justify-content: center; margin-top: 0;
  opacity: 0; transform: translateY(9px);
  transition: opacity .5s ease, transform .5s ease; pointer-events: none;
}
.vsl-spots.show { opacity: 1; transform: translateY(0); }
.vsl-spots-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 22px; border-radius: 0 0 13px 13px;
  background: linear-gradient(180deg, rgba(215, 166, 43, .17), rgba(10, 14, 22, .97) 65%);
  border: 1px solid rgba(215, 166, 43, .45); border-top: 0;
  color: var(--gold-hi); font-weight: 700; font-size: 14px; letter-spacing: .01em;
  box-shadow: 0 18px 34px -18px rgba(215, 166, 43, .6);
}
.vsl-spots-pill b { color: #fff; font-size: 15px; }
.vsl-spots-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #ff5a4d; flex: 0 0 auto;
  box-shadow: 0 0 0 0 rgba(255, 90, 77, .6); animation: spot-pulse 1.8s ease-out infinite;
}

/* ── "Just joined" social-proof toast (bottom-right) ── */
.join-toast {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: flex; align-items: center; gap: 13px;
  width: min(330px, calc(100vw - 32px)); padding: 12px 15px 12px 12px;
  background: linear-gradient(158deg, var(--panel-2), var(--panel));
  border: 1px solid rgba(88, 132, 235, .38); border-radius: 15px;
  box-shadow: 0 26px 60px -18px rgba(0, 0, 0, .75);
  opacity: 0; transform: translateY(18px) scale(.97);
  transition: opacity .4s ease, transform .45s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}
.join-toast.show { opacity: 1; transform: translateY(0) scale(1); }
.jt-map {
  position: relative; width: 54px; height: 54px; flex: 0 0 auto; overflow: hidden;
  border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center;
  background:
    linear-gradient(rgba(47, 108, 232, .16) 1px, transparent 1px) 0 0 / 9px 9px,
    linear-gradient(90deg, rgba(47, 108, 232, .16) 1px, transparent 1px) 0 0 / 9px 9px,
    #0a1120;
}
.jt-map img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .45s ease; z-index: 0; }
.jt-map::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(circle at 50% 52%, transparent 20%, rgba(6, 10, 18, .55)); }
.jt-pin { width: 20px; height: 20px; color: #fff; position: relative; z-index: 3; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .85)); }
.jt-radius {
  position: absolute; left: 50%; top: 54%; transform: translate(-50%, -50%); z-index: 2;
  width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .9);
  animation: jt-ping 2.2s ease-out infinite;
}
.jt-radius-2 { animation-delay: 1.1s; }
@keyframes jt-ping {
  0% { width: 6px; height: 6px; opacity: .85; }
  100% { width: 52px; height: 52px; opacity: 0; }
}
.jt-body { min-width: 0; }
.jt-name { font-size: 13.5px; font-weight: 600; color: #dfe7f5; line-height: 1.3; }
.jt-name b { font-weight: 800; color: #fff; }
.jt-loc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.jt-loc b { color: var(--cyan); font-weight: 700; }
@media (prefers-reduced-motion: reduce) {
  .join-toast { transition: opacity .3s ease; transform: none; }
  .join-toast.show { transform: none; }
  .jt-radius { animation: none; }
}
@media (max-width: 560px) {
  .join-toast { right: 10px; left: 10px; bottom: 12px; width: auto; }
}

.cta-morph { position: relative; overflow: hidden; }
.cta-morph::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 0;
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-hi) 50%, var(--gold) 100%);
  opacity: 0; transition: opacity .6s ease;
}
.cta-morph::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 45%; z-index: 2;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: translateX(-160%); opacity: 0; pointer-events: none;
}
.cta-face { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; transition: opacity .45s ease; }
.cta-face-b { position: absolute; inset: 0; justify-content: center; opacity: 0; color: #10131a; letter-spacing: .03em; }
.cta-morph.cta-gold::before { opacity: 1; }
.cta-morph.cta-gold::after { animation: cta-shimmer 1.15s ease-out .35s 1 forwards; }
.cta-morph.cta-gold .cta-face-a { opacity: 0; }
.cta-morph.cta-gold .cta-face-b { opacity: 1; }
.cta-morph.cta-gold {
  box-shadow: 0 14px 44px -8px rgba(215, 166, 43, .6), inset 0 1px 0 rgba(255, 255, 255, .3);
  animation: cta-goldglow 2.4s ease-out;
}
.cta-morph.cta-gold:hover {
  box-shadow: 0 18px 54px -6px rgba(215, 166, 43, .82), inset 0 1px 0 rgba(255, 255, 255, .3);
  transform: translateY(-1px);
}
@keyframes cta-shimmer {
  0% { transform: translateX(-160%); opacity: 0; }
  18% { opacity: 1; }
  100% { transform: translateX(320%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .vsl-spots { transition: none; }
  .cta-morph::before { transition: none; }
  .cta-morph.cta-gold::after, .cta-morph.cta-gold, .vsl-spots-dot { animation: none; }
}
.vsl-wrap::before, .vsl-wrap::after {
  content: ""; position: absolute; inset: -2px; border-radius: 24px;
  background: conic-gradient(from var(--vsl-angle),
    var(--blue), var(--cyan) 30%, var(--gold-hi) 52%, var(--cyan) 74%, var(--blue));
  animation: vsl-spin 7s linear infinite;
}
.vsl-wrap::before { inset: -5px; border-radius: 27px; filter: blur(20px); opacity: .5; }
@keyframes vsl-spin { to { --vsl-angle: 360deg; } }
/* halo flares up once the video actually starts */
.vsl-wrap.vsl-live::before { animation: vsl-spin 7s linear infinite, vsl-ignite 1.4s ease-out; }
@keyframes vsl-ignite {
  0%   { opacity: 0; filter: blur(32px); }
  40%  { opacity: .95; filter: blur(26px); }
  100% { opacity: .5; filter: blur(20px); }
}
.vsl {
  position: relative; z-index: 1;
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 90px -20px rgba(21, 94, 239, .45);
  aspect-ratio: 16 / 9; background: #000;
}
.vsl img, .vsl iframe, .vsl .wistia_embed { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.vsl wistia-player { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
/* Tap-for-sound overlay: covers the muted VSL, unmutes on click, then removes itself */
.vsl-unmute {
  position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%;
  display: grid; place-items: end center; padding-bottom: 22px;
  background: linear-gradient(to top, rgba(6, 10, 18, .5), transparent 42%);
  border: 0; cursor: pointer; transition: opacity .3s ease;
}
.vsl-unmute-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: 999px;
  background: var(--grad-blue); color: #fff; font-weight: 700; font-size: 15px;
  box-shadow: var(--glow-blue), inset 0 1px 0 rgba(255, 255, 255, .25);
  animation: vsl-unmute-pulse 2.2s ease-in-out infinite;
}
.vsl-unmute-badge svg { width: 19px; height: 19px; }
.vsl-unmute.hidden { opacity: 0; pointer-events: none; }
@keyframes vsl-unmute-pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 10px 40px -8px rgba(21, 94, 239, .55); }
  50% { transform: translateY(-3px); box-shadow: 0 16px 50px -6px rgba(21, 94, 239, .8); }
}
@media (prefers-reduced-motion: reduce) { .vsl-unmute-badge { animation: none; } }

/* Sticky mini-player: the .vsl-wrap keeps its space (JS-set height) while
   the inner .vsl floats fixed at the top — no layout jump when it toggles */
.vsl-float-close {
  position: absolute; top: 7px; left: 7px; z-index: 5; padding: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(6, 10, 18, .72); border: 1px solid rgba(255, 255, 255, .22); color: #fff;
  display: none; place-items: center; cursor: pointer;
}
.vsl-float-close svg { width: 12px; height: 12px; }
/* clear the reveal transform so the fixed child anchors to the viewport, not the wrap */
.vsl-wrap.vsl-float { transform: none !important; }
.vsl-wrap.vsl-float .vsl {
  position: fixed; top: 84px; right: 14px; z-index: 55;
  width: 250px; max-width: 46vw;
  box-shadow: 0 20px 50px -14px rgba(0, 0, 0, .78), 0 0 0 1px rgba(88, 132, 235, .45);
  animation: vsl-float-in .38s cubic-bezier(.2, .8, .2, 1);
}
.vsl-wrap.vsl-float .vsl-float-close { display: grid; }
@keyframes vsl-float-in {
  from { opacity: 0; transform: translateY(-14px) scale(.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 560px) {
  .vsl-wrap.vsl-float .vsl { top: 80px; right: 10px; width: 172px; max-width: 52vw; }
}
@media (prefers-reduced-motion: reduce) { .vsl-wrap.vsl-float .vsl { animation: none; } }
.vsl-fx { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; border-radius: inherit; }
.vsl-corners {
  --c: rgba(47, 188, 240, .9);
  position: absolute; inset: 14px;
  background:
    linear-gradient(var(--c), var(--c)) top left     / 26px 2px,
    linear-gradient(var(--c), var(--c)) top left     / 2px 26px,
    linear-gradient(var(--c), var(--c)) top right    / 26px 2px,
    linear-gradient(var(--c), var(--c)) top right    / 2px 26px,
    linear-gradient(var(--c), var(--c)) bottom left  / 26px 2px,
    linear-gradient(var(--c), var(--c)) bottom left  / 2px 26px,
    linear-gradient(var(--c), var(--c)) bottom right / 26px 2px,
    linear-gradient(var(--c), var(--c)) bottom right / 2px 26px;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 6px rgba(47, 188, 240, .65));
  animation: vsl-corners 3.2s ease-in-out infinite;
}
@keyframes vsl-corners { 0%, 100% { opacity: .35; } 50% { opacity: .95; } }
.vsl-shine {
  position: absolute; top: -20%; bottom: -20%; left: 0; width: 30%;
  background: linear-gradient(105deg, transparent,
    rgba(255, 255, 255, .13) 45%, rgba(47, 188, 240, .18) 55%, transparent);
  mix-blend-mode: screen;
  transform: translateX(-140%) skewX(-18deg);
  animation: vsl-sweep 6s ease-in-out 1.2s infinite;
}
@keyframes vsl-sweep {
  0%   { transform: translateX(-140%) skewX(-18deg); }
  18%  { transform: translateX(480%) skewX(-18deg); }
  100% { transform: translateX(480%) skewX(-18deg); }
}

/* ── Ticker ──────────────────────────────────────────────────── */
.ticker {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(21, 94, 239, .10), rgba(47, 188, 240, .05) 50%, rgba(21, 94, 239, .10));
  overflow: hidden; padding: 15px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track { display: flex; width: max-content; animation: ticker 34s linear infinite; }
.ticker-set { display: flex; align-items: center; }
.ticker-set span {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 34px; font-family: var(--font-display); font-size: 15.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: #cfd9ea; white-space: nowrap;
}
.ticker-set span svg { width: 17px; height: 17px; color: var(--gold-hi); flex: 0 0 auto; }
.ticker-set span:nth-child(even) svg { color: var(--cyan); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── Sections ────────────────────────────────────────────────── */
.section { padding: 104px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--muted); margin-top: 18px; font-size: 17px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: var(--r-tag);
  background: rgba(21, 94, 239, .12); border: 1px solid rgba(72, 128, 245, .28);
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #cdd9f2;
}
.pill svg { width: 14px; height: 14px; color: var(--cyan); }
h2 {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(30px, 4.6vw, 46px); line-height: 1.12; letter-spacing: .01em;
  margin-top: 18px; color: #fff;
}
h2 em { font-style: normal; color: var(--cyan); }

/* ── Story ───────────────────────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 64px; align-items: center; }
.story-copy h2 { margin-bottom: 22px; }
.story-copy p { color: #b6c1d6; margin-bottom: 16px; }
.story-copy p strong { color: #fff; }
.story-list { list-style: none; margin-top: 26px; display: grid; gap: 13px; }
.story-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; font-size: 15.5px; color: #dfe7f5; }
.story-list svg { width: 20px; height: 20px; color: var(--gold-hi); flex: 0 0 auto; margin-top: 2px; }
.story-card {
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: 26px; padding: 46px 38px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(21, 94, 239, .35);
}
.story-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(21, 94, 239, .22), transparent 70%);
  pointer-events: none;
}
.story-photos { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.story-photo {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line); margin: 0; aspect-ratio: 2 / 3;
  box-shadow: 0 30px 80px -30px rgba(21, 94, 239, .45);
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: rgba(6, 10, 18, .72); border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-tag); padding: 5px 12px; backdrop-filter: blur(6px);
}
.story-tag-gold {
  color: #0b0d12; border-color: transparent;
  background: linear-gradient(97deg, var(--gold-hi), var(--gold));
}
.story-arrow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-blue); color: #fff;
  border: 3px solid var(--ink);
  box-shadow: var(--glow-blue);
}
.story-arrow svg { width: 22px; height: 22px; }
.story-card-stats { display: grid; gap: 20px; position: relative; }
.story-card-slim { padding: 24px 26px; }
.story-card-slim .story-card-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
.story-card-slim .story-card-stats strong { font-size: 26px; }
.story-card-slim .story-card-stats span { font-size: 11px; }
.story-card-stats div { display: grid; gap: 2px; }
.story-card-stats strong {
  font-family: var(--font-display); font-size: 34px; font-weight: 700; line-height: 1;
  color: #fff;
}
.story-card-stats span { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ── Method ──────────────────────────────────────────────────── */
.method { padding-top: 0; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.method-card {
  position: relative; padding: 38px 30px 34px;
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.method-card:hover { transform: translateY(-5px); border-color: rgba(88, 132, 235, .45); box-shadow: 0 24px 60px -24px rgba(21, 94, 239, .5); }
.method-num {
  font-family: var(--font-display); font-size: 52px; font-weight: 700; line-height: 1;
  color: rgba(120, 170, 250, .4);
}
.method-card h3 { font-size: 20px; font-weight: 800; margin: 16px 0 10px; color: #fff; }
.method-card p { color: var(--muted); font-size: 15px; }

/* ── Track record ────────────────────────────────────────────── */
.track-card {
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: 26px; padding: 34px clamp(18px, 4vw, 44px) 26px;
  box-shadow: 0 40px 100px -40px rgba(21, 94, 239, .4);
}
.track-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.track-legend { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.track-legend i { width: 12px; height: 12px; border-radius: 4px; background: var(--grad-blue); }
.track-years { display: flex; gap: 8px; }
.track-years button {
  padding: 8px 20px; border-radius: var(--r-btn); border: 1px solid var(--line);
  background: transparent; color: var(--muted); font-weight: 700; font-size: 14px;
  font-family: var(--font-body); cursor: pointer; transition: .2s ease;
}
.track-years button:hover { color: #fff; border-color: rgba(88, 132, 235, .5); }
.track-years button.active { background: var(--grad-blue); border-color: transparent; color: #fff; box-shadow: var(--glow-blue); }
.track-chart {
  position: relative; width: 100%; aspect-ratio: 1000 / 520;
}
.track-svg { width: 100%; height: 100%; overflow: visible; }
.track-svg .grid { stroke: var(--line); stroke-width: 1; }
.y-lbl { fill: #5f6d86; font-size: 17px; font-weight: 600; text-anchor: end; font-family: var(--font-body); }
.track-area { fill: url(#areaFill); }
.track-line { fill: none; stroke: url(#lineStroke); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 4px 14px rgba(47, 188, 240, .35)); }
.pt-hit { fill: transparent; cursor: pointer; }
.pt-halo { fill: #2fbcf0; opacity: .18; transform-origin: center; transform-box: fill-box; animation: pt-pulse 2.4s ease-in-out infinite; }
.pt { fill: #2fbcf0; stroke: #0a1120; stroke-width: 3; cursor: pointer; transition: fill .18s ease; }
.pt-play { fill: #fff; pointer-events: none; }
.pt-val { fill: #cfe9fb; font-size: 24px; font-weight: 800; text-anchor: middle; font-family: var(--font-body); }
.pt-month { fill: var(--muted); font-size: 20px; font-weight: 700; letter-spacing: .06em; text-anchor: middle; font-family: var(--font-body); }
.pt-g { outline: none; cursor: pointer; }
.pt-g:hover .pt, .pt-g:focus-visible .pt { fill: var(--gold); filter: drop-shadow(0 0 9px rgba(215, 166, 43, .8)); }
.pt-g:hover .pt-halo, .pt-g:focus-visible .pt-halo { fill: var(--gold); opacity: .28; }
.pt-g:hover .pt-val, .pt-g:focus-visible .pt-val { fill: #fff; }
@keyframes pt-pulse { 0%, 100% { transform: scale(1); opacity: .18; } 50% { transform: scale(1.5); opacity: .06; } }
@media (prefers-reduced-motion: reduce) { .pt-halo { animation: none; } }

/* ── Trade replay modal ── */
.replay-modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 20px; }
.replay-modal[hidden] { display: none; }
.replay-backdrop { position: absolute; inset: 0; background: rgba(4, 8, 16, .82); backdrop-filter: blur(6px); opacity: 0; transition: opacity .25s ease; }
.replay-modal.open .replay-backdrop { opacity: 1; }
.replay-box {
  position: relative; width: min(760px, 100%);
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: 20px; padding: 16px;
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, .8);
  transform: translateY(16px) scale(.98); opacity: 0; transition: transform .28s cubic-bezier(.2,.7,.3,1), opacity .28s ease;
}
.replay-modal.open .replay-box { transform: none; opacity: 1; }
.replay-close {
  position: absolute; top: -14px; right: -14px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--panel-2); border: 1px solid var(--line); color: #fff; font-size: 24px; line-height: 1;
  cursor: pointer; z-index: 2; transition: .2s ease;
}
.replay-close:hover { background: var(--blue); border-color: transparent; }
.replay-media { position: relative; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; background: #05090f; }
.replay-media video, .replay-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.replay-soon { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--muted); }
.replay-soon svg { width: 46px; height: 46px; color: var(--blue-hi); opacity: .8; }
.replay-soon span { font-weight: 700; letter-spacing: .02em; }
.replay-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 16px 6px 6px; }
.replay-meta strong { font-family: var(--font-display); font-size: 20px; text-transform: uppercase; letter-spacing: .02em; }
.replay-r { color: var(--gold-hi); font-weight: 800; font-size: 18px; }
.replay-meta p { flex: 1 1 100%; margin: 2px 0 0; color: var(--muted); font-size: 14.5px; }

.track-note { margin-top: 22px; font-size: 12.5px; color: #6d7a92; text-align: center; }

/* ── Inside (features) ───────────────────────────────────────── */
.inside-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.inside-card {
  padding: 30px 26px;
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.inside-card:hover { transform: translateY(-5px); border-color: rgba(88, 132, 235, .45); box-shadow: 0 24px 60px -24px rgba(21, 94, 239, .5); }
.inside-icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(21, 94, 239, .16); border: 1px solid rgba(72, 128, 245, .3);
  margin-bottom: 18px;
}
.inside-icon svg { width: 24px; height: 24px; color: var(--cyan); }
.inside-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 9px; color: #fff; }
.inside-card p { font-size: 14.5px; color: var(--muted); }

/* ── Discord replica ─────────────────────────────────────────── */
.results { padding-top: 0; }
.discord {
  max-width: 920px; margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(88, 132, 235, .3);
  box-shadow: 0 40px 110px -30px rgba(21, 94, 239, .45);
  background: #313338;
}
.discord-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 13px 18px; background: #232428; border-bottom: 1px solid #1e1f22;
}
.discord-server { display: flex; align-items: center; gap: 12px; }
.discord-server img { width: 36px; height: 36px; border-radius: 50%; }
.discord-server strong { display: block; font-size: 15px; color: #f2f3f5; line-height: 1.25; }
.discord-server span { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: #949ba4; }
.discord-server .dot { width: 7px; height: 7px; }
.discord-channel {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: #949ba4;
  background: #1e1f22; border-radius: 8px; padding: 7px 14px;
}
.discord-channel svg { width: 15px; height: 15px; color: #80848e; }
.discord-chat {
  height: 560px; overflow-y: auto; padding: 20px 6px 20px 0;
  scrollbar-width: thin; scrollbar-color: #1e1f22 #2b2d31;
}
.discord-chat::-webkit-scrollbar { width: 9px; }
.discord-chat::-webkit-scrollbar-track { background: #2b2d31; }
.discord-chat::-webkit-scrollbar-thumb { background: #1a1b1e; border-radius: 8px; }
.dc-divider { display: flex; align-items: center; gap: 10px; margin: 4px 18px 10px; }
.dc-divider::before, .dc-divider::after { content: ""; flex: 1; height: 1px; background: #3f4147; }
.dc-divider span { font-size: 11.5px; font-weight: 700; letter-spacing: .04em; color: #949ba4; text-transform: uppercase; }
.dc-msg { display: flex; gap: 16px; padding: 12px 18px; transition: background .15s ease; }
.dc-msg:hover { background: #2e3035; }
.dc-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto;
  background: var(--av, #5865f2); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 17px;
}
.dc-body { min-width: 0; }
.dc-meta { display: flex; align-items: baseline; flex-wrap: wrap; gap: 9px; margin-bottom: 3px; }
.dc-name { font-weight: 700; font-size: 15.5px; color: var(--nm, #f2f3f5); }
.dc-tag {
  font-size: 10.5px; font-weight: 700; background: #5865f2; color: #fff;
  padding: 1px 6px; border-radius: 4px; letter-spacing: .02em;
}
.dc-meta time { font-size: 11.5px; color: #949ba4; }
.dc-body p { font-size: 15px; color: #dbdee1; margin-bottom: 5px; overflow-wrap: break-word; }
.dc-mention { background: rgba(88, 101, 242, .3); color: #c9cdfb; border-radius: 4px; padding: 0 3px; font-weight: 600; }
.dc-edited { font-size: 11px; color: #949ba4; font-style: normal; }
.dc-attach {
  border-radius: 10px; margin: 8px 0 4px; max-width: min(460px, 100%);
  border: 1px solid #26272b;
}
.dc-reacts { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 7px; }
.dc-reacts span {
  font-size: 13px; padding: 3px 9px; border-radius: 9px;
  background: #2b2d31; border: 1px solid #35373c; color: #dbdee1; cursor: default;
}
.dc-reacts span.me { background: rgba(88, 101, 242, .22); border-color: #5865f2; }
.discord-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding: 15px 20px; background: #232428; border-top: 1px solid #1e1f22;
}
.discord-foot > span { font-size: 14px; color: #b5bac1; font-weight: 500; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq { padding-top: 0; }
.faq-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 26px; align-items: start; }
.faq-list { display: grid; gap: 13px; }
.faq-item {
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: 15px;
  transition: border-color .25s ease;
}
.faq-item[open] { border-color: rgba(88, 132, 235, .45); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 24px; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 16px; color: #eef2f9;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 19px; height: 19px; color: var(--cyan); flex: 0 0 auto; transition: transform .25s ease; }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item div { padding: 0 24px 20px; }
.faq-item p { color: var(--muted); font-size: 15px; }
.faq-card {
  position: sticky; top: 100px;
  background: linear-gradient(165deg, rgba(21, 94, 239, .2), var(--panel) 55%);
  border: 1px solid rgba(88, 132, 235, .35); border-radius: 22px;
  padding: 34px 30px; text-align: center;
}
.faq-card > img { height: 60px; width: auto; margin: 0 auto 18px; }
.faq-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.faq-card > p { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.faq-contact {
  display: flex; align-items: center; gap: 14px; text-align: left;
  background: rgba(255, 255, 255, .045); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 16px; margin-bottom: 12px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.faq-contact:hover { background: rgba(255, 255, 255, .09); border-color: rgba(88, 132, 235, .5); transform: translateY(-2px); }
.faq-contact-icon {
  width: 42px; height: 42px; border-radius: 12px; flex: 0 0 auto;
  background: rgba(21, 94, 239, .18); border: 1px solid rgba(72, 128, 245, .3);
  display: grid; place-items: center;
}
.faq-contact-icon svg { width: 21px; height: 21px; color: var(--cyan); }
.faq-contact > span:nth-child(2) { flex: 1; display: grid; }
.faq-contact strong { font-size: 15px; color: #fff; }
.faq-contact small { font-size: 12.5px; color: var(--muted); }
.faq-contact-arrow { width: 17px; height: 17px; color: var(--muted); }
.faq-au { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--muted); }

/* ── Apply ───────────────────────────────────────────────────── */
.apply { position: relative; overflow: hidden; }
.apply-glow {
  position: absolute; inset: auto -10% -40%; height: 120%;
  background: radial-gradient(50% 55% at 50% 100%, rgba(21, 94, 239, .3), transparent 70%);
  pointer-events: none;
}
.apply-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.apply-copy h2 { margin-bottom: 18px; }
.apply-copy > p { color: var(--muted); font-size: 17px; }
.apply-points { list-style: none; margin-top: 26px; display: grid; gap: 13px; }
.apply-points li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: #dfe7f5; }
.apply-points svg { width: 20px; height: 20px; color: var(--gold-hi); flex: 0 0 auto; }
.apply-form {
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  border: 1px solid rgba(88, 132, 235, .35); border-radius: 24px;
  padding: 38px 34px;
  box-shadow: 0 40px 100px -30px rgba(21, 94, 239, .5);
}
/* ── Join card (pricing) ─────────────────────────────────────── */
.join-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.join-head h3 { margin-bottom: 0 !important; }
.join-badge {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-hi); background: rgba(215, 166, 43, .12);
  border: 1px solid rgba(215, 166, 43, .35); border-radius: var(--r-tag); padding: 5px 12px;
  max-width: 100%;
}
.btn-was { opacity: .6; font-weight: 600; text-decoration-thickness: 1.5px; margin-right: 1px; }
.join-limited {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-hi); background: rgba(215, 166, 43, .12); border: 1px solid rgba(215, 166, 43, .38);
  border-radius: 999px; padding: 5px 13px; margin: 4px 0 10px;
}
.join-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 8px; margin: 6px 0 12px; }
.join-price .join-was { color: #6d7a92; font-weight: 700; font-size: clamp(20px, 6vw, 26px); text-decoration-thickness: 2px; }
.join-price strong {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 12vw, 58px); line-height: 1;
  color: #fff;
}
.join-price span { color: var(--muted); font-weight: 600; font-size: 17px; }
.join-price .join-cur { font-size: 13px; font-weight: 700; letter-spacing: .06em; }
.join-spots {
  display: flex; align-items: center; gap: 8px; margin: 0 0 20px;
  font-size: 14px; font-weight: 700; color: #e7c96a;
}
.join-spots b { color: #fff; }
.join-spots i {
  width: 9px; height: 9px; border-radius: 50%; background: #ff5a4d; flex: 0 0 auto;
  box-shadow: 0 0 0 0 rgba(255, 90, 77, .6); animation: spot-pulse 1.8s ease-out infinite;
}
@keyframes spot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 77, .55); }
  70% { box-shadow: 0 0 0 8px rgba(255, 90, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 77, 0); }
}
@media (prefers-reduced-motion: reduce) { .join-spots i { animation: none; } }
.join-list { list-style: none; display: grid; gap: 12px; margin: 0 0 26px; }
.join-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; font-weight: 600; color: #dfe7f5; }
.join-list svg { width: 19px; height: 19px; color: var(--gold-hi); flex: 0 0 auto; margin-top: 1px; }
.join-alt { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 14px; }
.join-alt a { color: var(--cyan); font-weight: 700; }

/* ── Reels strip ─────────────────────────────────────────────── */
.reels-strip {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(340px, 88vw);
  gap: 18px; overflow-x: auto; padding: 6px 4px 18px;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: rgba(84, 118, 190, .4) transparent;
}
.reel {
  position: relative; margin: 0; scroll-snap-align: start;
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); background: #000;
}
.reel iframe { width: 100% !important; min-width: 0 !important; border: 0; display: block; background: #000; pointer-events: none; }
.reel .instagram-media {
  width: 100% !important; min-width: 0 !important; max-width: none !important;
  margin: 0 !important; padding: 0 !important; border: 0 !important;
  border-radius: 0 !important; box-shadow: none !important; background: #fff !important;
}
.reel { min-height: 560px; }
.reel.active iframe { pointer-events: auto; }
.reel::after {
  content: "▶ Tap to play"; position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  z-index: 2; pointer-events: none; white-space: nowrap;
  font-size: 12px; font-weight: 700; letter-spacing: .05em; color: #fff;
  background: rgba(6, 10, 18, .78); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-tag); padding: 7px 14px; backdrop-filter: blur(6px);
}
.reel.active::after { display: none; }
.reel { cursor: pointer; }
.reel.active { cursor: default; }
.reel-featured { border-color: rgba(215, 166, 43, .55); box-shadow: 0 20px 60px -20px rgba(215, 166, 43, .35); }
.reel-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #0b0d12; background: linear-gradient(97deg, var(--gold-hi), var(--gold));
  border-radius: var(--r-tag); padding: 6px 12px; pointer-events: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .45);
}

/* ── Video testimonials ──────────────────────────────────────── */
.stories { padding-top: 0; }
.vt {
  position: relative; margin: 0; scroll-snap-align: start;
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); background: #000;
}
.vt video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block; background: #000; }
.vt figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 44px 16px 14px;
  background: linear-gradient(transparent, rgba(3, 6, 12, .9));
  font-size: 14px; font-weight: 700; color: #eef2f9; line-height: 1.4;
  pointer-events: none;
}
.vt-play {
  position: absolute; inset: 0; margin: auto; width: 68px; height: 68px;
  border-radius: 50%; border: 0; cursor: pointer;
  background: var(--grad-blue); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 40px rgba(21, 94, 239, .55);
  transition: transform .2s ease;
}
.vt-play svg { width: 26px; height: 26px; margin-left: 3px; }
.vt-play:hover { transform: scale(1.08); }
.vt.playing .vt-play, .vt.playing figcaption { display: none; }
/* animated "Become A Member" CTA under the member stories */
.btn-member { position: relative; overflow: hidden; }
.btn-member::after {
  content: ""; position: absolute; top: -40%; bottom: -40%; left: 0; width: 34%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .38) 50%, transparent);
  transform: translateX(-160%) skewX(-18deg);
}
@media (prefers-reduced-motion: no-preference) {
  .btn-member { animation: member-pulse 2.4s ease-in-out infinite; }
  .btn-member::after { animation: member-shine 2.4s ease-in-out .6s infinite; }
}
@keyframes member-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 188, 240, .55); }
  55% { box-shadow: 0 0 0 14px rgba(47, 188, 240, 0); }
}
@keyframes member-shine {
  0% { transform: translateX(-160%) skewX(-18deg); }
  60%, 100% { transform: translateX(460%) skewX(-18deg); }
}
/* ── Whop reviews ────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: 300px 1fr; gap: 22px; align-items: start; }
.reviews-summary {
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; text-align: center;
}
.reviews-score { font-family: var(--font-display); font-size: 64px; font-weight: 700; line-height: 1; color: #fff; }
.reviews-stars { display: flex; justify-content: center; gap: 3px; margin: 10px 0 6px; color: var(--gold-hi); }
.reviews-stars svg { width: 20px; height: 20px; }
.reviews-count { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.reviews-bars { display: grid; gap: 8px; margin-bottom: 24px; }
.rbar { display: grid; grid-template-columns: 26px 1fr 34px; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); font-weight: 600; }
.rbar span { text-align: left; }
.rbar i { display: block; height: 7px; border-radius: 4px; background: rgba(84, 118, 190, .18); overflow: hidden; }
.rbar b { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-hi)); }
.rbar small { text-align: right; }
.reviews-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.review-card {
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.review-card header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center; font-weight: 800; font-size: 16px;
  color: #fff; background: var(--av, var(--blue));
}
.review-card header > div { flex: 1; min-width: 0; }
.review-card header strong { display: block; font-size: 15px; color: #fff; }
.review-card header small { color: var(--muted); font-size: 12px; }
.review-stars { color: var(--gold-hi); font-size: 13px; letter-spacing: 2px; flex: 0 0 auto; }
.review-card p { font-size: 14.5px; color: #c3cede; line-height: 1.6; }

.apply-form h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 24px; font-weight: 600; letter-spacing: .02em; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 700; color: #c6d1e4; margin-bottom: 8px; }
.form-field label small { color: var(--muted); font-weight: 500; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: rgba(4, 8, 16, .6); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 15px; color: #fff;
  font-family: var(--font-body); font-size: 15px; outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2393a1b8' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M4 6.5 8 10.5l4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.form-field select:invalid { color: #7b8aa3; }
.form-field textarea { resize: vertical; min-height: 86px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #5f6d86; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--blue-hi); box-shadow: 0 0 0 3px rgba(21, 94, 239, .18);
}
.form-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 15px; font-size: 12.5px; color: var(--muted); }
.form-note svg { width: 15px; height: 15px; color: var(--gold-hi); flex: 0 0 auto; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); background: rgba(4, 7, 13, .8); padding: 52px 0 30px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; font-weight: 600; color: #9daabf; transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.footer-social a {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line);
  transition: background .2s ease, border-color .2s ease;
}
.footer-social a:hover { background: rgba(88, 101, 242, .25); border-color: #5865f2; }
.footer-social svg { width: 20px; height: 20px; color: #b7c2d8; }
.footer-legal {
  margin-top: 34px; padding: 26px 28px;
  background: rgba(10, 15, 26, .7); border: 1px solid var(--line); border-radius: 16px;
}
.footer-legal h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: #c6d1e4; margin-bottom: 12px; }
.footer-legal p { font-size: 13px; color: #74819a; margin-bottom: 10px; }
.footer-legal p:last-child { margin-bottom: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 26px; font-size: 13.5px; color: #74819a; }
.credit-link { color: var(--cyan); font-weight: 700; }
.credit-link:hover { text-decoration: underline; }

/* ── Reveal animations ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .65, .3, 1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .track-line { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
  .vsl-wrap::before, .vsl-wrap::after, .vsl-corners { animation: none; }
  .vsl-shine { display: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .inside-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .story-grid, .apply-grid { grid-template-columns: 1fr; gap: 44px; }
  .story-side { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-card { position: static; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { max-width: 420px; margin-inline: auto; width: 100%; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .section { padding: 76px 0; }
  .hero { padding-top: 56px; }
  .discord-chat { height: 500px; }
  .discord-channel { display: none; }
}
@media (max-width: 560px) {
  .inside-grid { grid-template-columns: 1fr; }
  .reviews-list { grid-template-columns: 1fr; }
  .review-card { padding: 20px 18px; }
  .review-card header { flex-wrap: wrap; row-gap: 4px; }
  /* stack the tradie/trader photos full-width, arrow pointing down */
  .story-photos { grid-template-columns: 1fr; gap: 14px; }
  .story-photo { aspect-ratio: 4 / 5; }
  .story-arrow { transform: translate(-50%, -50%) rotate(90deg); }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .vsl-corners { inset: 10px; }
  /* keep 12 bars readable on small screens: hide values, tighten gap */
  .announce { font-size: 12px; }
  /* pricing card: stack the badge under the title, keep price on-screen */
  .join-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .join-badge { white-space: normal; }
  .join-price { align-items: baseline; }
  .join-price .join-cur, .join-price span { font-size: 14px; }
  /* let long CTA buttons wrap instead of overflowing */
  .center .btn { max-width: 100%; white-space: normal; text-align: center; height: auto; padding-top: 15px; padding-bottom: 15px; }
}
