
:root {
  --bg: #081521;
  --panel: #0e2232;
  --panel-2: #122a3d;
  --gold: #e8bd55;
  --gold-2: #f2d279;
  --text: #f7f8fa;
  --muted: #aebdca;
  --line: rgba(255,255,255,.12);
  --ok: #84d9a2;
  --shadow: 0 20px 50px rgba(0,0,0,.22);
}
* { 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 top right, rgba(232,189,85,.10), transparent 28rem),
    linear-gradient(180deg, #07131e 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--gold-2); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(7,19,30,.82);
  border-bottom: 1px solid var(--line);
}
nav {
  min-height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .02em; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #12202a; font-size: 22px; box-shadow: var(--shadow);
}
.links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.links a { color: var(--muted); font-weight: 700; }
.links a:hover { color: var(--text); text-decoration: none; }
.hero { padding: 92px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 42px; align-items: center; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-weight: 900; font-size: .78rem; }
h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: .98; margin: 14px 0 22px; letter-spacing: -.045em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.08; margin: 0 0 18px; }
h3 { margin-top: 0; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 720px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 18px; border-radius: 14px; font-weight: 900;
  border: 1px solid var(--line);
}
.btn-primary { background: var(--gold); color: #10202c; border-color: transparent; }
.btn-secondary { color: var(--text); background: rgba(255,255,255,.04); }
.card {
  background: linear-gradient(180deg, rgba(18,42,61,.94), rgba(14,34,50,.96));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-card .status {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ok); font-weight: 900; margin-bottom: 16px;
}
.dot { width: 9px; height: 9px; border-radius: 999px; background: currentColor; box-shadow: 0 0 0 5px rgba(132,217,162,.08); }
section { padding: 68px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.muted { color: var(--muted); }
.kicker { color: var(--gold); font-weight: 900; }
.notice {
  border-left: 4px solid var(--gold);
  background: rgba(232,189,85,.07);
  padding: 16px 18px;
  border-radius: 12px;
  color: var(--muted);
}
.legal { max-width: 860px; padding: 56px 0 80px; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
.legal h2 { font-size: 1.4rem; margin-top: 34px; }
.legal p, .legal li { color: var(--muted); }
footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 44px;
  color: var(--muted);
}
.footer-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.small { font-size: .92rem; }
@media (max-width: 820px) {
  .hero-grid, .grid-3 { grid-template-columns: 1fr; }
  nav { align-items: flex-start; padding: 14px 0; flex-direction: column; }
  .links { gap: 12px; }
  .hero { padding-top: 56px; }
}
