
:root{
  --bg:#05070b;
  --panel:#0d1724;
  --edge:#15263b;
  --ink:#e9f3ff;
  --muted:#a5b4c8;
  --accent:#2f7bff;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;height:100%}
body{
  min-height:100vh;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  background:radial-gradient(1200px 600px at 50% -180px,#1b2840 0,#05070b 55%);
  color:var(--ink);
}
.wrap{max-width:960px;margin:0 auto;padding:20px 16px 32px}
header{display:flex;flex-direction:column;gap:4px;margin-bottom:20px}
.logo-row{display:flex;align-items:center;gap:10px}
.logo-text{font-weight:800;letter-spacing:.08em;font-size:20px}
.logo-pill{
  font-size:11px;
  padding:3px 10px;
  border-radius:999px;
  border:1px solid rgba(173,210,255,.6);
  background:rgba(6,18,40,.9);
}
.subtitle{font-size:14px;color:var(--muted)}

.hero{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);
  gap:24px;
  align-items:center;
}
@media (max-width:720px){
  .hero{grid-template-columns:minmax(0,1fr);}
}
.phone-shell{
  border-radius:32px;
  border:1px solid rgba(35,60,105,.9);
  padding:18px 12px;
  background:radial-gradient(circle at 50% 0,#192b48 0,#050812 70%);
  max-width:360px;
  margin:0 auto;
  box-shadow:0 40px 80px rgba(0,0,0,.7);
}
.phone-notch{
  width:44%;
  height:18px;
  border-radius:10px;
  background:#05070b;
  margin:0 auto 16px;
}
.phone-inner{
  border-radius:24px;
  border:1px solid rgba(40,70,120,.9);
  padding:16px 14px 18px;
  background:linear-gradient(180deg,#050910,#020409);
}
.phone-title{
  text-align:center;
  font-weight:700;
  margin-bottom:12px;
}
.phone-menu{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.phone-chip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(92,132,190,.8);
  background:#0b1524;
  font-size:12px;
  text-align:center;
}

.actions{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 16px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  cursor:pointer;
  transition:transform .06s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.btn-primary{
  background:linear-gradient(180deg,#2f7bff,#1953c8);
  border-color:#3c82ff;
  color:#f4f7ff;
  box-shadow:0 16px 32px rgba(0,0,0,.7);
}
.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 20px 40px rgba(0,0,0,.8);
}
.btn-primary:active{
  transform:translateY(0);
  box-shadow:0 10px 22px rgba(0,0,0,.7);
}
.btn-ghost{
  background:#0b1626;
  border-color:#1f3456;
  color:var(--ink);
}
.btn-ghost:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(0,0,0,.6);
}
.btn-ghost:active{
  transform:translateY(0);
  box-shadow:0 8px 18px rgba(0,0,0,.6);
}

.copy-block p{margin:.4rem 0;}
.small{font-size:13px;color:var(--muted);}
.status-text{font-size:13px;color:var(--muted);margin-top:4px;}
.section-title{margin-top:18px;font-size:15px;font-weight:700;}
.ios-steps{font-size:13px;color:var(--muted);margin-top:4px;}
.ios-steps ol{padding-left:18px;margin:4px 0;}
.ios-steps li{margin:2px 0;}
