:root{
  --void:#12042a;--void-2:#1c0640;--grape:#3a1078;--electric:#8b3dff;--violet:#a56bff;
  --gold:#ffc53d;--gold-deep:#f6a917;--lime:#c9ff4d;--cream:#f7f1e8;--ink:#1a0a2e;
  --white:#fff;--muted:#c9b8e6;--green:#25d366;--radius:26px;--maxw:1200px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  background:var(--void);
  color:var(--white);
  overflow-x:hidden;
  line-height:1.55;
  -webkit-font-smoothing:antialiased
}
h1,h2,h3,h4,.display{
  font-family:'Unbounded',sans-serif;
  line-height:1.05;
  letter-spacing:-.01em
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
::selection{background:var(--gold);color:var(--ink)}


/* ============================================================
   MARQUEE — seamless, equal-width ticker loop
   ============================================================ */

.topbar{
  height:38px;
  background:var(--lime);
  color:var(--ink);
  font-weight:800;
  font-size:13px;
  line-height:1;
  overflow:hidden;
  white-space:nowrap;
  border-bottom:2px solid var(--ink);
  position:relative;
  z-index:60;
}

.topbar__track{
  display:flex;
  align-items:center;
  width:max-content;
  height:100%;
  will-change:transform;
  animation:scrollx 28s linear infinite;
}

.topbar__group{
  display:flex;
  align-items:center;
  flex:0 0 auto;
  gap:40px;
  height:100%;
  padding:0 40px 0 0;
}

.topbar__group span{
  display:inline-flex;
  align-items:center;
  gap:9px;
  flex:0 0 auto;
  height:100%;
}

@keyframes scrollx{
  from{
    transform:translate3d(0,0,0);
  }
  to{
    transform:translate3d(-50%,0,0);
  }
}

@media(max-width:600px){
  .topbar{
    height:34px;
    font-size:11px;
  }

  .topbar__group{
    gap:26px;
    padding-right:26px;
  }

  .topbar__group span{
    gap:7px;
  }
}

@media (prefers-reduced-motion:reduce){
  .topbar__track{
    animation:none;
  }
}


/* ============================================================
   NAV
   ============================================================ */

.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(14px);
  background:rgba(18,4,42,.72);
  border-bottom:1px solid rgba(165,107,255,.18)
}

.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:70px
}

.logo{
  display:flex;
  align-items:center;
  gap:11px;
  font-family:'Unbounded';
  font-weight:800;
  font-size:17px
}

.logo__mark{
  width:38px;
  height:38px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--gold),var(--gold-deep));
  color:var(--ink);
  display:grid;
  place-items:center;
  font-size:20px;
  box-shadow:0 6px 20px rgba(255,197,61,.35);
  transform:rotate(-6deg)
}

.logo small{
  display:block;
  font-family:'Plus Jakarta Sans';
  font-weight:600;
  font-size:10px;
  color:var(--violet);
  letter-spacing:.12em;
  margin-top:1px
}

.nav__links{
  display:flex;
  gap:28px;
  font-weight:600;
  font-size:15px
}

.nav__links a{
  position:relative;
  color:var(--muted);
  transition:color .2s
}

.nav__links a:hover{color:var(--white)}

.nav__links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  height:2px;
  width:0;
  background:var(--gold);
  transition:width .25s
}

.nav__links a:hover::after{width:100%}

.nav__cta{
  background:linear-gradient(135deg,var(--gold),var(--gold-deep));
  color:var(--ink);
  font-weight:800;
  font-size:14px;
  padding:11px 20px;
  border-radius:999px;
  box-shadow:0 8px 24px rgba(255,197,61,.35);
  transition:transform .2s,box-shadow .2s
}

.nav__cta:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(255,197,61,.5)
}

.burger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:0;
  cursor:pointer
}

.burger span{
  width:26px;
  height:3px;
  background:var(--white);
  border-radius:2px
}


/* ============================================================
   HERO
   ============================================================ */

.hero{
  position:relative;
  padding:64px 0 84px;
  overflow:hidden;
  isolation:isolate
}

.aurora{
  position:absolute;
  inset:-20% -10%;
  z-index:-2;
  filter:blur(70px);
  opacity:.9
}

.blob{
  position:absolute;
  border-radius:50%;
  mix-blend-mode:screen
}

