
:root{
  color-scheme:dark;
  --bg:#080c13;
  --bg2:#0c121d;
  --panel:#111925;
  --panel2:#151f2d;
  --text:#f5f7fb;
  --muted:#9aa8bc;
  --line:#28364a;
  --purple:#8057ff;
  --cyan:#39d7ff;
  --pink:#ff4eb8;
  --green:#42d895;
  --max:1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 15% -10%,rgba(128,87,255,.18),transparent 32rem),
    radial-gradient(circle at 85% 2%,rgba(57,215,255,.11),transparent 28rem),
    var(--bg);
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.65;
}
a{color:#b7a8ff;text-decoration:none}
a:hover{text-decoration:underline}
.shell{width:min(var(--max),calc(100% - 36px));margin:auto}
header{
  position:sticky;top:0;z-index:10;
  background:rgba(8,12,19,.88);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(40,54,74,.72);
}
.nav{height:72px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.brand{display:flex;align-items:center;gap:12px;color:white;font-weight:800;letter-spacing:-.02em}
.brand img{width:38px;height:38px;border-radius:10px}
.navlinks{display:flex;align-items:center;gap:18px;font-size:14px}
.navlinks a{color:#b9c4d4}
.hero{padding:88px 0 52px;text-align:center}
.badge{
  display:inline-flex;align-items:center;gap:7px;padding:7px 11px;border:1px solid #384766;
  border-radius:999px;background:#111827;color:#b9c7dc;font-size:12px;font-weight:700;
}
.dot{width:7px;height:7px;border-radius:50%;background:var(--green);box-shadow:0 0 12px rgba(66,216,149,.45)}
h1{font-size:clamp(38px,6vw,66px);line-height:1.03;letter-spacing:-.045em;margin:20px auto 18px;max-width:900px}
.gradient{background:linear-gradient(90deg,#9d80ff,#49d7ff,#ff67c2);background-clip:text;-webkit-background-clip:text;color:transparent}
.lead{max-width:760px;margin:0 auto;color:#aab6c8;font-size:18px}
.hero-actions{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin-top:30px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:0 18px;
  border-radius:11px;border:1px solid #344158;background:#151e2d;color:#eef3fb;font-weight:750;
}
.btn:hover{text-decoration:none;border-color:#53637d}
.btn.primary{border-color:transparent;background:linear-gradient(135deg,#8057ff,#6a5cff);box-shadow:0 12px 34px rgba(104,79,255,.2)}
.section{padding:54px 0}
.section h2{font-size:30px;letter-spacing:-.03em;margin:0 0 12px}
.section-intro{color:var(--muted);max-width:760px;margin:0 0 26px}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.card{
  padding:22px;border:1px solid var(--line);border-radius:17px;
  background:linear-gradient(145deg,rgba(21,31,45,.96),rgba(13,20,31,.96));
}
.card h3{margin:10px 0 8px;font-size:18px}
.card p{margin:0;color:var(--muted);font-size:14px}
.icon{
  width:38px;height:38px;border-radius:11px;display:grid;place-items:center;
  background:#1c2740;border:1px solid #364866;font-size:18px
}
.notice{
  border:1px solid #33435c;border-radius:16px;padding:20px;background:#0e1622;
  color:#a9b7ca
}
.notice strong{color:white}
.legal-wrap{max-width:900px;margin:auto;padding:58px 0 90px}
.legal-title{padding-bottom:28px;border-bottom:1px solid var(--line);margin-bottom:30px}
.legal-title h1{text-align:left;margin:10px 0 12px;font-size:clamp(34px,5vw,48px)}
.meta{color:#8f9db0;font-size:13px}
.legal h2{font-size:22px;margin:38px 0 10px;letter-spacing:-.02em}
.legal h3{font-size:17px;margin:24px 0 8px}
.legal p,.legal li{color:#b1bdcc}
.legal ul{padding-left:22px}
.legal .important{
  padding:17px 18px;border-radius:13px;border:1px solid #3e4c68;background:#101827;color:#c6d0dd
}
.kicker{font-size:12px;letter-spacing:.17em;font-weight:850;color:#a184ff;text-transform:uppercase}
footer{
  border-top:1px solid var(--line);background:#090e16;padding:30px 0 38px;color:#7f8da1;font-size:13px
}
.footer-row{display:flex;justify-content:space-between;align-items:flex-start;gap:22px}
.footer-links{display:flex;gap:18px;flex-wrap:wrap}
.footer-links a{color:#c5cfdd;font-weight:650}
.small{font-size:12px;color:#7f8da1}
.status-list{display:grid;gap:10px;margin-top:18px}
.status-row{display:flex;gap:10px;align-items:flex-start;color:#aebaca}
.check{color:var(--green);font-weight:900}
@media(max-width:850px){
  .grid{grid-template-columns:1fr}
  .navlinks a.hide-mobile{display:none}
  .hero{padding-top:58px}
  .footer-row{flex-direction:column}
}
