
:root{
  --bg:#070A12;
  --bg2:#0B1020;
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.72);
  --muted2:rgba(234,240,255,.58);
  --stroke:rgba(234,240,255,.14);
  --stroke2:rgba(234,240,255,.09);
  --card:rgba(255,255,255,.05);
  --card2:rgba(255,255,255,.07);
  --accent:#7AA2FF;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --r:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 12% 10%, rgba(122,162,255,.18), transparent 60%),
    radial-gradient(1000px 650px at 90% 0%, rgba(122,162,255,.12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding:0 20px}
.hidden{display:none}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:20px; top:20px; width:auto; height:auto; padding:10px 12px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.55);
  border-radius:12px;
  z-index:9999;
}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(7,10,18,.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--stroke2);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:74px;
}
.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:34px; height:34px; border-radius:10px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke2);
}
.brand-text{line-height:1.1}
.brand-name{font-weight:800; letter-spacing:.2px}
.brand-tag{color:var(--muted2); font-size:12.5px; margin-top:2px}

.nav{display:flex; align-items:center; gap:18px; color:var(--muted)}
.nav a{padding:8px 8px; border-radius:12px}
.nav a:hover{background:rgba(255,255,255,.04); color:var(--text)}
@media (max-width: 860px){ .nav{display:none} }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(122,162,255,.55);
  background: rgba(122,162,255,.20);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  font-weight:750;
}
.btn:hover{transform: translateY(-1px)}
.btn--small{padding:10px 12px}
.btn--full{width:100%}
.btn--ghost{
  background:rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  box-shadow:none;
}

.hero{padding:56px 0 34px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap:26px;
  align-items:start;
}
@media (max-width: 980px){ .hero-grid{grid-template-columns:1fr} }

.kicker{
  display:inline-flex; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  margin:0 0 14px;
}

h1{
  margin:0 0 12px;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height:1.06;
  letter-spacing:-.8px;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size: 16.5px;
  line-height:1.6;
  max-width: 62ch;
}

.hero-points{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
@media (max-width: 980px){ .hero-points{grid-template-columns:1fr} }

.point{
  border-radius: var(--r);
  border:1px solid var(--stroke2);
  background: rgba(255,255,255,.03);
  padding:14px 14px;
}
.point-title{font-size:12px; color:var(--muted2); letter-spacing:.18px; text-transform:uppercase}
.point-body{margin-top:6px; font-weight:650}

.hero-cta{display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-top:16px}
.micro{color:var(--muted2); font-size:13px}

.card{
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--stroke2);
  box-shadow: var(--shadow);
  padding:18px;
}
.card h2{margin:2px 0 6px; font-size:20px}
.sub{margin:0 0 14px; color:var(--muted); font-size:14.5px}

label{display:block; font-size:13px; color:var(--muted); margin:12px 0 8px}
input, select{
  width:100%;
  margin-top:8px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--stroke2);
  background: rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
input:focus, select:focus{border-color: rgba(122,162,255,.80); box-shadow: 0 0 0 4px rgba(122,162,255,.16)}
select option{background:#0B1020}
.fine{
  margin:12px 0 0;
  color:var(--muted2);
  font-size:12.5px;
  line-height:1.45;
}

.section{padding:44px 0}
.section--tight{padding:36px 0}
.section h2{
  margin:0 0 14px;
  font-size:28px;
  letter-spacing:-.3px;
}
.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
@media (max-width: 980px){ .grid{grid-template-columns:1fr} }

.panel{
  border-radius: var(--r);
  border:1px solid var(--stroke2);
  background: rgba(255,255,255,.03);
  padding:18px;
}
.panel h3{margin:0 0 6px; font-size:16px}
.panel p{margin:0; color:var(--muted); line-height:1.55}

.callout{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  border-radius:22px;
  border:1px solid rgba(122,162,255,.28);
  background: rgba(122,162,255,.10);
  padding:16px 16px;
}
.callout-title{font-weight:800}
.callout-body{color:var(--muted); margin-top:4px}

.faq{
  border-radius: var(--r);
  border:1px solid var(--stroke2);
  background: rgba(255,255,255,.03);
  padding:14px 14px;
  margin:10px 0;
}
details summary{cursor:pointer; font-weight:750}
details p{color:var(--muted); margin:10px 0 0; line-height:1.6}
.center{display:flex; justify-content:center; margin-top:18px}

.footer{
  padding:28px 0;
  border-top:1px solid var(--stroke2);
  background: rgba(0,0,0,.18);
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr .9fr;
  gap:16px;
  align-items:center;
}
@media (max-width: 980px){ .footer-inner{grid-template-columns:1fr} }
.footer-left{display:flex; align-items:center; gap:12px}
.footer-logo{width:34px; height:34px}
.footer-right{display:flex; gap:14px; flex-wrap:wrap; color:var(--muted)}
.footer-right a{padding:6px 8px; border-radius:12px}
.footer-right a:hover{background:rgba(255,255,255,.04); color:var(--text)}
.footer-fine{color:var(--muted2); font-size:12.5px}

.thanks{min-height:100vh; display:flex; align-items:center; justify-content:center; padding:40px 0}
.thanks-card{max-width:560px}
