:root{
  --bg:#F3EFFA;
  --bg-alt:#EAE3F5;
  --card:#FFFFFF;
  --accent:#6B3FA0;
  --accent-hover:#8763BD;
  --secondary:#C25166;
  --text:#2E2338;
  --muted:#8F86A3;
  --border:#DED4EE;
  --radius:18px;
  --shadow:0 14px 34px rgba(107,63,160,.12);
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  font-size:16px;
  line-height:1.6;
}

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

.wrap{
  width:min(1180px,92%);
  margin:0 auto;
}

section{
  scroll-margin-top:86px;
}

.section{
  padding:84px 0;
}

.section-alt{
  background:var(--bg-alt);
}

.section-head{
  max-width:720px;
  margin-bottom:42px;
}

.section-head h2,
.section-head p{
  text-align:left;
}

h1{
  font-size:clamp(38px,5.4vw,62px);
  line-height:1.08;
  letter-spacing:-.5px;
  margin:14px 0 18px;
}

h2{
  font-size:clamp(27px,3.4vw,38px);
  line-height:1.18;
  letter-spacing:-.3px;
  margin-bottom:14px;
}

h3{
  font-size:20px;
  line-height:1.3;
  margin-bottom:8px;
}

p{
  margin-bottom:12px;
}

a{
  color:var(--accent);
  text-decoration:none;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:11px 22px;
  border-radius:12px;
  border:2px solid transparent;
  font-weight:600;
  font-size:15px;
  line-height:1.2;
  cursor:pointer;
  transition:background-color .2s ease,color .2s ease,border-color .2s ease,transform .15s ease;
}

.btn:active{
  transform:translateY(1px);
}

.btn-accent{
  background:var(--accent);
  color:#fff;
}

.btn-accent:hover{
  background:var(--accent-hover);
}

.btn-ghost{
  border-color:var(--border);
  color:var(--accent);
  background:transparent;
}

.btn-ghost:hover{
  border-color:var(--accent);
}

.btn-outline{
  border-color:var(--secondary);
  color:var(--secondary);
  background:transparent;
}

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

.btn-lg{
  padding:15px 30px;
  font-size:17px;
  border-radius:14px;
}

.btn-block{
  width:100%;
}

.btn-play{
  width:100%;
  padding:10px 14px;
  background:var(--bg);
  color:var(--accent);
  border:1.5px solid var(--border);
}

.btn-play:hover{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  transition:box-shadow .25s ease;
}

.site-header.scrolled{
  box-shadow:0 8px 26px rgba(46,35,56,.08);
}

.header-in{
  display:flex;
  align-items:center;
  gap:28px;
  height:74px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--text);
}

.brand img{
  border-radius:10px;
  background:linear-gradient(135deg,var(--accent),var(--accent-hover));
}

.brand-word{
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:14px;
  color:var(--muted);
}

.main-nav{
  display:flex;
  gap:22px;
  margin-left:auto;
}

.main-nav a{
  color:var(--text);
  font-weight:500;
  font-size:15px;
  padding:6px 2px;
  border-bottom:2px solid transparent;
}

.main-nav a:hover{
  color:var(--accent);
  border-bottom-color:var(--accent);
}

.header-actions{
  display:flex;
  gap:12px;
}

.hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(120deg,#F3EFFA 0%,#E4D9F3 55%,#D9C9EE 100%);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("../img/banners/hero-main.webp");
  background-size:cover;
  background-position:center;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(100deg,rgba(243,239,250,.93) 0%,rgba(243,239,250,.78) 45%,rgba(234,227,245,.55) 100%);
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center;
  padding:92px 0 100px;
}

.hero-chip{
  display:inline-block;
  padding:7px 16px;
  border-radius:999px;
  background:rgba(107,63,160,.1);
  color:var(--accent);
  font-weight:600;
  font-size:13.5px;
  letter-spacing:.02em;
}

.hero-sub{
  max-width:520px;
  font-size:18px;
  color:var(--text);
  margin-bottom:26px;
}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:30px;
}

.hero-points{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:10px 26px;
}

.hero-points li{
  display:flex;
  align-items:center;
  gap:9px;
  font-size:14.5px;
  font-weight:500;
  color:var(--text);
}

.pt-ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:10px;
  background:rgba(107,63,160,.12);
  color:var(--accent);
  flex:none;
}

.hero-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:22px;
  padding:34px 34px 30px;
  box-shadow:var(--shadow);
  max-width:430px;
  justify-self:end;
  width:100%;
}

.hc-label{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  font-weight:700;
  color:var(--secondary);
  margin-bottom:10px;
}

.hc-value{
  font-size:clamp(44px,4.6vw,56px);
  font-weight:800;
  color:var(--accent);
  line-height:1;
  letter-spacing:-1px;
}

.hc-value span{
  font-size:.5em;
  color:var(--secondary);
}

.hc-note{
  color:var(--muted);
  font-size:14.5px;
  margin:8px 0 18px;
}

.hc-rows{
  list-style:none;
  border-top:1px solid var(--border);
  margin-bottom:22px;
}

.hc-rows li{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:11px 0;
  border-bottom:1px solid var(--border);
  font-size:14.5px;
}

.hc-rows span{
  color:var(--muted);
}

.hc-rows b{
  font-weight:700;
  color:var(--text);
}

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

.slot-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:12px 12px 16px;
  display:flex;
  flex-direction:column;
  transition:transform .2s ease,box-shadow .2s ease;
}

.slot-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.slot-media{
  border-radius:12px;
  overflow:hidden;
  background:var(--bg-alt);
  margin-bottom:12px;
}

.slot-media img{
  width:100%;
  height:auto;
}

