:root{
  --bg:#0b1220;
  --panel:#0f1a30;
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.75);
  --accent:#ff7a18;
  --accent2:#2f7dff;
  --line:rgba(255,255,255,.12);
  --shadow: 0 12px 30px rgba(0,0,0,.25);
  --radius: 18px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% -10%, rgba(47,125,255,.35), transparent 60%),
              radial-gradient(900px 600px at 100% 0%, rgba(255,122,24,.35), transparent 55%),
              var(--bg);
  color:var(--text);
}
a{color:var(--text); text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px; margin:0 auto; padding:0 18px}
.topbar{
  position:sticky; top:0; z-index:10;
  background: rgba(11,18,32,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:12px}
.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(47,125,255,.95), rgba(255,122,24,.95));
  font-weight:800; font-size:20px; box-shadow: var(--shadow);
}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__tag{font-size:12px; color:var(--muted)}
.nav{display:flex; align-items:center; gap:14px; flex-wrap:wrap}
.nav a{font-size:14px; color:var(--muted)}
.nav a:hover{color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--accent), #ff9a3d);
  border:0; color:#1a0c00;
  font-weight:800;
  padding:12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  cursor:pointer;
}
.btn--sm{padding:10px 12px; border-radius:12px}
.btn:hover{filter:brightness(1.03)}
.hero{padding:46px 0 10px}
.hero__grid{display:grid; grid-template-columns:1.2fr .8fr; gap:22px; align-items:start}
.hero__copy h1{font-size:40px; line-height:1.05; margin:0 0 10px}
.hero__copy p{color:var(--muted); font-size:16px; line-height:1.55; margin:0 0 14px}
.hero__badges{display:flex; flex-wrap:wrap; gap:10px; margin:14px 0}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(15,26,48,.55);
  color:var(--text);
  font-size:13px;
}
.disclaimer{
  margin-top:14px;
  border:1px dashed rgba(255,255,255,.25);
  background: rgba(15,26,48,.55);
  padding:12px 14px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  line-height:1.45;
}
.hero__card{
  background: rgba(15,26,48,.75);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero__card h2{margin:0 0 6px; font-size:18px}
.muted{color:var(--muted)}
.tiny{font-size:12px}
.form{display:grid; gap:10px; margin-top:10px}
label{display:grid; gap:6px; font-size:13px; color:var(--muted)}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,18,32,.65);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(47,125,255,.65); box-shadow: 0 0 0 3px rgba(47,125,255,.18)}
textarea{resize:vertical}
.section{padding:28px 0}
.section--alt{background: rgba(255,255,255,.03); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section h2{margin:0 0 12px; font-size:24px}
.cards{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px}
.card{
  background: rgba(15,26,48,.65);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px; line-height:1.5}
.steps{display:grid; grid-template-columns: repeat(2, 1fr); gap:12px}
.step{
  display:flex; gap:12px;
  background: rgba(15,26,48,.55);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
}
.step__n{
  width:36px; height:36px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(47,125,255,.25);
  border:1px solid rgba(47,125,255,.35);
  font-weight:800;
}
.step h3{margin:0 0 4px; font-size:15px}
.step p{margin:0; color:var(--muted); font-size:13px}
.contactGrid{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}
.contactBox{
  background: rgba(15,26,48,.55);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
}
.contactBox h3{margin:0 0 6px; font-size:14px; color:var(--muted)}
.contactBox p{margin:0; font-size:14px}
.footer{
  margin-top:24px;
  border-top:1px solid var(--line);
  background: rgba(11,18,32,.7);
}
.footer__inner{
  display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap;
  padding:16px 0 22px;
}
.footer__brand{font-weight:900; letter-spacing:.2px}
.footer__links{display:flex; gap:14px; flex-wrap:wrap}
.footer__links a{color:var(--muted)}
.footer__links a:hover{color:var(--text)}
.pageHeader{padding:26px 0 8px; border-bottom:1px solid var(--line); background: rgba(11,18,32,.35)}
.pageHeader h1{margin:8px 0 0}
.back{display:inline-block; color:var(--muted)}
.page{padding:20px 0 40px}
.page h2{margin-top:18px}
.toast{
  margin-top:10px;
  padding:10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(47,125,255,.35);
  background: rgba(47,125,255,.15);
  color: var(--text);
}
@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr 1fr}
  .contactGrid{grid-template-columns:1fr}
}
@media (max-width: 520px){
  .hero__copy h1{font-size:30px}
  .cards{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
}
