/* ============================================================================
   GOLDEN SPARKLE MARQUEE BAR — STYLE 7
   Shimmering sparkle effect with radiant gold animation
   ============================================================================ */

.ticker-rotator{position:relative;height:38px;display:flex;align-items:center;justify-content:center;overflow:hidden}.ticker-rotator span{position:absolute;display:flex;align-items:center;gap:10px;opacity:0;transform:translateY(10px);transition:opacity .5s ease,transform .5s ease;font-family:"Bebas Neue",sans-serif;font-size:18px;letter-spacing:.08em;text-transform:uppercase;color:var(--green);white-space:nowrap}.ticker-rotator span.active{opacity:1;transform:translateY(0)}.ticker-rotator i{font-style:normal;color:var(--white);margin-right:8px}.marquee::before{content:"";position:absolute;top:0;left:-100%;width:200%;height:100%;background:repeating-linear-gradient(90deg,transparent,transparent 40px,rgba(255,215,0,.08) 45px,rgba(255,215,0,.15) 50px,rgba(255,215,0,.08) 55px,transparent 60px,transparent 100px);animation:sparkleSweep 4s linear infinite;pointer-events:none;z-index:1}@keyframes sparkleSweep{0%{transform:translateX(0)}100%{transform:translateX(50%)}}.marquee::after{content:"";position:absolute;top:0;left:-50%;width:150%;height:100%;background:radial-gradient(2px 2px at 20% 50%,rgba(255,215,0,.4),transparent 70%),radial-gradient(3px 3px at 60% 30%,rgba(255,215,0,.3),transparent 75%),radial-gradient(2px 2px at 85% 70%,rgba(255,215,0,.5),transparent 80%);background-repeat:no-repeat;opacity:0;animation:twinkle 3s ease-in-out infinite;pointer-events:none;z-index:2}@keyframes twinkle{0%,100%{opacity:0;transform:translateX(0)}20%{opacity:.6}40%{opacity:0}60%{opacity:.8}80%{opacity:.3}100%{opacity:0;transform:translateX(10%)}}.marquee{animation:borderSparkle 2.2s ease-in-out infinite}@keyframes borderSparkle{0%,100%{border-bottom-color:rgba(255,215,0,.3);box-shadow:0 0 8px rgba(255,215,0,.15),inset 0 1px 0 rgba(255,255,255,.05)}50%{border-bottom-color:rgba(255,215,0,.8);box-shadow:0 0 28px rgba(255,215,0,.5),0 0 12px rgba(255,215,0,.3),inset 0 1px 0 rgba(255,255,255,.08)}}
/* ============================================================================
   VEX VIP â€” combined stylesheet. Single file, original cascade order:
   tokens (design vars) -> base (reset + stage) -> components -> sections.
   ============================================================================ */

/* Design tokens â€” DARK LUXE direction.
   A bounded off-black stage lit by ONE focal light source: the VEX brand
   green (#ffd700). No violet field, no purple glass, no neon fog â€” premium
   comes from controlled light on tuned-dark material, hairlines, and
   restrained glass with real inner highlights. */
