:root{
  --coral:#FF385C; --coral-soft:#FFE9EE; --ink:#222; --muted:#717171;
  --line:#EEE; --bg:#fff; --max:920px;
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0; background:var(--bg); color:var(--ink);
  font:16px/1.6 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}
a{color:var(--coral); text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:var(--max); margin:0 auto; padding:0 20px}

/* header */
.site-head{position:sticky; top:0; background:rgba(255,255,255,.92); backdrop-filter:saturate(180%) blur(10px); border-bottom:1px solid var(--line); z-index:10}
.site-head .wrap{display:flex; align-items:center; justify-content:space-between; height:60px}
.logo{font-size:22px; font-weight:800; letter-spacing:.14em; color:var(--ink)}
.logo b{color:var(--coral)}
.nav a{color:var(--muted); font-weight:600; font-size:14px; margin-left:18px}

/* hero */
.hero{text-align:center; padding:64px 0 28px}
.hero h1{font-size:clamp(32px,7vw,56px); line-height:1.08; margin:0 0 14px; font-weight:800; letter-spacing:-.02em}
.hero p.lede{font-size:clamp(16px,2.6vw,19px); color:var(--muted); max-width:640px; margin:0 auto 28px}

/* waitlist */
.cta{max-width:520px; margin:0 auto; background:#fff; border:1px solid var(--line); border-radius:18px; padding:20px; box-shadow:0 10px 40px rgba(0,0,0,.05)}
.cta input[type=email]{width:100%; border:1.5px solid #E4E4E4; border-radius:12px; padding:14px 16px; font-size:16px; margin-bottom:12px}
.cta input[type=email]:focus{outline:none; border-color:var(--coral)}
.cta .row{display:flex; gap:10px}
.btn{flex:1; border:0; border-radius:12px; padding:14px 16px; font-size:15px; font-weight:700; cursor:pointer}
.btn-primary{background:var(--coral); color:#fff}
.btn-ghost{background:var(--coral-soft); color:var(--coral)}
.btn:active{transform:translateY(1px)}
.cta .note{font-size:12.5px; color:var(--muted); margin:12px 2px 0; text-align:center}
.cta-pick.active{outline:2px solid var(--coral); outline-offset:2px}
.wl-heading{font-weight:800; font-size:15px; margin:4px 2px 12px; color:var(--ink)}
.trust-bar{margin:22px auto 0; max-width:620px; font-size:14px; font-weight:600; color:#444; background:var(--coral-soft); border-radius:999px; padding:11px 18px}
.cta .msg{font-size:14px; font-weight:600; margin-top:12px; text-align:center; min-height:18px}
.cta .msg.ok{color:#067647}
.cta .msg.err{color:#E5484D}

/* screenshots */
.shots{display:flex; gap:18px; justify-content:center; flex-wrap:wrap; padding:44px 0 8px}
.phone{width:200px; aspect-ratio:9/19.5; border-radius:28px; background:#111; padding:8px; box-shadow:0 18px 50px rgba(0,0,0,.18)}
.phone img{width:100%; height:100%; object-fit:cover; border-radius:22px; display:block; background:linear-gradient(160deg,var(--coral-soft),#fff)}

/* sections */
.section{padding:40px 0}
.desc{max-width:680px; margin:0 auto; text-align:center; color:var(--muted); font-size:17px}

/* legal pages */
.legal{padding:36px 0 64px}
.legal h1{font-size:32px; margin:6px 0 4px}
.legal .updated{color:var(--muted); font-size:13px; margin-bottom:26px}
.legal h2{font-size:20px; margin:28px 0 8px}
.legal p, .legal li{color:#333}
.legal ul{padding-left:20px}
.callout{background:var(--coral-soft); border-radius:12px; padding:14px 16px; color:#7a1f30; font-size:14px}

/* footer */
.site-foot{border-top:1px solid var(--line); padding:28px 0; color:var(--muted); font-size:13px}
.site-foot .wrap{display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between}
.site-foot a{color:var(--muted); font-weight:600}
@media(max-width:520px){ .cta .row{flex-direction:column} .phone{width:46vw} }
