:root {
  --bg: #070707;
  --panel: #121212;
  --panel-soft: #171717;
  --text: #f6efe4;
  --muted: #c9bfae;
  --gold: #e4bd59;
  --gold-soft: #f2d987;
  --line: rgba(228, 189, 89, 0.24);
  --line-soft: rgba(255, 255, 255, 0.10);
}
* { 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 20% 0%, rgba(228, 189, 89, 0.10), transparent 34%), var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--gold-soft); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
.header { border-bottom: 1px solid var(--line-soft); background: rgba(7, 7, 7, 0.86); }
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.logo-link { display: inline-flex; align-items: center; gap: 14px; }
.logo-link img { width: 76px; height: auto; display: block; }
.home-link { border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; color: var(--text); background: rgba(228, 189, 89, 0.08); }
.hero { padding: 72px 0 34px; }
.eyebrow { color: var(--gold-soft); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 700; }
h1 { margin: 14px 0 18px; font-size: clamp(2.25rem, 6vw, 4.5rem); line-height: 0.98; letter-spacing: -0.06em; }
.lead { max-width: 860px; color: var(--muted); font-size: clamp(1.06rem, 2vw, 1.25rem); }
.panel { margin: 28px 0; padding: clamp(22px, 4vw, 38px); border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)); box-shadow: 0 24px 70px rgba(0,0,0,0.35); }
h2 { margin: 0 0 14px; font-size: clamp(1.42rem, 3vw, 2.18rem); letter-spacing: -0.03em; }
h3 { margin: 24px 0 8px; font-size: 1.12rem; color: var(--gold-soft); }
p { margin: 0 0 16px; color: var(--muted); }
ul { margin: 8px 0 0; padding-left: 22px; color: var(--muted); }
li { margin: 8px 0; }
.notice { border: 1px solid var(--line-soft); background: rgba(18,18,18,0.86); border-radius: 20px; padding: 20px; margin-top: 18px; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.footer { border-top: 1px solid var(--line-soft); margin-top: 60px; padding: 26px 0; color: var(--muted); font-size: 0.94rem; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 10px; }
@media (max-width: 780px) { .header-inner { align-items: flex-start; flex-direction: column; padding: 18px 0; } .logo-link img { width: 68px; } .grid { grid-template-columns: 1fr; } }