.blob.b1{
  width:520px;
  height:520px;
  background:var(--electric);
  top:-60px;
  left:-40px;
  animation:float1 16s ease-in-out infinite
}

.blob.b2{
  width:460px;
  height:460px;
  background:#e0348b;
  top:120px;
  right:-60px;
  animation:float2 18s ease-in-out infinite
}

.blob.b3{
  width:420px;
  height:420px;
  background:var(--gold);
  bottom:-120px;
  left:30%;
  opacity:.5;
  animation:float3 20s ease-in-out infinite
}

@keyframes float1{
  50%{transform:translate(60px,50px) scale(1.1)}
}

@keyframes float2{
  50%{transform:translate(-50px,40px) scale(1.08)}
}

@keyframes float3{
  50%{transform:translate(40px,-40px) scale(1.12)}
}

.grain{
  position:absolute;
  inset:0;
  z-index:-1;
  opacity:.05;
  pointer-events:none;
  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='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.spotlight{
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:radial-gradient(
    400px circle at var(--mx,50%) var(--my,30%),
    rgba(255,197,61,.13),
    transparent 70%
  )
}

.hero__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:44px;
  align-items:center
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:9px;
  background:rgba(14,3,32,.45);
  border:1px solid rgba(201,255,77,.45);
  padding:8px 16px;
  border-radius:999px;
  font-weight:600;
  font-size:13px;
  color:#f4eeff;
  backdrop-filter:blur(6px)
}

.pill .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--lime);
  box-shadow:0 0 0 0 rgba(201,255,77,.7);
  animation:pulse 1.8s infinite
}

@keyframes pulse{
  70%{box-shadow:0 0 0 9px rgba(201,255,77,0)}
  100%{box-shadow:0 0 0 0 rgba(201,255,77,0)}
}

.hero h1{
  margin:20px 0 0;
  font-size:clamp(32px,5.2vw,60px);
  font-weight:800
}

.hero h1 .line{
  display:block;
  overflow:hidden
}

.hero h1 .line span{
  display:inline-block;
  transform:translateY(110%);
  animation:rise .9s cubic-bezier(.2,.8,.2,1) forwards
}

.hero h1 .l2 span{animation-delay:.1s}
.hero h1 .l3 span{animation-delay:.2s}

.hero h1 .hl{
  background:linear-gradient(
    100deg,
    var(--gold) 10%,
    #fff2c4 40%,
    var(--gold-deep) 60%,
    var(--gold) 90%
  );
  background-size:220% auto;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation:shine 5s linear infinite
}

@keyframes rise{
  to{transform:translateY(0)}
}

@keyframes shine{
  to{background-position:220% center}
}

.hero__sub{
  margin-top:20px;
  font-size:clamp(15px,1.7vw,18px);
  color:var(--muted);
  max-width:42ch;
  font-weight:500;
  opacity:0;
  animation:fadeUp .7s ease .5s forwards
}

.hero__sub b{
  color:var(--white);
  font-weight:700
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
  opacity:0;
  animation:fadeUp .7s ease .62s forwards
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:9px 14px;
  border-radius:13px;
  font-weight:600;
  font-size:13px;
  color:#eadfff
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
  opacity:0;
  animation:fadeUp .7s ease .74s forwards
}

.btn-gold{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg,var(--gold),var(--gold-deep));
  color:var(--ink);
  font-weight:800;
  font-size:15.5px;
  padding:15px 28px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  box-shadow:0 10px 34px rgba(255,197,61,.42);
  transition:transform .2s,box-shadow .2s;
  position:relative;
  overflow:hidden
}

.btn-gold::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:60%;
  height:100%;
  background:linear-gradient(
    100deg,
    transparent,
    rgba(255,255,255,.6),
    transparent
  );
  transform:skewX(-20deg);
  transition:left .6s
}

.btn-gold:hover::before{left:130%}

.btn-gold:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 44px rgba(255,197,61,.6)
}

.btn-wa{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--green);
  color:#fff;
  font-weight:800;
  font-size:15.5px;
  padding:15px 26px;
  border-radius:999px;
  transition:.2s;
  box-shadow:0 10px 30px rgba(37,211,102,.35)
}

.btn-wa:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 40px rgba(37,211,102,.5)
}

.btn-ghost{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:15px 24px;
  border-radius:999px;
  border:1.5px solid rgba(255,255,255,.25);
  font-weight:700;
  font-size:15px;
  color:#fff;
  transition:.2s
}

