:root{
  --blue:#0b5cff;
  --black:#070a12;
  --yellow:#ffd000;
  --card:#0d1224;
  --muted:#a7b0c0;
  --line: rgba(255,255,255,.10);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(11,92,255,.25), transparent 60%),
              radial-gradient(900px 500px at 100% 0%, rgba(255,208,0,.12), transparent 55%),
              var(--black);
  color:#fff;
}

a{color:inherit; text-decoration:none}
.container{width:min(1100px, 92%); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:40;
  background: rgba(7,10,18,.70);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; flex-direction:column; line-height:1}
.brand-wordart{
  font-weight:900;
  letter-spacing:.5px;
  font-size:22px;
  background: linear-gradient(90deg, var(--yellow), #fff, var(--blue));
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
  text-shadow: 0 8px 25px rgba(11,92,255,.25);
}
.brand-sub{font-size:12px; color: var(--muted); margin-top:2px}

.nav{display:flex; gap:16px; align-items:center}
.nav a{color:#e8edff; opacity:.9}
.nav a:hover{opacity:1}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  font-weight:700;
}
.btn:hover{transform: translateY(-1px)}
.btn-blue{background: rgba(11,92,255,.18); border-color: rgba(11,92,255,.35)}
.btn-yellow{background: rgba(255,208,0,.18); border-color: rgba(255,208,0,.35)}
.btn-solid-blue{background: var(--blue); border-color: transparent; color:#fff}
.btn-solid-yellow{background: var(--yellow); border-color: transparent; color:#070a12}
.btn-wide{width:100%}

.hero{padding:56px 0 28px}
.hero-grid{display:grid; gap:22px; grid-template-columns: 1.1fr .9fr; align-items:center}
@media (max-width: 900px){ .hero-grid{grid-template-columns:1fr} .nav{display:none} }

.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color:#dfe6ff;
}
.dot{width:10px; height:10px; border-radius:50%; background: var(--yellow); box-shadow:0 0 0 6px rgba(255,208,0,.15)}
h1{font-size:46px; line-height:1.05; margin:14px 0 12px}
@media (max-width: 900px){ h1{font-size:36px} }
.subtext{color: var(--muted); font-size:16px; line-height:1.6; margin-bottom:18px}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}

.panel{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:18px;
  padding:18px;
}
.stats{display:grid; gap:12px; grid-template-columns: repeat(2,1fr)}
.stat{
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  background: rgba(13,18,36,.55);
}
.stat b{font-size:20px}
.muted{color: var(--muted)}

.section{padding:26px 0}
.section h2{margin:0 0 10px; font-size:26px}
.section .lead{color:var(--muted); margin:0 0 18px; line-height:1.6}

.grid-3{display:grid; gap:14px; grid-template-columns: repeat(3, 1fr)}
@media (max-width: 900px){ .grid-3{grid-template-columns:1fr} }

.card{
  border:1px solid var(--line);
  background: rgba(13,18,36,.55);
  border-radius:18px;
  overflow:hidden;
}
.card img{width:100%; height:160px; object-fit:cover; display:block; background:#0b0f20}
.card-body{padding:14px}
.badges{display:flex; flex-wrap:wrap; gap:8px; margin:10px 0}
.badge{
  font-size:12px; color:#dfe6ff;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:6px 10px;
  border-radius:999px;
}
.card-title{font-weight:900; font-size:18px; margin:2px 0 6px}
.card-sub{color:var(--muted); line-height:1.5; margin:0 0 12px}
.card-actions{display:flex; gap:10px; flex-wrap:wrap}

.split{display:grid; gap:14px; grid-template-columns: 1fr 1fr}
@media (max-width: 900px){ .split{grid-template-columns:1fr} }

.hr{height:1px; background: var(--line); margin:16px 0}

.accordion{border:1px solid var(--line); border-radius:14px; overflow:hidden}
.acc-item + .acc-item{border-top:1px solid var(--line)}
.acc-btn{
  width:100%;
  text-align:left;
  padding:14px;
  background: rgba(255,255,255,.03);
  border:0; color:#fff;
  display:flex; justify-content:space-between; align-items:center;
  font-weight:800;
  cursor:pointer;
}
.acc-body{
  display:none;
  padding:14px;
  color: var(--muted);
  background: rgba(7,10,18,.35);
}
.acc-body ul{margin:0; padding-left:18px}
.acc-body li{margin:6px 0}

.form{
  display:grid; gap:12px;
}
.field label{display:block; font-weight:800; margin:0 0 6px}
.field input, .field select, .field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:#fff;
  outline:none;
}
.field textarea{min-height:96px; resize:vertical}
.help{font-size:12px; color: var(--muted)}

.footer{
  margin-top:30px;
  border-top:1px solid var(--line);
  background: rgba(7,10,18,.55);
}
.footer-inner{
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-brand{font-weight:900}