:root {
  /* ---- Fonts ----
     SFSportsNightNS is not bundled; "Anton" (Google Fonts) is the closest
     free heavy athletic display substitute. Drop a real SFSportsNightNS.woff2
     into src/fonts/, uncomment the @font-face below, and prepend it to
     --font-heading to swap with zero other changes. */
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: "Bebas Neue", "Arial Narrow", "Arial Black", sans-serif;
  --font-display: "Manrope", system-ui, Arial, sans-serif;
  --font-countdown: "Pocket Calculator", var(--font-heading);
  /* LCD timer face */
  --font: var(--font-body);
  /* legacy alias */

  /* ---- The single luminous accent: VEX brand green ---- */
  --green: #ffd700;
  /* brand â€” the focal light */
  --green-dim: #d4af37;
  /* deeper green for edges/sheen */
  --green-deep: #b8860b;
  --neon: var(--green);
  /* legacy alias */
  --neon-2: var(--green-dim);
  /* legacy alias */
  --neon-soft: rgba(255,215,0,.25);
  --green-wash: rgba(255,215,0,.10);
  --green-line: rgba(255,215,0,.35);
  --green-glow: rgba(255,215,0,.35);

  /* ---- Tuned off-black stage (cool-neutral temperature, never #000) ---- */
  --bg-0: #08090b;
  /* page field â€” deepest */
  --bg-1: #0b0d10;
  /* column base */
  --bg-2: #101216;
  /* raised dark surface */
  --bg-3: #15171c;
  /* highest dark surface */
  /* legacy aliases mapped onto the new neutral-dark scale */
  --dark: var(--bg-0);
  --dark-card: var(--bg-1);
  --dark-surface: var(--bg-2);
  --bg-base: var(--bg-0);
  --bg-deep: var(--bg-0);
  --panel: var(--bg-1);
  --panel-2: var(--bg-2);
  --card: var(--bg-1);
  --card-hi: var(--bg-2);
  /* neutralised violet aliases (kept so nothing references a missing var) */
  --violet: var(--bg-2);
  --violet-hi: var(--bg-3);
  --violet-lo: var(--bg-0);
  --violet-edge: rgba(255, 255, 255, .12);
  --purple: var(--bg-2);
  --purple-bright: var(--bg-3);
  --purple-deep: var(--bg-0);
  --bg-purple: var(--bg-1);
  --bg-purple-hi: var(--bg-2);
  --bg-edge: rgba(255, 255, 255, .12);

  /* ---- Text / hairlines (optically corrected off-white on dark) ---- */
  --white: #f5f6f2;
  /* headline near-white, faint warmth */
  --white-80: rgba(245, 246, 242, .76);
  --white-30: rgba(245, 246, 242, .44);
  --white-10: rgba(255, 255, 255, .09);
  --white-05: rgba(255, 255, 255, .045);
  --ink: var(--white);
  --text: var(--white);
  --muted: var(--white);
  --line: var(--white-10);
  --line-hi: rgba(255, 255, 255, .14);

  /* ---- Radii â€” precise, not over-rounded ---- */
  --r-pill: 999px;
  --r-lg: 16px;
  --r-md: 12px;
  --r-sm: 9px;

  /* ---- Spacing scale ---- */
  --s-1: 6px;
  --s-2: 10px;
  --s-3: 16px;
  --s-4: 22px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;

  /* ---- Ambient: dark stage + one green focal light ---- */
  --ambient: rgba(255,215,0,.08);
  --ambient-soft: rgba(255,215,0,.05);
  --ambient-green: rgba(255,215,0,.08);

  /* ---- Premium glass (translucent dark + real inner highlight) ---- */
  --glass: rgba(255, 255, 255, .045);
  --glass-hi: rgba(255, 255, 255, .065);
  --glass-tint: rgba(255,215,0,.03);
  --blur: blur(5px) saturate(1.3);
  --blur-soft: blur(12px) saturate(1.2);

  /* glassy fills (legacy names kept; now neutral-dark, no violet) */
  --surface: linear-gradient(180deg, rgba(255, 255, 255, .055) 0%, rgba(255, 255, 255, .025) 48%, rgba(255, 255, 255, .015) 100%);
  --surface-hi: linear-gradient(180deg, rgba(255, 255, 255, .075) 0%, rgba(255, 255, 255, .035) 55%, rgba(255, 255, 255, .02) 100%);
  --edge: 0.5px solid rgba(255, 255, 255, .10);
  --edge-soft: 0.5px solid var(--white-10);
  --edge-green: 0.5px solid var(--green-line);

  /* ---- Effects â€” shadows tinted to the page mood, never flat black ---- */
  --inner-hi: inset 0 1px 0 rgba(255, 255, 255, .07);
  --inner-lo: inset 0 -1px 0 rgba(0, 0, 0, .35);
  --glow-green: 0 10px 30px -12px rgba(255, 215, 0, .35);
  --glow-strong: 0 0 0 1px rgba(255, 215, 0, .20), 0 20px 54px -20px rgba(255, 215, 0, .40);
  --glow-violet: 0 26px 60px -28px rgba(0, 0, 0, .85);
  /* now neutral */
  --glow-purple: var(--glow-violet);
  --shadow-card:
    var(--inner-hi),
    var(--inner-lo),
    0 24px 56px -30px rgba(0, 0, 0, .9);
  --shadow-green:
    var(--inner-hi),
    0 0 0 1px rgba(255, 215, 0, .22),
    0 26px 64px -26px rgba(255, 215, 0, .35);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --spring: cubic-bezier(.34, 1.4, .5, 1);

  /* ---- Mobile column ---- */
  --max-w: 430px;
  --phone-max: var(--max-w);
  --sticky-h: 64px;
  --pad: 16px;
}

/* Drop-in for the real headline face when available:
@font-face {
  font-family: "SFSportsNightNS";
  src: url("./SFSportsNightNS.woff2") format("woff2");
  font-display: swap;
}
*/

/* Countdown numerals â€” LCD calculator face for a digital-timer read. */
@font-face {
  font-family: "Pocket Calculator";
  src: url("./POCKC___.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.gold {
  color: #FED702;
}
/* ===== BASE ================================================================ */
/* Reset + dark-luxe stage shell */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  line-height: 1.55;
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100dvh;
}

/* The stage: a bounded off-black room lit by ONE soft green light source
   at the top, closed by a vignette at the base. No violet field. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(56% 38% at 50% -2%, rgba(255, 215, 0, .12) 0%, transparent 60%),
    radial-gradient(120% 80% at 50% 120%, rgba(0, 0, 0, .55) 0%, transparent 55%),
    /* 60% dark scrim â†’ the image below reads at ~40% opacity */
    linear-gradient(rgba(8, 9, 11, .75), rgba(8, 9, 11, .75)),
    url("./bg_converted.avif") center / cover no-repeat,
    linear-gradient(180deg, #0a0c0f 0%, #08090b 45%, #060709 100%);
}

/* Fine grain â€” fixed layer, kept off scrolling surfaces (perf + luxe texture). */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

b {
  font-weight: 800;
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}
.hero__vsl img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  object-fit: cover;
}