.btn-ghost:hover{
  background:rgba(255,255,255,.08);
  border-color:var(--gold)
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(22px)
  }
  to{
    opacity:1;
    transform:translateY(0)
  }
}


/* ============================================================
   VIDEO FACADE
   Thumbnail is visible first, then JS replaces it with YouTube.
   ============================================================ */

.video{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  aspect-ratio:16/10;
  cursor:pointer;
  background:var(--void);
  border:0;
  box-shadow:0 30px 70px rgba(0,0,0,.5)
}

.video .video__thumb{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  max-width:none;
  object-fit:cover;
  object-position:center;
  display:block;
  z-index:1;
  opacity:1;
  visibility:visible;
  transition:opacity .45s ease,visibility .45s ease
}

.video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  z-index:5
}

.video.is-playing .video__thumb{
  opacity:0;
  visibility:hidden;
  pointer-events:none
}

.scrollcue{
  display:flex;
  justify-content:center;
  margin-top:48px;
  opacity:0;
  animation:fadeUp .7s ease 1s forwards
}

.scrollcue span{
  font-size:12px;
  color:var(--muted);
  letter-spacing:.2em;
  font-weight:600;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px
}

.scrollcue .m{
  width:22px;
  height:34px;
  border:2px solid var(--violet);
  border-radius:12px;
  position:relative
}

.scrollcue .m::after{
  content:"";
  position:absolute;
  top:6px;
  left:50%;
  transform:translateX(-50%);
  width:4px;
  height:7px;
  border-radius:2px;
  background:var(--gold);
  animation:drop 1.5s infinite
}

@keyframes drop{
  0%{opacity:0;top:6px}
  30%{opacity:1}
  70%{opacity:1}
  100%{opacity:0;top:18px}
}


/* ============================================================
   STATS
   ============================================================ */

.stats{
  background:linear-gradient(180deg,var(--void),var(--void-2));
  padding:8px 0 56px
}

.stats__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px
}

.stat{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(165,107,255,.2);
  border-radius:var(--radius);
  padding:26px 20px;
  text-align:center;
  transition:transform .3s,border-color .3s
}

.stat:hover{
  transform:translateY(-6px);
  border-color:var(--gold)
}

.stat .num{
  font-family:'Unbounded';
  font-weight:800;
  font-size:clamp(28px,4vw,44px);
  background:linear-gradient(135deg,var(--gold),#fff2c4);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent
}

.stat .lbl{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  margin-top:6px
}


/* ============================================================
   SECTION SHELL
   ============================================================ */

.sec{
  padding:92px 0;
  position:relative
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-weight:800;
  font-size:12.5px;
  color:var(--lime);
  letter-spacing:.08em;
  background:rgba(201,255,77,.1);
  border:1px solid rgba(201,255,77,.3);
  padding:7px 15px;
  border-radius:999px;
  margin-bottom:18px;
  text-transform:uppercase
}

.sec h2{
  font-size:clamp(28px,4.6vw,50px);
  font-weight:800;
  max-width:18ch
}

.sec h2 em{
  font-style:normal;
  color:var(--gold)
}

.sec .lead{
  color:#e6dbff;
  font-size:17px;
  margin-top:18px;
  max-width:60ch;
  font-weight:500
}

.center{text-align:center}
.center h2{margin:0 auto}
.center .lead{
  margin-left:auto;
  margin-right:auto
}

.reveal{
  opacity:0;
  transform:translateY(34px);
  transition:opacity .7s ease,transform .7s ease
}

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


/* ============================================================
   PROBLEM / SOLUTION
   ============================================================ */

.ps{
  background:
    radial-gradient(
      1000px 600px at 80% 0,
      rgba(139,61,255,.16),
      transparent
    ),
    var(--void)
}

.ps__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:44px
}

.ps__col{
  border-radius:var(--radius);
  padding:32px 28px;
  border:1px solid
}

.ps__col h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:10px
}

.ps__col ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px
}

.ps__col li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  font-weight:500;
  font-size:15.5px
}

.ps__col li .ic{
  flex:0 0 24px;
  height:24px;
  border-radius:7px;
  display:grid;
  place-items:center;
  font-size:13px;
  font-weight:900;
  margin-top:1px
}

