:root{
  --bg:#0b1220;
  --panel:#0f1a2e;
  --panel2:#0d1729;
  --text:#e9eefc;
  --muted:#b7c3e6;
  --muted2:#91a2d6;
  --brand:#5eead4;
  --brand2:#60a5fa;
  --line:rgba(255,255,255,.10);
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1100px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1000px 600px at 20% 10%, rgba(94,234,212,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(96,165,250,.18), transparent 55%),
    linear-gradient(180deg, #070c17, var(--bg) 25%, #070c17 120%);
}

a{color:inherit}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(160%) blur(10px);
  background:rgba(7,12,23,.60);
  border-bottom:1px solid var(--line);
}
.header-grid{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand-mark{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(94,234,212,.25), rgba(96,165,250,.25));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  font-weight:800;
}
.brand-text{display:flex; flex-direction:column; line-height:1.1}
.brand-name{font-weight:800; letter-spacing:.2px}
.brand-tag{font-size:12px; color:var(--muted2)}

.nav{display:flex; align-items:center; gap:16px; flex-wrap:wrap}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  opacity:.95;
}
.nav a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  border:1px solid transparent;
  background:linear-gradient(135deg, rgba(94,234,212,.95), rgba(96,165,250,.95));
  color:#061021;
  box-shadow:0 10px 22px rgba(0,0,0,.28);
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0px)}
.btn-small{padding:10px 14px; border-radius:12px; font-size:14px}
.btn-ghost{
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
  box-shadow:none;
}
.btn-ghost:hover{border-color:rgba(255,255,255,.18)}
.btn-block{width:100%}

.hero{padding:48px 0 22px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.35fr .9fr;
  gap:22px;
  align-items:start;
}
.kicker{
  display:inline-block;
  font-size:13px;
  color:var(--muted);
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
}
h1{
  margin:14px 0 10px;
  font-size: clamp(30px, 4.2vw, 46px);
  letter-spacing:-.6px;
  line-height:1.06;
}
.lead{
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  margin:0 0 16px;
}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 10px}
.hero-bullets{
  margin:14px 0 0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.7;
}
.note{
  margin-top:16px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:14px;
}

.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.card-title{margin:0 0 12px; font-size:16px}
.facts{display:grid; gap:10px}
.fact{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.12);
}
.fact-label{color:var(--muted2); font-size:13px}
.fact-value{font-weight:700; font-size:13px}
.fact-value a{color:var(--brand); text-decoration:none}
.fact-value a:hover{text-decoration:underline}
.divider{border:0; border-top:1px solid var(--line); margin:14px 0}
.small{font-size:13px; line-height:1.6}
.muted{color:var(--muted)}
.section{padding:44px 0}
.section-alt{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head h2{margin:0 0 8px; font-size:26px; letter-spacing:-.3px}
.section-head p{margin:0 0 18px; color:var(--muted); line-height:1.6}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  background:rgba(0,0,0,.14);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}

.strip{
  margin-top:18px;
  padding:16px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
}
.strip-title{margin:0 0 6px; font-size:16px}
.strip-text{margin:0; color:var(--muted); line-height:1.6}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.panel{
  background:rgba(0,0,0,.14);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
}
.panel h3{margin:0 0 10px; font-size:16px}
.ticks{list-style:none; padding:0; margin:0; display:grid; gap:10px; color:var(--muted)}
.ticks li{
  padding-left:26px;
  position:relative;
  line-height:1.5;
}
.ticks li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  color:var(--brand);
  font-weight:900;
}
.callout{
  margin-top:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(94,234,212,.22);
  background:rgba(94,234,212,.06);
  color:var(--muted);
}

.coverage{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.coverage-box{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  background:rgba(0,0,0,.14);
}
.coverage-box h3{margin:0 0 8px; font-size:16px}
.coverage-box p{margin:0 0 8px; color:var(--muted); line-height:1.6}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.contact-line{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.12);
  margin:0 0 10px;
}
.contact-line span{color:var(--muted2); font-size:13px}
.contact-line a{color:var(--brand); text-decoration:none; font-weight:800}
.contact-line a:hover{text-decoration:underline}

.mini{
  margin-top:12px;
  border-top:1px solid var(--line);
  padding-top:12px;
}
.mini h4{margin:0 0 8px; font-size:14px; color:var(--text)}
.mini ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}

.footer{padding-top:16px; margin-top:18px; border-top:1px solid var(--line)}
.footer p{margin:0}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr; }
  .cards{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .coverage{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .nav{gap:12px}
}