/* The dark column â€” a vitrine. Faint green light catches its top edge. */
.phone {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 20px 0;
  padding-bottom: calc(var(--sticky-h) + 32px);
  position: relative;
  overflow-x: hidden;
}

/* On wider screens, frame the column like an exhibited object. */
@media (min-width: 520px) {
  .phone {
    margin-block: 0 40px;
    overflow-x: visible;
  }

  .marquee {
    position: sticky;
    top: 0;
  }
}

/* Typography â€” heavy uppercase display over calm body */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
  text-wrap: balance;
}

h1 {
  font-size: clamp(32px, 11vw, 52px);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(29px, 8.4vw, 34px);
  line-height: 1.06;
  letter-spacing: -.005em;
}

h3 {
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: .005em;
}

/* Visible keyboard focus */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Accent text â€” solid green light, not a gradient headline trick */
.grad {
  color: var(--green);
  text-shadow: 0 0 24px rgba(255, 215, 0, .35);
}

.neon,
.accent {
  color: var(--green);
}

.muted {
  color: var(--white);
}

.small {
  font-size: 13px;
  line-height: 1.5;
}

.lead {
  font-size: 14px;
  color: var(--white);
}

.h-sub {
  font-size: 12px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .18em;
}

/* Scroll-reveal â€” only hidden when JS is on (progressive enhancement). */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--spring);
}

html.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* Staggered entry for grouped items. */
html.js .persona__list .reveal,
html.js .pricing .price,
html.js .sec>.reveal {
  transition-delay: 0ms;
}

html.js .persona__list .reveal:nth-child(2),
html.js .pricing .price:nth-of-type(2) {
  transition-delay: 90ms;
}

html.js .persona__list .reveal:nth-child(3),
html.js .pricing .price:nth-of-type(3) {
  transition-delay: 180ms;
}

html.js .persona__list .reveal:nth-child(4) {
  transition-delay: 270ms;
}

html.js .persona__list .reveal:nth-child(5) {
  transition-delay: 360ms;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }

  .marquee__track {
    animation: none !important;
  }

  .btn-cta--pulse {
    animation: none !important;
  }

  .hero-orb {
    animation: none !important;
  }

  .gift {
    animation: none !important;
  }

  html {
    scroll-behavior: auto !important;
  }
}
.vip-features {
  width: 100%;
  max-width: 430px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 16px;
  margin: 0 auto;

  background: transparent;
}

.vip-feature {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-width: 0;
}

.vip-feature svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;

  fill: #FED702;

  filter:
    drop-shadow(0 0 8px rgba(254,215,2,.35))
    drop-shadow(0 0 18px rgba(254,215,2,.15));
}

.vip-feature span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;

  color: #ffffff;

  text-transform: uppercase;
  letter-spacing: .03em;

  white-space: nowrap;
  line-height: 1;
}

@media (max-width: 380px) {
  .vip-feature svg {
    width: 18px;
    height: 18px;
  }

  .vip-feature span {
    font-size: 9px;
  }
}
.vip-offer-bar {
  display: flex;
  align-items: center;
  gap: 14px;

  width: calc(100% - 32px);
  margin: 0 auto;

  padding: 14px 16px;

  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      rgba(255,215,0,.06),
      rgba(255,215,0,.02)
    );

  border: 1px solid rgba(255,215,0,.18);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 24px rgba(255,215,0,.08);
}

.vip-offer__icon {
  flex-shrink: 0;
}

.vip-offer__icon svg {
  width: 24px;
  height: 24px;

  fill: #FED702;

  filter:
    drop-shadow(0 0 10px rgba(254,215,2,.35));
}

.vip-offer__content {
  flex: 1;
  min-width: 0;
}

.vip-offer__title {
  color: rgba(255,255,255,.8);

  font-size: 11px;
  font-weight: 600;

  line-height: 1.2;
}

.vip-offer__subtitle {
  color: #fff;

  font-size: 16px;
  font-weight: 800;

  line-height: 1.2;
}

.vip-offer__avatars {
  display: flex;
  align-items: center;

  flex-shrink: 0;
}

.vip-offer__avatars img {
  width: 36px;
  height: 36px;

  object-fit: cover;

  border-radius: 50%;

  border: 2px solid #111;

  margin-left: -10px;
}

.vip-offer__avatars img:first-child {
  margin-left: 0;
}

.vip-offer__count {
  width: 40px;
  height: 40px;

  margin-left: -10px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #FED702;

  color: #000;

  font-size: 14px;
  font-weight: 800;

  border: 2px solid #111;
}
.founder-card {
  width: calc(100% - 24px);
  margin: 20px auto;

  overflow: hidden;
  border-radius: 18px;

  position: relative;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.02)
    );

  border: 1px solid rgba(255,215,0,.18);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 30px rgba(255,215,0,.06);
}

.founder-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(255,215,0,.08),
      transparent 40%
    );

  pointer-events: none;
}

.founder-card__image {
  position: relative;
}

.founder-card__image img {
  display: block;

  width: 100%;
  height: 400px;

  object-fit: cover;
}

.founder-card__content {
  padding: 22px 20px;
}

