:root {
  --bg: #07090d;
  --bg-2: #0c1018;
  --card: #121826;
  --line: rgba(245, 200, 92, 0.14);
  --gold: #f0c14b;
  --gold-2: #c9a227;
  --mint: #5ee4a3;
  --cyan: #3ec6ff;
  --text: #eef2f8;
  --muted: #8b95a8;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  background:
    radial-gradient(1200px 620px at 8% -12%, rgba(240, 193, 75, 0.1), transparent 52%),
    radial-gradient(900px 520px at 100% 0%, rgba(62, 198, 255, 0.08), transparent 46%),
    var(--bg);
}
img { max-width: 100%; }
a { color: var(--gold); }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 9, 13, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand img { width: 40px; height: 40px; }
.nav-links { display: flex; gap: 18px; align-items: center; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:hover { color: var(--text); }

.hero { padding: 72px 0 36px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #666;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.04);
}
.dot.on { background: var(--mint); box-shadow: 0 0 0 4px rgba(94, 228, 163, 0.16); }
h1 {
  margin: 14px 0 10px;
  font-size: clamp(42px, 8vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.wordmark {
  background: linear-gradient(90deg, #f5c518, #3ec6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede { max-width: 38rem; color: var(--muted); font-size: 18px; line-height: 1.55; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  padding: 13px 18px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.btn.gold {
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #1a1406;
}
.btn.ghost {
  background: #1b2333;
  color: var(--text);
  border: 1px solid #2d3850;
}
.btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

.join-box {
  margin-top: 36px;
  background: linear-gradient(180deg, #161d2c, #10161f);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.join-ip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.join-ip code {
  font-family: var(--mono);
  font-size: clamp(18px, 3vw, 28px);
  color: var(--mint);
}
.meta { color: var(--muted); font-size: 14px; }
.copied { color: var(--mint); font-weight: 700; min-height: 1.2em; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p, .card li { color: var(--muted); line-height: 1.55; }
section { padding: 28px 0 12px; }
section h2 { font-size: 28px; letter-spacing: -0.04em; margin: 0 0 16px; }

.vote-list { display: grid; gap: 10px; }
.vote-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  background: #10161f;
  border: 1px solid #2a3346;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 650;
}
.vote-list a span { color: var(--muted); font-weight: 500; }
.vote-list a:hover { border-color: var(--gold); }

.banner-wrap { margin-top: 18px; }
.banner-wrap img {
  width: 468px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.footer {
  margin-top: 48px;
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--gold); }

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hero { padding-top: 40px; }
}
