:root{
    --purple-950:#170830;
    --purple-900:#210b40;
    --purple-800:#3a1263;
    --purple-700:#551a8a;
    --purple-600:#7327ac;
    --purple-500:#9b4fd1;
    --purple-outline:rgba(196,140,255,0.28);
    --gold-500:#ffc722;
    --gold-400:#ffd84d;
    --gold-600:#e8a900;
    --cream-100:#f7f1ff;
    --cream-200:#e6d9fb;
    --ink-900:#170830;
    --shadow-gold:0 10px 30px -8px rgba(255,199,34,0.45);
    --shadow-purple:0 16px 40px -14px rgba(20,4,45,0.65);
    --radius-lg:28px;
    --radius-md:18px;
    --radius-sm:12px;
    --maxw:1180px;
  }

  *,*::before,*::after{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *,*::before,*::after{animation-duration:0.001ms !important;animation-iteration-count:1 !important;transition-duration:0.001ms !important;}
  }

  body{
    margin:0;
    font-family:'Manrope',sans-serif;
    background:
      radial-gradient(1100px 620px at 82% -6%, rgba(155,79,209,0.35), transparent 60%),
      radial-gradient(900px 500px at -10% 18%, rgba(115,39,172,0.35), transparent 55%),
      linear-gradient(180deg, var(--purple-950) 0%, var(--purple-900) 45%, var(--purple-950) 100%);
    color:var(--cream-100);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  h1,h2,h3,.display{
    font-family:'Baloo 2',sans-serif;
    font-weight:700;
    line-height:1.08;
    margin:0;
    color:#fff;
    letter-spacing:0.2px;
  }

  p{margin:0;}
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  button{font-family:inherit;}

  .container{
    max-width:var(--maxw);
    margin:0 auto;
    padding:0 24px;
  }

  ::selection{background:var(--gold-500);color:var(--ink-900);}

  :focus-visible{
    outline:2.5px solid var(--gold-500);
    outline-offset:3px;
    border-radius:6px;
  }

  /* ---------- Topbar ---------- */
  .topbar{
    background:var(--purple-950);
    border-bottom:1px solid rgba(196,140,255,0.14);
  }
  .topbar-inner{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:8px 24px;
    font-size:12.5px;
    color:var(--cream-200);
    text-align:center;
  }
  .topbar-dot{
    width:5px;height:5px;border-radius:50%;
    background:var(--gold-500);
    flex:none;
  }
  .topbar strong{color:var(--gold-400);font-weight:700;}

  /* ---------- Header ---------- */
  header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(23,8,48,0.72);
    backdrop-filter:blur(14px) saturate(140%);
    -webkit-backdrop-filter:blur(14px) saturate(140%);
    border-bottom:1px solid transparent;
    transition:border-color .35s ease, box-shadow .35s ease, background .35s ease;
  }
  header.scrolled{
    border-bottom-color:rgba(196,140,255,0.18);
    box-shadow:0 12px 30px -18px rgba(0,0,0,0.6);
    background:rgba(23,8,48,0.92);
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 24px;
    gap:20px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:0;
  }
  .brand img{
    width:46px;height:46px;border-radius:50%;
    flex:none;
    box-shadow:0 0 0 2px rgba(255,199,34,0.5), 0 6px 16px -4px rgba(0,0,0,0.5);
  }
  .brand-text{
    display:flex;
    flex-direction:column;
    line-height:1.15;
    min-width:0;
  }
  .brand-text .name{
    font-family:'Baloo 2',sans-serif;
    font-weight:700;
    font-size:16.5px;
    color:#fff;
    white-space:nowrap;
  }
  .brand-text .sub{
    font-size:11px;
    color:var(--cream-200);
    opacity:0.75;
    white-space:nowrap;
  }

  .nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    margin:0;padding:0;
  }
  .nav-links a{
    font-size:14.5px;
    font-weight:600;
    color:var(--cream-200);
    padding:6px 2px;
    border-bottom:2px solid transparent;
    transition:color .2s ease, border-color .2s ease;
  }
  .nav-links a:hover{color:#fff;border-color:var(--gold-500);}

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

  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    font-family:'Manrope',sans-serif;
    font-weight:800;
    font-size:14.5px;
    padding:13px 24px;
    border-radius:100px;
    border:none;
    cursor:pointer;
    white-space:nowrap;
    transition:transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background .25s ease;
  }
  .btn:active{transform:scale(0.96);}
  .btn-icon{width:18px;height:18px;flex:none;}

  .btn-primary{
    background:linear-gradient(180deg, var(--gold-400), var(--gold-500));
    color:var(--ink-900);
    box-shadow:var(--shadow-gold);
  }
  .btn-primary:hover{
    transform:translateY(-2px) scale(1.015);
    box-shadow:0 16px 36px -8px rgba(255,199,34,0.6);
    background:linear-gradient(180deg, var(--gold-400), var(--gold-600));
  }

  .btn-ghost{
    background:rgba(255,255,255,0.06);
    color:#fff;
    border:1.5px solid rgba(255,255,255,0.22);
  }
  .btn-ghost:hover{
    background:rgba(255,255,255,0.12);
    border-color:rgba(255,255,255,0.4);
    transform:translateY(-2px);
  }

  .btn-sm{padding:10px 18px;font-size:13.5px;}

  .header-cta{display:flex;}

  .menu-toggle{
    display:none;
    width:42px;height:42px;
    border-radius:12px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    align-items:center;justify-content:center;
    cursor:pointer;
    flex:none;
  }
  .menu-toggle span, .menu-toggle::before, .menu-toggle::after{
    content:"";
    display:block;
    width:18px;height:2px;
    background:#fff;
    border-radius:2px;
    position:relative;
    transition:transform .25s ease, opacity .25s ease;
  }
  .menu-toggle{flex-direction:column;gap:4px;}

  .mobile-panel{
    display:none;
    flex-direction:column;
    gap:4px;
    padding:8px 24px 20px;
    border-top:1px solid rgba(196,140,255,0.16);
  }
  .mobile-panel a{
    padding:12px 4px;
    font-size:15px;
    font-weight:700;
    color:var(--cream-100);
    border-bottom:1px solid rgba(255,255,255,0.06);
  }
  .mobile-panel .btn{margin-top:12px;width:100%;}
  header.open .mobile-panel{display:flex;}

  @media (max-width:900px){
    .nav-links, .header-cta{display:none;}
    .menu-toggle{display:flex;}
  }

  /* ---------- Hero ---------- */
  .hero{
    padding:64px 0 40px;
    position:relative;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    align-items:center;
    gap:48px;
  }
  .eyebrow-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,199,34,0.12);
    border:1px solid rgba(255,199,34,0.35);
    color:var(--gold-400);
    font-weight:700;
    font-size:13px;
    padding:8px 16px 8px 10px;
    border-radius:100px;
    margin-bottom:22px;
  }
  .eyebrow-pill .dotpulse{
    width:8px;height:8px;border-radius:50%;
    background:var(--gold-500);
    box-shadow:0 0 0 0 rgba(255,199,34,0.6);
    animation:pulse 2.2s infinite;
  }
  @keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(255,199,34,0.55);}
    70%{box-shadow:0 0 0 9px rgba(255,199,34,0);}
    100%{box-shadow:0 0 0 0 rgba(255,199,34,0);}
  }

  .hero h1{
    font-size:clamp(34px,4.6vw,54px);
    max-width:15ch;
  }
  .hero h1 .accent{color:var(--gold-500);}

  .hero p.lead{
    margin-top:20px;
    font-size:17.5px;
    line-height:1.6;
    color:var(--cream-200);
    max-width:46ch;
  }

  .hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:32px;
  }

  .trust-row{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:30px;
  }
  .avatar-stack{display:flex;}
  .avatar-stack span{
    width:30px;height:30px;
    border-radius:50%;
    border:2.5px solid var(--purple-950);
    margin-left:-9px;
    background:linear-gradient(135deg,var(--purple-500),var(--purple-700));
  }
  .avatar-stack span:first-child{margin-left:0;}
  .trust-row .txt{font-size:13.5px;color:var(--cream-200);}
  .trust-row .txt strong{color:#fff;}

  /* hero illustration */
  .hero-art{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:380px;
  }
  .art-glow{
    position:absolute;
    width:360px;height:360px;
    background:radial-gradient(circle, rgba(155,79,209,0.55), transparent 70%);
    filter:blur(10px);
    z-index:0;
  }
  .hero-art svg{
    position:relative;
    z-index:1;
    width:100%;
    max-width:420px;
    height:auto;
    animation:float 5.5s ease-in-out infinite;
  }
  @keyframes float{
    0%,100%{transform:translateY(0px);}
    50%{transform:translateY(-14px);}
  }
  .floatie{animation:float2 4.2s ease-in-out infinite;}
  @keyframes float2{
    0%,100%{transform:translateY(0px) rotate(0deg);}
    50%{transform:translateY(10px) rotate(-4deg);}
  }

  /* ---------- Section shell ---------- */
  section{padding:88px 0;position:relative;}
  .section-head{
    max-width:640px;
    margin:0 0 48px;
  }
  .section-head h2{
    font-size:clamp(26px,3.4vw,38px);
  }
  .section-head p{
    margin-top:14px;
    color:var(--cream-200);
    font-size:16px;
    line-height:1.6;
  }
  .center{text-align:center;margin-left:auto;margin-right:auto;}

  /* ---------- Stores ---------- */
  .stores{
    background:linear-gradient(180deg, transparent, rgba(85,26,138,0.18) 18%, rgba(85,26,138,0.18) 82%, transparent);
  }
  .store-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
  }
  .store-card{
    position:relative;
    background:rgba(255,255,255,0.045);
    border:1px solid rgba(255,255,255,0.09);
    border-radius:var(--radius-md);
    padding:26px 20px 22px;
    display:flex;
    flex-direction:column;
    gap:14px;
    cursor:pointer;
    transition:transform .28s cubic-bezier(.22,1,.36,1), border-color .28s ease, background .28s ease;
    text-align:left;
    overflow:hidden;
  }
  .store-card::before{
    content:"";
    position:absolute;
    top:0;left:0;right:0;
    height:4px;
    background:var(--accent, var(--gold-500));
  }
  .store-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,255,255,0.22);
    background:rgba(255,255,255,0.075);
  }
  .store-mark{
    width:52px;height:52px;
    border-radius:14px;
    display:flex;align-items:center;justify-content:center;
    background:var(--accent-soft, rgba(255,199,34,0.15));
    font-family:'Baloo 2',sans-serif;
    font-weight:700;
    font-size:19px;
    color:var(--accent, var(--gold-500));
  }
  .store-card h3{
    font-size:18px;
    font-family:'Manrope',sans-serif;
    font-weight:800;
    color:#fff;
  }
  .store-card p{
    font-size:14px;
    color:var(--cream-200);
    line-height:1.5;
  }
  .store-link{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:13.5px;
    font-weight:700;
    color:var(--accent, var(--gold-500));
  }
  .store-link svg{width:15px;height:15px;transition:transform .2s ease;}
  .store-card:hover .store-link svg{transform:translateX(3px);}

  .stores-banner{
    margin-top:44px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    flex-wrap:wrap;
    background:rgba(255,255,255,0.045);
    border:1px solid rgba(255,255,255,0.09);
    border-radius:var(--radius-md);
    padding:22px 28px;
  }
  .stores-banner p{
    font-size:15px;
    color:var(--cream-100);
    max-width:52ch;
    font-weight:600;
  }
  .stores-banner p strong{color:var(--gold-400);}

  /* ---------- How it works ---------- */
  .steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
    counter-reset:step;
  }
  .step{
    position:relative;
    padding-top:8px;
  }
  .step-num{
    width:46px;height:46px;
    border-radius:50%;
    background:linear-gradient(180deg,var(--purple-600),var(--purple-800));
    border:1px solid rgba(255,255,255,0.15);
    display:flex;align-items:center;justify-content:center;
    font-family:'Baloo 2',sans-serif;
    font-weight:700;
    font-size:18px;
    color:var(--gold-400);
    margin-bottom:18px;
  }
  .step h3{
    font-family:'Manrope',sans-serif;
    font-weight:800;
    font-size:17.5px;
    color:#fff;
    margin-bottom:8px;
  }
  .step p{color:var(--cream-200);font-size:14.5px;line-height:1.6;}
  .step-connector{
    display:none;
  }
  @media (min-width:701px){
    .steps{position:relative;}
    .step:not(:last-child)::after{
      content:"";
      position:absolute;
      top:23px;
      left:calc(100% - 0px);
      width:32px;
      border-top:2px dashed rgba(255,255,255,0.22);
    }
  }

  /* ---------- CTA banner ---------- */
  .cta-banner{
    background:linear-gradient(135deg, var(--gold-400), var(--gold-500) 55%, var(--gold-600));
    border-radius:32px;
    padding:56px 48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
    flex-wrap:wrap;
    position:relative;
    overflow:hidden;
    color:var(--ink-900);
  }
  .cta-banner::before{
    content:"";
    position:absolute;
    width:260px;height:260px;
    border-radius:50%;
    background:rgba(255,255,255,0.18);
    top:-120px;right:-60px;
  }
  .cta-banner::after{
    content:"";
    position:absolute;
    width:180px;height:180px;
    border-radius:50%;
    background:rgba(85,26,138,0.12);
    bottom:-90px;left:10%;
  }
  .cta-text{position:relative;z-index:1;max-width:480px;}
  .cta-text h2{
    color:var(--ink-900);
    font-size:clamp(24px,3.2vw,32px);
  }
  .cta-text p{
    margin-top:10px;
    color:rgba(23,8,48,0.78);
    font-weight:600;
    font-size:15.5px;
  }
  .cta-banner .btn-primary{
    position:relative;z-index:1;
    background:var(--ink-900);
    color:#fff;
    box-shadow:0 14px 30px -10px rgba(23,8,48,0.55);
  }
  .cta-banner .btn-primary:hover{
    background:var(--purple-800);
    box-shadow:0 18px 36px -8px rgba(23,8,48,0.6);
  }

  /* ---------- Footer ---------- */
  footer{
    padding:64px 0 28px;
    border-top:1px solid rgba(196,140,255,0.14);
    background:var(--purple-950);
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:40px;
  }
  .footer-brand{display:flex;flex-direction:column;gap:14px;max-width:320px;}
  .footer-brand .brand{gap:12px;}
  .footer-brand img{width:44px;height:44px;border-radius:50%;box-shadow:0 0 0 2px rgba(255,199,34,0.4);}
  .footer-brand p{color:var(--cream-200);font-size:14px;line-height:1.6;}
  .footer-tag{
    font-family:'Baloo 2',sans-serif;
    color:var(--gold-400);
    font-size:15px;
    font-weight:600;
  }
  .footer-col h4{
    font-size:13px;
    text-transform:none;
    color:#fff;
    font-weight:800;
    margin-bottom:16px;
  }
  .footer-col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:11px;}
  .footer-col a{
    color:var(--cream-200);
    font-size:14px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:color .2s ease;
  }
  .footer-col a:hover{color:var(--gold-400);}
  .footer-col svg{width:15px;height:15px;flex:none;}

  .footer-bottom{
    margin-top:48px;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,0.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    font-size:12.5px;
    color:rgba(230,217,251,0.6);
  }

  @media (max-width:900px){
    .hero-grid{grid-template-columns:1fr;}
    .hero-art{order:-1;min-height:280px;}
    .hero-art svg{max-width:280px;}
    .hero h1{max-width:none;}
    .store-grid{grid-template-columns:repeat(2,1fr);}
    .steps{grid-template-columns:1fr;gap:28px;}
    .step:not(:last-child)::after{display:none;}
    .footer-grid{grid-template-columns:1fr;gap:32px;}
    .cta-banner{padding:40px 26px;}
    section{padding:64px 0;}
  }
  @media (max-width:480px){
    .store-grid{grid-template-columns:1fr;}
    .hero-actions .btn{width:100%;}
  }
