:root{
  --bg:#0b1020;
  --card:#121a33;
  --muted:#a9b0c6;
  --text:#eef1ff;
  --accent:#ff3b3b;
  --accent2:#ff6b6b;
  --ring:rgba(255,59,59,.35);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 70% 10%, rgba(72,122,255,.18), transparent 55%),
              radial-gradient(900px 500px at 10% 30%, rgba(255,59,59,.14), transparent 55%),
              var(--bg);
  color:var(--text);
}
a{color:inherit}
.container{width:min(1100px, 92vw); margin:0 auto;}
.topbar{
  position:sticky; top:0; z-index:20;
  backdrop-filter:saturate(160%) blur(10px);
  background:rgba(11,16,32,.6);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0;}
.brand{display:flex; gap:12px; align-items:center; text-decoration:none;}
.brand img{width:40px; height:40px; object-fit:contain; border-radius:12px; background:rgba(255,255,255,.04); padding:6px; border:1px solid rgba(255,255,255,.08)}
.brand .name{font-weight:800; letter-spacing:.2px}
.nav{display:flex; gap:14px; align-items:center}
.nav a{opacity:.9; text-decoration:none; font-weight:600; font-size:14px}
.nav a:hover{opacity:1; text-decoration:underline}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(255,255,255,.10);
}
.btn-primary{background:linear-gradient(135deg,var(--accent),var(--accent2)); box-shadow:0 10px 30px rgba(255,59,59,.22)}
.btn-ghost{background:rgba(255,255,255,.04)}
.btn:hover{transform:translateY(-1px)}
.hero{
  padding:44px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .nav{display:none}
}
.h-title{
  font-size: clamp(30px, 3.2vw, 44px);
  line-height:1.05;
  margin:0;
  letter-spacing:-.6px;
}
.h-sub{
  margin:14px 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin:0 0 22px; padding:0; list-style:none}
.pill{
  font-size:13px;
  color:#d9def5;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.card-pad{padding:20px}
.cover{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  height:100%;
}
.cover img{width:100%; height:100%; object-fit:cover; display:block}
.section{padding:18px 0}
.grid3{display:grid; gap:14px; grid-template-columns:repeat(3,1fr)}
@media (max-width: 900px){.grid3{grid-template-columns:1fr}}
.h2{margin:0 0 8px; font-size:18px}
.p{margin:0; color:var(--muted); line-height:1.6}
.k{display:flex; gap:12px; align-items:flex-start}
.icon{
  width:40px; height:40px; border-radius:14px;
  display:grid; place-items:center;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  flex:0 0 auto;
}
.icon svg{width:20px; height:20px}
.notice{
  margin-top:14px;
  padding:14px 16px;
  border-radius:16px;
  border:1px dashed rgba(255,255,255,.16);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
}
.footer{
  padding:26px 0 40px;
  color:rgba(255,255,255,.55);
  font-size:13px;
}
.small{font-size:12px; color:rgba(255,255,255,.55)}
.hr{height:1px; background:rgba(255,255,255,.08); margin:18px 0}