:root{
    --charcoal:#242020;
    --charcoal-soft:#3A332E;
    --yellow:#F5B301;
    --yellow-dark:#B2841A;
    --yellow-soft:#FDF1D3;
    --cream:#FFFBF3;
    --white:#FFFFFF;
    --muted:#867E73;
    --green:#2F9142;
    --line:#ECE4D4;
    --shadow:0 8px 30px rgba(36,32,32,0.07);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter', sans-serif;
    background:var(--white);
    color:var(--charcoal);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,h4,.display{ font-family:'Baloo 2', sans-serif; font-weight:700; letter-spacing:-0.01em; }
  .wrap{max-width:1180px; margin:0 auto; padding:0 24px;}
  img{max-width:100%; display:block;}
  section, header.hero{scroll-margin-top:84px;}
  button{font-family:'Inter',sans-serif;}

  /* reveal animation */
  .reveal{opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease;}
  .reveal.in{opacity:1; transform:translateY(0);}
  .reveal-stagger > *{opacity:0; transform:translateY(20px); transition:opacity .6s ease, transform .6s ease;}
  .reveal-stagger.in > *{opacity:1; transform:translateY(0);}
  .reveal-stagger.in > *:nth-child(1){transition-delay:.05s;}
  .reveal-stagger.in > *:nth-child(2){transition-delay:.12s;}
  .reveal-stagger.in > *:nth-child(3){transition-delay:.19s;}
  .reveal-stagger.in > *:nth-child(4){transition-delay:.26s;}
  .reveal-stagger.in > *:nth-child(5){transition-delay:.33s;}
  .reveal-stagger.in > *:nth-child(6){transition-delay:.40s;}

  /* top strip */
  .topstrip{background:var(--charcoal); color:#D8D0C4; font-size:12.5px;}
  .topstrip .wrap{display:flex; justify-content:space-between; align-items:center; height:36px;}
  .topstrip a, .topstrip button{color:#D8D0C4; background:none; border:none; font:inherit; cursor:pointer;}
  .topstrip .right{display:flex; gap:18px;}
  @media(max-width:640px){.topstrip .right span:first-child{display:none;}}

  /* NAV */
  nav{
    position:sticky; top:0; z-index:50; background:rgba(255,255,255,0.94);
    backdrop-filter:blur(10px); border-bottom:1px solid var(--line);
    transition:box-shadow .25s ease, height .25s ease;
  }
  nav.scrolled{box-shadow:0 4px 20px rgba(36,32,32,0.06);}
  nav .wrap{display:flex; align-items:center; justify-content:space-between; height:78px; transition:height .25s ease;}
  nav.scrolled .wrap{height:66px;}
  .nav-logo img{height:36px; width:auto; transition:height .25s ease;}
  nav.scrolled .nav-logo img{height:30px;}
  .nav-links{display:none; align-items:center; gap:30px; font-size:14.5px; font-weight:600;}
  .nav-links button{background:none; border:none; font:inherit; color:var(--charcoal); cursor:pointer; padding:6px 0; position:relative;}
  .nav-links button::after{content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--yellow); transition:width .2s ease;}
  .nav-links button.active::after, .nav-links button:hover::after{width:100%;}
  .nav-links button.active{color:var(--yellow-dark);}
  @media(min-width:900px){.nav-links{display:flex;}}
  .nav-cta{display:none;}
  @media(min-width:900px){.nav-cta{display:inline-flex;}}

  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:13px 26px; border-radius:100px; font-weight:700; font-size:14.5px;
    cursor:pointer; border:none; transition:transform .15s ease, box-shadow .2s ease, opacity .15s ease;
  }
  .btn:active{transform:scale(0.96);}
  .btn-primary{background:var(--charcoal); color:var(--yellow);}
  .btn-primary:hover{box-shadow:0 8px 20px rgba(36,32,32,0.25);}
  .btn-outline{background:transparent; border:1.5px solid var(--charcoal); color:var(--charcoal);}
  .btn-outline:hover{background:var(--charcoal); color:var(--yellow);}
  .btn-yellow{background:var(--yellow); color:var(--charcoal);}
  .btn-yellow:hover{box-shadow:0 8px 24px rgba(245,179,1,0.45);}
  .btn-sm{padding:9px 18px; font-size:13px;}

  .menu-toggle{display:flex; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;}
  .menu-toggle span{width:22px; height:2px; background:var(--charcoal); border-radius:2px; transition:transform .25s ease, opacity .25s ease;}
  .menu-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .menu-toggle.open span:nth-child(2){opacity:0;}
  .menu-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
  @media(min-width:900px){.menu-toggle{display:none;}}
  .mobile-menu{
    max-height:0; overflow:hidden; background:var(--white); border-bottom:1px solid var(--line);
    transition:max-height .3s ease;
  }
  .mobile-menu.open{max-height:400px;}
  .mobile-menu .inner{display:flex; flex-direction:column; padding:6px 24px 18px;}
  .mobile-menu button{
    text-align:left; background:none; border:none; font-size:15px; font-weight:600;
    color:var(--charcoal); padding:13px 0; border-bottom:1px solid var(--line); cursor:pointer;
  }
  .mobile-menu button:last-child{border-bottom:none;}

  /* HERO */
  .hero{
    padding:56px 0 0; background:linear-gradient(180deg, var(--yellow-soft) 0%, var(--cream) 55%, var(--white) 100%);
    position:relative; overflow:hidden;
  }
  .hero .wrap{
    display:grid; grid-template-columns:1fr; gap:12px; align-items:center; position:relative; z-index:2;
    padding-top:36px; padding-bottom:0;
  }
  @media(min-width:960px){.hero .wrap{grid-template-columns:1fr 1fr; gap:40px; padding-top:56px;}}
  .badge-row{display:flex; align-items:center; gap:8px; margin-bottom:20px;}
  .badge-row .dot{width:7px; height:7px; border-radius:50%; background:var(--green); animation:pulse 2s infinite;}
  @keyframes pulse{0%,100%{opacity:1;} 50%{opacity:.4;}}
  .badge-row span{font-size:13px; font-weight:700; color:var(--charcoal-soft); letter-spacing:.02em;}
  .hero h1{font-size:38px; line-height:1.14; color:var(--charcoal);}
  @media(min-width:640px){.hero h1{font-size:50px;}}
  @media(min-width:1100px){.hero h1{font-size:56px;}}
  .hero .sub{font-size:16.5px; color:var(--muted); margin-top:20px; max-width:480px;}
  .hero-btn-row{display:flex; flex-wrap:wrap; gap:14px; margin-top:30px;}
  .trust-row{display:flex; flex-wrap:wrap; gap:22px; margin-top:36px;}
  .trust-item{display:flex; align-items:center; gap:9px;}
  .trust-icon{width:34px; height:34px; border-radius:10px; background:var(--white); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; font-size:16px; box-shadow:var(--shadow);}
  .trust-item span{font-size:13px; font-weight:700; color:var(--charcoal-soft); line-height:1.25;}

  .hero-art{position:relative; display:flex; justify-content:center; padding:20px 0 0;}
  .hero-art-inner{position:relative; width:100%; max-width:420px;}
  .hero-blob{
    position:absolute; inset:6% 8%; background:radial-gradient(circle at 35% 30%, #FFFFFF 0%, var(--yellow-soft) 70%);
    border-radius:44% 56% 60% 40% / 50% 45% 55% 50%;
    animation:blobmove 8s ease-in-out infinite;
    z-index:1;
  }
  @keyframes blobmove{
    0%,100%{border-radius:44% 56% 60% 40% / 50% 45% 55% 50%;}
    50%{border-radius:56% 44% 42% 58% / 45% 55% 45% 55%;}
  }
  .hero-art img{position:relative; z-index:2; width:88%; margin:0 auto; filter:drop-shadow(0 20px 35px rgba(36,32,32,0.18));}
  .float-card{
    position:absolute; background:var(--white); border:1px solid var(--line);
    border-radius:14px; padding:11px 15px; font-size:12.5px; font-weight:700;
    box-shadow:var(--shadow); display:flex; align-items:center; gap:8px; z-index:3;
    animation:floaty 4s ease-in-out infinite;
  }
  @keyframes floaty{0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);}}
  .float-card .tag{width:7px; height:7px; border-radius:50%; flex-shrink:0;}
  .fc1{top:2%; left:-6%; animation-delay:.2s;}
  .fc2{bottom:8%; right:-8%; animation-delay:1s;}
  @media(max-width:959px){.fc1{left:-2%;} .fc2{right:-2%;}}
  @media(max-width:520px){.float-card{font-size:11px; padding:9px 12px;} .fc1{top:0;} .fc2{bottom:2%;}}

  .hero-wave{width:100%; display:block; margin-top:40px;}

  /* SECTION generic */
  section{padding:80px 0;}
  .section-head{max-width:600px; margin-bottom:44px;}
  .section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
  .eyebrow{font-size:13px; font-weight:800; color:var(--yellow-dark); letter-spacing:.04em; margin-bottom:10px; display:block;}
  .section-head h2{font-size:30px; color:var(--charcoal);}
  @media(min-width:640px){.section-head h2{font-size:36px;}}
  .section-head p{color:var(--muted); font-size:16px; margin-top:14px;}

  /* WHAT IS - stat grid */
  .what-grid{display:grid; grid-template-columns:1fr; gap:48px; align-items:center;}
  @media(min-width:920px){.what-grid{grid-template-columns:1fr 0.9fr;}}
  .stat-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:32px;}
  .stat-card{background:var(--cream); border:1px solid var(--line); border-radius:16px; padding:20px; transition:transform .2s ease, box-shadow .2s ease;}
  .stat-card:hover{transform:translateY(-4px); box-shadow:var(--shadow);}
  .stat-card .num{font-family:'Baloo 2',sans-serif; font-size:26px; font-weight:800; color:var(--charcoal);}
  .stat-card .lbl{font-size:13px; color:var(--muted); margin-top:4px; font-weight:600;}
  .what-img{background:var(--cream); border-radius:28px; padding:30px; display:flex; justify-content:center;}
  .what-img img{max-width:280px;}

  /* FEATURE GRID */
  .feature-grid{display:grid; grid-template-columns:1fr; gap:20px;}
  @media(min-width:640px){.feature-grid{grid-template-columns:1fr 1fr;}}
  @media(min-width:980px){.feature-grid{grid-template-columns:repeat(3,1fr);}}
  .feature-card{
    background:var(--white); border:1px solid var(--line); border-radius:20px; padding:28px;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .feature-card:hover{transform:translateY(-6px); box-shadow:var(--shadow); border-color:transparent;}
  .feature-icon{
    width:48px; height:48px; border-radius:14px; background:var(--yellow-soft);
    display:flex; align-items:center; justify-content:center; font-size:22px; margin-bottom:18px;
  }
  .feature-card h4{font-size:17px; margin-bottom:8px;}
  .feature-card p{font-size:14px; color:var(--muted);}

  /* HOW IT WORKS */
  .steps-row{display:grid; grid-template-columns:1fr; gap:36px; position:relative;}
  @media(min-width:860px){
    .steps-row{grid-template-columns:repeat(4,1fr); gap:20px;}
    .steps-row::before{
      content:""; position:absolute; top:27px; left:12%; right:12%; height:2px;
      background-image:linear-gradient(to right, var(--line) 50%, transparent 50%);
      background-size:14px 2px; background-repeat:repeat-x; z-index:0;
    }
  }
  .step-item{position:relative; z-index:1; text-align:left;}
  @media(min-width:860px){.step-item{text-align:center; display:flex; flex-direction:column; align-items:center;}}
  .step-num{
    width:56px; height:56px; border-radius:50%; background:var(--charcoal); color:var(--yellow);
    display:flex; align-items:center; justify-content:center; font-family:'Baloo 2',sans-serif;
    font-weight:800; font-size:20px; flex-shrink:0; margin-bottom:16px; box-shadow:0 8px 18px rgba(36,32,32,0.2);
  }
  .step-item-row{display:flex; gap:18px; align-items:flex-start;}
  @media(min-width:860px){.step-item-row{display:contents;}}
  .step-item h4{font-size:17px; margin-bottom:6px;}
  .step-item p{font-size:14px; color:var(--muted); max-width:230px;}

  /* CATEGORIES */
  .chips{display:flex; flex-wrap:wrap; gap:10px;}
  .chip{
    padding:11px 20px; border-radius:100px; border:1.5px solid var(--line);
    font-size:13.5px; font-weight:700; background:var(--white); color:var(--charcoal);
    transition:background .2s ease, border-color .2s ease, transform .2s ease;
  }
  .chip:hover{transform:translateY(-2px); border-color:var(--yellow);}
  .chip.active{background:var(--yellow); border-color:var(--yellow);}

  /* SPLIT PANELS */
  .split{display:grid; grid-template-columns:1fr; gap:20px;}
  @media(min-width:820px){.split{grid-template-columns:1fr 1fr;}}
  .panel{border-radius:24px; padding:40px 34px; transition:transform .25s ease, box-shadow .25s ease;}
  .panel:hover{transform:translateY(-4px);}
  .panel.light{background:var(--white); border:1px solid var(--line); box-shadow:var(--shadow);}
  .panel.dark{background:var(--charcoal); color:var(--cream);}
  .panel h3{font-size:23px; margin-bottom:12px;}
  .panel.dark h3{color:var(--yellow);}
  .panel > p{color:var(--muted); font-size:14.5px; margin-bottom:22px;}
  .panel.dark > p{color:#C9C0B2;}
  .panel ul{list-style:none; margin-bottom:26px;}
  .panel li{display:flex; gap:10px; font-size:14.5px; padding:7px 0; align-items:flex-start;}
  .panel li .dot{width:6px; height:6px; border-radius:50%; background:var(--green); margin-top:7px; flex-shrink:0;}
  .panel.dark li .dot{background:var(--yellow);}

  /* PREVIEW */
  .preview-wrap{
    display:flex; justify-content:center; background:linear-gradient(160deg, var(--yellow-soft), var(--cream));
    border-radius:28px; padding:44px 20px; position:relative; overflow:hidden;
  }
  .preview-wrap img{max-width:420px; border-radius:16px; box-shadow:0 25px 50px rgba(36,32,32,0.18); position:relative; z-index:1;}

  /* WAITLIST BAND */
  #waitlist{padding-top:0; padding-bottom:80px;}
  .waitlist-band{
    background:var(--charcoal); border-radius:28px; padding:56px 28px; text-align:center;
    background-image:radial-gradient(circle at 15% 20%, rgba(245,179,1,0.12), transparent 40%),
                      radial-gradient(circle at 85% 80%, rgba(245,179,1,0.10), transparent 40%);
  }
  @media(min-width:760px){.waitlist-band{padding:64px 60px;}}
  .waitlist-band h2{color:var(--white); font-size:28px;}
  @media(min-width:640px){.waitlist-band h2{font-size:34px;}}
  .waitlist-band > p{color:#C9C0B2; margin-top:12px; font-size:15px; max-width:520px; margin-left:auto; margin-right:auto;}
  .hero-form{display:flex; gap:10px; max-width:440px; flex-wrap:wrap;}
  .hero-form input{
    flex:1; min-width:220px; padding:15px 18px; border-radius:100px;
    border:1.5px solid var(--line); background:var(--white); font-size:14.5px;
    font-family:'Inter',sans-serif; outline:none; transition:border-color .2s ease;
  }
  .hero-form input:focus{border-color:var(--yellow);}
  .waitlist-band .hero-form{margin:28px auto 0; justify-content:center;}
  .success-msg{color:var(--yellow); font-weight:700; font-size:14.5px; display:none; margin-top:20px;}
  .counter-note{color:#9B9188; font-size:13px; margin-top:18px;}
  .type-toggle{display:flex; justify-content:center; gap:10px; margin:26px 0 0; flex-wrap:wrap;}
  .type-btn{
    padding:10px 18px; border-radius:100px; border:1.5px solid #4A423B; background:transparent;
    color:#C9C0B2; font-size:13px; font-weight:700; cursor:pointer; transition:all .15s ease;
  }
  .type-btn.active{background:var(--yellow); border-color:var(--yellow); color:var(--charcoal);}

  /* FAQ */
  .faq-item{border-bottom:1px solid var(--line); padding:22px 0;}
  .faq-q{display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-weight:700; font-size:15.5px; gap:16px;}
  .faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
  .faq-a p{color:var(--muted); font-size:14.5px; padding-top:12px; max-width:640px;}
  .faq-icon{font-size:20px; color:var(--muted); transition:transform .25s ease; flex-shrink:0; width:20px; text-align:center;}
  .faq-item.open .faq-icon{transform:rotate(135deg); color:var(--yellow-dark);}

  /* FOOTER */
  footer{background:var(--charcoal); color:#D8D0C4; padding:64px 0 28px;}
  .footer-top{display:flex; flex-direction:column; gap:40px;}
  @media(min-width:820px){.footer-top{flex-direction:row; justify-content:space-between;}}
  .footer-logo img{height:30px; margin-bottom:12px;}
  .footer-logo p{color:#9B9188; font-size:13.5px; max-width:280px; line-height:1.6;}
  .footer-cols{display:flex; gap:56px; flex-wrap:wrap;}
  .footer-col h5{font-size:12.5px; font-weight:800; margin-bottom:16px; color:var(--white); letter-spacing:.04em; text-transform:uppercase;}
  .footer-col button{
    display:block; font-size:14px; color:#B5AC9F; padding:6px 0;
    background:none; border:none; cursor:pointer; text-align:left; transition:color .15s ease;
  }
  .footer-col button:hover{color:var(--yellow);}
  .footer-bottom{
    margin-top:48px; padding-top:24px; border-top:1px solid #423A33; display:flex;
    flex-direction:column; gap:8px; font-size:12.5px; color:#8A8177;
  }
  @media(min-width:760px){.footer-bottom{flex-direction:row; justify-content:space-between;}}
