:root{
  --bg:#05070b;
  --panel:#0b0f16;
  --panel2:#0e141f;
  --stroke:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.55);
  --blue:#0A84FF;     /* iOS blue */
  --green:#34C759;    /* iOS green */
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(10,132,255,.20), transparent 60%),
              radial-gradient(900px 500px at 80% 20%, rgba(52,199,89,.14), transparent 55%),
              var(--bg);
  color:var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Arial, sans-serif;
}

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

.topbar{
  position:sticky; top:0;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 22px;
  backdrop-filter: blur(14px);
  background: rgba(5,7,11,.55);
  border-bottom:1px solid var(--stroke);
  z-index:10;
}

.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:34px; height:34px;
  border:2px solid rgba(255,255,255,.35);
  border-radius:10px;
  display:grid; place-items:center;
}
.check{color:var(--green); font-weight:800; font-size:18px; line-height:1}
.wordmark{font-weight:800; letter-spacing:.2px; font-size:20px}

.wrap{max-width:1080px; margin:0 auto; padding:34px 22px 70px}

.hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:34px;
  align-items:center;
  padding:26px 0 18px;
}
@media (max-width: 900px){
  .hero{grid-template-columns:1fr; gap:22px}
}

h1{
  font-size:56px;
  line-height:1.02;
  margin:0 0 14px;
  letter-spacing:-.8px;
}
@media (max-width: 520px){
  h1{font-size:40px}
}

.sub{
  margin:0 0 18px;
  color:var(--muted);
  font-size:18px;
  line-height:1.5;
  max-width:520px;
}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 14px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--stroke);
  font-weight:700;
  letter-spacing:.2px;
  cursor:pointer;
  user-select:none;
}
.btn-primary{
  background: linear-gradient(180deg, rgba(10,132,255,1), rgba(10,132,255,.78));
  border-color: rgba(10,132,255,.35);
  box-shadow: 0 10px 30px rgba(10,132,255,.20);
}
.btn-ghost{
  background: rgba(255,255,255,.04);
}
.btn-full{width:100%; margin-top:12px}

.trust{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.72);
  font-size:12px;
}

.phone{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--stroke);
  border-radius:28px;
  padding:16px;
  box-shadow: var(--shadow);
}
.phone-top{
  display:flex; gap:8px; padding:4px 6px 12px;
  opacity:.7;
}
.dot{width:7px; height:7px; border-radius:50%; background: rgba(255,255,255,.25)}

.card{
  background: rgba(0,0,0,.30);
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:14px 14px 12px;
  margin:10px 0;
}
.card-title{
  font-size:11px;
  letter-spacing:.16em;
  color: rgba(255,255,255,.45);
  margin-bottom:10px;
}
.field{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 10px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  margin:8px 0;
}
.muted{color: var(--muted)}

.toggle{
  width:52px; height:28px; border-radius:999px;
  background: rgba(255,255,255,.18);
  position:relative;
  border:1px solid rgba(255,255,255,.18);
}
.toggle .knob{
  width:22px; height:22px; border-radius:50%;
  background:#fff;
  position:absolute; top:2px; left:2px;
  transition: all .18s ease;
}
.toggle.on{
  background: rgba(10,132,255,.95);
  border-color: rgba(10,132,255,.55);
}
.toggle.on .knob{left:28px}

.tabs{
  display:flex; justify-content:space-between;
  margin-top:12px;
  padding:10px 8px 2px;
  color: rgba(255,255,255,.55);
  font-weight:650;
  font-size:13px;
}
.tab.active{color: rgba(10,132,255,.95)}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin:26px 0 10px;
}
@media (max-width: 900px){
  .grid{grid-template-columns:1fr}
}
.feature{
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  padding:16px 16px 14px;
}
.feature h3{margin:0 0 6px; font-size:18px}
.feature p{margin:0; color: var(--muted); line-height:1.5}

.waitlist{margin-top:26px}
.waitlist-card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius: 22px;
  padding:18px;
}
.waitlist-card h2{margin:0 0 8px}
.waitlist-card p{margin:0 0 14px; color: var(--muted)}
.form{
  display:flex; gap:10px; flex-wrap:wrap;
}
input{
  flex:1;
  min-width:220px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
input::placeholder{color: rgba(255,255,255,.35)}
.fineprint{margin-top:10px; font-size:12px; opacity:.7}

.footer{
  margin-top:26px;
  display:flex; gap:10px; flex-wrap:wrap;
  align-items:center;
  color: rgba(255,255,255,.55);
  font-size:13px;
}
.sep{opacity:.35}