.ps--bad{
  background:rgba(255,80,80,.06);
  border-color:rgba(255,80,80,.25)
}

.ps--bad .ic{
  background:rgba(255,80,80,.16);
  color:#ff8080
}

.ps--bad h3{color:#ff9d9d}

.ps--good{
  background:rgba(201,255,77,.07);
  border-color:rgba(201,255,77,.3)
}

.ps--good .ic{
  background:rgba(201,255,77,.2);
  color:var(--lime)
}

.ps--good h3{color:var(--lime)}

.ps__note{
  margin-top:26px;
  text-align:center;
  font-size:18px;
  font-weight:700
}

.ps__note em{
  font-style:normal;
  color:var(--gold)
}


/* ============================================================
   CARD GRID
   ============================================================ */

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:44px
}

.card{
  background:rgba(255,255,255,.045);
  border:1px solid rgba(165,107,255,.22);
  border-radius:var(--radius);
  padding:28px 26px;
  transition:transform .3s,border-color .3s,background .3s
}

.card:hover{
  transform:translateY(-8px);
  border-color:var(--gold);
  background:rgba(139,61,255,.1)
}

.card .ico{
  width:56px;
  height:56px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--electric),var(--grape));
  display:grid;
  place-items:center;
  font-size:28px;
  margin-bottom:18px
}

.card h4{
  font-size:19px;
  font-weight:700;
  margin-bottom:10px
}

.card p{
  color:#d9caf7;
  font-size:14.5px;
  margin-bottom:14px
}

.card ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px
}

.card li{
  display:flex;
  gap:9px;
  align-items:center;
  font-size:14px;
  font-weight:600;
  color:#efe7ff
}

.card li::before{
  content:"›";
  color:var(--gold);
  font-weight:900;
  font-size:18px
}

.card--gold .ico{
  background:linear-gradient(135deg,var(--gold),var(--gold-deep));
  color:var(--ink)
}


/* ============================================================
   PERKS
   ============================================================ */

.get{
  background:var(--cream);
  color:var(--ink)
}

.get h2{color:var(--ink)}
.get h2 em{color:var(--electric)}

.get .eyebrow{
  color:#7a1fd0;
  background:rgba(139,61,255,.1);
  border-color:rgba(139,61,255,.3)
}

.get .lead{color:#5a4a72}

.get__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:48px
}

.perk{
  background:#fff;
  border:1px solid #ecdff9;
  border-radius:20px;
  padding:30px 26px 28px;
  min-height:190px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  box-shadow:0 6px 20px rgba(90,30,160,.06);
  transition:transform .25s,box-shadow .25s,border-color .25s
}

.perk:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 36px rgba(139,61,255,.16);
  border-color:var(--electric)
}

.perk .ck{
  width:48px;
  height:48px;
  flex:0 0 48px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--gold),var(--gold-deep));
  color:var(--ink);
  display:grid;
  place-items:center;
  font-size:22px;
  margin-bottom:18px
}

.perk h4{
  font-size:17px;
  line-height:1.25;
  font-weight:700;
  margin-bottom:8px
}

.perk p{
  font-size:14px;
  line-height:1.6;
  color:#6b5a85;
  font-weight:500;
  margin:0
}

