
:root{
  --bg0:#05070c;
  --bg1:#060b16;
  --card:rgba(255,255,255,.04);
  --border:rgba(255,255,255,.10);
  --text:#e5e7eb;
  --muted:rgba(229,231,235,.70);
  --muted2:rgba(229,231,235,.55);
  --blue:#2f6bff;
  --blue2:#4aa3ff;
  --max:1120px;
  --radius:18px;
  --shadow:0 12px 40px rgba(0,0,0,.35);
}

*{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;
  color:var(--text);
  background:
    radial-gradient(1200px 520px at 50% 0%, rgba(47,107,255,.20), transparent 55%),
    radial-gradient(1000px 500px at 20% 20%, rgba(74,163,255,.10), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg0) 55%, #05060a);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
a{color:var(--blue2); text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.hr{height:1px; background:rgba(255,255,255,.08); margin:24px 0}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px 18px;
  box-shadow:var(--shadow);
  backdrop-filter: blur(10px);
}
.card.soft{box-shadow:none}
.grid{display:grid; gap:14px}
.grid.cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:900px){
  .grid.cols-3{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:640px){
  .grid.cols-2,.grid.cols-3{grid-template-columns:1fr}
}

header.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(4,6,12,.78);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.header-inner{
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:16px;
}
.brand{
  display:flex; flex-direction:column;
  line-height:1.05;
}
.brand .title{
  font-weight:800;
  letter-spacing:4px;
  font-size:13px;
}
.brand .subtitle{
  margin-top:6px;
  color:var(--muted);
  font-size:12px;
}
.nav{
  display:flex; align-items:center; gap:14px;
}
.nav a{
  color:rgba(229,231,235,.78);
  font-size:13px;
  letter-spacing:.3px;
  padding:10px 10px;
  border-radius:12px;
}
.nav a.active{color:var(--text); background:rgba(255,255,255,.06)}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.05); text-decoration:none}
.cta{
  background:linear-gradient(90deg, var(--blue), var(--blue2));
  color:#fff !important;
  font-weight:700;
  border-radius:999px;
  padding:10px 14px !important;
  box-shadow:0 10px 30px rgba(47,107,255,.22);
}
.cta:hover{filter:brightness(1.05)}
.mobile-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  border-radius:14px;
  padding:10px 14px;
  font-weight:700;
}
@media (max-width:980px){
  .nav{display:none}
  .mobile-toggle{display:inline-flex; align-items:center; gap:10px}
}
.mobile-drawer{
  display:none;
  position:fixed; inset:0;
  background:rgba(0,0,0,.60);
  z-index:60;
}
.mobile-drawer.open{display:block}
.drawer-panel{
  position:absolute; right:0; top:0;
  height:100%;
  width:min(420px, 92vw);
  background:rgba(6,10,18,.96);
  border-left:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  padding:18px;
}
.drawer-top{display:flex; align-items:center; justify-content:space-between; gap:14px}
.drawer-close{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  border-radius:12px;
  padding:8px 12px;
  font-weight:700;
}
.drawer-links{margin-top:14px; display:flex; flex-direction:column; gap:6px}
.drawer-links a{
  color:rgba(229,231,235,.85);
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}
.drawer-links a:hover{text-decoration:none; border-color:rgba(74,163,255,.35)}
.drawer-links a.cta{border:none}
main{padding:42px 0 56px}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:rgba(229,231,235,.80);
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
}
.h1{
  font-size:56px;
  line-height:1.05;
  letter-spacing:-1.2px;
  margin:18px 0 14px;
  font-weight:850;
}
@media (max-width:720px){ .h1{font-size:42px} }
.p{color:var(--muted); font-size:16px; line-height:1.55; max-width:70ch}
.hero-actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:750;
  letter-spacing:.2px;
}
.btn.primary{
  border:none;
  background:linear-gradient(90deg, var(--blue), var(--blue2));
  color:white;
}
.btn:hover{text-decoration:none; filter:brightness(1.05)}
.section{margin-top:42px}
.section h2{
  margin:0 0 14px;
  font-size:28px;
  letter-spacing:-.4px;
}
.section h3{
  margin:0 0 6px;
  font-size:18px;
}
.small{font-size:12px; color:var(--muted2)}
.muted{color:var(--muted)}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  color:rgba(229,231,235,.70);
}
.iconbox{
  height:64px; width:64px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  display:flex; align-items:center; justify-content:center;
}
.iconbox img{height:44px; width:44px; object-fit:contain}
.card-title{font-weight:800}
.card-desc{margin-top:8px; color:var(--muted); line-height:1.45}
.card-link{margin-top:12px; display:inline-flex; font-weight:750}
.footer{
  padding:40px 0 56px;
  border-top:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.20));
}
.footer-grid{display:grid; grid-template-columns: 1.4fr .9fr .9fr; gap:18px}
@media (max-width:900px){ .footer-grid{grid-template-columns:1fr} }
.footer h4{margin:0 0 10px; letter-spacing:2px; font-size:12px}
.footer a{color:rgba(229,231,235,.75)}
.footer a:hover{color:var(--text)}
.form{display:grid; gap:12px; max-width:720px}
.field{display:grid; gap:6px}
label{color:rgba(229,231,235,.80); font-size:13px; font-weight:650}
input,select,textarea{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  color:var(--text);
  padding:12px 12px;
  border-radius:14px;
  font-size:14px;
  outline:none;
}
textarea{min-height:140px; resize:vertical}
input:focus,select:focus,textarea:focus{border-color:rgba(74,163,255,.45)}
.notice{
  border-left:3px solid rgba(74,163,255,.7);
  padding:12px 14px;
  background:rgba(74,163,255,.08);
  border-radius:14px;
  color:rgba(229,231,235,.85);
}
blockquote{
  margin:0;
  border-left:3px solid rgba(255,255,255,.16);
  padding:14px 16px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  color:rgba(229,231,235,.80);
}
