:root{
  --bg:#0b1220;
  --panel:#0f1a2e;
  --card:#101f3a;
  --text:#eef2ff;
  --muted:#b7c2e6;
  --accent:#4ea1ff;        /* Blue light */
  --accent2:#99c9ff;
  --good:#3ddc97;
  --warn:#ffd166;
  --danger:#ff5c7a;
  --border:rgba(255,255,255,.12);
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
  --font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(78,161,255,.35), transparent 55%),
              radial-gradient(900px 500px at 100% 0%, rgba(153,201,255,.22), transparent 45%),
              radial-gradient(900px 700px at 70% 120%, rgba(61,220,151,.10), transparent 50%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}
img{max-width:100%; height:auto}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.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;
  padding:10px 12px; border-radius:12px;
  background:rgba(255,255,255,.12);
  outline:2px solid var(--accent);
  z-index:9999;
}

header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,18,32,.85);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:700; letter-spacing:.2px;
}
.brand .mark{
  width:38px; height:38px; border-radius:14px;
  background: linear-gradient(180deg, rgba(78,161,255,.95), rgba(78,161,255,.25));
  box-shadow: 0 10px 24px rgba(78,161,255,.25);
  border:1px solid rgba(255,255,255,.16);
  display:grid; place-items:center;
  flex: 0 0 auto;
}
.brand .mark span{
  font-size:16px; font-weight:800;
}
.navlinks{display:flex; gap:16px; align-items:center; flex-wrap:wrap; justify-content:flex-end}
.navlinks .nav-ctas{display:flex; gap:10px; align-items:center}
.navlinks a{
  color:var(--muted);
  padding:8px 10px; border-radius:12px;
}
.navlinks a.active, .navlinks a:hover{
  color:var(--text);
  background:rgba(255,255,255,.08);
}
.btn{
  display:inline-flex; gap:10px; align-items:center; justify-content:center;
  padding:11px 14px; border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:var(--text);
  box-shadow: none;
  font-weight:650;
}
.btn.primary{
  background: linear-gradient(180deg, rgba(78,161,255,.95), rgba(78,161,255,.50));
  border-color: rgba(78,161,255,.55);
  box-shadow: 0 12px 30px rgba(78,161,255,.18);
}
.btn.ghost{
  background:transparent;
  border-color: rgba(255,255,255,.2);
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}
.btn:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, button:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:2px;
}