.founder-card h2 {
  margin: 0 0 18px;

  font-family: var(--font-heading);
  font-size: 34px;
  line-height: .95;
  letter-spacing: .03em;

  color: #fff;

  text-transform: uppercase;
}

.founder-card h2 span {
  color: #FED702;
  display: block;
}

.founder-quote {
  position: relative;
}

.founder-quote__mark {
  color: #FED702;

  font-size: 42px;
  line-height: 1;

  margin-bottom: 10px;
}

.founder-quote p {
  margin: 0 0 14px;

  color: rgba(255,255,255,.88);

  font-size: 15px;
  line-height: 1.65;
}

.founder-profile {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-top: 22px;
}

.founder-profile img {
  width: 56px;
  height: 56px;

  border-radius: 50%;
  object-fit: cover;

  border: 2px solid #FED702;
}

.founder-name {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: .04em;

  color: #FED702;
}

.founder-role {
  font-size: 12px;
  font-weight: 700;

  color: rgba(255,255,255,.75);

  text-transform: uppercase;
  letter-spacing: .08em;
}
.inside-vip {
  width: calc(100% - 24px);
  margin: 28px auto;
}

.inside-vip__title {
  margin: 0 0 22px;

  text-align: center;

  font-family: var(--font-heading);
  font-size: clamp(34px, 9vw, 44px);
  line-height: .95;
  letter-spacing: .03em;

  color: #fff;
}

.inside-vip__title span {
  display: block;
  color: #FED702;
}

.inside-vip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.inside-card {
  padding: 18px 14px;

  text-align: center;

  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.02)
    );

  border: 1px solid rgba(255,215,0,.14);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 0 24px rgba(255,215,0,.04);
}

.inside-card__icon {
  width: 74px;
  height: 74px;

  margin: 0 auto 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,215,0,.08),
      transparent 70%
    );

  border: 1px solid rgba(255,215,0,.18);
}

.inside-card__icon svg {
  width: 34px;
  height: 34px;

  fill: none;
  stroke: #FED702;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  filter:
    drop-shadow(0 0 8px rgba(254,215,2,.3));
}

.inside-card h3 {
  margin: 0 0 10px;

  font-family: var(--font-heading);
  font-size: 22px;
  line-height: .95;
  letter-spacing: .03em;

  color: #FED702;
}

.inside-card p {
  margin: 0;

  font-size: 13px;
  line-height: 1.5;

  color: rgba(255,255,255,.8);
}
.how-it-works {
  width: calc(100% - 24px);
  margin: 32px auto;
}

.how-it-works__title {
  margin: 0 0 24px;

  text-align: center;

  font-family: var(--font-heading);
  font-size: clamp(36px, 10vw, 48px);
  line-height: .92;
  letter-spacing: .03em;

  color: #fff;
}

.how-it-works__title span {
  color: #FED702;
}

.steps {
  position: relative;
}

.steps::before {
  content: "";

  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 24px;

  width: 2px;

  background:
    linear-gradient(
      180deg,
      rgba(254,215,2,.4),
      rgba(254,215,2,.08)
    );
}

.step {
  position: relative;

  display: flex;
  gap: 16px;

  padding-left: 0;
  margin-bottom: 24px;
}

.step:last-child {
  margin-bottom: 0;
}

.step__num {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(254,215,2,.12),
      rgba(254,215,2,.03)
    );

  border: 2px solid rgba(254,215,2,.7);

  color: #FED702;

  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;

  box-shadow:
    0 0 18px rgba(254,215,2,.12);
}

.step__content {
  flex: 1;

  padding: 14px 16px;

  border-radius: 16px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.02)
    );

  border: 1px solid rgba(255,215,0,.14);
}

.step__content h3 {
  margin: 0 0 6px;

  font-family: var(--font-heading);
  font-size: 26px;
  line-height: .95;
  letter-spacing: .03em;

  color: #FED702;
}

.step__content p {
  margin: 0;

  font-size: 14px;
  line-height: 1.6;

  color: rgba(255,255,255,.82);
}
/* ============================================================
   TECH TERMINAL STYLE – Directly on .sec.persona
   No extra divs, no HTML changes. Preserves your brand gold.
   ============================================================ */

/* Terminal base – applies directly to your existing section */
.sec.persona {
  position: relative;
  font-family: 'Fira Code', 'Courier New', 'SF Mono', 'Source Code Pro', monospace;
  background: rgba(8, 9, 11, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  margin: 0 16px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.08), inset 0 0 10px rgba(255, 215, 0, 0.02);
}

/* Scanline overlay (CRT effect) */
.sec.persona::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.2) 0px,
    rgba(0, 0, 0, 0.2) 2px,
    transparent 2px,
    transparent 6px
  );
  pointer-events: none;
  border-radius: 12px;
  z-index: 1;
}

