:root{
  --bg:#14102a;
  --bg-2:#1a1438;
  --surface:#1d1840;
  --surface-2:#251c54;
  --border:#2b2360;
  --violet:#7a39ff;
  --violet-2:#a074ff;
  --gold:#ffc93a;
  --gold-2:#ffb01f;
  --text:#ffffff;
  --muted:#b3b1c9;
  --muted-2:#7f7a9b;
  --danger:#ff4e6a;
  --radius:12px;
  --radius-lg:20px;
  --container:1440px;
  --sidebar-w:170px;
  --header-h:64px;
  --shadow:0 8px 24px rgba(0,0,0,.35);
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0;padding:0}
body{
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  min-height:100vh;
  overflow-x:hidden;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
button{font:inherit;border:0;background:none;color:inherit;cursor:pointer}
input,select,textarea{font:inherit;color:inherit}

.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}

.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 16px}
@media(min-width:1024px){.container{padding:0 24px}}

/* ============ HEADER ============ */
.header{
  position:sticky;top:0;z-index:50;
  background:rgba(20,16,42,.92);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid rgba(255,255,255,.05);
  transition:box-shadow .2s ease;
}
.header.is-scrolled{box-shadow:0 4px 20px rgba(0,0,0,.4)}
.header__inner{
  display:flex;align-items:center;gap:12px;
  height:var(--header-h);
  padding:0 16px;
}
@media(min-width:1024px){.header__inner{padding:0 24px}}
.logo{display:flex;align-items:center;gap:8px;flex-shrink:0}
.logo img{height:40px;width:auto}
@media(min-width:1024px){
  .logo{flex-basis:calc(var(--sidebar-w) - 20px);justify-content:center}
  .logo img{height:46px}
}
.header__search{
  display:none;align-items:center;gap:8px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:999px;padding:10px 16px;
  width:100%;max-width:360px;margin-left:auto;
  color:var(--muted-2);font-size:14px;text-decoration:none;
  transition:border-color .15s ease,color .15s ease;
}
.header__search:hover{border-color:var(--violet);color:#fff}
.header__search::before{content:"";width:16px;height:16px;background:no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b3b1c9' stroke-width='2'><circle cx='11' cy='11' r='7'/><path d='m20 20-3.5-3.5'/></svg>");flex-shrink:0}
@media(min-width:768px){.header__search{display:inline-flex}}
.header__actions{display:flex;align-items:center;gap:8px}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:10px 18px;border-radius:999px;font-weight:600;font-size:14px;letter-spacing:.02em;line-height:1.2;transition:transform .15s ease,filter .15s ease;white-space:nowrap;text-align:center;max-width:100%}
.seo .cta-row .btn{white-space:normal}
.btn:hover{transform:translateY(-1px);filter:brightness(1.05)}
.btn:active{transform:translateY(0)}
.btn--ghost{color:var(--text);background:transparent}
.btn--primary{background:linear-gradient(135deg,var(--violet) 0%,#5a1fd0 100%);color:#fff;box-shadow:0 6px 18px rgba(122,57,255,.35)}
.btn--gold{background:linear-gradient(135deg,var(--gold) 0%,var(--gold-2) 100%);color:#1a1438;box-shadow:0 6px 18px rgba(255,201,58,.3)}
.btn--lg{padding:14px 28px;font-size:15px}
.btn--block{width:100%}
.menu-toggle{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:10px;background:var(--surface);border:1px solid var(--border)}
.menu-toggle span,.menu-toggle span::before,.menu-toggle span::after{content:"";display:block;width:18px;height:2px;background:#fff;border-radius:2px;position:relative}
.menu-toggle span::before{position:absolute;top:-6px}
.menu-toggle span::after{position:absolute;top:6px}
@media(min-width:1024px){.menu-toggle{display:none}}

/* ============ LAYOUT ============ */
.layout{display:flex;min-height:calc(100vh - var(--header-h));width:100%}
.sidebar{
  display:none;flex:0 0 var(--sidebar-w);width:var(--sidebar-w);
  border-right:1px solid rgba(255,255,255,.04);
  padding:20px 10px;
  position:sticky;top:var(--header-h);align-self:flex-start;
  max-height:calc(100vh - var(--header-h));overflow-y:auto;
}
@media(min-width:1024px){.sidebar{display:block}}
.sidebar__group{display:flex;flex-direction:column;gap:4px;margin-bottom:22px}
.sidebar__title{font-size:11px;text-transform:uppercase;color:var(--muted-2);letter-spacing:.1em;padding:0 12px;margin:0 0 6px}
.sidebar__link{display:flex;align-items:center;gap:12px;padding:10px 12px;border-radius:10px;color:var(--muted);font-size:14px;transition:background .15s,color .15s}
.sidebar__link:hover,.sidebar__link.is-active{background:var(--surface);color:#fff}
.sidebar__link .ico{width:18px;height:18px;flex-shrink:0;opacity:.85}
.main{flex:1;min-width:0;padding:20px 0 60px}
@media(min-width:1024px){.main{padding:28px 0 80px}}

/* mobile chip nav */
.chip-nav{display:flex;gap:8px;overflow-x:auto;padding:12px 16px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.chip-nav::-webkit-scrollbar{display:none}
.chip-nav a{
  scroll-snap-align:start;flex-shrink:0;
  display:inline-flex;align-items:center;gap:6px;
  padding:8px 14px;border-radius:999px;
  background:var(--surface);border:1px solid var(--border);
  color:var(--muted);font-size:13px;font-weight:500;white-space:nowrap;
}
.chip-nav a.is-active{background:var(--violet);border-color:var(--violet);color:#fff}

/* ============ HERO ============ */
.hero{
  position:relative;overflow:hidden;
  margin:0 16px 24px;border-radius:var(--radius-lg);
  background:linear-gradient(90deg,#1b1348 0%,#2c1863 55%,#3b1c7a 100%);
  min-height:260px;
}
@media(min-width:1024px){.hero{margin:0 24px 32px;min-height:340px}}
.hero__bg{position:absolute;inset:0;z-index:0}
.hero__bg img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:right center;opacity:.95}
.hero__bg::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(20,16,42,.95) 0%,rgba(20,16,42,.65) 40%,rgba(20,16,42,0) 70%)}
.hero__inner{position:relative;z-index:1;padding:36px 24px;max-width:620px}
@media(min-width:1024px){.hero__inner{padding:60px 48px}}
.hero__eyebrow{display:inline-block;font-size:12px;text-transform:uppercase;letter-spacing:.18em;color:var(--violet-2);font-weight:600;margin-bottom:12px}
.hero__title{font-size:28px;line-height:1.1;margin:0 0 10px;font-weight:800;text-transform:uppercase;letter-spacing:.01em}
@media(min-width:768px){.hero__title{font-size:40px}}
@media(min-width:1280px){.hero__title{font-size:48px}}
.hero__lede{color:var(--muted);max-width:520px;margin:0 0 22px;font-size:14px}
@media(min-width:768px){.hero__lede{font-size:15px}}
.hero__cta{display:flex;gap:10px;flex-wrap:wrap}

/* category chips below hero */
.cats{display:flex;gap:8px;overflow-x:auto;padding:4px 16px 18px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.cats::-webkit-scrollbar{display:none}
@media(min-width:1024px){.cats{padding:4px 24px 24px}}
.cats a{
  scroll-snap-align:start;flex-shrink:0;
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 16px;border-radius:999px;
  background:var(--surface);border:1px solid var(--border);
  color:var(--muted);font-size:13px;font-weight:500;white-space:nowrap;
  transition:color .15s,background .15s,border-color .15s;
}
.cats a:hover{color:#fff;border-color:var(--violet)}
.cats a.is-active{background:var(--violet);border-color:var(--violet);color:#fff}
.cats .ico{width:16px;height:16px;opacity:.9}

/* ============ SECTION ============ */
.section{padding:0 16px 28px}
@media(min-width:1024px){.section{padding:0 24px 36px}}
.section__head{display:flex;align-items:baseline;justify-content:space-between;margin:4px 0 14px}
.section__head h2{font-size:18px;margin:0;font-weight:700;letter-spacing:.01em}
@media(min-width:768px){.section__head h2{font-size:20px}}
.section__head a{color:var(--muted);font-size:13px;font-weight:500}
.section__head a:hover{color:var(--violet-2)}

.tiles{
  display:grid;gap:10px;
  grid-template-columns:repeat(2,1fr);
}
@media(min-width:480px){.tiles{grid-template-columns:repeat(3,1fr)}}
@media(min-width:768px){.tiles{grid-template-columns:repeat(4,1fr);gap:12px}}
@media(min-width:1200px){.tiles{grid-template-columns:repeat(6,1fr)}}
.tile{position:relative;border-radius:var(--radius);overflow:hidden;background:var(--surface);aspect-ratio:1/1;transition:transform .2s ease,box-shadow .2s ease}
.tile img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.tile::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0) 50%,rgba(0,0,0,.65) 100%);
  opacity:0;transition:opacity .2s ease;
}
.tile__play{
  position:absolute;inset:auto 0 0 0;padding:10px 12px;
  display:flex;align-items:center;justify-content:space-between;gap:8px;
  transform:translateY(100%);transition:transform .2s ease;z-index:2;
  font-size:12px;font-weight:600;color:#fff;
}
.tile__play span{max-width:72%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
.tile__play em{font-style:normal;background:var(--gold);color:#1a1438;padding:6px 10px;border-radius:999px;font-size:11px;font-weight:700}
.tile:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
.tile:hover::after{opacity:1}
.tile:hover img{transform:scale(1.05)}
.tile:hover .tile__play{transform:translateY(0)}

/* provider strip */
.providers{display:flex;flex-wrap:wrap;gap:10px;padding:0 16px 28px}
@media(min-width:1024px){.providers{padding:0 24px 36px}}
.providers a{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 16px;border-radius:12px;background:var(--surface);border:1px solid var(--border);
  color:var(--muted);font-size:13px;font-weight:600;
}
.providers a:hover{color:#fff;border-color:var(--violet)}

/* feature cards (sign-up how-to, bonus tiers) */
.cards{display:grid;gap:12px;padding:0 16px 28px;grid-template-columns:1fr}
@media(min-width:640px){.cards{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.cards{padding:0 24px 36px;grid-template-columns:repeat(4,1fr);gap:16px}}
.card{
  background:linear-gradient(160deg,var(--surface) 0%,var(--surface-2) 100%);
  border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:20px;position:relative;overflow:hidden;
}
.card__num{
  display:inline-flex;align-items:center;justify-content:center;
  width:32px;height:32px;border-radius:10px;
  background:rgba(122,57,255,.15);color:var(--violet-2);
  font-weight:800;margin-bottom:12px;font-size:14px;
}
.card h3{margin:0 0 6px;font-size:16px;font-weight:700}
.card p{margin:0;color:var(--muted);font-size:14px}
.card__tag{display:inline-block;margin-top:10px;padding:4px 10px;border-radius:999px;background:rgba(255,201,58,.15);color:var(--gold);font-size:12px;font-weight:600}

/* ============ SEO CONTENT ============ */
.seo{
  padding:32px 16px 8px;
  border-top:1px solid rgba(255,255,255,.05);
  margin-top:20px;
}
@media(min-width:1024px){.seo{padding:48px 24px 16px}}
.seo__inner{max-width:860px;margin:0 auto}
.seo h1{font-size:28px;line-height:1.2;margin:0 0 18px;font-weight:800}
@media(min-width:768px){.seo h1{font-size:34px}}
.seo h2{font-size:22px;line-height:1.25;margin:32px 0 12px;font-weight:700;color:#fff}
@media(min-width:768px){.seo h2{font-size:26px}}
.seo h3{font-size:18px;line-height:1.3;margin:24px 0 10px;font-weight:700;color:var(--violet-2)}
.seo p{color:var(--muted);margin:0 0 14px;font-size:15px;line-height:1.7}
.seo strong{color:#fff;font-weight:600}
.seo em{color:var(--gold)}
.seo ul,.seo ol{color:var(--muted);margin:0 0 18px;padding-left:22px;line-height:1.7}
.seo li{margin-bottom:6px}
.seo li::marker{color:var(--violet-2)}
.seo a{color:var(--violet-2);text-decoration:underline;text-underline-offset:3px}
.seo a:hover{color:var(--gold)}
.seo blockquote{border-left:3px solid var(--violet);padding:8px 16px;margin:16px 0;color:var(--muted);background:rgba(122,57,255,.06);border-radius:0 8px 8px 0}
.seo .cta-row{display:flex;gap:10px;flex-wrap:wrap;margin:22px 0 28px}
.table-scroll{overflow-x:auto;margin:0 0 20px;border-radius:12px;border:1px solid var(--border);-webkit-overflow-scrolling:touch}
.table-scroll table{border-collapse:collapse;width:100%;min-width:520px;font-size:14px;background:var(--surface)}
.table-scroll th,.table-scroll td{text-align:left;padding:12px 14px;border-bottom:1px solid var(--border);color:var(--muted);vertical-align:top}
.table-scroll th{background:var(--surface-2);color:#fff;font-weight:600;white-space:nowrap}
.table-scroll td strong{color:#fff}
.table-scroll tr:last-child td{border-bottom:0}
.table-scroll td.num,.table-scroll th.num{text-align:right;white-space:nowrap}

/* ============ FOOTER ============ */
.footer{
  background:#0f0b20;border-top:1px solid rgba(255,255,255,.05);
  padding:36px 16px 20px;margin-top:28px;
}
@media(min-width:1024px){.footer{padding:44px 24px 24px}}
.footer__payments{display:flex;flex-wrap:wrap;gap:8px;justify-content:center;margin-bottom:28px;opacity:.7}
.footer__payments span{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:60px;height:28px;padding:0 10px;
  background:rgba(255,255,255,.04);border-radius:6px;
  color:var(--muted-2);font-size:11px;font-weight:600;letter-spacing:.04em;
}
.footer__grid{display:grid;gap:24px;grid-template-columns:1fr;max-width:var(--container);margin:0 auto}
@media(min-width:640px){.footer__grid{grid-template-columns:auto 1fr 1fr 1fr;gap:32px}}
.footer__col h4{font-size:13px;text-transform:uppercase;letter-spacing:.12em;color:var(--muted-2);margin:0 0 12px;font-weight:600}
.footer__col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px}
.footer__col a{color:var(--muted);font-size:13px}
.footer__col a:hover{color:#fff}
.footer__brand{display:flex;flex-direction:column;gap:14px}
.footer__brand img{width:120px;max-width:100%;height:auto;object-fit:contain}
.footer__lang{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 12px;border-radius:999px;
  background:var(--surface);border:1px solid var(--border);
  font-size:13px;color:var(--muted);width:max-content;
}
.footer__bottom{max-width:var(--container);margin:28px auto 0;padding-top:20px;border-top:1px solid rgba(255,255,255,.05);display:flex;flex-wrap:wrap;gap:12px;align-items:center;justify-content:space-between;color:var(--muted-2);font-size:12px}
.footer__bottom strong{color:var(--muted);font-weight:600}

/* ============ MOBILE MENU ============ */
.mobile-menu{
  position:fixed;inset:var(--header-h) 0 0 0;z-index:40;
  background:var(--bg);padding:20px 16px;
  transform:translateY(-120%);transition:transform .25s ease;
  overflow-y:auto;
}
.mobile-menu.is-open{transform:translateY(0)}
.mobile-menu a{display:block;padding:14px 12px;border-radius:10px;color:var(--muted);font-size:15px;border-bottom:1px solid rgba(255,255,255,.04)}
.mobile-menu a:hover{color:#fff;background:var(--surface)}
.mobile-menu .btn{margin-top:18px}

@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important}
}
