:root {
  --bg: #070708;
  --bg-2: #101014;
  --bg-3: #18181e;
  --line: rgba(255,255,255,.1);
  --text: #f3f4f6;
  --muted: #a8a8b3;
  --red: #e10600;
  --red-2: #ff2a22;
  --silver: #cfd3dc;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(7,7,8,.82);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: .1em; font-size: 26px;
}
.brand img { height: 52px; width: 52px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(225,6,0,.45); }
.eq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.eq-item { background: var(--bg-2); border: 1px solid var(--line); padding: 18px 20px; }
.eq-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--silver); }
.eq-item ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 14px; }
.eq-item li { margin: 4px 0; }
@media (max-width: 900px) { .eq-list { grid-template-columns: 1fr; } }
.brand b { color: var(--red-2); }
.brand em { font-style: normal; color: var(--silver); }
.nav-links {
  display: flex; gap: 20px;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.nav-links a:hover { color: white; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); color: white; font-weight: 700;
  padding: 12px 18px; border: 0; border-radius: 4px; cursor: pointer;
  letter-spacing: .06em; text-transform: uppercase; font-size: 13px;
}
.btn:hover { background: var(--red-2); }
.btn-ghost {
  background: transparent; color: var(--silver);
  border: 1px solid rgba(207,211,220,.35);
}
.menu-btn { display: none; background: none; border: 0; color: white; font-size: 22px; }

.hero {
  position: relative; min-height: 92vh;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(225,6,0,.18), transparent 35%),
    linear-gradient(180deg, rgba(7,7,8,.35), rgba(7,7,8,.92)),
    url("https://images.unsplash.com/photo-1571902943202-507ec2618e8f?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.hero-copy { text-align: center; padding: 70px 0; max-width: 820px; }
.kicker { color: var(--red-2); letter-spacing: .28em; text-transform: uppercase; font-size: 12px; margin-bottom: 14px; }
.hero h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(58px, 11vw, 108px);
  line-height: .86; letter-spacing: .02em;
}
.hero h1 span { color: var(--red-2); }
.hero p { margin: 18px auto 28px; color: var(--silver); max-width: 560px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.badge-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.badge {
  border: 1px solid var(--line); padding: 8px 12px; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--silver);
}

section { padding: 84px 0; }
.sec-head { margin-bottom: 34px; }
.sec-head h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(36px, 6vw, 58px);
  letter-spacing: .04em;
}
.sec-head p { color: var(--muted); max-width: 580px; }

.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.poster-frame {
  background: #0c0c10; border: 1px solid var(--line); padding: 10px;
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.stat { background: var(--bg-3); padding: 16px; text-align: center; border-top: 2px solid var(--red); }
.stat b { display: block; font-size: 22px; color: var(--silver); font-family: "Bebas Neue", Impact, sans-serif; letter-spacing: .04em; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--bg-2); border: 1px solid var(--line); overflow: hidden; }
.card img { height: 210px; width: 100%; object-fit: cover; }
.card-body { padding: 18px; }
.card h3 { font-size: 18px; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 14px; }

.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.price {
  background: var(--bg-2); border: 1px solid var(--line); padding: 24px 20px;
  display: flex; flex-direction: column; min-height: 340px;
}
.price.featured { border-color: var(--red); }
.price .tier { color: var(--red-2); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.price h3 { font-family: "Bebas Neue", Impact, sans-serif; font-size: 32px; letter-spacing: .04em; margin-top: 6px; }
.amount { font-size: 34px; margin: 12px 0 16px; color: var(--silver); font-weight: 700; }
.price ul { list-style: none; color: var(--muted); font-size: 14px; flex: 1; }
.price li { padding: 7px 0; border-bottom: 1px solid var(--line); }
.price .btn { margin-top: 18px; width: 100%; }

.merch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.price-tag { color: var(--red-2); font-weight: 700; margin-top: 8px; }

.people { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.person img { height: 250px; object-fit: cover; filter: grayscale(.15) contrast(1.05); }
.role { color: var(--red-2); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

.join {
  background:
    linear-gradient(180deg, rgba(7,7,8,.72), rgba(7,7,8,.94)),
    url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1600&q=80") center/cover;
}
.join-box {
  background: rgba(12,12,16,.94);
  border: 1px solid var(--line);
  padding: 32px;
  max-width: 640px;
}
form { display: grid; gap: 12px; }
label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
input, select, textarea {
  width: 100%; background: #0a0a0e; color: white; border: 1px solid var(--line);
  padding: 12px 14px; font: inherit;
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.note { color: var(--muted); font-size: 13px; margin-top: 8px; }

footer { border-top: 1px solid var(--line); padding: 28px 0 40px; color: var(--muted); font-size: 14px; }
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.wa { color: white; font-weight: 700; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: #0c0c10; padding: 18px 20px 24px; border-bottom: 1px solid var(--line);
  }
  .menu-btn { display: block; }
  .about-grid, .grid-3, .merch-grid, .people, .row-2 { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .price-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}
