:root{
  --bg:#0b1220;
  --card:#101a2f;
  --text:#e7eefc;
  --muted:#b7c4e2;
  --accent:#22c3ff;
  --accent2:#ff8a00;
  --border:rgba(255,255,255,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max:1120px;
  --font: ui-sans-serif, 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);
  color:var(--text);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(34,195,255,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(255,138,0,.16), transparent 60%),
    linear-gradient(180deg, #070b14, var(--bg));
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(7,11,20,.65);
  border-bottom:1px solid var(--border);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px}
.brand{display:flex; align-items:center; gap:12px}
.brand img{height:42px; width:auto; border-radius:10px; background:white; padding:6px}
.brand strong{font-size:18px; letter-spacing:.2px}
.menu{display:flex; gap:16px; align-items:center; flex-wrap:wrap}
.menu a{
  padding:10px 12px; border-radius:12px;
  color:var(--muted);
}
.menu a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.cta{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:14px;
  background:linear-gradient(135deg, rgba(34,195,255,.95), rgba(255,138,0,.92));
  color:#07111f; font-weight:700;
  box-shadow:var(--shadow);
}
.hero{padding:64px 0 34px}
.hero-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:22px; align-items:center}
@media (max-width: 900px){.hero-grid{grid-template-columns:1fr}.hero{padding:44px 0 26px}}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--muted); font-weight:600; font-size:14px;
}
h1{font-size:42px; line-height:1.1; margin:14px 0 12px}
@media (max-width: 520px){h1{font-size:34px}}
.lead{font-size:18px; line-height:1.55; color:var(--muted); margin:0 0 20px}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 0}
.secondary{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
}
.secondary:hover{background:rgba(255,255,255,.07)}
.panel{
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.badge{
  font-size:13px; font-weight:700;
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(16,26,47,.65);
  color:var(--text);
}
.grid3{display:grid; grid-template-columns:repeat(3, 1fr); gap:16px}
@media (max-width: 900px){.grid3{grid-template-columns:1fr}}
.card{
  border:1px solid var(--border);
  background:rgba(16,26,47,.66);
  border-radius:var(--radius);
  padding:18px;
}
.card h3{margin:0 0 6px; font-size:18px}
.card p{margin:0; color:var(--muted); line-height:1.55}
.section{padding:42px 0}
.section h2{margin:0 0 14px; font-size:28px}
.section .sub{margin:0 0 20px; color:var(--muted); line-height:1.6}
.split{display:grid; grid-template-columns:1fr 1fr; gap:16px}
@media (max-width: 900px){.split{grid-template-columns:1fr}}
.list{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}
.footer{
  padding:30px 0 46px;
  border-top:1px solid var(--border);
  background:rgba(7,11,20,.6);
}
.footer-grid{display:grid; grid-template-columns:1.2fr .8fr; gap:16px}
@media (max-width: 900px){.footer-grid{grid-template-columns:1fr}}
.small{color:var(--muted); font-size:13px; line-height:1.6}
hr.sep{border:0; border-top:1px solid var(--border); margin:16px 0}
.form{display:grid; gap:12px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
}
textarea{min-height:140px; resize:vertical}
button{
  cursor:pointer;
  border:0;
  padding:12px 14px;
  border-radius:14px;
  font-weight:800;
  background:linear-gradient(135deg, rgba(34,195,255,.95), rgba(255,138,0,.92));
  color:#07111f;
}
.note{font-size:13px; color:var(--muted)}