/* Terminal heading – gold cursor bar + monospace */
.sec.persona h2 {
  font-family: 'Fira Code', 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  border-left: 4px solid #ffd700;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

/* Terminal list items – prompt symbol using your gold */
.sec.persona .persona__item {
  position: relative;
  background: rgba(16, 18, 22, 0.5);
  padding: 0.9rem 1rem 0.9rem 2.2rem;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: 0.85rem;
  color: #f5f6f2;
  transition: all 0.2s ease;
}

/* Remove the old green left bar (original CSS had ::before with green bar) */
.sec.persona .persona__item::before {
  content: "> ";
  position: absolute;
  left: 0.7rem;
  top: 0.9rem;
  color: #ffd700;
  font-weight: 700;
  font-size: 0.85rem;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

/* Hover effect – gold glow on left edge */
.sec.persona .persona__item:hover {
  background: rgba(255, 215, 0, 0.06);
  border-left: 2px solid #ffd700;
  padding-left: calc(2.2rem - 2px);
}

/* Bold text inside – gold highlight, no background color change */
.sec.persona .persona__item b {
  color: #ffd700;
  font-weight: 700;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

/* Blinking cursor after the last item */
.sec.persona .persona__list::after {
  content: "█";
  display: inline-block;
  margin-top: 0.75rem;
  margin-left: 0.7rem;
  color: #ffd700;
  font-family: monospace;
  font-size: 0.9rem;
  animation: terminalBlink 1s step-end infinite;
  opacity: 0.85;
}

@keyframes terminalBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Keep your original reveal animations but ensure they work */
.sec.persona .reveal {
  transition-delay: 0ms;
}

/* Responsive adjustments */
@media (max-width: 500px) {
  .sec.persona {
    padding: 1rem;
  }
  .sec.persona .persona__item {
    font-size: 0.75rem;
    padding: 0.7rem 0.7rem 0.7rem 2rem;
  }
  .sec.persona .persona__item::before {
    font-size: 0.75rem;
    top: 0.7rem;
    left: 0.6rem;
  }
}
/* ===== COMPONENTS ========================================================== */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Premium glass recipe â€” translucent dark + light hairline + real
   inner top highlight + tinted depth shadow. Reused, but materials
   are varied per section so the page never collapses into kit output.
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.glass,
.card,
.bonus,
.quote,
.price {
  background: var(--surface);
  border: var(--edge);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
}

/* ---- Marquee ticker â€” slim dark glass rail, green type ---- */
.marquee {
  overflow: hidden;
  background: var(--ambient-green);
  -webkit-backdrop-filter: var(--blur-soft);
  backdrop-filter: var(--blur-soft);
  border-bottom: 0.5px solid var(--white-10);
  z-index: 30;
}
/* ---- Pills ---- */
.pill {
  display: inline-block;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bg-0);
  border: 0;
  border-radius: var(--r-pill);
  background: var(--green);
}

.pill--lg {
  padding: 12px 22px;
  font-size: 12px;
  color: var(--green);
  background: var(--green-wash);
  border: 0.5px solid var(--green-line);
  box-shadow: var(--glow-green);
}

/* ---- CTA button â€” solid luxe green with a controlled top sheen ---- */
.btn-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--bg-0);
  border: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(
    180deg,
    #fff2b3 0%,
    #ffd76a 20%,
    #d4af37 55%,
    #b8860b 100%
  );
  cursor: pointer;
  transition: transform .2s var(--spring),
              box-shadow .3s var(--ease),
              filter .2s;
}

.btn-cta:hover {
  filter: brightness(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    0 16px 40px -10px rgba(255, 215, 0, .62);
}
.btn-cta:active {
  transform: scale(.975);
}

.btn-cta__ic {
  width: 20px;
  height: 20px;
  flex: none;
}

@keyframes cta-pulse {

  0%,
  100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 12px 30px -12px rgba(255, 215, 0, .42);
  }

  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 14px 38px -10px rgba(255, 215, 0, .62);
  }
}

.btn-cta--pulse {
  animation: cta-pulse 3s var(--ease) infinite;
}

/* ---- Generic glass card ---- */
.card {
  padding: var(--s-4);
}

/* ---- Hero VSL frame + corner badge ---- */
.hero__vsl {
  position: relative;
  max-width: var(--max-w);
  width: calc(100% - 32px);
  margin: 2px 16px 4px;
}

.hero__vsl video,
.hero__vsl img.vsl-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-lg);
}

.hero__vsl-ph {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background:
    radial-gradient(90% 70% at 50% 26%, rgba(255, 215, 0, .12), transparent 64%),
    var(--bg-2);
}

.hero__vsl-ph.is-hidden {
  display: none;
}

.vsl-unmute {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  font-size: 11px;
  font-weight: 800;
  color: var(--bg-0);
  border-radius: var(--r-pill);
  box-shadow: var(--inner-hi), 0 12px 30px -10px rgba(0, 0, 0, .8);
  background-color: rgb(255 255 255 / 80%);
  border: 0.5px solid var(--green-line);
  transition: opacity .4s var(--ease);
}

.vsl-unmute svg {
  width: 15px;
  height: 15px;
}

.vsl-unmute.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.badge-30 {
  position: absolute;
  z-index: 2;
  right: -8px;
  top: -8px;
  display: grid;
  gap: 2px;
  padding: 7px;
  text-align: center;
  border-radius: var(--r-md);
  border: 0.5px solid var(--green-line);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  transform: rotate(-4deg);
  box-shadow: var(--inner-hi), 0 12px 30px -10px rgba(0, 0, 0, .8);
  background-color: rgb(0 0 0 / 30%);
}

