  :root{
    --bg:#F5F2F9;
    --card:#FFFFFF;
    --purple-deep:#4A235A;
    --purple:#6C3483;
    --purple-mid:#9B59B6;
    --purple-soft:#B983D6;
    --lilac:#E8D9F3;
    --lilac-light:#F0E6FA;
    --text-main:#2E1A38;
    --text-sub:#6B5B76;
    --white:#FFFFFF;
    --shadow-soft:0 20px 45px rgba(74,35,90,0.14);
    --shadow-card:0 10px 30px rgba(74,35,90,0.10);
    --radius-lg:28px;
    --radius-md:20px;
    --radius-sm:14px;
    --section-gap:96px;
  }

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

  html{scroll-behavior:smooth;}

  body{
    font-family:"Noto Sans SC","Baloo 2",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    background:var(--bg);
    color:var(--text-main);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  h1,h2,h3{
    font-family:"Baloo 2","Noto Sans SC",sans-serif;
    font-weight:700;
    color:var(--purple-deep);
  }

  a{color:inherit; text-decoration:none;}
  img,svg{display:block; max-width:100%;}
  button{font-family:inherit; cursor:pointer;}

  .container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 32px;
  }

  /* Decorative blurred blobs */
  .blob{
    position:absolute;
    border-radius:50%;
    filter:blur(60px);
    opacity:0.35;
    z-index:0;
    pointer-events:none;
  }

  /* ---------- Header ---------- */
  header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(245,242,249,0.75);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(74,35,90,0.06);
  }

  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 32px;
    max-width:1200px;
    margin:0 auto;
  }

  .brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:22px;
    font-weight:800;
    color:var(--purple-deep);
  }

  .brand-mark{
    width:36px;
    height:36px;
    border-radius:11px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 14px rgba(74,35,90,0.35);
  }
  .brand-mark img{width:100%; height:100%; object-fit:cover;}

  .nav-links{
    display:flex;
    align-items:center;
    gap:36px;
    font-weight:600;
    color:var(--text-sub);
    font-size:15px;
  }
  .nav-links a{transition:color .2s ease;}
  .nav-links a:hover{color:var(--purple-deep);}
  .nav-cta-mobile{display:none;}

  .nav-cta{
    padding:10px 22px;
    border-radius:999px;
    background:var(--purple-deep);
    color:var(--white);
    font-weight:700;
    font-size:14px;
    border:none;
    box-shadow:0 8px 18px rgba(74,35,90,0.28);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .nav-cta:hover{transform:translateY(-2px); box-shadow:0 12px 22px rgba(74,35,90,0.35);}

  .menu-toggle{
    display:none;
    width:40px; height:40px;
    border:none;
    background:var(--white);
    border-radius:12px;
    box-shadow:var(--shadow-card);
    align-items:center;
    justify-content:center;
  }
  .menu-toggle span, .menu-toggle::before, .menu-toggle::after{
    content:"";
    display:block;
    width:18px; height:2px;
    background:var(--purple-deep);
    border-radius:2px;
  }
  .menu-toggle{flex-direction:column; gap:4px;}

  /* ---------- Hero ---------- */
  .hero{
    position:relative;
    padding:72px 0 var(--section-gap);
    overflow:hidden;
  }
  .hero .container{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    align-items:center;
    gap:48px;
    position:relative;
    z-index:1;
  }

  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 16px;
    border-radius:999px;
    background:var(--lilac-light);
    color:var(--purple);
    font-weight:600;
    font-size:13px;
    margin-bottom:22px;
  }
  .eyebrow .dot{width:6px; height:6px; border-radius:50%; background:var(--purple-mid);}

  .hero h1{
    font-size:64px;
    line-height:1.05;
    letter-spacing:-1px;
    margin-bottom:20px;
  }
  .hero h1 span{
    background:linear-gradient(120deg,var(--purple-mid),var(--purple-deep));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }

  .hero p.lead{
    font-size:18px;
    color:var(--text-sub);
    max-width:460px;
    margin-bottom:36px;
  }

  .store-buttons{
    display:flex;
    gap:16px;
    margin-bottom:44px;
    flex-wrap:wrap;
  }

  .store-btn{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 22px;
    border-radius:16px;
    background:var(--purple-deep);
    color:var(--white);
    box-shadow:0 10px 22px rgba(74,35,90,0.30);
    transition:transform .2s ease, box-shadow .2s ease;
    min-width:170px;
  }
  .store-btn.secondary{
    background:var(--white);
    color:var(--purple-deep);
    border:1.5px solid var(--lilac);
    box-shadow:var(--shadow-card);
  }
  .store-btn:hover{transform:translateY(-3px);}
  .store-btn svg{width:26px; height:26px; flex-shrink:0;}
  .store-btn .store-text{display:flex; flex-direction:column; line-height:1.2;}
  .store-btn .store-text small{font-size:11px; opacity:.8; font-weight:500;}
  .store-btn .store-text strong{font-size:15px; font-weight:700;}

  .hero-stats{
    display:flex;
    gap:36px;
  }
  .hero-stats div strong{
    display:block;
    font-size:24px;
    color:var(--purple-deep);
    font-weight:800;
  }
  .hero-stats div span{
    font-size:13px;
    color:var(--text-sub);
  }

  /* Hero visual: app icon + QR card */
  .hero-visual{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:460px;
  }

  .icon-3d{
    position:relative;
    width:280px;
    height:280px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:1;
    animation:float 5s ease-in-out infinite;
  }
  .icon-3d img{width:240px; height:240px; border-radius:52px; object-fit:cover; box-shadow:0 20px 45px rgba(74,35,90,0.25);}

  @keyframes float{
    0%,100%{transform:translateY(0px) rotate(0deg);}
    50%{transform:translateY(-16px) rotate(2deg);}
  }

  .qr-card{
    position:absolute;
    right:-8px;
    bottom:8px;
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.6);
    border-radius:var(--radius-md);
    padding:18px;
    box-shadow:var(--shadow-soft);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    z-index:2;
    width:168px;
  }
  .qr-card .qr-frame{
    width:120px;
    height:120px;
    background:var(--white);
    border-radius:14px;
    padding:10px;
    box-shadow:inset 0 0 0 1px rgba(74,35,90,0.08);
  }
  .qr-card .qr-frame img, .qr-card .qr-frame svg{width:100%; height:100%;}
  .qr-card span{
    font-size:12.5px;
    font-weight:700;
    color:var(--purple-deep);
    text-align:center;
  }

  .blob-hero-1{width:420px; height:420px; background:var(--purple-mid); top:-120px; right:-80px;}
  .blob-hero-2{width:320px; height:320px; background:var(--purple-soft); bottom:-100px; left:-60px;}

  /* ---------- Features ---------- */
  .features{
    padding:var(--section-gap) 0;
    position:relative;
  }
  .section-head{
    text-align:center;
    max-width:600px;
    margin:0 auto 56px;
  }
  .section-head .eyebrow{margin-bottom:16px;}
  .section-head h2{font-size:38px; margin-bottom:14px;}
  .section-head p{color:var(--text-sub); font-size:16px;}

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

  .feature-card{
    background:var(--card);
    border-radius:var(--radius-lg);
    padding:36px 28px;
    box-shadow:var(--shadow-card);
    border:1px solid rgba(255,255,255,0.6);
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .feature-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-soft);
  }

  .feature-icon{
    width:56px; height:56px;
    border-radius:16px;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:22px;
    background:linear-gradient(145deg,var(--lilac-light),var(--lilac));
  }
  .feature-icon svg{width:28px; height:28px; color:var(--purple-deep);}

  .feature-card h3{font-size:19px; margin-bottom:10px; color:var(--purple-deep);}
  .feature-card p{color:var(--text-sub); font-size:14.5px;}

  /* ---------- Showcase ---------- */
  .showcase{
    padding:var(--section-gap) 0;
    position:relative;
    overflow:hidden;
  }
  .showcase .container{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    align-items:center;
    gap:56px;
  }

  .phone-mock{
    justify-self:center;
    width:260px;
    height:540px;
    background:linear-gradient(160deg,#2E1A38,#1A0F22);
    border-radius:44px;
    padding:14px;
    box-shadow:0 40px 70px rgba(74,35,90,0.35);
    position:relative;
  }
  .phone-mock .screen{
    width:100%; height:100%;
    background:#fff;
    border-radius:32px;
    overflow:hidden;
    position:relative;
  }
  .screen-carousel{
    width:100%; height:100%;
    position:relative;
  }
  .phone-mock .screen-shot{
    width:100%; height:100%;
    object-fit:cover;
    object-position:top center;
    display:block;
    position:absolute;
    top:0; left:0;
    opacity:0;
    transition:opacity .6s ease;
  }
  .phone-mock .screen-shot.active{opacity:1;}
  .screen-dots{
    position:absolute;
    bottom:14px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:6px;
    z-index:2;
  }
  .screen-dot{
    width:6px; height:6px;
    border-radius:50%;
    background:rgba(74,35,90,0.25);
    transition:background .3s ease, width .3s ease;
  }
  .screen-dot.active{background:var(--purple-deep); width:18px; border-radius:3px;}
  .phone-mock .notch{
    position:absolute;
    top:14px; left:50%;
    transform:translateX(-50%);
    width:80px; height:20px;
    background:#1A0F22;
    border-radius:12px;
    z-index:1;
  }

  .showcase-copy .section-head{text-align:left; margin:0 0 28px;}
  .showcase-list{list-style:none; display:flex; flex-direction:column; gap:16px;}
  .showcase-list li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    font-size:15px;
    color:var(--text-sub);
  }
  .showcase-list li .check{
    flex-shrink:0;
    width:24px; height:24px;
    border-radius:50%;
    background:var(--purple-deep);
    color:var(--white);
    display:flex; align-items:center; justify-content:center;
    font-size:13px;
    margin-top:2px;
  }

  /* ---------- Download / CTA banner ---------- */
  .cta-banner{
    margin:0 auto var(--section-gap);
    max-width:1200px;
    padding:0 32px;
  }
  .cta-inner{
    background:linear-gradient(120deg,var(--purple-deep),#7D3C98);
    border-radius:36px;
    padding:56px 48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
    flex-wrap:wrap;
    box-shadow:0 30px 60px rgba(74,35,90,0.30);
    position:relative;
    overflow:hidden;
  }
  .cta-inner::after{
    content:"";
    position:absolute;
    width:280px; height:280px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-100px; right:-60px;
  }
  .cta-text h2{color:var(--white); font-size:30px; margin-bottom:10px;}
  .cta-text p{color:rgba(255,255,255,0.8); font-size:15px; max-width:420px;}
  .cta-actions{display:flex; align-items:center; gap:20px; position:relative; z-index:1;}
  .cta-qr{
    background:var(--white);
    border-radius:18px;
    padding:12px;
    width:96px; height:96px;
    box-shadow:0 12px 24px rgba(0,0,0,0.20);
  }

  /* ---------- Footer ---------- */
  footer{
    padding:56px 0 40px;
    border-top:1px solid rgba(74,35,90,0.08);
  }
  .footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:32px;
    margin-bottom:36px;
  }
  .footer-brand p{color:var(--text-sub); font-size:14px; max-width:280px; margin-top:12px;}
  .footer-links{
    display:flex;
    gap:64px;
    flex-wrap:wrap;
  }
  .footer-col h4{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.05em;
    color:var(--purple);
    margin-bottom:14px;
  }
  .footer-col a{
    display:block;
    color:var(--text-sub);
    font-size:14px;
    margin-bottom:10px;
    transition:color .2s ease;
  }
  .footer-col a:hover{color:var(--purple-deep);}

  .social-row{display:flex; gap:12px;}
  .social-row a{
    width:38px; height:38px;
    border-radius:12px;
    background:var(--lilac-light);
    display:flex; align-items:center; justify-content:center;
    color:var(--purple-deep);
  }
  .social-row a:hover{background:var(--lilac);}
  .social-row svg{width:18px; height:18px;}

  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    padding-top:24px;
    border-top:1px solid rgba(74,35,90,0.08);
    font-size:13px;
    color:var(--text-sub);
  }

  /* ---------- Floating QR capsule ---------- */
  .float-qr{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:200;
    display:flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,0.6);
    border-radius:999px;
    padding:8px 8px 8px 18px;
    box-shadow:var(--shadow-soft);
    cursor:pointer;
    opacity:0;
    transform:translateY(16px);
    pointer-events:none;
    transition:opacity .3s ease, transform .3s ease;
  }
  .float-qr.visible{opacity:1; transform:translateY(0); pointer-events:auto;}
  .float-qr span{font-size:13px; font-weight:700; color:var(--purple-deep); white-space:nowrap;}
  .float-qr .float-qr-thumb{
    width:44px; height:44px;
    background:var(--white);
    border-radius:50%;
    padding:6px;
    box-shadow:0 4px 10px rgba(74,35,90,0.18);
    flex-shrink:0;
  }

  .float-qr-popup{
    position:fixed;
    right:24px;
    bottom:96px;
    z-index:200;
    background:var(--white);
    border-radius:var(--radius-md);
    padding:20px;
    box-shadow:var(--shadow-soft);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    width:180px;
    opacity:0;
    transform:scale(0.9) translateY(8px);
    pointer-events:none;
    transition:opacity .25s ease, transform .25s ease;
  }
  .float-qr-popup.open{opacity:1; transform:scale(1) translateY(0); pointer-events:auto;}
  .float-qr-popup .qr-frame{width:130px; height:130px; padding:8px; background:var(--white); border-radius:12px; box-shadow:inset 0 0 0 1px rgba(74,35,90,0.08);}
  .float-qr-popup span{font-size:12.5px; font-weight:700; color:var(--purple-deep); text-align:center;}

  /* ---------- Responsive ---------- */
  @media (max-width:960px){
    .hero .container{grid-template-columns:1fr;}
    .hero-visual{min-height:380px; margin-top:24px;}
    .showcase .container{grid-template-columns:1fr;}
    .phone-mock{order:2;}
    .showcase-copy{order:1;}
    .features-grid{grid-template-columns:1fr 1fr;}
  }

  @media (max-width:720px){
    .nav-links{
      position:fixed;
      top:74px; left:16px; right:16px;
      background:var(--white);
      border-radius:var(--radius-md);
      box-shadow:var(--shadow-soft);
      flex-direction:column;
      align-items:flex-start;
      padding:20px 24px;
      gap:16px;
      transform:translateY(-12px);
      opacity:0;
      pointer-events:none;
      transition:opacity .2s ease, transform .2s ease;
    }
    .nav-links.open{transform:translateY(0); opacity:1; pointer-events:auto;}
    .nav-cta{display:none;}
    .nav-links .nav-cta-mobile{
      display:inline-block;
      margin-top:6px;
      padding:10px 22px;
      border-radius:999px;
      background:var(--purple-deep);
      color:var(--white);
      font-weight:700;
    }
    .menu-toggle{display:flex;}
    .hero h1{font-size:42px;}
    .hero p.lead{font-size:16px;}
    .features-grid{grid-template-columns:1fr;}
    .cta-inner{flex-direction:column; text-align:center; padding:40px 28px;}
    .cta-actions{flex-direction:column;}
    .footer-top{flex-direction:column;}
    section, .hero{padding-top:56px; padding-bottom:56px;}
    :root{--section-gap:64px;}
  }

  @media (max-width:480px){
    .qr-card{position:static; margin-top:20px; width:100%; max-width:220px;}
    .hero-visual{flex-direction:column;}
  }
