/* ============================================
   Infinity Scrims — Hero Section
   Tokens
   Color   : bg #08060D | bg-alt #0D0817 | purple #7C3AED | purple-glow #B98BFF
             purple-deep #3B1370 | white #F5F3FA | muted #948DAA
   Type    : Display — Space Grotesk | Body — Inter
   Motif   : the infinity-arrow loop from the logo, redrawn as an ambient
             glowing path with a runner dot — "the grind never stops"
   ============================================ */

:root{
  --bg: #08060d;
  --bg-alt: #0d0817;
  --purple: #7c3aed;
  --purple-glow: #b98bff;
  --purple-deep: #3b1370;
  --white: #f5f3fa;
  --muted: #948daa;
  --border: rgba(185,139,255,0.16);

  --font-display: 'Machina', 'Manrope', sans-serif;
  --font-serif: 'Instrument Serif', 'Georgia', serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1240px;
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
}

a{ text-decoration:none; color:inherit; }
button{ font-family:inherit; border:none; background:none; cursor:pointer; }

/* subtle grain so the flat black doesn't look dead */
.noise-overlay{
  position:fixed; inset:0; z-index:2; pointer-events:none;
  opacity:0.035; mix-blend-mode:overlay;
  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='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------- Header (FragTrack pattern) ---------------- */
.nav{
  position: fixed; top:0; left:0; right:0; z-index:90;
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 32px; gap: 24px;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled{
  background: rgba(8,6,13,.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__logo{ display:flex; align-items:center; flex-shrink:0; }
.nav__logo img{
  height:88px; width:auto; display:block;
  /* Source asset is a faint, low-opacity watermark-style mark — at small
     nav-bar sizes the thin strokes were nearly invisible. Boosting size +
     contrast/brightness makes it legible without needing a new file. */
  filter: contrast(1.7) brightness(1.4);
}

.nav__links{ display:flex; align-items:center; gap:38px; }
.nav__link{
  font-size:14.5px; font-weight:500; color: var(--muted);
  position:relative; padding:6px 2px;
  transition: color .3s;
}
.nav__link:hover{ color: var(--white); }
.nav__link::after{
  content:''; position:absolute; bottom:-4px; left:0;
  height:1.5px; width:0; background: var(--purple-glow);
  transition: width .4s cubic-bezier(.6,0,.2,1);
}
.nav__link:hover::after{ width:100%; }

.nav__cta{ display:flex; gap:14px; align-items:center; }

.nav__burger{
  display:none; width:40px; height:40px;
  flex-direction:column; gap:5px; align-items:center; justify-content:center;
  border-radius:12px; border:1px solid var(--border);
}
.nav__burger span{ width:18px; height:1.5px; background: var(--white); transition:.3s; }
.nav__burger.on span:nth-child(1){ transform: translateY(3.25px) rotate(45deg); }
.nav__burger.on span:nth-child(2){ transform: translateY(-3.25px) rotate(-45deg); }

/* Mobile menu — floating dropdown card */
.mobile-menu{
  position:fixed; top:78px; left:12px; right:12px; z-index:80;
  background: rgba(13,8,23,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px;
  display:flex; flex-direction:column; gap:6px;
  opacity:0; visibility:hidden; transform: translateY(-8px);
  transition: opacity .35s cubic-bezier(.2,.8,.2,1), transform .35s cubic-bezier(.2,.8,.2,1), visibility .35s;
}
.mobile-menu.on{ opacity:1; visibility:visible; transform: translateY(0); }
.mobile-menu a{ padding:12px 14px; border-radius:12px; color: var(--muted); font-size:15px; }
.mobile-menu a:hover{ background: rgba(255,255,255,0.04); color: var(--white); }
.mobile-menu__divider{ border:0; height:1px; background: var(--border); margin:4px 0; }
.mobile-menu__auth-row{ display:flex; gap:8px; margin-top:4px; }
.mobile-menu__auth-row .btn{ padding:12px 14px; border-radius:12px; justify-content:center; font-size:15px; flex:1; }

.header-actions{ display:flex; align-items:center; gap:14px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  font-family: var(--font-body);
  font-weight:600; font-size:14px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn-ghost{
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover{ border-color: var(--purple-glow); color: var(--purple-glow); }

.btn-primary{
  background: linear-gradient(135deg, var(--purple), #5b21b6);
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(185,139,255,0.25), 0 8px 24px -8px rgba(124,58,237,0.65);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(185,139,255,0.4), 0 10px 28px -6px rgba(124,58,237,0.8); }

.nav-toggle{
  display:none;
  flex-direction:column; gap:5px;
  width:26px;
}
.nav-toggle span{
  display:block; height:2px; width:100%;
  background: var(--white); border-radius:2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* ---------------- Hero ---------------- */
.hero{
  position:relative;
  min-height: 100vh;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  padding: 140px 24px 100px;
  overflow:hidden;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(124,58,237,0.20) 0%, rgba(124,58,237,0) 70%),
    var(--bg);
}

.hero-motif{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:min(1200px, 130vw);
  height:auto;
  z-index:0;
  opacity:0.9;
}
.motif-path{
  fill:none;
  stroke: url(#none);
  stroke: var(--purple);
  stroke-width:1.4;
  stroke-linecap:round;
  opacity:0.35;
  filter: drop-shadow(0 0 6px rgba(185,139,255,0.35));
}
.motif-arrowhead{
  fill: var(--purple-glow);
  opacity:0.45;
}
.motif-arrowhead-back{ opacity:0.25; }
.motif-runner{
  fill: var(--purple-glow);
  filter: drop-shadow(0 0 8px var(--purple-glow)) drop-shadow(0 0 16px var(--purple));
}

.hero-stars{
  position:absolute; inset:0; z-index:0;
  pointer-events:none;
}
.hero-stars span{
  position:absolute;
  width:3px; height:3px;
  background: var(--purple-glow);
  border-radius:50%;
  opacity:0.5;
}

.hero-content{
  position:relative; z-index:1;
  max-width: 860px;
  display:flex; flex-direction:column; align-items:center;
}

.eyebrow{
  font-family: var(--font-display);
  font-size:13px;
  font-weight:600;
  letter-spacing:0.18em;
  color: var(--purple-glow);
  margin-bottom:22px;
}

.headline{
  font-family: var(--font-display);
  font-weight:700;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height:1.08;
  letter-spacing:-0.01em;
  color: var(--white);
}
.headline .line{ display:block; }

.highlight{
  position:relative;
  display:inline-block;
  line-height:1;
  color: var(--purple-glow);
  padding: 6px 14px 10px;
  border: 1.5px solid var(--purple);
  border-radius: 8px;
  background: rgba(124,58,237,0.10);
  box-shadow: 0 0 24px -4px rgba(124,58,237,0.55) inset;
}

.subtext{
  margin-top:26px;
  font-size: 17px;
  line-height:1.6;
  color: var(--muted);
  max-width: 560px;
}

.social-proof{
  margin-top: 36px;
  display:flex; align-items:center; gap:14px;
}
.avatar-stack{ display:flex; }
.avatar{
  width:34px; height:34px;
  border-radius:50%;
  border:2px solid var(--bg);
  margin-left:-10px;
  overflow:hidden;
  background: var(--purple-deep);
}
.avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
.avatar:first-child{ margin-left:0; }

.proof-text{ font-size:14px; color: var(--muted); text-align:left; }
.proof-text strong{ color: var(--white); }

.btn-cta{
  margin-top:40px;
  gap:10px;
  padding: 15px 30px;
  font-size:15.5px;
  background: linear-gradient(135deg, var(--purple), #5b21b6);
  color:var(--white);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(185,139,255,0.3), 0 14px 36px -10px rgba(124,58,237,0.75);
}
.btn-cta svg{ transition: transform .25s ease; }
.btn-cta:hover{ transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(185,139,255,0.5), 0 18px 40px -8px rgba(124,58,237,0.9); }
.btn-cta:hover svg{ transform: translateX(4px); }

/* ---------------- Chapter sections (Stats / How it Works / FAQ) ---------------- */
.chapter{
  position:relative;
  padding: 120px 24px 80px;
  max-width: var(--container);
  margin: 0 auto;
}
.chapter__head{
  display:flex; align-items:center; gap:20px;
  margin-bottom:36px;
  font-family: var(--font-mono);
  font-size:11px; text-transform:uppercase; letter-spacing:.25em;
  color: var(--muted);
}
.chapter__num{
  font-family: var(--font-serif);
  font-size:44px; line-height:1; font-style:italic; font-weight:400;
  background: linear-gradient(135deg, var(--purple), var(--purple-glow));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.chapter__line{ flex:1; height:1px; background: linear-gradient(90deg, var(--border), transparent); }
.chapter__title{
  font-family: var(--font-display);
  font-weight:700;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height:1.25;
  letter-spacing:-.01em;
  margin-bottom:14px;
}
.chapter__title em{ font-style:normal; color: var(--purple-glow); }
.chapter__lede{ max-width:600px; color: var(--white); font-size:16px; line-height:1.6; opacity:0.85; }

/* Section intro — Pivaga-style centered heading, no eyebrow number */
.section-intro{ max-width:760px; margin:0 auto 48px; text-align:center; }
/* Small section tag label — badge with soft background, centered above heading */
.section-tag{
  display:inline-block; font-family: var(--font-mono); font-size:11.5px;
  text-transform:uppercase; letter-spacing:.2em; color: var(--purple-glow);
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(185,139,255,0.10);
  border: 1px solid rgba(185,139,255,0.25);
  margin-bottom:18px;
}
.section-intro .chapter__title{ margin:0 auto 14px; }
.section-intro .chapter__lede{ margin:0 auto; }

.faq__wrap .chapter__title{ text-align:left; }

/* Trusted stats */
.stats__grid{
  display:grid; grid-template-columns: repeat(4,1fr);
  margin-top:56px; border-top:1px solid var(--border);
}
.stat{ padding:40px 24px 10px; border-right:1px solid var(--border); }
.stat:last-child{ border-right:0; }
.stat b.counter{
  display:block; font-family: var(--font-serif); font-weight:400;
  font-size: clamp(42px, 5.4vw, 72px); line-height:1;
  background: linear-gradient(135deg, var(--purple), var(--purple-glow));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  margin-bottom:12px;
}
.stat em{
  font-style:normal; font-family: var(--font-mono); font-size:11px;
  text-transform:uppercase; letter-spacing:.2em; color: var(--muted);
}

/* How it Works — timeline */
.timeline{ position:relative; margin-top:56px; display:flex; flex-direction:column; }
.timeline li{
  display:grid; grid-template-columns: 64px 1fr auto;
  gap:24px; align-items:center;
  padding:26px 0; border-bottom:1px solid var(--border);
  transition: padding-left .4s ease;
}
.timeline li:hover{ padding-left:10px; }
.timeline li b{
  width:56px; height:56px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  border: 1px solid var(--border);
  background: rgba(185,139,255,0.06);
  font-family: var(--font-serif); font-style:italic; font-weight:400;
  font-size:20px; color: var(--purple-glow);
  transition: .35s;
}
.timeline li:hover b{ border-color: rgba(185,139,255,0.5); box-shadow:0 0 20px rgba(124,58,237,0.3); background: rgba(185,139,255,0.12); }
.timeline li h4{ font-family: var(--font-serif); font-weight:400; font-size:24px; margin-bottom:6px; }
.timeline li p{ color: var(--muted); font-size:14px; max-width:480px; }
.timeline li i{
  font-size:18px; color: var(--muted); width:46px; height:46px;
  border:1px solid var(--border); border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(185,139,255,0.04); transition:.35s;
}
.timeline li:hover i{ color: var(--purple-glow); border-color: rgba(185,139,255,0.4); box-shadow:0 0 20px rgba(124,58,237,0.25); }

/* FAQ accordion */
.faq__wrap{ display:grid; grid-template-columns:1fr 1.3fr; gap:56px; align-items:start; }
.faq__wrap--centered{ display:block; max-width:760px; margin:0 auto; }
.accordion{ display:flex; flex-direction:column; border-top:1px solid var(--border); }
.accordion li{ border-bottom:1px solid var(--border); }
.accordion button{
  display:flex; justify-content:space-between; align-items:center;
  width:100%; padding:22px 0; text-align:left; background:none; border:none;
  transition: padding-left .3s ease; color: var(--white); cursor:pointer;
}
.accordion button:hover{ padding-left:6px; }
.accordion button span{ font-family: var(--font-display); font-weight:600; font-size:16.5px; letter-spacing:-.005em; }
.accordion button i{ color: var(--purple-glow); font-size:14px; transition: transform .35s ease; flex-shrink:0; margin-left:16px; }
.accordion li.on button i{ transform: rotate(180deg); }
.accordion > li > div{ overflow:hidden; max-height:0; transition:max-height .5s cubic-bezier(.2,.8,.2,1); }
.accordion > li.on > div{ max-height:220px; }
.accordion p{ padding:0 0 22px; color: var(--muted); font-size:14.5px; line-height:1.65; max-width:none; }

/* ---------------- Footer ---------------- */
.footer{ padding:60px 24px 28px; border-top:1px solid var(--border); position:relative; overflow:hidden; }

/* Pivaga-style 12-col footer grid */
.footer__top{ max-width: var(--container); margin:0 auto 40px; display:grid; grid-template-columns:repeat(12,1fr); gap:32px; }
.footer__brand{ grid-column: span 6; }
.footer__brand img{
  height:88px; margin-bottom:16px;
  /* Same fix as .nav__logo img — source asset is a faint, low-opacity
     watermark-style mark, nearly invisible at small display sizes. */
  filter: contrast(1.7) brightness(1.4);
}
.footer__brand p{ color: var(--muted); font-size:14px; line-height:1.6; max-width:320px; margin-bottom:20px; }

.footer__col{ grid-column: span 3; }
.footer__col h3{ font-family: var(--font-display); font-weight:700; font-size:15.5px; color: var(--white); margin-bottom:14px; }
.footer__col ul{ display:flex; flex-direction:column; gap:9px; list-style:none; }
.footer__col a{ font-size:14px; color: var(--muted); transition:.25s; }
.footer__col a:hover{ color: var(--white); }

.socials{ display:flex; gap:10px; }
.socials a{
  width:38px; height:38px; border-radius:10px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color: var(--white); font-size:14px; transition:.3s;
}
.socials a:hover{ color: var(--purple-glow); border-color: var(--purple-glow); transform: translateY(-2px); }

.footer__giant{
  font-family: var(--font-serif); font-weight:400;
  font-size: clamp(36px, 8vw, 108px); line-height:1; letter-spacing:-.02em;
  text-align:center; white-space:nowrap; overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  margin: 0 auto 40px; pointer-events:none; user-select:none;
  max-width: 100%;
}

.footer__bottom{
  max-width: var(--container); margin:0 auto; display:flex; align-items:center; justify-content:space-between;
  padding-top:22px; border-top:1px solid var(--border);
  font-size:13.5px; color: var(--muted);
  flex-wrap:wrap; gap:16px;
}
.footer__bottom .live-dot{ display:inline-flex; align-items:center; gap:6px; }
.footer__bottom .live-dot::before{
  content:''; width:6px; height:6px; border-radius:50%; background:#22c55e;
  box-shadow:0 0 8px #22c55e; animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot{ 50%{ opacity:.4; } }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ---------------- Testimonials (marquee) ---------------- */
.testimonials{ overflow:hidden; }
.testimonials__wrap{ position:relative; margin-top:56px; }
.testimonials__glow{
  position:absolute; inset:0; margin:auto; pointer-events:none;
  filter: blur(140px);
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.35) 0%, transparent 70%);
}
.testimonials__viewport{
  position:relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  overflow:hidden;
}
.t-row{
  display:flex; gap:24px; width:max-content;
  padding: 8px 0;
}
.t-row--left{ animation: t-scroll-left 42s linear infinite; margin-bottom:24px; }
.t-row--right{ animation: t-scroll-right 42s linear infinite; }
.t-row:hover{ animation-play-state: paused; }
@keyframes t-scroll-left{ to{ transform: translateX(-50%); } }
@keyframes t-scroll-right{ from{ transform: translateX(-50%); } to{ transform: translateX(0); } }

.t-card{
  width:340px; flex-shrink:0;
  padding:24px; border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.02);
  background-image: radial-gradient(100% 100% at 50% 50%, rgba(124,58,237,0.07) 0%, rgba(124,58,237,0) 100%);
  transition: border-color .3s ease;
  display:flex; flex-direction:column; justify-content:space-between; gap:20px;
}
.t-card:hover{ border-color: var(--purple-glow); }
.t-card p{ color: var(--muted); font-size:14.5px; line-height:1.65; }
.t-card footer{
  display:flex; align-items:center; gap:12px;
  padding-top:16px; border-top:1px solid var(--border);
}
.t-card .t-avatar{
  width:44px; height:44px; border-radius:50%; overflow:hidden;
  border:1px solid var(--border); flex-shrink:0;
}
.t-card .t-avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
.t-card b{ display:block; color: var(--white); font-size:14px; font-weight:600; }
.t-card span{ display:block; color: var(--purple-glow); font-size:12px; margin-top:2px; }

/* CTA band — before footer, grid pattern background */
.cta-band{
  position:relative;
  padding:110px 24px;
  text-align:center;
  overflow:hidden;
  background: var(--bg);
}
.cta-band__bg{
  position:absolute; inset:0; z-index:0;
  background-image:url('../assets/bg-pattern.webp');
  background-size:640px auto;
  background-position:center;
  background-repeat:repeat;
  filter: invert(1);
  opacity:0.12;
  pointer-events:none;
}
.cta-band__content{ position:relative; z-index:1; max-width:720px; margin:0 auto; }
.cta-band .chapter__title{ margin-bottom:16px; }
.cta-band .chapter__lede{ margin:0 auto 34px; }

/* Reveal utility for scroll-in sections */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in{ opacity:1; transform: translateY(0); }

/* ---------------- Social Media Videos (reels carousel) ---------------- */
.reels__wrap{ position:relative; display:flex; align-items:center; gap:14px; }
.reels__track{
  display:flex; gap:16px; overflow-x:auto;
  padding:6px 2px 18px; -ms-overflow-style:none; scrollbar-width:none;
}
.reels__track::-webkit-scrollbar{ display:none; }

.reel-card{
  position:relative; flex:0 0 auto; width:190px; aspect-ratio:9/16; border-radius:18px;
  overflow:hidden; cursor:pointer; background: var(--bg-alt);
  border:1px solid var(--border); transition: transform .3s ease, border-color .3s ease;
}
.reel-card:hover{ transform: translateY(-4px); border-color: var(--purple-glow); }
.reel-card__preview{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.reel-card__fallback{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(150deg, var(--purple-deep), var(--bg-alt));
  color: var(--purple-glow); font-size:30px; opacity:.5;
}
.reel-card__preview:not([src]), .reel-card__preview[src=""]{ display:none; }
.reel-card__play{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background: rgba(8,6,13,0.55); border:1px solid rgba(255,255,255,0.25); color:#fff; font-size:15px;
  backdrop-filter: blur(4px); transition: transform .25s ease, background .25s ease, opacity .25s ease;
}
.reel-card:hover .reel-card__play{ transform: translate(-50%,-50%) scale(1.1); background: var(--purple); }
/* Preview is already autoplaying muted — once playback actually starts, hide
   the play button (it was staying on screen the whole time before, making an
   already-playing video look like it still needed a click). */
.reel-card.is-playing .reel-card__play{ opacity: 0; pointer-events: none; }
.reel-card__label{
  position:absolute; left:10px; right:10px; bottom:10px; font-size:12px; font-weight:600; color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.7); line-height:1.3;
}

.reels__nav{
  flex-shrink:0; width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.03); border:1px solid var(--border); color: var(--white); font-size:14px;
  transition: .25s;
}
.reels__nav:hover{ background: var(--purple); border-color: var(--purple); }

/* Lightbox */
.reel-lightbox{ position:fixed; inset:0; z-index:200; display:none; align-items:center; justify-content:center; }
.reel-lightbox.on{ display:flex; }
.reel-lightbox__backdrop{ position:absolute; inset:0; background: rgba(4,3,8,0.9); backdrop-filter: blur(6px); }
.reel-lightbox__stage{ position:relative; z-index:1; display:flex; align-items:center; gap:20px; max-width:92vw; }
.reel-lightbox__video-wrap{ position:relative; width:min(380px, 82vw); }
.reel-lightbox__video{
  width:100%; aspect-ratio:9/16; max-height:80vh; border-radius:18px; background:#000;
  object-fit:cover; display:block;
}
.reel-lightbox__caption{
  margin-top:12px; text-align:center; color: var(--muted); font-size:13.5px;
}
.reel-lightbox__controls{
  position:absolute; left:12px; right:12px; bottom:12px; display:flex; align-items:center; gap:10px;
  background: rgba(8,6,13,0.55); border:1px solid rgba(255,255,255,0.12); border-radius:100px;
  padding:8px 10px; backdrop-filter: blur(6px);
}
.reel-lightbox__controls button{ color:#fff; font-size:14px; width:26px; flex-shrink:0; }
.reel-lightbox__progress{ flex:1; height:4px; border-radius:4px; background: rgba(255,255,255,0.2); cursor:pointer; position:relative; }
.reel-lightbox__progress span{ position:absolute; left:0; top:0; bottom:0; width:0%; border-radius:4px; background: var(--purple-glow); }

.reel-lightbox__close{
  position:absolute; top:-46px; right:0; width:38px; height:38px; border-radius:50%;
  background: rgba(255,255,255,0.06); border:1px solid var(--border); color:#fff; font-size:15px;
}
.reel-lightbox__close:hover{ background: var(--purple); }
.reel-lightbox__side{
  width:44px; height:44px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.06); border:1px solid var(--border); color:#fff; font-size:15px;
}
.reel-lightbox__side:hover{ background: var(--purple); }

@media (max-width: 640px){
  .reel-card{ width:150px; }
  .reels__nav{ display:none; }
  .reel-lightbox__side{ position:absolute; top:50%; transform:translateY(-50%); z-index:2; }
  .reel-lightbox__side--prev{ left:6px; }
  .reel-lightbox__side--next{ right:6px; }
  .reel-lightbox__stage{ max-width:100vw; }
}

/* ---------------- WhatsApp floating button + community popup ---------------- */
.wa-fab{
  position:fixed; right:22px; bottom:22px; z-index:150;
  width:58px; height:58px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: #25D366; color:#fff; font-size:26px;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,0.65), 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-fab::before{
  content:''; position:absolute; inset:-6px; border-radius:50%;
  border:1.5px solid rgba(37,211,102,0.55);
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse{
  0%{ transform:scale(0.9); opacity:.9; }
  80%{ transform:scale(1.35); opacity:0; }
  100%{ opacity:0; }
}
.wa-fab:hover{ transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 34px -6px rgba(37,211,102,0.8); }

.wa-popup{ position:fixed; inset:0; z-index:151; display:none; align-items:flex-end; justify-content:flex-end; padding:24px; }
.wa-popup.on{ display:flex; }
.wa-popup__backdrop{ position:absolute; inset:0; background: rgba(4,3,8,0.6); backdrop-filter: blur(4px); }

.wa-popup__card{
  position:relative; z-index:1; width:100%; max-width:360px;
  background: var(--bg-alt); border:1px solid var(--border); border-radius:22px;
  padding:26px 22px 18px; box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
  transform: translateY(12px) scale(.97); opacity:0;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
}
.wa-popup.on .wa-popup__card{ transform: translateY(0) scale(1); opacity:1; }

.wa-popup__close{
  position:absolute; top:14px; right:14px; width:30px; height:30px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.05); border:1px solid var(--border); color: var(--muted); font-size:13px;
}
.wa-popup__close:hover{ color: var(--white); border-color: var(--purple-glow); }

.wa-popup__header{ text-align:center; margin-bottom:20px; }
.wa-popup__header-icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:50px; height:50px; border-radius:50%; margin-bottom:12px;
  background: rgba(37,211,102,0.12); border:1px solid rgba(37,211,102,0.35); color:#25D366; font-size:22px;
}
.wa-popup__header h3{ font-family: var(--font-display); font-weight:700; font-size:18px; color: var(--white); margin-bottom:4px; }
.wa-popup__header p{ font-size:13px; color: var(--muted); }

.wa-popup__list{ display:flex; flex-direction:column; gap:10px; }
.wa-popup__item{
  display:flex; align-items:center; gap:12px; padding:12px 14px;
  border:1px solid var(--border); border-radius:14px; background: rgba(255,255,255,0.02);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.wa-popup__item:hover{ border-color: var(--purple-glow); background: rgba(185,139,255,0.06); transform: translateX(2px); }
.wa-popup__icon{
  width:38px; height:38px; border-radius:11px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:17px; color:#fff;
}
.wa-popup__icon--wa{ background: linear-gradient(135deg,#25D366,#128C4E); }
.wa-popup__icon--ig{ background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.wa-popup__icon--yt{ background: linear-gradient(135deg,#FF0000,#c40000); }
.wa-popup__text{ flex:1; display:flex; flex-direction:column; gap:1px; }
.wa-popup__text b{ font-size:14px; color: var(--white); font-weight:600; }
.wa-popup__text em{ font-style:normal; font-size:11.5px; color: var(--muted); }
.wa-popup__item > i{ color: var(--muted); font-size:12px; flex-shrink:0; }

@media (max-width: 520px){
  .wa-fab{ right:16px; bottom:16px; width:52px; height:52px; font-size:23px; }
  .wa-popup{ padding:14px; align-items:flex-end; }
  .wa-popup__card{ max-width:100%; }
}

/* ---------------- Simple content pages (Privacy / Terms / Cookies / Help Center) ---------------- */
.page-hero{ position:relative; padding:150px 24px 50px; max-width: var(--container); margin:0 auto; overflow:hidden; text-align:left; }
.page-hero .chapter__label{ font-family: var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.25em; color: var(--muted); display:flex; align-items:center; gap:14px; margin-bottom:22px; }
.page-hero .chapter__line{ flex:1; height:1px; background: var(--border); max-width:120px; }
.page-hero h1{ font-family: var(--font-display); font-weight:700; font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing:-.01em; line-height:1.1; margin-bottom:18px; }
.page-hero h1 em{ font-style:normal; color: var(--purple-glow); }
.page-hero p{ max-width:640px; margin:0; color: var(--muted); font-size: clamp(15px, 1vw, 17px); line-height:1.6; text-align:left; }
.page-hero__meta{ margin-top:22px; font-family: var(--font-mono); font-size:12px; color: var(--muted); letter-spacing:.05em; }

.prose{ position:relative; padding:20px 24px 100px; max-width: var(--container); margin:0 auto; text-align:left; }
.prose h2{ font-family: var(--font-display); font-weight:700; font-size: clamp(22px,2.4vw,30px); letter-spacing:-.01em; line-height:1.3; margin:48px 0 14px; color: var(--white); max-width:760px; }
.prose h2:first-child{ margin-top:0; }
.prose > .reveal:first-child h2,
.prose__updated + .reveal h2{ margin-top:0; }
.prose h3{ font-family: var(--font-display); font-weight:700; font-size:18px; margin:26px 0 10px; color: var(--white); max-width:760px; }
.prose p{ color: var(--muted); font-size:15.5px; line-height:1.75; margin:0 0 16px; text-align:left; max-width:760px; }
.prose ul, .prose ol{ color: var(--muted); font-size:15.5px; line-height:1.75; margin:0 0 16px 22px; text-align:left; max-width:760px; }
.prose li{ margin-bottom:8px; }
.prose a{ color: var(--purple-glow); text-decoration:underline; text-underline-offset:3px; }
.prose strong{ color: var(--white); font-weight:600; }
.prose__updated{ display:inline-block; font-family: var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.15em; color: var(--muted); border:1px solid var(--border); padding:8px 14px; border-radius:100px; margin:0 0 36px; }

/* Help center — grouped topic cards */
.help-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin:20px 0 40px; }
.help-card{ padding:22px; border:1px solid var(--border); border-radius:16px; background: rgba(255,255,255,0.02); transition:.3s; }
.help-card:hover{ border-color: var(--purple-glow); }
.help-card i{ color: var(--purple-glow); font-size:18px; margin-bottom:12px; display:block; }
.help-card h3{ margin:0 0 8px; }
.help-card p{ margin:0; font-size:14px; }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px){
  .nav__links{ display:none; }
  .nav__cta{ display:none; }
  .nav__burger{ display:flex; }
}

@media (max-width: 520px){
  .nav{ padding:14px 20px; }
  .hero{ padding: 48px 20px 60px; }
  .eyebrow{ margin-bottom:16px; }
  .headline{ line-height:1.18; }
  .headline .line{ margin-bottom:4px; }
  .highlight{ padding:3px 10px 5px; }
  .subtext{ margin-top:18px; }
  .social-proof{ display:none; }
  .btn-cta{ margin-top:28px; }
}

@media (max-width: 900px){
  .stats__grid{ grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2){ border-right:0; }
  .stat:nth-child(1), .stat:nth-child(2){ border-bottom:1px solid var(--border); }

  .timeline li{ grid-template-columns: 48px 1fr; gap:16px; }
  .timeline li i{ display:none; }
  .timeline li b{ width:44px; height:44px; font-size:16px; }
  .timeline li h4{ font-size:19px; }

  .faq__wrap{ grid-template-columns:1fr; gap:32px; }

  .footer__top{ grid-template-columns:repeat(6,1fr); gap:36px; }
  .footer__brand{ grid-column: span 6; }
  .footer__col{ grid-column: span 3; }
}

@media (max-width: 520px){
  .chapter{ padding:90px 20px 50px; }
  .stats__grid{ grid-template-columns:1fr; }
  .stat{ border-right:0; border-bottom:1px solid var(--border); }
  .footer{ padding:48px 20px 24px; }
  .footer__top{ grid-template-columns:1fr; gap:28px; }
  .footer__brand, .footer__col{ grid-column: span 1; }
  .footer__bottom{ flex-direction:column; text-align:center; }
  .t-card{ width:280px; padding:20px; }
  .help-grid{ grid-template-columns:1fr; }
}