
:root {
  --bg: #050b14;
  --panel: #0a1624;
  --panel2: #0d1c2e;
  --text: #edf6ff;
  --muted: #a8b8ca;
  --blue: #31a9ff;
  --blue2: #72cfff;
  --gold: #ffc72e;
  --border: rgba(114,207,255,.18);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(49,169,255,.13), transparent 28rem),
    radial-gradient(circle at 90% 5%, rgba(255,199,46,.08), transparent 24rem),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--blue2); }
.wrap { width: min(1080px, calc(100% - 36px)); margin: 0 auto; }
header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(5,11,20,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav { min-height: 72px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand { display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--text); font-weight:800; letter-spacing:.08em; }
.brand img { width:42px; height:42px; border-radius:11px; }
nav { display:flex; gap:22px; flex-wrap:wrap; }
nav a { text-decoration:none; color:var(--muted); font-size:.95rem; }
nav a:hover { color:var(--text); }
.hero { padding:72px 0 48px; display:grid; grid-template-columns:1.05fr .95fr; align-items:center; gap:42px; }
.kicker { color:var(--blue2); letter-spacing:.18em; font-size:.82rem; font-weight:800; text-transform:uppercase; }
h1 { margin:.25rem 0 1rem; font-size:clamp(3rem, 8vw, 6rem); line-height:.9; letter-spacing:-.06em; }
.gold { color:var(--gold); text-shadow:0 0 28px rgba(255,199,46,.25); }
.lead { font-size:1.15rem; color:var(--muted); max-width:650px; }
.ctas { display:flex; gap:12px; flex-wrap:wrap; margin-top:26px; }
.button { display:inline-block; text-decoration:none; padding:12px 18px; border-radius:12px; font-weight:750; }
.primary { color:#04101b; background:linear-gradient(135deg,var(--blue2),var(--blue)); }
.secondary { color:var(--text); border:1px solid var(--border); background:rgba(255,255,255,.025); }
.hero-art { background:linear-gradient(145deg,var(--panel2),#050b14); border:1px solid var(--border); border-radius:28px; overflow:hidden; box-shadow:var(--shadow); }
.hero-art img { display:block; width:100%; height:auto; }
.section { padding:48px 0; }
.section h2, .legal h1 { font-size:clamp(2rem,5vw,3.2rem); line-height:1.08; letter-spacing:-.035em; }
.grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.card { padding:24px; border-radius:18px; background:linear-gradient(145deg,rgba(13,28,46,.92),rgba(8,18,31,.92)); border:1px solid var(--border); box-shadow:0 12px 34px rgba(0,0,0,.18); }
.card h3 { margin-top:0; color:#fff; }
.card p { margin-bottom:0; color:var(--muted); }
.legal { width:min(820px, calc(100% - 36px)); margin:0 auto; padding:64px 0 80px; }
.legal h2 { margin-top:2.2rem; font-size:1.45rem; }
.legal p, .legal li { color:#c6d2df; }
.notice { border-left:3px solid var(--gold); padding:14px 18px; background:rgba(255,199,46,.06); border-radius:8px; }
.meta { color:var(--muted); font-size:.92rem; }
footer { border-top:1px solid var(--border); padding:28px 0 40px; color:var(--muted); font-size:.9rem; }
.footer-row { display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.footer-links { display:flex; gap:18px; flex-wrap:wrap; }
@media (max-width: 780px) {
  .hero { grid-template-columns:1fr; padding-top:46px; }
  .grid { grid-template-columns:1fr; }
  .nav { align-items:flex-start; padding:14px 0; flex-direction:column; gap:8px; }
  header { position:static; }
}