.badge-30 b {
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1;
  color: var(--green);
}

.badge-30 span {
  font-size: 8px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ---- Gift icon (image) ---- */
.gift {
  flex: none;
  width: 48px;
  height: 48px;
  align-self: center;
  background: url("./gift.avif") center / contain no-repeat;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .55));
  /* Waving attention cue. Animates the independent `rotate` property
     (not `transform`) so it never clobbers the sticky-CTA gift's
     translateY centring; unsupported browsers just sit still. */
  transform-origin: bottom center;
  animation: gift-wave 0.6s infinite linear;
}

.gift {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 100px;
  height: 100px;
}

/* Rests, then a short damped wave â€” a periodic "look here", not constant motion. */
@keyframes gift-wave {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(3deg); }
  100% { transform: rotate(0deg); }
}

@keyframes coupon-wave {
  0% { transform: translateY(0px); }
  50% { transform: translateY(20px); }
  100% { transform: translateY(0px); }
}

/* ---- Bonus strip â€” single glass level, green-lit from the left ---- */
.bonus {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background:
    radial-gradient(120% 140% at 0% 50%, rgba(255, 215, 0, .12), transparent 58%),
    var(--surface);
  border: 0.5px solid var(--green-line);
  box-shadow: var(--shadow-green);
}

.bonus__num {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 22px rgba(255, 215, 0, .4);
}

.bonus p {
  font-size: 13.5px;
  flex: 1;
  text-align: left;
  color: var(--white);
}

/* ---- VIP pass â€” image ---- */
.coupon {
  display: block;
  width: min(320px, 86%);
  height: auto;
  margin: 0 auto;
  border-radius: var(--r-lg);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .55)) drop-shadow(0 0 40px rgba(255, 215, 0, .22));
  animation: coupon-wave 5.6s infinite linear;
}

/* ---- Countdown â€” glass slab, tabular green numerals ---- */
.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.cd__grp {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 54px;
}

.cd__num {
  font-family: var(--font-countdown);
  font-variant-numeric: tabular-nums;
  font-size: 52px;
  line-height: 1;
  letter-spacing: .01em;
  color: var(--green);
  text-shadow: 0 0 20px rgba(255, 215, 0, .45);
}

.cd__lbl {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
}

.cd__sep {
  font-family: var(--font-countdown);
  font-size: 44px;
  font-weight: 800;
  color: var(--green-dim);
  opacity: .5;
  line-height: 1.1;
}

/* ---- Quote â€” glass, green-rimmed avatar ---- */
.quote {
  position: relative;
  padding: 26px 24px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(255, 215, 0, .07), transparent 56%),
    var(--surface);
  border: var(--edge);
  box-shadow: var(--shadow-card);
  text-align: left;
}

.quote__av {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 22%;
  border: 2px solid var(--white);
}

.quote blockquote {
  font-size: 16px;
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
}

.quote figcaption {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ---- Sticky CTA â€” the hero btn-cta, pinned once it scrolls away.
   The wrapper only handles fixed placement + slide-in so its transform
   never collides with .btn-cta:active scale on the inner button. ---- */
.sticky-cta {
  position: fixed;
  left: 50%;
  /* Plain fallbacks first so old Android / FB-IG in-app WebViews that
     can't parse max()/env()/min() still get a valid, on-screen value. */
  bottom: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 40;
  width: calc(100vw - 28px);
  width: min(var(--max-w), calc(100vw - 28px));
  transform: translate(-50%, calc(100% + 28px));
  opacity: 0;
  pointer-events: none;
  transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1), opacity .3s var(--ease);
}

.sticky-cta.show {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta .btn-cta {
  width: 100%;
}

.sticky-cta .gift {
  bottom: -15px;
  right: -15px;
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta {
    transition: opacity .3s linear;
  }
}

/* ---- Section title ---- */
.section-title {
  text-align: center;
}


/* ---- Footer legal disclaimer (expandable) ---- */
.legal {
  width: 100%;
  text-align: left;
  color: var(--white);
  font-size: 10px;
  line-height: 1.4;
}

.legal>summary {
  cursor: pointer;
  list-style: none;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 0;
}

.legal>summary::-webkit-details-marker {
  display: none;
}

.legal>summary::after {
  content: " â–¾";
  color: var(--green);
}

.legal[open]>summary::after {
  content: " â–´";
}

.legal__body {
  margin-top: 8px;
}


/* ===== SECTIONS ============================================================ */
/* Per-section layout. Single 430px column, paced through material
   contrast: glass panels, open editorial bands, and bare CTA stages
   alternate so no section repeats the same shell twice in a row. */
.sec {
  padding: 36px 16px;
  display: grid;
  gap: var(--s-3);
}

.sec>h2 {
  margin-bottom: 4px;
}

/* HERO */
.hero {
  padding: 0 0 22px;
  text-align: center;
  justify-items: center;
  position: relative;
  z-index: 0;
}

/* Off-centre lime bloom behind the headline & VSL. Screen blend so it
   adds light to the dark stage instead of sitting on it as a flat plate. */
.hero-glow {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  max-width: none;
  height: auto;
  opacity: .5;
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
}

/* Floating sport-cubes â€” props that frame the hero, never block it.
   They sit behind the text/VSL (z-index:-1) and breathe on a slow loop. */
.hero-orb {
  position: absolute;
  z-index: 5;
  width: clamp(74px, 21vw, 100px);
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 16px 30px rgba(255, 215, 0, .28));
  will-change: transform;
}

