:root{
  --navy:#14162B;
  --bone:#F6F4EF;
  --mustard:#FFC93C;
  --slate:#DAD7E3;
  --ink:#14162B;
  --muted:#6b6b78;
  color-scheme: light;
}

*{ box-sizing:border-box; }

html,body{ margin:0; padding:0; }

body{
  background:var(--bone);
  color:var(--ink);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.5;
  position:relative;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  left:-16vw;
  bottom:-18vw;
  width:min(640px, 60vw);
  height:min(640px, 60vw);
  border-radius:50%;
  background:var(--navy);
  opacity:0.045;
  z-index:-1;
  pointer-events:none;
}

.wrap{
  max-width:960px;
  margin:0 auto;
  padding-inline:24px;
}

a{ color:inherit; }

.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Topbar */
.topbar{ padding-block:20px; }
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:700;
  font-size:1.15rem;
  color:var(--navy);
}
.brand img{ display:block; border-radius:8px; }
.burst{ flex:0 0 auto; transform:rotate(-9deg); }
.burst text{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  fill:var(--mustard);
  font-weight:800;
  font-size:21px;
  letter-spacing:0.01em;
}
@media (max-width:480px){
  .burst{ width:80px; height:80px; }
}

/* Hero */
.hero{ padding-block:40px 40px; }
.hero-inner{
  display:flex;
  align-items:center;
  gap:40px;
}
.hero-copy{ flex:1 1 420px; min-width:0; }
.hero-mascot{
  flex:0 0 auto;
  width:min(380px, 48vw);
}
.hero-mascot img{ width:100%; height:auto; display:block; }
@media (max-width:720px){
  .hero-inner{ flex-direction:column-reverse; text-align:left; }
  .hero-mascot{ width:240px; }
}
.hero h1{
  font-size:clamp(2rem, 4.2vw, 3.1rem);
  font-weight:800;
  letter-spacing:-0.01em;
  line-height:1.12;
  margin:0 0 20px;
  max-width:16ch;
}
.lead{
  font-size:1.1rem;
  color:var(--muted);
  max-width:56ch;
  margin:0 0 32px;
}

.waitlist-form{ max-width:560px; }
.hp-field{ position:absolute; left:-9999px; }
.form-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.form-row input[type="email"]{
  flex:1 1 240px;
  min-width:0;
  padding:14px 18px;
  border-radius:14px;
  border:2px solid rgba(20,22,43,0.15);
  background:#fff;
  font-size:1rem;
  color:var(--navy);
}
.form-row input[type="email"]:focus{
  outline:3px solid var(--mustard);
  outline-offset:1px;
  border-color:var(--mustard);
}
.form-row button{
  flex:0 0 auto;
  padding:14px 26px;
  border-radius:999px;
  border:none;
  background:var(--mustard);
  color:var(--navy);
  font-weight:700;
  font-size:1rem;
  cursor:pointer;
}
.form-row button:hover{ filter:brightness(0.95); }
.form-row button:focus-visible{
  outline:3px solid var(--navy);
  outline-offset:2px;
}
.form-note{
  margin:12px 0 0;
  font-size:0.85rem;
  color:var(--muted);
}
.form-feedback{
  margin:10px 0 0;
  font-size:0.95rem;
  font-weight:600;
  min-height:1.2em;
}
.form-feedback.success{ color:#1a7a4c; }
.form-feedback.error{ color:#b3261e; }

/* Trust band */
.trust-band{
  background:var(--navy);
  padding-block:26px;
  margin-top:8px;
}
.trust-band p{
  margin:0;
  text-align:center;
  color:var(--bone);
  font-weight:700;
  font-size:1.05rem;
  letter-spacing:0.01em;
}
.trust-band mark{
  background:none;
  color:var(--mustard);
}

/* Features */
.features{
  background:var(--mustard);
  padding-block:56px 64px;
}
.features-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
@media (max-width:720px){
  .features-grid{ grid-template-columns:1fr; }
}
.feature{
  background:#fff;
  border:1px solid rgba(20,22,43,0.08);
  border-radius:16px;
  padding:24px;
}
.feature-mark{
  width:40px; height:40px;
  border-radius:12px;
  margin-bottom:16px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.feature-mark svg{ width:20px; height:20px; }
.feature-mark.mustard{ background:var(--mustard); color:var(--navy); }
.feature-mark.navy{ background:var(--navy); color:var(--bone); }
.feature-mark.slate{ background:var(--slate); color:var(--navy); }
.feature h2{
  font-size:1.05rem;
  margin:0 0 8px;
}
.feature p{
  margin:0;
  color:var(--muted);
  font-size:0.95rem;
}

/* Footer */
.site-footer{
  border-top:1px solid rgba(20,22,43,0.1);
  padding-block:24px;
  margin-top:24px;
}
.footer-inner{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:0.85rem;
  color:var(--muted);
}
.footer-inner a{ text-decoration:underline; }
.dot{ opacity:0.6; }
