/* public_html/assets/landing/landing.css */
:root{
  --bg:#0b1020;
  --panel:#111a33;
  --panel2:#0f1630;
  --text:#f2f6ff;
  --muted:rgba(242,246,255,.75);

  --p1:#6C4CFF;
  --p2:#FF4FB3;
  --p3:#2DE2A6;
  --p4:#FFD45E;

  --radius:18px;
  --shadow:0 12px 30px rgba(0,0,0,.35);
  --shadow2:0 10px 22px rgba(0,0,0,.22);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(108,76,255,.35), transparent 60%),
    radial-gradient(900px 520px at 80% 15%, rgba(255,79,179,.26), transparent 62%),
    radial-gradient(1000px 700px at 70% 90%, rgba(45,226,166,.20), transparent 60%),
    linear-gradient(180deg, #070a14 0%, var(--bg) 40%, #070a14 100%);
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
.wrap{width:min(1100px,92vw);margin:0 auto}
.skip{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip:focus{left:16px;top:16px;width:auto;height:auto;padding:10px 12px;background:#000;border-radius:12px;z-index:9999}

.topbar{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,10,20,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex;align-items:center;gap:12px}
.brand__logo{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(108,76,255,.95), rgba(255,79,179,.9));
  box-shadow: var(--shadow2);
  font-size:22px;
}
.brand__text{display:flex;flex-direction:column;line-height:1.1}
.brand__text small{color:var(--muted);font-weight:600}

.nav{display:flex;gap:18px;align-items:center}
.nav a{
  color:rgba(242,246,255,.86);
  font-weight:700;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover{background:rgba(255,255,255,.06)}
.actions{display:flex;gap:10px;align-items:center}

.btn{
  border:0;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  font-weight:900;
  letter-spacing:.2px;
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  color:#0a0d18;
  background: linear-gradient(135deg, var(--p4), var(--p3));
  box-shadow: var(--shadow2);
}
.btn--ghost{
  background: rgba(255,255,255,.07);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.10);
}
.btn--soft{
  background: rgba(108,76,255,.18);
  color: var(--text);
  border: 1px solid rgba(108,76,255,.28);
}
.btn--big{padding:14px 18px;border-radius:16px;font-size:15px}
.btn--tiny{padding:8px 10px;border-radius:12px;font-size:13px}

.hero{padding:34px 0 12px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:center;
}
.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(242,246,255,.88);
  font-weight:800;
  font-size:13px;
}
.dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--p3);
  box-shadow: 0 0 0 6px rgba(45,226,166,.12);
}

h1{margin:14px 0 10px;font-size:44px;line-height:1.08}
.grad{
  background: linear-gradient(135deg, var(--p1), var(--p2), var(--p4));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.sub{font-size:18px;color:rgba(242,246,255,.84);font-weight:900}
.lead{margin:12px 0 18px;color:rgba(242,246,255,.82);font-size:16px;line-height:1.7}

.hero__cta{display:flex;gap:12px;flex-wrap:wrap}
.trust{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:10px;
}
.trust__item{
  padding:12px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
}
.trust__item strong{display:block;font-size:15px}
.trust__item span{display:block;color:var(--muted);margin-top:2px;font-weight:700;font-size:13px}

.phone{
  position:relative;
  border-radius: 28px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.phone:before{
  content:"";
  position:absolute;inset:-80px -80px auto auto;
  width:220px;height:220px;border-radius:999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,212,94,.35), transparent 60%);
  filter: blur(0px);
}
.phone__top{
  display:flex;align-items:center;justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.chip{
  padding:8px 10px;border-radius:999px;
  background: rgba(108,76,255,.18);
  border: 1px solid rgba(108,76,255,.28);
  font-weight:900;font-size:12px;
}
.stars{opacity:.9}

.card{
  background: rgba(11,16,32,.58);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 14px;
}
.card.big{padding:16px}
.card__title{color:rgba(242,246,255,.78);font-weight:900;font-size:12px;text-transform:uppercase;letter-spacing:.9px}
.math{
  margin:12px 0 14px;
  display:flex;gap:10px;align-items:baseline;justify-content:center;
  font-weight:1000;
  font-size:34px;
}
.math__op,.math__eq{opacity:.85}
.choices{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:10px;
}
.choice{
  padding:12px 12px;border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:1000;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease;
}
.choice:hover{background: rgba(255,255,255,.10)}
.choice:active{transform: translateY(1px)}
.row{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:10px}
.mini{display:flex;align-items:center;justify-content:space-between}
.mini span{color:var(--muted);font-weight:900}
.mini strong{font-size:18px}

.loot{
  margin-top:10px;
  display:flex;align-items:center;justify-content:space-between;
  gap:10px;
  padding:12px 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,79,179,.22), rgba(45,226,166,.18));
  border: 1px solid rgba(255,255,255,.14);
}
.loot__left span{display:block;color:rgba(242,246,255,.86);font-weight:800;font-size:13px}