.hero-orb--left {
  top: 30px;
  left: -40px;
  animation: orb-float 6s var(--ease) infinite;
}

.hero-orb--right {
  top: 0px;
  right: -40px;
  animation: orb-float 7s var(--ease) .8s infinite reverse;
}

@keyframes orb-float {

  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-16px) rotate(4deg);
  }
}

.hero .pill,
.hero .h-sub {
  margin-bottom: -18px;
}

.hero h1 {
  margin: 16px 16px 4px;
}

.hero .lead {
  margin-top: 4px;
  padding: 0 16px;
  color: var(--white);
}

.hero .btn-cta {
  z-index: 1;
  margin-top: 2px;
  width: calc(100% - 32px);
}

.hero .bonus {
  position: relative;
  z-index: 0;
  width: 85%;
  margin-top: -30px;
  padding: 20px 10px 10px 10px;
  border-radius: 0 0 16px 16px;
}

/* COUNTDOWN â€” quiet stage after the loud hero */
.countdown-sec {
  text-align: center;
  justify-items: center;
}

.countdown-sec h2 {
  margin-bottom: 2px;
}

.countdown-sec .countdown {
  width: 100%;
  margin-top: 6px;
}

/* WHY â€” open band, the quote panel is the only surface */
/* STYLE 4: Staggered Stack — layered depth effect (Transparent Version) */
.sec.why {
  position: relative;
}
.sec.why .quote {
  position: relative;
  padding: 2rem;
  background: rgba(16, 18, 22, 0.65); /* Transparent version of var(--bg-2) */
  backdrop-filter: blur(8px); /* Adds glass blur effect for transparency */
  border: 0.5px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.sec.why .quote::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, var(--green), transparent 60%);
  border-radius: var(--r-lg);
  z-index: -2;
  opacity: 0.3;
}
/* Optional: Secondary glow layer for more depth */
.sec.why .quote::after {
  content: "";
  position: absolute;
  inset: -4px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1), transparent 70%);
  border-radius: var(--r-lg);
  z-index: -1;
  pointer-events: none;
}
.sec.why .quote__av {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  border: 3px solid var(--green);
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.5);
  background: rgba(8, 9, 11, 0.5); /* Slight backing for avatar */
}
.sec.why blockquote {
  font-size: 1rem;
  line-height: 1.55;
  font-style: normal;
  margin: 0 0 1rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--green);
  color: var(--white);
}
.sec.why figcaption {
  font-size: 0.75rem;
  font-weight: 500;
  padding-left: 1rem;
  color: var(--green-dim);
}

/* PERSONA â€” flattened: open editorial list, no card-per-item.
   One green leading rule + hairline dividers carry the rhythm. */
.persona h2 {
  text-align: center;
}

.persona__list {
  list-style: none;
  display: grid;
  width: 100%;
}

.persona__item {
  position: relative;
  font-size: 14.5px;
  line-height: 1.5;
  padding: 18px 4px 18px 20px;
  text-align: left;
  color: var(--white);
  border-bottom: 0.5px solid var(--white-10);
}

.persona__item:last-child {
  border-bottom: 0;
}

.persona__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 2px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 12px -2px rgba(255, 215, 0, .55);
}

.persona__item b {
  color: var(--white);
}

/* INSIDE THE CHANNEL â€” value stack.
   Flattened: one glass panel per tier, specs are hairline-divided
   rows, NOT nested boxes inside the panel. */
.pricing {
  text-align: center;
  justify-items: center;
}

.price {
  width: 100%;
  padding: 20px 22px;
  display: grid;
  gap: 14px;
  text-align: left;
}

.price--vip {
  border: 0.5px solid var(--green-line);
}

.price__name {
  font-size: 18px;
  text-align: left;
  color: var(--white);
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--white-10);
}

.price--vip .price__name {
  color: var(--green);
  text-shadow: 0 0 18px rgba(255, 215, 0, .4);
  border-bottom-color: var(--green-line);
}

.price__spec {
  display: grid;
  gap: 0;
}

.spec {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 0.5px solid var(--white-05);
}

.spec:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.spec dt {
  font-size: 12px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  flex: none;
}

.spec dd {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-align: right;
}

/* CTA BAND â€” bare dark stage, no panel, lit by the green mark */
.cta-band {
  text-align: center;
  justify-items: center;
  position: relative;
  padding: 44px 24px;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255, 215, 0, .08), transparent 60%);
}

.cross {
  width: 88px;
  filter: drop-shadow(0 12px 26px rgba(255, 215, 0, .35));
  animation: cross-float 4.5s var(--ease) infinite;
}

