:root{
    --royal:#2E069A;
    --primary:#642FCA;
    --lav-light:#DDD1F2;
    --lav-soft:#F1EBFC;
    --off-white:#F8F5FE;
    --white:#FEFEFE;
    --ink:#0B0B24;
    --orange:#F7A11A;
    --gold:#FFB300;

    --ease: cubic-bezier(.22,.85,.32,1);
  }

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

  html{ scroll-behavior:smooth; }

  body{
    font-family:'Poppins', sans-serif;
    font-weight:400;
    color:var(--ink);
    background:var(--white);
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
  }

  h1,h2,h3{ font-weight:600; }

  a{ text-decoration:none; color:inherit; }

  button{ font-family:inherit; cursor:pointer; border:none; }

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

  ::selection{ background:var(--lav-light); color:var(--royal); }

  /* ---------- Layout shells ---------- */
  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }

  /* ================= HERO ================= */
  .hero{
    position:relative;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:96px 24px 64px;
    background:
      radial-gradient(80% 60% at 50% 0%, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 55%),
      radial-gradient(120% 90% at 15% 100%, rgba(100,47,202,0.55) 0%, rgba(46,6,154,0) 55%),
      radial-gradient(120% 90% at 85% 15%, rgba(221,209,242,0.35) 0%, rgba(221,209,242,0) 50%),
      linear-gradient(160deg, var(--royal) 0%, var(--primary) 52%, #4a1fae 100%);
    overflow:hidden;
  }

  /* ambient calendar-dot constellation — signature motif */
  .constellation{
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.5;
  }
  .constellation svg{ width:100%; height:100%; }
  .cell{
    fill:none;
    stroke:rgba(255,255,255,0.14);
    stroke-width:1;
  }
  .dot{
    fill:rgba(255,179,0,0.55);
    animation: pulse-dot 4.5s ease-in-out infinite;
  }
  .dot.d2{ animation-delay:.9s; fill:rgba(221,209,242,0.7); }
  .dot.d3{ animation-delay:1.8s; }
  .dot.d4{ animation-delay:2.6s; fill:rgba(221,209,242,0.55); }
  .dot.d5{ animation-delay:3.3s; }

  @keyframes pulse-dot{
    0%,100%{ opacity:.25; transform:scale(1); }
    50%{ opacity:1; transform:scale(1.6); }
  }

  .hero-inner{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    max-width:760px;
  }

  .logo-halo{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:40px;
  }
  .logo-halo::before{
    content:"";
    position:absolute;
    width:340px;
    height:340px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 70%);
    filter:blur(2px);
    animation: halo-breathe 5s ease-in-out infinite;
  }
  @keyframes halo-breathe{
    0%,100%{ transform:scale(0.94); opacity:.7; }
    50%{ transform:scale(1.04); opacity:1; }
  }
  .logo-img{
    position:relative;
    width:min(78vw, 400px);
    height:auto;
    filter:drop-shadow(0 18px 40px rgba(11,11,36,0.35));
    opacity:0;
    animation: rise-in 1s var(--ease) .15s forwards;
  }
  @keyframes rise-in{
    from{ opacity:0; transform:translateY(18px) scale(.97); }
    to{ opacity:1; transform:translateY(0) scale(1); }
  }

  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--lav-light);
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.18);
    padding:8px 18px;
    border-radius:999px;
    margin-bottom:28px;
    opacity:0;
    animation: fade-up .8s var(--ease) .05s forwards;
  }
  .eyebrow .blink{
    width:7px; height:7px; border-radius:50%;
    background:var(--gold);
    box-shadow:0 0 0 0 rgba(255,179,0,.6);
    animation: blink-dot 1.8s ease-in-out infinite;
  }
  @keyframes blink-dot{
    0%,100%{ box-shadow:0 0 0 0 rgba(255,179,0,.45); }
    50%{ box-shadow:0 0 0 6px rgba(255,179,0,0); }
  }

  .hero h1{
    font-size:clamp(2.6rem, 6vw, 4.6rem);
    line-height:1.05;
    color:var(--white);
    letter-spacing:-0.02em;
    opacity:0;
    animation: fade-up .9s var(--ease) .25s forwards;
  }

  .hero .sub{
    margin-top:22px;
    font-size:clamp(1.02rem, 2vw, 1.25rem);
    color:var(--lav-light);
    font-weight:300;
    max-width:560px;
    line-height:1.6;
    opacity:0;
    animation: fade-up .9s var(--ease) .4s forwards;
  }

  .hero .platforms-line{
    margin-top:14px;
    font-size:15px;
    color:rgba(255,255,255,0.65);
    letter-spacing:.04em;
    opacity:0;
    animation: fade-up .9s var(--ease) .52s forwards;
  }

  .store-row{
    margin-top:34px;
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    justify-content:center;
    opacity:0;
    animation: fade-up .9s var(--ease) .64s forwards;
  }

  .store-chip{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 22px;
    border-radius:14px;
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.16);
    color:rgba(255,255,255,0.55);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    position:relative;
    cursor:default;
    user-select:none;
  }
  .store-chip svg{ width:26px; height:26px; opacity:.7; }
  .store-chip .txt{ text-align:left; line-height:1.2; }
  .store-chip .txt .small{ display:block; font-size:10.5px; letter-spacing:.06em; text-transform:uppercase; opacity:.75; }
  .store-chip .txt .big{ display:block; font-size:14.5px; font-weight:500; }
  .store-chip .soon-tag{
    position:absolute;
    top:-9px; right:-9px;
    background:var(--gold);
    color:var(--ink);
    font-size:9.5px;
    font-weight:600;
    letter-spacing:.05em;
    padding:3px 8px;
    border-radius:999px;
    text-transform:uppercase;
    box-shadow:0 4px 10px rgba(0,0,0,.25);
  }

  .scroll-cue{
    position:absolute;
    bottom:28px;
    left:50%;
    transform:translateX(-50%);
    width:22px;
    height:34px;
    border:2px solid rgba(255,255,255,0.35);
    border-radius:12px;
    z-index:2;
  }
  .scroll-cue::before{
    content:"";
    position:absolute;
    top:6px; left:50%;
    width:4px; height:8px;
    background:rgba(255,255,255,0.7);
    border-radius:2px;
    transform:translateX(-50%);
    animation: scroll-down 1.8s ease-in-out infinite;
  }
  @keyframes scroll-down{
    0%{ opacity:1; top:6px; }
    70%{ opacity:0; top:16px; }
    100%{ opacity:0; top:6px; }
  }

  @keyframes fade-up{
    from{ opacity:0; transform:translateY(14px); }
    to{ opacity:1; transform:translateY(0); }
  }

  /* ================= FEATURE STRIP ================= */
  .features{
    background:var(--off-white);
    padding:88px 24px;
  }
  .features .head{
    text-align:center;
    max-width:600px;
    margin:0 auto 48px;
  }
  .features .head .kicker{
    display:inline-block;
    font-size:13px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--primary);
    font-weight:600;
    margin-bottom:14px;
  }
  .features .head h2{
    font-size:clamp(1.7rem, 3.4vw, 2.3rem);
    color:var(--ink);
    letter-spacing:-0.01em;
  }
  .features .head p{
    margin-top:14px;
    color:#5b567a;
    font-weight:300;
    line-height:1.7;
  }

  .card-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
    max-width:1000px;
    margin:0 auto;
  }
  .glass-card{
    background:rgba(255,255,255,0.6);
    border:1px solid rgba(255,255,255,0.9);
    box-shadow: 0 20px 45px -20px rgba(46,6,154,0.18);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-radius:20px;
    padding:34px 28px;
    position:relative;
    overflow:hidden;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  }
  .glass-card::before{
    content:"";
    position:absolute;
    top:-40%; right:-30%;
    width:180px; height:180px;
    background:radial-gradient(circle, var(--lav-light) 0%, transparent 70%);
    opacity:.7;
    pointer-events:none;
  }
  .glass-card:hover{
    transform:translateY(-6px);
    box-shadow: 0 28px 55px -20px rgba(46,6,154,0.28);
  }
  .icon-badge{
    width:52px; height:52px;
    border-radius:14px;
    display:flex; align-items:center; justify-content:center;
    background:linear-gradient(135deg, var(--primary), var(--royal));
    margin-bottom:20px;
    box-shadow:0 10px 20px -8px rgba(100,47,202,0.55);
  }
  .icon-badge svg{ width:24px; height:24px; stroke:var(--white); }
  .glass-card h3{
    font-size:1.08rem;
    color:var(--ink);
    margin-bottom:10px;
  }
  .glass-card p{
    font-size:.92rem;
    color:#5b567a;
    font-weight:300;
    line-height:1.65;
  }

  /* ================= INSTAGRAM ================= */
  .instagram{
    padding:96px 24px;
    background:
      radial-gradient(70% 100% at 50% 0%, rgba(100,47,202,0.06) 0%, transparent 60%),
      var(--white);
    display:flex;
    justify-content:center;
  }
  .ig-card{
    max-width:620px;
    width:100%;
    text-align:center;
    background:linear-gradient(180deg, var(--lav-soft) 0%, var(--white) 100%);
    border:1px solid var(--lav-light);
    border-radius:26px;
    padding:56px 40px;
    position:relative;
    overflow:hidden;
    box-shadow:0 30px 60px -30px rgba(46,6,154,0.22);
  }
  .ig-card .ring{
    width:64px; height:64px;
    margin:0 auto 22px;
    border-radius:18px;
    display:flex; align-items:center; justify-content:center;
    background:linear-gradient(135deg, var(--orange), var(--gold));
    box-shadow:0 14px 28px -10px rgba(247,161,26,0.55);
  }
  .ig-card .ring svg{ width:30px; height:30px; }
  .ig-card h2{
    font-size:clamp(1.5rem, 3vw, 1.9rem);
    color:var(--ink);
    margin-bottom:12px;
  }
  .ig-card p{
    color:#5b567a;
    font-weight:300;
    margin-bottom:30px;
    line-height:1.7;
  }
  .ig-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--orange);
    color:var(--white);
    font-weight:500;
    font-size:15.5px;
    padding:16px 34px;
    border-radius:14px;
    box-shadow:0 16px 30px -12px rgba(247,161,26,0.6);
    transition: background .35s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  }
  .ig-btn:hover{
    background:var(--gold);
    transform:translateY(-3px);
    box-shadow:0 20px 36px -12px rgba(255,179,0,0.6);
  }
  .ig-btn:active{ transform:translateY(-1px); }
  .ig-handle{
    margin-top:18px;
    font-size:13.5px;
    color:var(--primary);
    font-weight:500;
    letter-spacing:.02em;
  }

  /* ================= FOOTER ================= */
  footer{
    background:var(--ink);
    color:rgba(255,255,255,0.6);
    text-align:center;
    padding:40px 24px 34px;
  }
  footer .foot-logo{
    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size:1.05rem;
    color:var(--white);
    margin-bottom:10px;
    letter-spacing:.01em;
  }
  footer .foot-logo span{ color:var(--gold); }
  footer p{ font-size:13.5px; margin-top:4px; font-weight:300; }
  footer .heart{ color:var(--orange); }

  /* ================= REVEAL ON SCROLL ================= */
  .reveal{
    opacity:0;
    transform:translateY(24px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
  }
  .reveal.in{
    opacity:1;
    transform:translateY(0);
  }

  /* ================= RESPONSIVE ================= */
  @media (max-width:860px){
    .card-grid{ grid-template-columns:1fr; }
    .ig-card{ padding:44px 26px; }
  }
  @media (max-width:520px){
    .hero{ padding-top:80px; }
    .store-row{ gap:12px; }
    .store-chip{ padding:10px 16px; }
    .features{ padding:72px 20px; }
    .instagram{ padding:76px 18px; }
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
  }