.bubbles{position:absolute;inset:0;pointer-events:none}
.bubble{
  position:absolute;border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  filter: blur(0px);
}
.b1{width:90px;height:90px;left:-20px;top:30px}
.b2{width:54px;height:54px;left:40px;bottom:10px}
.b3{width:70px;height:70px;right:18px;top:40px}
.b4{width:46px;height:46px;right:-10px;bottom:48px}
.b5{width:34px;height:34px;left:140px;top:-10px}

.section{padding:54px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__head{text-align:center;margin-bottom:22px}
.section__head h2{margin:0;font-size:30px}
.section__head p{margin:8px 0 0;color:var(--muted);font-weight:700}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.feature{
  padding:16px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.feature__icon{
  width:46px;height:46px;border-radius:16px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  font-size:22px;
}
.feature h3{margin:12px 0 6px;font-size:16px}
.feature p{margin:0;color:rgba(242,246,255,.78);line-height:1.6;font-weight:650}

.steps{
  list-style:none;
  padding:0;
  margin: 18px auto 0;
  display:grid;
  gap:12px;
  max-width: 820px;
}
.steps li{
  display:flex;gap:14px;
  padding:14px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.steps__num{
  width:38px;height:38px;border-radius:14px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(108,76,255,.8), rgba(255,79,179,.6));
  font-weight:1000;
}
.steps h3{margin:0 0 4px}
.steps p{margin:0;color:rgba(242,246,255,.78);line-height:1.6;font-weight:650}

.ctaStrip{
  margin-top:18px;
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;
  padding:16px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,212,94,.20), rgba(45,226,166,.14));
  border: 1px solid rgba(255,255,255,.12);
}
.ctaStrip strong{display:block;font-size:16px}
.ctaStrip span{display:block;color:rgba(242,246,255,.82);font-weight:700;font-size:13px}