@keyframes cross-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* SOCIAL PROOF (Swiper) */
.proof-section {
  text-align: center;
  justify-items: center;
}

.proof-section .section-title {
  margin-bottom: 18px;
}

.proof-carousel {
  width: 100%;
}

/* FINAL CTA â€” bare closing stage, mirror of the CTA band */
.final-cta {
  text-align: center;
  justify-items: center;
  padding: 44px 24px;
}

.final-cta .muted {
  margin-bottom: 4px;
}

.final-cta .btn-cta {
  width: 100%;
}

/* FOOTER */
.footer {
  text-align: center;
  justify-items: center;
  gap: 10px;
  padding: 28px 16px 14px;
  border-top: 0.5px solid var(--white-10);
}

.footer__brand {
  width: 50px;
}

.footer .small {
  color: var(--white);
  font-size: 10px;
}

.footer__tg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 0.5px solid var(--white-10);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}

.footer__tg:hover {
  border-color: var(--green-line);
  color: var(--white);
}

.footer__tg img {
  width: 22px;
  height: 22px;
}
/* ============================================================================
   PULSE GLOW EFFECT FOR BUTTONS
   Adds scanning/pulsing glow animation to your existing .btn-cta buttons
   ============================================================================ */

/* Pulse glow animation keyframes */
@keyframes btnPulseGlow {
  0% {
    box-shadow: 
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      0 0 5px rgba(255, 215, 0, 0.3),
      0 12px 30px -12px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 
      inset 0 1px 0 rgba(255, 255, 255, 0.6),
      0 0 25px rgba(255, 215, 0, 0.8),
      0 0 35px rgba(255, 215, 0, 0.5),
      0 16px 40px -10px rgba(255, 215, 0, 0.6);
  }
  100% {
    box-shadow: 
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      0 0 5px rgba(255, 215, 0, 0.3),
      0 12px 30px -12px rgba(255, 215, 0, 0.3);
  }
}

/* Add pulse glow to existing buttons */
.btn-cta--pulse {
  animation: btnPulseGlow 1.5s ease-in-out infinite !important;
}

/* Optional: Extra intensity for hero button */
.hero .btn-cta--pulse {
  animation: btnPulseGlow 1.2s ease-in-out infinite;
}

/* Optional: Slight scale pulse for more urgency (add this class separately if wanted) */
.btn-pulse-scale {
  animation: btnPulseGlow 1.5s ease-in-out infinite, scalePulse 1.5s ease-in-out infinite;
}

@keyframes scalePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
/* ============================================================================
   STYLE 6: CONNECTING LINES — Progression Flow for Inside the Channel
   Add this to your main.css file
   ============================================================================ */

/* Container for connecting lines layout */
.pricing-connected {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  width: 100%;
}

/* Individual price card in connecting style */
.price-connected {
  background: var(--surface);
  backdrop-filter: var(--blur);
  border: var(--edge);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s var(--ease);
}

/* Connecting golden line between cards */
.price-connected:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 1.5rem;
  background: linear-gradient(180deg, var(--green), rgba(255, 215, 0, 0.3), transparent);
}

/* Glowing dot on the connecting line */
.price-connected:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  z-index: 2;
}

/* Step number indicator */
.price-step {
  position: absolute;
  top: -12px;
  left: -8px;
  background: var(--green);
  color: var(--bg-0);
  font-size: 0.7rem;
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
  font-family: monospace;
  z-index: 3;
}

/* VIP card styling */
.price-connected--vip {
  border: 0.5px solid var(--green-line);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(16, 18, 22, 0.9));
  position: relative;
  overflow: hidden;
}

/* VIP shine animation */
.price-connected--vip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  animation: vipShine 4s infinite;
  pointer-events: none;
}

@keyframes vipShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Header inside connected card */
.price-connected-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.5px solid var(--green-line);
}

.price-connected-icon {
  font-size: 1.8rem;
}

.price-connected-title {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: var(--white);
  flex: 1;
}

.price-connected--vip .price-connected-title {
  color: var(--green);
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

/* VIP badge */
.vip-badge-connected {
  background: var(--green);
  color: var(--bg-0);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 40px;
  letter-spacing: 1px;
}

/* Feature list */
.price-connected-features {
  list-style: none;
}

.price-connected-features li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.7rem 0;
  font-size: 0.85rem;
  border-bottom: 0.5px solid var(--white-05);
}

.price-connected-features li:last-child {
  border-bottom: none;
}

.feature-label-connected {
  color: var(--white-80);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.7rem;
  font-weight: 600;
}

.feature-value-connected {
  font-weight: 700;
  color: var(--white);
}

.price-connected--vip .feature-value-connected {
  color: var(--green);
}

/* Hover effect */
.price-connected:hover {
  transform: translateX(6px);
  border-color: var(--green-line);
}

/* Mobile adjustments */
@media (max-width: 500px) {
  .price-connected {
    padding: 1.2rem;
  }
  .price-connected-title {
    font-size: 1rem;
  }
  .price-connected-icon {
    font-size: 1.4rem;
  }
}