.certbar{
  grid-column:1/-1;
  margin-top:6px;
  background:linear-gradient(135deg,var(--ink),#3a1078);
  color:#fff;
  border-radius:20px;
  padding:24px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap
}

.certbar .t{
  font-family:'Unbounded';
  font-weight:700;
  font-size:20px
}

.certbar .t small{
  display:block;
  font-family:'Plus Jakarta Sans';
  font-weight:600;
  font-size:13px;
  color:var(--gold);
  margin-top:4px
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */

.tst{
  background:linear-gradient(180deg,var(--void-2),var(--void))
}

.tst__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:44px
}

.tcard{
  background:rgba(255,255,255,.045);
  border:1px solid rgba(165,107,255,.22);
  border-radius:var(--radius);
  padding:28px 26px;
  position:relative;
  transition:.3s
}

.tcard:hover{
  transform:translateY(-6px);
  border-color:var(--gold)
}

.tcard .quote{
  font-size:46px;
  font-family:'Unbounded';
  color:var(--gold);
  line-height:1;
  opacity:.5
}

.tcard p{
  font-size:15px;
  color:#efe7ff;
  font-weight:500;
  margin:8px 0 20px
}

.tcard .who{
  display:flex;
  align-items:center;
  gap:12px
}

.tcard .av{
  width:48px;
  height:48px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-family:'Unbounded';
  font-weight:800;
  font-size:17px;
  color:#fff
}

.tcard .who .nm{
  font-weight:800;
  font-size:15px
}

.tcard .who .rl{
  font-size:12.5px;
  color:var(--violet);
  font-weight:600
}

.tcard .stars{
  color:var(--gold);
  font-size:14px;
  margin-bottom:6px
}

.avp{background:linear-gradient(135deg,#8b3dff,#5a1fb0)}
.avb{background:linear-gradient(135deg,#ff5fa2,#c9236b)}
.avg{background:linear-gradient(135deg,#3ad6a5,#158a68)}


/* ============================================================
   TRAINER
   ============================================================ */

.trn{
  background:
    radial-gradient(
      900px 500px at 20% 0,
      rgba(224,52,139,.14),
      transparent
    ),
    var(--void)
}

.trn__grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:44px;
  align-items:center;
  margin-top:44px
}

.trn__photo{
  position:relative;
  border-radius:var(--radius);
  aspect-ratio:3/4;
  overflow:hidden;
  background:linear-gradient(160deg,#8b3dff,#3a1078);
  border:3px solid rgba(255,255,255,.85);
  display:grid;
  place-items:center;
  box-shadow:0 30px 70px rgba(0,0,0,.5)
}

.trn__photo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center
}

.trn__photo .exp{
  position:absolute;
  top:16px;
  right:16px;
  background:var(--gold);
  color:var(--ink);
  font-weight:800;
  font-size:13px;
  padding:9px 14px;
  border-radius:12px;
  box-shadow:0 10px 24px rgba(0,0,0,.3);
  animation:bob 5s ease-in-out infinite
}

@keyframes bob{
  50%{transform:translateY(-10px)}
}

.trn h3{
  font-size:30px;
  font-weight:800;
  margin-top:4px
}

.trn .role{
  color:var(--gold);
  font-weight:700;
  font-size:15px;
  margin:6px 0 18px
}

.trn p{
  color:#d9caf7;
  font-size:15px;
  margin-bottom:14px;
  max-width:60ch
}

.trn__stats{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin:20px 0
}

.trn__stats .s{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  padding:14px 20px
}

.trn__stats .s b{
  font-family:'Unbounded';
  font-size:24px;
  color:var(--gold);
  display:block
}

.trn__stats .s span{
  font-size:12.5px;
  color:var(--muted);
  font-weight:600
}

.trn__soc{
  display:flex;
  gap:10px
}

.trn__soc a{
  width:42px;
  height:42px;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  display:grid;
  place-items:center;
  transition:.2s;
  border:1px solid rgba(255,255,255,.12)
}

.trn__soc a:hover{
  background:var(--gold);
  color:var(--ink);
  transform:translateY(-3px)
}


/* ============================================================
   SOCIAL ICONS — TRAINER
   Proper SVG icons instead of emoji.
   ============================================================ */

.trn__soc a svg{
  width:19px;
  height:19px;
  display:block;
  fill:currentColor;
  stroke:currentColor;
  flex:none
}

.trn__soc a svg[viewBox="0 0 24 24"]{
  overflow:visible
}


/* Instagram */
.trn__soc a.instagram svg rect{
  fill:none;
  stroke:currentColor;
  stroke-width:1.8
}

.trn__soc a.instagram svg circle:first-of-type{
  fill:none;
  stroke:currentColor;
  stroke-width:1.8
}

.trn__soc a.instagram svg circle:last-of-type{
  fill:currentColor;
  stroke:none
}


/* ============================================================
   FAQ
   ============================================================ */

.faq{
  background:linear-gradient(180deg,var(--void),var(--void-2))
}

.faq__list{
  max-width:820px;
  margin:44px auto 0;
  display:flex;
  flex-direction:column;
  gap:12px
}

.qa{
  background:rgba(255,255,255,.045);
  border:1px solid rgba(165,107,255,.22);
  border-radius:18px;
  overflow:hidden;
  transition:border-color .25s
}

.qa.open{border-color:var(--gold)}

.qa__q{
  width:100%;
  text-align:left;
  background:none;
  border:0;
  color:#fff;
  font-family:'Plus Jakarta Sans';
  font-weight:700;
  font-size:16.5px;
  padding:20px 24px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px
}

.qa__q .pm{
  flex:0 0 30px;
  height:30px;
  border-radius:9px;
  background:rgba(139,61,255,.25);
  display:grid;
  place-items:center;
  font-size:20px;
  transition:.3s
}

.qa.open .qa__q .pm{
  background:var(--gold);
  color:var(--ink);
  transform:rotate(45deg)
}

.qa__a{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease
}

.qa__a p{
  padding:0 24px 22px;
  color:#d9caf7;
  font-size:15px;
  font-weight:500
}


/* ============================================================
   GUARANTEE + FINAL
   ============================================================ */

.final{
  background:
    radial-gradient(
      900px 500px at 50% 0,
      rgba(139,61,255,.25),
      transparent
    ),
    var(--void);
  text-align:center
}

.final h2{margin:0 auto}

.gcards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:44px
}

.gcard{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(201,255,77,.25);
  border-radius:var(--radius);
  padding:26px 22px
}

.gcard .g{
  font-size:38px;
  margin-bottom:12px
}

.gcard h4{
  font-size:16.5px;
  font-weight:700;
  margin-bottom:8px
}

.gcard p{
  font-size:13.5px;
  color:#d9caf7;
  font-weight:500
}

.finalcta{
  margin-top:44px;
  background:linear-gradient(135deg,var(--gold),var(--gold-deep));
  color:var(--ink);
  border-radius:32px;
  padding:44px 34px;
  box-shadow:0 30px 80px rgba(255,197,61,.3)
}

.finalcta h3{
  font-size:clamp(24px,3.5vw,38px);
  font-weight:800
}

.finalcta p{
  font-weight:700;
  font-size:16px;
  margin:12px 0 24px;
  opacity:.85
}

.finalcta .row{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap
}

.btn-dark{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--ink);
  color:#fff;
  font-weight:800;
  font-size:15.5px;
  padding:15px 28px;
  border-radius:999px;
  transition:.2s
}

.btn-dark:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 34px rgba(0,0,0,.3)
}

.btn-outline-dark{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:transparent;
  color:var(--ink);
  font-weight:800;
  font-size:15.5px;
  padding:15px 26px;
  border-radius:999px;
  border:2px solid var(--ink);
  transition:.2s
}

.btn-outline-dark:hover{
  background:var(--ink);
  color:#fff
}


/* ============================================================
   FOOTER
   ============================================================ */

.foot{
  background:#0d0320;
  padding:70px 0 40px;
  border-top:1px solid rgba(165,107,255,.2)
}

.foot__grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1.2fr;
  gap:40px
}

.foot p{
  color:var(--muted);
  font-size:14.5px;
  margin-top:16px;
  max-width:38ch
}

.foot h5{
  font-family:'Unbounded';
  font-weight:700;
  font-size:15px;
  margin-bottom:16px
}

.foot ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:11px
}

.foot ul a,
.foot ul li{
  color:var(--muted);
  font-size:14.5px;
  font-weight:500;
  transition:.2s
}

.foot ul a:hover{color:var(--gold)}

.socials{
  display:flex;
  gap:10px;
  margin-top:20px
}

.socials a{
  width:38px;
  height:38px;
  border-radius:11px;
  background:rgba(255,255,255,.06);
  display:grid;
  place-items:center;
  transition:.2s;
  border:1px solid rgba(255,255,255,.1)
}

.socials a:hover{
  background:var(--gold);
  color:var(--ink);
  transform:translateY(-3px)
}


/* ============================================================
   SOCIAL ICONS — FOOTER
   Proper SVG icons instead of emoji.
   ============================================================ */

.socials a svg{
  width:18px;
  height:18px;
  display:block;
  fill:currentColor;
  stroke:currentColor;
  flex:none
}


/* Instagram */
.socials a.instagram svg rect{
  fill:none;
  stroke:currentColor;
  stroke-width:1.8
}

.socials a.instagram svg circle:first-of-type{
  fill:none;
  stroke:currentColor;
  stroke-width:1.8
}

.socials a.instagram svg circle:last-of-type{
  fill:currentColor;
  stroke:none
}


/* Facebook */
.socials a.facebook svg{
  fill:currentColor;
  stroke:none
}


/* LinkedIn */
.socials a.linkedin svg{
  fill:currentColor;
  stroke:none
}


.foot__bottom{
  margin-top:50px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  color:var(--muted);
  font-size:13px
}


/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */

.sticky{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:65;
  background:linear-gradient(135deg,var(--ink),#3a1078);
  border-top:2px solid var(--gold);
  padding:12px 0;
  transform:translateY(120%);
  transition:transform .4s ease
}

.sticky.show{transform:translateY(0)}

.sticky__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap
}

.sticky .txt{
  font-weight:800;
  font-size:15px
}

.sticky .txt b{color:var(--gold)}

.sticky .txt small{
  display:block;
  font-weight:600;
  font-size:12px;
  color:var(--muted)
}


/* ============================================================
   FLOATERS
   ============================================================ */

.floaters{
  position:fixed;
  right:18px;
  bottom:78px;
  z-index:70;
  display:flex;
  flex-direction:column;
  gap:12px
}

.fab{
  width:56px;
  height:56px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:25px;
  box-shadow:0 12px 30px rgba(0,0,0,.4);
  transition:transform .2s
}

.fab:hover{transform:scale(1.1)}

.fab.wa{background:var(--green)}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media(max-width:960px){

  .nav__links{display:none}
  .burger{display:flex}

  .hero__grid,
  .trn__grid{
    grid-template-columns:1fr;
    gap:30px
  }

  .stats__grid{
    grid-template-columns:1fr 1fr
  }

  .grid3,
  .get__grid,
  .gcards,
  .tst__grid{
    grid-template-columns:1fr 1fr;
    gap:18px
  }

  .perk{
    min-height:185px
  }

  .foot__grid{
    grid-template-columns:1fr 1fr
  }
}


@media(max-width:600px){

  .sec{
    padding:64px 0
  }

  .ps__grid,
  .grid3,
  .get__grid,
  .gcards,
  .tst__grid,
  .foot__grid{
    grid-template-columns:1fr
  }

  .get__grid{
    gap:16px;
    margin-top:36px
  }

  .perk{
    min-height:auto;
    padding:26px 24px
  }

  .sticky .txt small{
    display:none
  }
}


/* ============================================================
   MOBILE NAV + HERO PILL
   ============================================================ */

.logo{
  min-width:0
}

.logo__txt{
  display:inline-flex;
  flex-direction:column;
  line-height:1.06
}

.nav__mobile{
  display:none
}

.burger span{
  transition:transform .3s ease,opacity .2s ease
}

.burger.open span:nth-child(1){
  transform:translateY(8px) rotate(45deg)
}

.burger.open span:nth-child(2){
  opacity:0
}

.burger.open span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg)
}