.slot-title{
  font-size:16.5px;
  margin-bottom:2px;
}

.slot-prov{
  font-size:13px;
  color:var(--muted);
  margin-bottom:12px;
}

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

.promo-copy h2{
  margin-top:6px;
}

.promo-copy>p:first-of-type{
  max-width:520px;
}

.promo-tool{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin:20px 0 24px;
}

.promo-code{
  font-size:24px;
  font-weight:800;
  letter-spacing:.16em;
  color:var(--accent);
  background:var(--card);
  border:2px dashed var(--accent-hover);
  border-radius:14px;
  padding:12px 24px;
}

#copyBtn.ok{
  background:var(--secondary);
}

.promo-steps{
  list-style:none;
  counter-reset:step;
  max-width:520px;
}

.promo-steps li{
  counter-increment:step;
  position:relative;
  padding:0 0 14px 44px;
  font-size:15px;
}

.promo-steps li::before{
  content:counter(step);
  position:absolute;
  left:0;
  top:1px;
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  font-weight:700;
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.promo-toast{
  display:inline-block;
  margin-top:6px;
  padding:9px 16px;
  border-radius:10px;
  background:var(--secondary);
  color:#fff;
  font-size:14px;
  font-weight:600;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .25s ease,transform .25s ease;
  pointer-events:none;
}

.promo-toast.show{
  opacity:1;
  transform:translateY(0);
}

.promo-panel{
  border-radius:22px;
  border:1px solid var(--border);
  min-height:360px;
  background:linear-gradient(140deg,#E4D9F3,#D3BFEA 60%,#C7AEE2);
  position:relative;
  overflow:hidden;
}

.promo-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("../img/banners/promo-bg.webp");
  background-size:cover;
  background-position:center;
}

.promo-panel::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(160deg,rgba(107,63,160,.16),rgba(194,81,102,.1));
}

.app-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:48px;
  align-items:center;
}

.app-copy>p{
  max-width:520px;
}

.app-features{
  list-style:none;
  margin:22px 0 28px;
}

.app-features li{
  display:flex;
  align-items:center;
  gap:12px;
  padding:9px 0;
  font-weight:500;
}

.app-steps{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.app-step{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px 20px;
  display:flex;
  gap:16px;
  align-items:flex-start;
}

.step-num{
  flex:none;
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--bg-alt);
  color:var(--accent);
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
}

.step-title{
  font-weight:700;
  margin-bottom:2px;
}

.app-step p:last-child{
  color:var(--muted);
  font-size:14.5px;
  margin:0;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.benefit-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px 24px;
  transition:transform .2s ease,box-shadow .2s ease;
}

.benefit-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.bf-ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--accent),var(--accent-hover));
  color:#fff;
  margin-bottom:16px;
}

.b-title{
  font-weight:700;
  font-size:17.5px;
  margin-bottom:6px;
}

.b-text{
  color:var(--muted);
  font-size:14.5px;
  margin:0;
}

.about-wrap{
  max-width:860px;
}

.about-wrap h3{
  margin-top:30px;
}

.about-wrap ol,
.about-wrap ul{
  margin:6px 0 14px 22px;
}

.about-wrap li{
  margin-bottom:6px;
}

.faq-wrap{
  max-width:860px;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.faq-item{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
}

.faq-item summary{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 22px;
  font-weight:600;
  font-size:16.5px;
  cursor:pointer;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item[open]{
  border-color:var(--accent-hover);
}

.faq-item[open] .chev{
  transform:rotate(180deg);
  color:var(--accent);
}

.chev{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:none;
  color:var(--muted);
  transition:transform .2s ease,color .2s ease;
}

.faq-item p{
  padding:0 22px 18px;
  margin:0;
  color:var(--text);
  max-width:680px;
}

.site-footer{
  background:var(--text);
  color:#E9E2F2;
  padding:52px 0 40px;
}

.footer-in{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:36px;
  align-items:start;
}

.footer-brand .brand{
  color:#fff;
  margin-bottom:16px;
}

.footer-brand .brand-word{
  color:#B7A9CE;
}

.footer-pay{
  color:#B7A9CE;
  font-size:14px;
  max-width:320px;
}

.footer-nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-nav a{
  color:#E9E2F2;
  font-size:15px;
}

.footer-nav a:hover{
  color:#C9B6E8;
}

.footer-meta{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:14.5px;
  color:#B7A9CE;
  text-align:right;
}

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

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

@media (max-width:1020px){
  .slots-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .benefits-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .promo-grid{
    grid-template-columns:1fr;
  }
  .promo-panel{
    min-height:280px;
  }
  .app-grid{
    grid-template-columns:1fr;
    gap:34px;
  }
}

@media (max-width:900px){
  .main-nav{
    display:none;
  }
  .header-actions{
    margin-left:auto;
  }
}

@media (max-width:760px){
  .hero-grid{
    grid-template-columns:1fr;
    padding:64px 0 72px;
    gap:38px;
  }
  .hero-card{
    justify-self:stretch;
    max-width:none;
  }
  .footer-in{
    grid-template-columns:1fr;
  }
  .footer-meta{
    text-align:left;
  }
}

@media (max-width:560px){
  .section{
    padding:60px 0;
  }
  .slots-grid{
    grid-template-columns:1fr;
  }
  .benefits-grid{
    grid-template-columns:1fr;
  }
  .hero-cta .btn{
    width:100%;
  }
  .promo-tool{
    align-items:stretch;
    flex-direction:column;
  }
  .promo-code{
    text-align:center;
  }
  #copyBtn{
    width:100%;
  }
  .header-actions .btn-ghost{
    display:none;
  }
  .header-in{
    gap:16px;
  }
}