.grid2{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.panel{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.panel--fun{
  background: linear-gradient(180deg, rgba(108,76,255,.16), rgba(255,255,255,.05));
  border-color: rgba(108,76,255,.22);
}
.ul{margin:10px 0 0;padding-left:18px}
.ul li{margin:8px 0;color:rgba(242,246,255,.80);font-weight:650;line-height:1.6}

.faq{max-width:820px;margin:0 auto;display:grid;gap:10px}
details{
  padding:14px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
summary{cursor:pointer;font-weight:950}
details p{margin:10px 0 0;color:rgba(242,246,255,.78);line-height:1.6;font-weight:650}

.bottomCta{
  text-align:center;
  margin-top:18px;
  padding:18px;
  border-radius: 22px;
  background: radial-gradient(700px 220px at 50% 0%, rgba(255,79,179,.18), transparent 70%),
              rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding:24px 0 34px;
  background: rgba(7,10,20,.60);
}
.footer__inner{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}
.footer__links{display:flex;gap:14px;flex-wrap:wrap}
.muted{color:var(--muted);font-weight:700}

.modal{
  position:fixed;inset:0;
  display:none;
  z-index:100;
}
.modal[aria-hidden="false"]{display:block}
.modal__backdrop{
  position:absolute;inset:0;background:rgba(0,0,0,.55);
}
.modal__panel{
  position:relative;
  width:min(920px,92vw);
  margin: 7vh auto;
  background: rgba(17,26,51,.92);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal__head{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.iconBtn{
  width:42px;height:42px;border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
  font-weight:1000;
}
.modal__body{padding:14px}
.demoBox{padding:14px;border-radius:18px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08)}
.demoRow{display:grid;grid-template-columns:1.2fr .8fr;gap:12px;margin-top:10px}
.demoCard{padding:14px;border-radius:18px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08)}
.demoTitle{font-weight:1000;color:rgba(242,246,255,.80);text-transform:uppercase;letter-spacing:.9px;font-size:12px}
.demoMath{margin:10px 0 12px;font-size:30px;font-weight:1000;text-align:center}
.demoBtns{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr;gap:18px}
  h1{font-size:38px}
  .nav{display:none}
  .grid3{grid-template-columns:1fr;gap:12px}
  .grid2{grid-template-columns:1fr}
  .trust{grid-template-columns:1fr;gap:10px}
  .demoRow{grid-template-columns:1fr}
}
/* ===================== PLAY DEMO (5 tries) ===================== */
.playWrap{display:grid;gap:12px}
.playTop{
  display:flex;align-items:flex-start;justify-content:space-between;gap:12px;flex-wrap:wrap;
}
.playBadge{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  font-weight:900;
}
.playDot{
  width:10px;height:10px;border-radius:999px;background:var(--p4);
  box-shadow:0 0 0 6px rgba(255,212,94,.14);
}
.playHint{
  color: rgba(242,246,255,.82);
  font-weight:750;
}

.playCard{
  padding:16px;border-radius:22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
}
.playCard__title{
  font-weight:1000;
  color: rgba(242,246,255,.78);
  letter-spacing:.9px;
  font-size:12px;
}
.playMath{
  margin:14px 0 14px;
  display:flex;gap:10px;justify-content:center;align-items:baseline;
  font-size:40px;
  font-weight:1000;
}
.playMath .op,.playMath .eq{opacity:.85}
.playMath .q{opacity:.9}

.playChoices{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.playChoices .choice{
  padding:14px 12px;
  border-radius:16px;
  font-size:16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.playChoices .choice.is-ok{
  background: linear-gradient(135deg, rgba(45,226,166,.22), rgba(255,212,94,.18));
  border-color: rgba(45,226,166,.35);
}
.playChoices .choice.is-bad{
  background: linear-gradient(135deg, rgba(255,79,179,.22), rgba(108,76,255,.12));
  border-color: rgba(255,79,179,.32);
}

.playBar{
  margin-top:12px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,.10);
}
.playMsg{font-weight:900;color:rgba(242,246,255,.86)}
.playMsg.ok{color: rgba(45,226,166,.95)}
.playMsg.bad{color: rgba(255,212,94,.95)}
.playMsg.done{color: rgba(255,212,94,.98)}

/* ===================== REWARD MODAL + FIREWORKS ===================== */
.modal--reward .modal__backdrop{background:rgba(0,0,0,.65)}
.reward{
  position:relative;
  width:min(980px,92vw);
  margin: 8vh auto;
  min-height: 520px;
}
.reward__fx{
  position:absolute;inset:0;
  width:100%;height:100%;
  border-radius: 28px;
  background:
    radial-gradient(900px 420px at 50% 20%, rgba(255,212,94,.20), transparent 70%),
    radial-gradient(900px 520px at 20% 70%, rgba(45,226,166,.16), transparent 65%),
    radial-gradient(900px 520px at 80% 70%, rgba(255,79,179,.14), transparent 65%),
    rgba(17,26,51,.92);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}

.reward__card{
  position:relative;
  margin: 0 auto;
  top: 46px;
  width: min(520px, 92%);
  padding: 22px 20px 18px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  text-align:center;
}

.reward__trophy{
  width:84px;height:84px;border-radius:26px;
  display:grid;place-items:center;
  margin: 6px auto 10px;
  font-size:44px;
  background: linear-gradient(135deg, rgba(255,212,94,.95), rgba(45,226,166,.75));
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.18);
}

.reward__title{
  font-size:40px;
  font-weight:1000;
  letter-spacing:.6px;
  background: linear-gradient(135deg, #ff4fb3, #ffd45e, #2de2a6);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  text-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.reward__sub{margin-top:6px;color:rgba(242,246,255,.86);font-weight:850}

.reward__row{
  margin: 14px 0 14px;
  display:flex;gap:10px;justify-content:center;flex-wrap:wrap;
}
.reward__pill{
  padding:10px 12px;border-radius:16px;
  background: rgba(11,16,32,.55);
  border: 1px solid rgba(255,255,255,.14);
  font-weight:1000;
  display:flex;gap:10px;align-items:center;
  min-width: 168px;
  justify-content:center;
}
.reward__pill .ico{font-size:18px}
.reward__actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-top:4px}
.reward__note{margin-top:10px;color:rgba(242,246,255,.80);font-weight:750}

@media (max-width: 520px){
  .reward{min-height: 560px}
  .reward__card{top: 30px}
}
/* ===== Live game bar inside hero card ===== */
.liveBar{
  margin-top:12px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
  padding-top:10px;border-top:1px solid rgba(255,255,255,.10);
}
.liveMsg{font-weight:900;color:rgba(242,246,255,.86)}
.liveMsg.ok{color: rgba(45,226,166,.95)}
.liveMsg.bad{color: rgba(255,212,94,.95)}
.liveMsg.done{color: rgba(255,212,94,.98)}

/* ===== Preview grid (Lighthouse-friendly) ===== */
.previewGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:16px;
}
.shot{
  margin:0;
  padding:12px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.shot img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}
.shot figcaption{
  margin-top:10px;
  color: rgba(242,246,255,.80);
  font-weight:850;
  font-size:13px;
}

/* ===== Video card ===== */
.videoCard{
  margin-top:14px;
  padding:14px;
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.videoHead{
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
  margin-bottom:10px;
}
.video{
  width:100%;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
}
.videoFoot{
  margin-top:10px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
}

/* ===== Testimonials ===== */
.quotes{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top: 16px;
}
.quote{
  padding:16px;
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.quote__top{
  display:flex;align-items:center;gap:12px;justify-content:space-between;
}
.quote__top > div{flex:1}
.ava{
  width:44px;height:44px;border-radius:16px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  font-size:20px;
}
.qstars{opacity:.9}
.quote p{
  margin:12px 0 0;
  color: rgba(242,246,255,.82);
  font-weight:700;
  line-height:1.65;
}

/* ===== Sticky CTA ===== */
.stickyCta{
  position: fixed;
  left: 0; right: 0; bottom: 14px;
  z-index: 90;
  pointer-events: none;
}
.stickyCta__inner{
  pointer-events: auto;
  width: min(1100px, 92vw);
  margin: 0 auto;
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
  padding: 12px 12px;
  border-radius: 22px;
  background: rgba(7,10,20,.62);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.stickyCta__txt strong{display:block;font-weight:1000}
.stickyCta__txt span{display:block;color:rgba(242,246,255,.78);font-weight:750;font-size:13px}

@media (max-width: 980px){
  .previewGrid{grid-template-columns:1fr}
  .quotes{grid-template-columns:1fr}
}