/* Better legibility of the hero eyebrow pill over the bright aurora */

.pill{
  background:rgba(14,3,32,.45);
  color:#f4eeff;
  border-color:rgba(201,255,77,.45)
}


@media(max-width:960px){

  /* hide desktop CTA; the mobile menu carries its own */

  .nav__cta--desktop{
    display:none
  }

  .logo{
    font-size:14px;
    gap:9px
  }

  .logo__mark{
    width:32px;
    height:32px;
    font-size:17px
  }

  .logo small{
    font-size:9px
  }

  .nav__mobile{
    display:flex;
    flex-direction:column;
    position:absolute;
    left:0;
    right:0;
    top:100%;
    background:rgba(14,3,32,.98);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(165,107,255,.22);
    max-height:0;
    overflow:hidden;
    transition:max-height .38s ease;
    padding:0 24px
  }

  .nav__mobile.open{
    max-height:78vh;
    padding:12px 24px 22px
  }

  .nav__mobile a:not(.nav__mobile-cta){
    color:#eadfff;
    font-weight:700;
    font-size:16px;
    padding:14px 2px;
    border-bottom:1px solid rgba(255,255,255,.07)
  }

  .nav__mobile-cta{
    margin-top:16px;
    justify-content:center;
    width:100%
  }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion:reduce){

  *{
    animation:none!important;
    transition:none!important
  }

  .hero h1 .line span{
    transform:none
  }

  .reveal{
    opacity:1;
    transform:none
  }

  .hero__sub,
  .chips,
  .cta-row,
  .scrollcue{
    opacity:1
  }

  .nav__mobile{
    transition:none!important
  }

  .burger span{
    transition:none!important
  }
}