:root {
  --bg: #0b0d10;
  --bg-2: #12151b;
  --card: #171b22;
  --line: #2a303a;
  --text: #f4f6f8;
  --muted: #9aa3ae;
  --red: #e31937;
  --red-2: #ff2a4a;
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; }

.wrap { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(11,13,16,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(180deg, var(--red-2), var(--red));
  display: grid; place-items: center; font-weight: 800; letter-spacing: .04em;
  flex-shrink: 0;
}
.logo {
  width: 42px; height: 42px; border-radius: 50%; object-fit: contain;
  background: #000; display: block;
}
.hero-logo {
  width: min(280px, 70vw); height: auto; border-radius: 16px;
  margin: 0 0 22px; display: block; object-fit: contain; background: #000;
}
.brand strong { display: block; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.brand span { display: block; font-size: 11px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; gap: 22px; font-size: 14px; color: var(--muted); }
.nav-links a { text-decoration: none; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff; text-decoration: none;
  padding: 11px 18px; border-radius: 999px; font-weight: 600; font-size: 14px;
  border: 0; cursor: pointer;
}
.btn:hover { background: var(--red-2); }
.btn.ghost {
  background: transparent; border: 1px solid var(--line); color: var(--text);
}
.btn.ghost:hover { border-color: #fff; }

.hero { padding: 72px 0 48px; }
.kicker {
  color: var(--red); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 14px;
}
h1 { font-size: clamp(36px, 6vw, 64px); line-height: 1.05; letter-spacing: -.03em; max-width: 16ch; }
.lede { margin-top: 18px; max-width: 58ch; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 40px 0 8px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; }
.stat b { display: block; font-size: 28px; letter-spacing: -.03em; }
.stat span { color: var(--muted); font-size: 13px; }

section { padding: 28px 0; }
h2 { font-size: 28px; letter-spacing: -.02em; margin-bottom: 10px; }
.sub { color: var(--muted); max-width: 62ch; margin-bottom: 22px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 20px;
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

.event {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 16px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px;
  margin-bottom: 10px;
}
.date { color: var(--red); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.event h3 { font-size: 17px; }
.event p { color: var(--muted); font-size: 14px; }

form { display: grid; gap: 12px; max-width: 560px; }
label { font-size: 13px; color: var(--muted); }
input, textarea, select {
  width: 100%; background: #0e1116; border: 1px solid var(--line); color: var(--text);
  border-radius: 10px; padding: 12px 13px; font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.note { font-size: 13px; color: var(--muted); }

.list { color: var(--muted); padding-left: 18px; }
.list li { margin: 8px 0; }

footer {
  margin-top: 48px; border-top: 1px solid var(--line); padding: 28px 0 40px;
  color: var(--muted); font-size: 13px;
}
.foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.legal { margin-top: 14px; max-width: 80ch; }

@media (max-width: 800px) {
  .nav-links { display: none; }
  .stats, .grid { grid-template-columns: 1fr; }
  .event { grid-template-columns: 1fr; }
}