.hero{
  padding:56px 0 26px;
}
.hero-grid{
  display:grid; gap:26px;
  grid-template-columns: 1.2fr .8fr;
  align-items:stretch;
}
@media (max-width: 960px){
  .hero-grid{grid-template-columns:1fr}
  .navlinks{gap:8px}
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  color:var(--muted);
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  padding:7px 10px; border-radius:999px;
  font-size:13px;
}
.dot{
  width:8px; height:8px; border-radius:99px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(78,161,255,.14);
}
h1{font-size:44px; line-height:1.08; margin:16px 0 12px}
@media (max-width: 480px){h1{font-size:36px}}
.lead{color:var(--muted); font-size:18px; margin:0 0 18px}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.trust-bullets{
  margin:18px 0 0; padding:0; list-style:none;
  display:grid; gap:8px;
}
.trust-bullets li{
  display:flex; gap:10px; align-items:flex-start;
  color:var(--muted);
}
.trust-bullets li::before{
  content:"";
  width:10px; height:10px; border-radius:99px;
  background:var(--good);
  box-shadow:0 0 0 5px rgba(61,220,151,.15);
  margin-top:6px;
}
.panel{
  background:rgba(255,255,255,.05);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card{
  background:rgba(16,31,58,.78);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}

.stats{display:grid; grid-template-columns: repeat(2,1fr); gap:12px; padding:18px}
.stat{
  padding:14px; border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.stat .k{color:var(--muted); font-size:12px}
.stat .v{font-size:16px; font-weight:750; margin-top:4px}

.section{padding:34px 0}
.section h2{margin:0 0 10px; font-size:28px}
.section .sub{color:var(--muted); margin:0 0 18px}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
@media (max-width: 960px){.grid3{grid-template-columns:1fr}}
.bullets{margin:10px 0 0; padding:0 0 0 18px; color:var(--muted)}
.bullets li{margin:6px 0}
.grid2{display:grid; grid-template-columns: repeat(2,1fr); gap:14px}
@media (max-width: 960px){.grid2{grid-template-columns:1fr}}

.flow{
  list-style:none; padding:0; margin:16px 0 0;
  display:grid; gap:12px;
  grid-template-columns: repeat(5, minmax(0,1fr));
}
.flow li{
  position:relative;
  padding:14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  font-size:14px;
  color:var(--muted);
}
.flow li strong{display:block; color:var(--text); margin-bottom:6px}
.flow li::after{
  content:"→";
  position:absolute; right:-16px; top:50%;
  transform:translateY(-50%);
  color:var(--accent2);
  font-weight:700;
}
.flow li:last-child::after{display:none}
@media (max-width: 960px){
  .flow{grid-template-columns:1fr}
  .flow li::after{content:"↓"; right:14px; top:auto; bottom:-18px; transform:none}
  .flow li:last-child::after{display:none}
}

.timeline{display:grid; gap:10px; margin-top:16px}
.timeline .item{
  display:flex; gap:12px; align-items:flex-start;
  padding:12px; border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}
.timeline .tag{
  flex:0 0 auto;
  background:rgba(78,161,255,.18);
  border:1px solid rgba(78,161,255,.4);
  color:var(--text);
  padding:6px 10px; border-radius:999px; font-size:12px; font-weight:650;
}

.metrics{
  display:grid; gap:12px;
  grid-template-columns: repeat(5, minmax(0,1fr));
}
.metric{
  padding:14px; border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
}
.metric .k{font-size:12px; color:var(--muted)}
.metric .v{font-weight:750; margin-top:6px}
@media (max-width: 960px){.metrics{grid-template-columns:1fr 1fr}}
@media (max-width: 640px){.metrics{grid-template-columns:1fr}}

.faq details{
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 14px;
  background:rgba(255,255,255,.03);
}
.faq details + details{margin-top:10px}
.faq summary{font-weight:650; cursor:pointer}
.faq p{margin:8px 0 0; color:var(--muted)}

.testimonial{
  border:1px dashed rgba(255,255,255,.22);
  border-radius:16px;
  padding:16px;
  background:rgba(255,255,255,.03);
}
.testimonial .role{font-size:12px; color:var(--muted)}

.cta-band{
  margin-top:20px;
  padding:20px;
  border-radius:var(--radius);
  background:linear-gradient(135deg, rgba(78,161,255,.18), rgba(255,255,255,.04));
  border:1px solid rgba(78,161,255,.35);
  display:flex; gap:16px; align-items:center; justify-content:space-between; flex-wrap:wrap;
}

.contact-grid{display:grid; gap:16px; grid-template-columns: 1.2fr .8fr}
@media (max-width: 960px){.contact-grid{grid-template-columns:1fr}}
.form .helper{font-size:12px; color:var(--muted)}

.visually-hidden{
  position:absolute !important;
  height:1px; width:1px;
  overflow:hidden;
  clip:rect(1px,1px,1px,1px);
  white-space:nowrap;
}

.resource-card a{color:var(--text); text-decoration:underline}

.footer .contact-block{margin-top:8px}

.callout{
  display:flex; gap:14px; align-items:flex-start;
  padding:16px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(78,161,255,.16), rgba(255,255,255,.04));
  border:1px solid rgba(78,161,255,.35);
}
.callout strong{display:block; margin-bottom:4px}
.callout p{margin:0; color:var(--muted)}

.footer{
  padding:26px 0 50px;
  border-top:1px solid var(--border);
  color:var(--muted);
}
.footer-grid{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:16px;
}
@media (max-width: 960px){.footer-grid{grid-template-columns:1fr}}
.small{font-size:13px; color:var(--muted)}
.pills{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
.pill{
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  font-size:12px;
}

.page{
  padding:34px 0 46px;
}
.page h1{font-size:34px}
.page h2{font-size:22px; margin-top:26px}
.page p{color:var(--muted)}
hr{
  border:none; border-top:1px solid var(--border);
  margin:18px 0;
}

.form{
  display:grid; gap:12px; margin-top:16px;
}
label{font-weight:650}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.18);
  color:var(--text);
}
textarea{min-height:140px; resize:vertical}
.form-row{display:grid; gap:12px; grid-template-columns:1fr 1fr}
@media (max-width: 720px){.form-row{grid-template-columns:1fr}}
.note{
  padding:12px 14px;
  border-radius: 14px;
  border:1px dashed rgba(255,255,255,.22);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:14px;
}
kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-bottom-color: rgba(255,255,255,.24);
  padding:2px 6px; border-radius:8px; font-size:12px;
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn:hover{transform:none}
}
