:root {
  --bg: #090909;
  --bg-soft: #111111;
  --card: rgba(255,255,255,0.05);
  --line: rgba(255,255,255,0.08);
  --text: #f5f5f5;
  --muted: #b0b0b0;
  --accent: #c20d19;
  --accent-2: #ff3c47;
  --shadow: 0 20px 50px rgba(0,0,0,.45);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(194,13,25,.16), transparent 25%),
    linear-gradient(180deg, #0a0a0a 0%, #070707 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.bg-grid {
  position: fixed; inset: 0; pointer-events: none; opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 36px 36px;
}
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(8,8,8,.72);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 82px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Oswald', sans-serif; font-size: 1.1rem;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, #1e1e1e, #650810);
  box-shadow: inset 0 0 20px rgba(255,255,255,.05);
}
.brand strong { display: block; font-family: 'Oswald', sans-serif; font-size: 1.05rem; letter-spacing: .08em; text-transform: uppercase; }
.brand small { color: var(--muted); display: block; letter-spacing: .12em; text-transform: uppercase; }
.nav { display: flex; gap: 18px; align-items: center; }
.nav a { color: #ddd; }
.nav a:hover { color: #fff; }
.nav-toggle {
  display: none; background: transparent; color: white; border: 1px solid var(--line);
  width: 44px; height: 44px; border-radius: 12px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white; font-weight: 700; border: none; box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-1px); }
.btn-ghost {
  background: transparent; border: 1px solid rgba(255,255,255,.14); box-shadow: none;
}
.btn-sm { min-height: 40px; padding: 0 16px; font-size: .95rem; }
.hero { padding: 86px 0 54px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; }
.eyebrow {
  color: var(--accent-2); letter-spacing: .18em; text-transform: uppercase; font-weight: 700; font-size: .82rem;
}
.hero h1, .section h2 { margin: 10px 0 16px; font-family: 'Oswald', sans-serif; text-transform: uppercase; line-height: 1; }
.hero h1 { font-size: clamp(2.8rem, 8vw, 5.2rem); max-width: 11ch; }
.lead { color: var(--muted); font-size: 1.08rem; line-height: 1.7; max-width: 62ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hero-stats article, .hero-panel, .rank-card, .event-card, .glass-card, .membership-form, .download-box, .contact-box, .event-highlight, .faq-list details {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
}
.hero-stats article { padding: 18px; }
.hero-stats strong { display: block; font-family: 'Oswald', sans-serif; font-size: 1.9rem; }
.hero-stats span { color: var(--muted); font-size: .92rem; }
.hero-card { display: grid; gap: 20px; }
.emblem {
  position: relative; height: 420px; display: grid; place-items: center;
  border-radius: 32px; overflow: hidden;
  background: radial-gradient(circle, rgba(194,13,25,.4), rgba(20,20,20,.6) 40%, rgba(0,0,0,.9));
  border: 1px solid var(--line);
}
.emblem-ring {
  width: 280px; height: 280px; border-radius: 50%; border: 2px solid rgba(255,255,255,.08);
  box-shadow: 0 0 0 12px rgba(255,255,255,.02), 0 0 80px rgba(194,13,25,.35);
  animation: pulse 4s infinite ease-in-out;
}
.emblem-core {
  position: absolute; width: 170px; height: 170px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(145deg, #1a1a1a, #700c14);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 30px rgba(255,255,255,.06), 0 20px 60px rgba(0,0,0,.5);
}
.emblem-core span {
  font-family: 'Oswald', sans-serif; font-size: 4.6rem; letter-spacing: .06em;
}
.hero-panel { padding: 26px; }
.hero-panel h3, .glass-card h3, .rank-card h3, .event-card h3, .membership-form h3, .download-box h3 { margin-top: 0; }
.hero-panel ul { padding-left: 18px; margin-bottom: 0; color: var(--muted); line-height: 1.8; }
.section { padding: 90px 0; }
.section-alt { background: rgba(255,255,255,.02); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
.section-head p:last-child { color: var(--muted); line-height: 1.75; }
.section-head.center { text-align: center; max-width: 820px; margin: 0 auto 38px; }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.glass-card { padding: 24px; }
.glass-card p, .rank-card p, .event-card p, .download-box p { color: var(--muted); line-height: 1.7; }
.timeline { display: grid; gap: 18px; margin-bottom: 32px; }
.timeline-item {
  display: grid; grid-template-columns: 82px 1fr; gap: 20px; align-items: start;
  padding: 24px; border-radius: 26px; border: 1px solid var(--line); background: rgba(255,255,255,.03);
}
.step {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(145deg, #1a1a1a, #7d1018); font-family: 'Oswald', sans-serif; font-size: 1.5rem;
}
.rank-cards, .events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rank-card, .event-card { padding: 24px; }
.rank-card span { display: inline-flex; margin-top: 8px; color: var(--accent-2); font-weight: 700; }
.membership-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: start; }
.check-list { list-style: none; padding: 0; margin: 24px 0; }
.check-list li {
  margin-bottom: 12px; padding-left: 28px; position: relative; color: var(--muted);
}
.check-list li::before { content: '•'; color: var(--accent-2); position: absolute; left: 10px; font-size: 1.2rem; }
.download-box { padding: 24px; margin-top: 22px; }
.download-links { display: flex; gap: 10px; flex-wrap: wrap; }
.membership-form { padding: 28px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 14px; }
input, select, textarea {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  color: white; border-radius: 16px; padding: 14px 16px;
}
textarea { resize: vertical; min-height: 140px; margin-bottom: 14px; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); margin-bottom: 18px; }
.checkbox input { width: auto; margin-top: 5px; }
.form-note { min-height: 20px; color: var(--accent-2); margin-top: 12px; }
.event-highlight {
  padding: 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 22px;
}
.event-kicker { color: var(--accent-2); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; min-width: 420px; }
.countdown div { text-align: center; padding: 18px 12px; border-radius: 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.countdown strong { display: block; font-family: 'Oswald', sans-serif; font-size: 2rem; }
.event-card span {
  display: inline-flex; width: 56px; height: 56px; border-radius: 14px; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #1a1a1a, #7b0f17); font-weight: 800;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; grid-auto-rows: 220px;
}
.gallery-item {
  position: relative; border: none; border-radius: 28px; overflow: hidden; padding: 0;
  background-image: linear-gradient(180deg, transparent, rgba(0,0,0,.65)), var(--bg);
  background-size: cover; background-position: center;
  background-image: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72)), var(--bg);
}
.gallery-item::before {
  content: ''; position: absolute; inset: 0; background-image: var(--bg); background-size: cover; background-position: center;
  transform: scale(1); transition: transform .4s ease;
}
.gallery-item span { position: absolute; left: 18px; bottom: 18px; z-index: 1; font-weight: 700; }
.gallery-item:hover::before { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.faq-list { display: grid; gap: 14px; }
.faq-list details { padding: 22px 24px; }
.faq-list summary { cursor: pointer; font-weight: 700; }
.faq-list p { color: var(--muted); line-height: 1.7; margin: 14px 0 0; }
.contact-box {
  padding: 32px; display: flex; justify-content: space-between; gap: 24px; align-items: center;
}
.contact-box p { color: var(--muted); max-width: 62ch; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.site-footer { padding: 28px 0 40px; border-top: 1px solid var(--line); }
.footer-wrap { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); }
.footer-wrap div { display: flex; gap: 14px; flex-wrap: wrap; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.88); display: none; place-items: center; z-index: 100;
}
.lightbox.open { display: grid; }
.lightbox-content {
  width: min(980px, calc(100% - 24px)); background: #111; border: 1px solid var(--line);
  border-radius: 26px; padding: 20px;
}
.lightbox-image { height: 70vh; border-radius: 20px; background-size: cover; background-position: center; }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line); color: white; background: rgba(255,255,255,.08); font-size: 1.6rem;
}
.reveal { opacity: 0; transform: translateY(28px); transition: .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@media (max-width: 980px) {
  .hero-grid, .two-col, .membership-grid, .faq-grid { grid-template-columns: 1fr; }
  .rank-cards, .events-grid, .cards-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .countdown { min-width: 100%; }
  .event-highlight, .contact-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav {
    position: absolute; top: 82px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch;
    padding: 16px; border: 1px solid var(--line); border-radius: 20px; background: rgba(15,15,15,.97);
  }
  .nav.open { display: flex; }
  .hero h1 { max-width: none; }
  .hero-stats, .rank-cards, .events-grid, .cards-grid, .form-row, .gallery-grid { grid-template-columns: 1fr; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .timeline-item { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .footer-wrap { flex-direction: column; }
}
