:root{
  --bg:#0b1220;
  --panel:#101a33;
  --card:#0f1a31;
  --text:#e8eefc;
  --muted:#b8c3e6;
  --line:#22345f;
  --accent:#7aa2ff;
  --accent2:#9ae6ff;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  --radius: 16px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% 10%, rgba(122,162,255,.18), transparent 55%),
              radial-gradient(900px 600px at 90% 30%, rgba(154,230,255,.12), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1100px, 92%); margin:0 auto; }

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{ left:16px; top:16px; width:auto; height:auto; background:#fff; color:#000; padding:10px 12px; border-radius:10px; z-index:9999; }

.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,18,32,.75);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(34,52,95,.55);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(122,162,255,.35), rgba(154,230,255,.18));
  border:1px solid rgba(154,230,255,.25);
  font-weight:800;
}
.brand-text{ display:flex; flex-direction:column; }
.brand-name{ font-weight:800; letter-spacing:.2px; }
.brand-tagline{ font-size:.85rem; color:var(--muted); }

.nav{ display:flex; gap:14px; align-items:center; }
.nav-link{
  padding:10px 10px; border-radius:12px;
  color:var(--muted);
}
.nav-link:hover{ background: rgba(34,52,95,.35); color:var(--text); }
.nav-link.active{ background: rgba(122,162,255,.18); color:var(--text); border:1px solid rgba(122,162,255,.25); }

.header-cta{ display:none; }
@media (min-width: 880px){
  .header-cta{ display:inline-flex; }
}

.button{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  font-weight:700;
  border:1px solid transparent;
  box-shadow: none;
}
.button-primary{
  background: linear-gradient(135deg, rgba(122,162,255,.9), rgba(154,230,255,.7));
  color:#081024;
}
.button-primary:hover{ filter:brightness(1.05); }
.button-secondary{
  background: rgba(16,26,51,.65);
  border-color: rgba(34,52,95,.8);
  color:var(--text);
}
.button-secondary:hover{ background: rgba(34,52,95,.45); }

.hero{
  padding:56px 0 26px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr;
  gap:18px;
}
@media (min-width: 980px){
  .hero-inner{ grid-template-columns: 1.45fr .9fr; align-items:start; }
}
.hero-copy h1{ font-size: clamp(2rem, 3.2vw, 3rem); line-height:1.1; margin:0 0 12px; }
.lead{ color:var(--muted); font-size:1.08rem; margin:0 0 18px; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:14px; }

.trust-bullets{
  margin:14px 0 0; padding:0;
  list-style:none; display:flex; flex-wrap:wrap; gap:10px;
}
.trust-bullets li{
  padding:8px 12px; border-radius:999px;
  background: rgba(16,26,51,.7);
  border:1px solid rgba(34,52,95,.7);
  color:var(--muted);
  font-size:.92rem;
}

.hero-card{
  background: rgba(16,26,51,.72);
  border:1px solid rgba(34,52,95,.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.hero-card h2{ margin:0 0 8px; font-size:1.25rem; }
.small{ font-size:.86rem; }
.subtle{ color:var(--muted); }

.section{ padding:42px 0; }
.section-alt{ background: rgba(16,26,51,.35); border-top:1px solid rgba(34,52,95,.35); border-bottom:1px solid rgba(34,52,95,.35); }

.section-head{ margin-bottom:18px; }
.section-head h2{ margin:0 0 6px; font-size:1.6rem; }
.section-head p{ margin:0; color:var(--muted); }

.grid-3{ display:grid; gap:14px; grid-template-columns: 1fr; }
@media (min-width: 860px){ .grid-3{ grid-template-columns: repeat(3, 1fr); } }

.grid-2{ display:grid; gap:14px; grid-template-columns: 1fr; }
@media (min-width: 860px){ .grid-2{ grid-template-columns: repeat(2, 1fr); } }

.card{
  background: rgba(15,26,49,.72);
  border:1px solid rgba(34,52,95,.85);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color:var(--muted); }

.text-link{ color: var(--accent2); font-weight:700; display:inline-block; margin-top:10px; }
.text-link:hover{ text-decoration: underline; }

.steps{
  margin:0; padding-left: 18px;
  display:grid; gap:10px;
}
.steps li{
  background: rgba(15,26,49,.55);
  border:1px solid rgba(34,52,95,.7);
  border-radius: var(--radius);
  padding:14px 14px 12px;
}
.steps h3{ margin:0 0 6px; }
.steps p{ margin:0; color:var(--muted); }

.cta-strip{
  margin-top:18px;
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  flex-wrap:wrap;
  background: linear-gradient(135deg, rgba(122,162,255,.18), rgba(154,230,255,.10));
  border:1px solid rgba(122,162,255,.25);
  border-radius: var(--radius);
  padding:16px;
}
.cta-strip h3{ margin:0 0 4px; }
.cta-strip p{ margin:0; color:var(--muted); }

.quote blockquote{ margin:0; color:var(--text); font-weight:650; }
.quote figcaption{ margin-top:10px; color:var(--muted); }

.page{ padding-bottom: 10px; }
.page-hero{
  padding:42px 0 8px;
}
.page-hero h1{ margin:0 0 10px; font-size: clamp(2rem, 3vw, 2.6rem); }
.pill-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.pill{
  padding:8px 12px; border-radius:999px;
  background: rgba(16,26,51,.7);
  border:1px solid rgba(34,52,95,.7);
  color:var(--muted);
}
.pill:hover{ color:var(--text); background: rgba(34,52,95,.45); }

.list{ margin:10px 0 0; padding-left:18px; color:var(--muted); }
.divider{ height:1px; background: rgba(34,52,95,.7); margin:16px 0; }

.form{ display:grid; gap:12px; }
label{ display:grid; gap:6px; font-weight:650; }
input, select, textarea{
  width:100%;
  padding:11px 12px;
  border-radius: 12px;
  border:1px solid rgba(34,52,95,.9);
  background: rgba(11,18,32,.55);
  color:var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(154,230,255,.65);
  box-shadow: 0 0 0 3px rgba(154,230,255,.12);
}
.note{ background: rgba(16,26,51,.55); }

.prose h2{ margin-top: 18px; }
.prose p{ color:var(--muted); }

.site-footer{
  margin-top:40px;
  border-top:1px solid rgba(34,52,95,.55);
  background: rgba(11,18,32,.75);
}
.footer-inner{
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  flex-wrap:wrap;
  padding:18px 0;
}
.footer-brand{ font-weight:800; }
.footer-links{ display:flex; gap:12px; flex-wrap:wrap; }
.footer-links a{ color:var(--muted); }
.footer-links a:hover{ color:var(--text); text-decoration: underline; }
.footer-subtle{ color:var(--muted); font-size:.9rem; }
