:root {
  --ink: #05090a;
  --panel: #0b1416;
  --panel-2: #111d1f;
  --line: #294044;
  --text: #edf4ef;
  --muted: #9fb0ad;
  --lime: #a8ff2f;
  --cyan: #00d7e6;
  --orange: #ff8a1c;
  --red: #ef3340;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--lime);
  color: #071113;
  padding: .65rem 1rem;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .65rem max(1rem, calc((100vw - var(--max)) / 2));
  background: #071113;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .92rem;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }
.brand strong { color: var(--orange); }
.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--lime); }
.nav-toggle {
  display: none;
  min-width: 48px;
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #05090a;
}
.hero-art {
  position: absolute;
  inset: 0;
  background-image: url("../images/zombie-gun-hero.webp");
  background-size: cover;
  background-position: center;
  opacity: .46;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: rgba(5, 9, 10, .74);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.hero-copy h1,
.section-heading h2,
.roster-copy h2,
.support-band h2,
.policy-summary h1,
.error-page h1 {
  margin: .1em 0 .35em;
  font-family: Impact, "Arial Black", sans-serif;
  font-weight: 900;
  line-height: .94;
  text-transform: uppercase;
}
.hero-copy h1 { max-width: 720px; font-size: clamp(4rem, 12vw, 9rem); color: var(--lime); }
.hero-copy > p:not(.eyebrow):not(.release-note) { max-width: 620px; margin: 0 0 1.6rem; font-size: clamp(1.08rem, 2vw, 1.35rem); }
.eyebrow {
  margin: 0 0 .55rem;
  color: var(--cyan);
  font-size: .77rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.2rem;
  border: 1px solid currentColor;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 900;
}
.button-primary { background: var(--orange); color: #101010; border-color: var(--orange); }
.button-primary:hover { background: var(--lime); border-color: var(--lime); }
.button-secondary { background: #071113; color: var(--text); border-color: var(--line); }
.button-secondary:hover { color: var(--cyan); border-color: var(--cyan); }
.release-note { display: flex; align-items: center; gap: .55rem; margin-top: 1.35rem; color: var(--muted); font-size: .82rem; font-weight: 700; }
.release-note span { width: 9px; height: 9px; background: var(--lime); box-shadow: 0 0 16px var(--lime); }

.section { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; padding: clamp(4rem, 8vw, 7rem) 0; }
.section-heading { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2rem; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -1rem; }
.section-heading h2, .roster-copy h2, .support-band h2, .policy-summary h1, .error-page h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); }
.lead { max-width: 820px; margin: 2rem 0 3rem; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.32rem); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature { min-height: 260px; padding: 2rem; border-right: 1px solid var(--line); background: var(--panel); }
.feature:last-child { border-right: 0; }
.feature-index { color: var(--orange); font-size: .72rem; font-weight: 900; }
.feature h3 { margin: 3rem 0 .6rem; font-size: 1.35rem; text-transform: uppercase; }
.feature p { margin: 0; color: var(--muted); }

.roster-band {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: stretch;
  background: var(--panel-2);
  border-block: 1px solid var(--line);
}
.roster-copy { align-self: center; padding: clamp(2rem, 6vw, 6rem) max(1rem, calc((100vw - var(--max)) / 2)); padding-right: clamp(2rem, 5vw, 5rem); }
.roster-copy p:last-child { color: var(--muted); }
.roster-band img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; object-position: center; }

.gallery { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.shot { position: relative; min-height: 460px; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.shot:hover img { transform: scale(1.025); }
.shot span { position: absolute; inset: auto .65rem .65rem; padding: .45rem .65rem; background: #071113; border-left: 3px solid var(--orange); font-size: .75rem; font-weight: 900; text-transform: uppercase; }

.support-band {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 6rem;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
}
.support-band h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
.support-band p:last-child { max-width: 700px; margin-bottom: 0; color: var(--muted); }
.support-band .button { flex: 0 0 auto; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: end;
  padding: 2.5rem max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--muted);
  background: #071113;
  border-top: 1px solid var(--line);
  font-size: .84rem;
}
.site-footer strong { color: var(--text); text-transform: uppercase; }
.site-footer p { margin: .25rem 0 0; }
.site-footer nav { display: flex; gap: 1.2rem; }
.site-footer a:hover { color: var(--lime); }

.policy-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(3rem, 7vw, 7rem) 0;
}
.policy-summary { align-self: start; position: sticky; top: 110px; }
.policy-summary > p { color: var(--muted); }
.policy-summary .button { margin-top: 1rem; }
.policy-signal { margin-top: 2rem; padding: 1.3rem; background: var(--panel); border: 1px solid var(--line); border-left: 4px solid var(--lime); }
.policy-signal strong { color: var(--lime); text-transform: uppercase; }
.policy-content { padding: clamp(1.5rem, 4vw, 3.5rem); background: var(--panel); border: 1px solid var(--line); }
.policy-content > p:first-child { font-size: 1.16rem; color: var(--text); }
.policy-content h2 { margin: 3rem 0 .8rem; color: var(--lime); font-size: 1.35rem; text-transform: uppercase; }
.policy-content h2:first-of-type { margin-top: 2rem; }
.policy-content h3 { margin: 1.75rem 0 .5rem; color: var(--cyan); font-size: 1rem; text-transform: uppercase; }
.policy-content p, .policy-content li { color: var(--muted); }
.policy-content a { color: var(--cyan); text-underline-offset: 3px; overflow-wrap: anywhere; }
.policy-content a:hover { color: var(--lime); }
.link-list { padding-left: 1.2rem; }

.error-page { min-height: 100svh; display: grid; place-items: center; text-align: center; }
.error-page main { width: min(560px, calc(100% - 2rem)); }
.error-page img { margin: 0 auto 1.5rem; border-radius: 8px; }
.error-page p:not(.eyebrow) { color: var(--muted); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #071113;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { min-height: 48px; display: flex; align-items: center; padding: 0 .5rem; border-bottom: 1px solid var(--line); }
  .hero { min-height: 700px; }
  .hero-art { background-size: auto 100%; background-position: 64% center; opacity: .5; }
  .section-heading { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature:last-child { border-bottom: 0; }
  .feature h3 { margin-top: 1.4rem; }
  .roster-band { grid-template-columns: 1fr; }
  .roster-band img { min-height: 360px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .shot { min-height: 540px; }
  .support-band { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .policy-shell { grid-template-columns: 1fr; }
  .policy-summary { position: static; }
}

@media (max-width: 560px) {
  .brand span { font-size: .8rem; }
  .hero { min-height: calc(100svh - 72px); }
  .hero-copy h1 { font-size: clamp(3.7rem, 20vw, 6rem); }
  .hero-copy { padding-bottom: 3rem; }
  .hero-art { background-position: 66% center; opacity: .4; }
  .gallery { grid-template-columns: 1fr; }
  .shot { min-height: 660px; }
  .support-band { margin-bottom: 3rem; }
  .site-footer nav { flex-direction: column; gap: .6rem; }
  .policy-content { padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .shot img { transition: none; }
}
