:root{
  --bg:#061227;
  --bg2:#0a1e3f;
  --card:rgba(10,24,52,.72);
  --border:rgba(119,173,255,.22);
  --text:#f5f8ff;
  --muted:#b7c4e4;
  --accent:#34d8ff;
  --accent2:#6b7cff;
  --good:#63e6be;
  --warm:#ffb26b;
  --shadow:0 22px 60px rgba(0,0,0,.32);
  --radius:28px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 85% 8%, rgba(52,216,255,.18), transparent 22%),
    radial-gradient(circle at 15% 18%, rgba(107,124,255,.18), transparent 24%),
    linear-gradient(180deg, #0a1730 0%, #061227 45%, #040b17 100%);
  line-height:1.5;
}

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

.wrap{max-width:var(--max);margin:0 auto;padding:0 24px}

.nav{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter:blur(14px);
  background:rgba(4,10,23,.55);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:700;
  letter-spacing:.2px;
}

.brand img{
  width:44px;
  height:44px;
  border-radius:12px;
  box-shadow:var(--shadow);
}

.nav-links{
  display:flex;
  gap:24px;
  align-items:center;
  color:var(--muted);
  font-size:15px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 20px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  transition:.2s ease;
  cursor:pointer;
}

.btn:hover{transform:translateY(-1px)}

.btn-primary{
  background:linear-gradient(135deg, rgba(52,216,255,.25), rgba(107,124,255,.25));
  border-color:rgba(52,216,255,.4);
  box-shadow:0 8px 28px rgba(52,216,255,.12);
}

.btn-secondary{
  border-color:rgba(255,255,255,.15);
  background:rgba(255,255,255,.03);
  color:var(--text);
}

.hero{padding:72px 0 42px}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:36px;
  align-items:center;
}

.eyebrow{
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:13px;
  font-weight:700;
  margin-bottom:14px;
}

h1{
  margin:0 0 16px;
  font-size:clamp(42px, 6vw, 68px);
  line-height:.98;
  letter-spacing:-.03em;
}

h2{
  margin:0 0 12px;
  font-size:clamp(28px, 4vw, 42px);
  letter-spacing:-.03em;
}

h3{
  margin:0 0 10px;
  font-size:22px;
}

p{margin:0 0 12px}

.hero p,.section-head p,.cta-panel p{
  color:var(--muted);
  font-size:18px;
}

.hero-card,
.card,
.legal-shell,
.cta-panel,
details{
  background:var(--card);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.hero-card{
  border-radius:34px;
  padding:22px;
}

.hero-card img{
  width:100%;
  border-radius:24px;
  display:block;
}

.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:26px 0 28px;
}

.pill{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  color:#d8e4ff;
  font-size:14px;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:6px;
}

.microcopy{
  margin-top:14px;
  color:#9fb2db;
  font-size:14px;
}

section{padding:34px 0}

.section-head{margin-bottom:20px}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card{
  border-radius:var(--radius);
  padding:24px;
}

.icon{
  width:50px;
  height:50px;
  border-radius:16px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  background:linear-gradient(135deg, rgba(52,216,255,.14), rgba(107,124,255,.12));
  border:1px solid rgba(255,255,255,.08);
  font-size:24px;
}

.shots{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.shot{
  background:rgba(255,255,255,.035);
  border:1px solid var(--border);
  border-radius:26px;
  padding:14px;
  box-shadow:var(--shadow);
}

.shot img{
  width:100%;
  display:block;
  border-radius:18px;
}

.shot-title{
  padding:14px 6px 2px;
  font-weight:700;
}

.shot-copy{
  padding:0 6px 8px;
  color:var(--muted);
  font-size:15px;
}

.cta-panel{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  border-radius:32px;
  padding:28px;
  background:linear-gradient(135deg, rgba(52,216,255,.12), rgba(107,124,255,.08));
  border-color:rgba(52,216,255,.22);
}

.footer{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
  color:#a8b7d9;
  font-size:14px;
  border-top:1px solid rgba(255,255,255,.08);
  padding:24px 0 60px;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.note{
  color:#9eb0d5;
  font-size:13px;
  margin-top:8px;
}

.faq{display:grid;gap:14px}

details{
  border-radius:22px;
  padding:18px 20px;
}

summary{
  cursor:pointer;
  font-weight:700;
  font-size:18px;
}

details p{color:var(--muted);margin-top:12px}

.legal-page{
  padding:56px 0 80px;
}

.legal-shell{
  max-width:900px;
  margin:0 auto;
  border-radius:32px;
  padding:32px;
}

.legal-meta{
  color:#9fb2db;
  font-size:14px;
  margin-bottom:20px;
}

.legal-shell p,
.legal-shell li{
  color:var(--muted);
  font-size:17px;
}

.legal-shell ul{
  margin:0 0 18px;
  padding-left:22px;
}

.legal-shell li{
  margin:0 0 12px;
}

.legal-section{
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.08);
}

.callout{
  margin-top:18px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(99,230,190,.08);
  border:1px solid rgba(99,230,190,.18);
  color:#dffcf2;
}

@media (max-width: 980px){
  .hero-grid,.grid-3,.shots,.cta-panel,.footer{
    grid-template-columns:1fr;
    display:grid;
  }

  .nav-links{display:none}
  .hero{padding-top:48px}
  .cta-panel{align-items:flex-start}
}

@media (max-width: 720px){
  .wrap{padding:0 18px}
  h1{font-size:44px}
  .hero p,.section-head p,.cta-panel p,.legal-shell p,.legal-shell li{font-size:16px}
  .btn{width:100%}
  .cta-row{display:grid;grid-template-columns:1fr}
  .legal-shell{padding:24px}
}
