:root {
  --bg: #050505;
  --surface: #0b0b0b;
  --surface-2: #111111;
  --text: #f4f2ef;
  --muted: #9a9693;
  --line: rgba(255, 255, 255, 0.12);
  --red: #e10600;
  --red-deep: #860400;
  --header-height: 5.25rem;
  --container: min(76rem, calc(100vw - 3rem));
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 20rem;
  color: var(--text);
  background: var(--bg);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--red);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: #fff;
  background: var(--red);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.brand-mark {
  width: 2.6rem;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(225, 6, 0, 0.7);
  background: #070707;
  box-shadow: 0 0 1.25rem rgba(225, 6, 0, 0.25);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.brand-mark img,
.team-channel-mark img,
.closing-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-name {
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  position: relative;
  color: #d3d0cd;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.45rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.42rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -4;
  background-color: #090909;
  background-image: url("./assets/germany-hero.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
  animation: hero-settle 1.8s cubic-bezier(0.2, 0.75, 0.15, 1) both;
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.83) 34%, rgba(5, 5, 5, 0.25) 72%, rgba(5, 5, 5, 0.68) 100%),
    linear-gradient(0deg, #050505 0%, transparent 30%, rgba(5, 5, 5, 0.3) 100%);
}

.hero-grid {
  z-index: -2;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 36rem;
  height: 36rem;
  left: -20rem;
  bottom: -20rem;
  border: 5rem solid rgba(225, 6, 0, 0.18);
  border-radius: 50%;
  filter: blur(1px);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 6rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.2rem;
  color: #d7d3cf;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span:not(.live-dot) {
  width: 2.5rem;
  height: 1px;
  background: var(--red);
}

.hero h1,
.section-heading h2,
.social-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(4.25rem, 9vw, 8.5rem);
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--red);
  font-style: normal;
}

.hero-copy {
  max-width: 35rem;
  margin: 1.8rem 0 0;
  color: #c2bfbc;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.35rem;
  padding: 0.8rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff0b03;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(5, 5, 5, 0.35);
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: flex;
  gap: clamp(2rem, 6vw, 5rem);
  margin: 3rem 0 0;
}

.hero-stats div {
  position: relative;
}

.hero-stats div + div::before {
  content: "";
  position: absolute;
  width: 1px;
  inset: 0 auto 0 clamp(-2.5rem, -3vw, -1rem);
  background: var(--line);
}

.hero-stats dt {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
}

.hero-stats dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-stamp {
  position: absolute;
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: 6.5rem;
  width: 8rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 0.15rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  transform: rotate(-9deg);
  backdrop-filter: blur(12px);
  background: rgba(5, 5, 5, 0.28);
}

.hero-stamp::before,
.hero-stamp::after {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: inherit;
}

.hero-stamp span,
.hero-stamp strong {
  position: relative;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.15;
}

.hero-stamp strong {
  color: var(--red);
  font-size: 1rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #aaa5a1;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 2rem;
  display: block;
  background: linear-gradient(var(--red) 50%, rgba(255, 255, 255, 0.22) 50%);
  background-size: 100% 200%;
  animation: scroll-line 1.6s ease infinite;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--red);
}

.ticker-track {
  width: max-content;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #fff;
  animation: ticker 24s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.ticker b {
  font-family: var(--display);
  font-size: 1.15rem;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  color: transparent;
}

.section {
  padding: clamp(6rem, 10vw, 9.5rem) 0;
}

.section-heading h2,
.social-heading h2 {
  font-size: clamp(3.35rem, 7vw, 7rem);
}

.story {
  position: relative;
  background:
    radial-gradient(circle at 5% 65%, rgba(225, 6, 0, 0.11), transparent 23rem),
    var(--bg);
}

.story::after {
  content: "05+";
  position: absolute;
  top: 6rem;
  right: -0.05em;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--display);
  font-size: clamp(10rem, 25vw, 25rem);
  line-height: 0.75;
  pointer-events: none;
}

.story-layout {
  position: relative;
  z-index: 1;
  margin-top: clamp(3.5rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.story-intro {
  align-self: start;
  padding-left: 1.3rem;
  border-left: 3px solid var(--red);
}

.story-intro p {
  margin: 0;
  color: var(--muted);
}

.story-intro .story-lead {
  margin-bottom: 1.25rem;
  color: #eeece9;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 650;
  line-height: 1.4;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline-item {
  padding: 1.65rem 0;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.timeline-number {
  padding-top: 0.2rem;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
}

.timeline h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline p {
  max-width: 42rem;
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.manifesto {
  position: relative;
  min-height: 34rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--red);
}

.manifesto::before {
  content: "";
  position: absolute;
  width: min(54vw, 42rem);
  aspect-ratio: 1;
  border: min(8vw, 6rem) solid rgba(0, 0, 0, 0.14);
  border-radius: 50%;
}

.manifesto-lines {
  position: absolute;
  left: -2vw;
  top: 50%;
  width: max-content;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(6rem, 16vw, 15rem);
  letter-spacing: 0.02em;
  line-height: 0.8;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.19);
  transform: translateY(-50%) rotate(-4deg);
}

.manifesto-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.manifesto-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.manifesto-content strong {
  color: #090909;
  font-weight: inherit;
}

.roster {
  background: var(--surface);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.section-note {
  max-width: 24rem;
  margin: 0 0 0.5rem;
  color: var(--muted);
}

.roster-grid {
  margin-top: clamp(3rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.member-card {
  min-width: 0;
  background: var(--surface);
  transition: background 220ms ease;
}

.member-card:hover {
  background: #141414;
}

.member-card-featured {
  background: #161111;
}

.member-visual {
  position: relative;
  aspect-ratio: 0.86;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(145deg, transparent 55%, rgba(225, 6, 0, 0.12)),
    repeating-linear-gradient(90deg, transparent 0 2.9rem, rgba(255, 255, 255, 0.035) 2.9rem 3rem),
    #0c0c0c;
}

.member-visual::after {
  content: "";
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid rgba(225, 6, 0, 0.35);
  border-radius: 50%;
  transform: translate(30%, 35%);
}

.member-letter {
  color: transparent;
  font-family: var(--display);
  font-size: clamp(7rem, 15vw, 12rem);
  line-height: 1;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.22);
  transform: skewX(-5deg);
}

.member-card-featured .member-letter {
  color: var(--red);
  -webkit-text-stroke: 0;
}

.member-index {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.member-info {
  min-height: 10.5rem;
  padding: 1.4rem;
}

.member-info p {
  margin: 0;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.member-info h3 {
  margin: 0.2rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.member-info span {
  display: block;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.live {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.live::before {
  content: "LIVE";
  position: absolute;
  right: -0.06em;
  top: 0.12em;
  color: rgba(255, 255, 255, 0.022);
  font-family: var(--display);
  font-size: clamp(12rem, 30vw, 30rem);
  line-height: 0.75;
  pointer-events: none;
}

.live-heading {
  position: relative;
  z-index: 1;
}

.live-heading .section-note {
  max-width: 28rem;
}

.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.45);
  animation: live-pulse 1.8s ease infinite;
}

.team-channel {
  position: relative;
  z-index: 1;
  min-height: 10rem;
  margin-top: clamp(3rem, 5vw, 5rem);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  overflow: hidden;
  background: var(--red);
  transition: background 200ms ease, transform 200ms ease;
}

.team-channel::after {
  content: "GMANYGG";
  position: absolute;
  right: 12%;
  color: rgba(0, 0, 0, 0.12);
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.75;
  white-space: nowrap;
  pointer-events: none;
}

.team-channel:hover,
.team-channel:focus-visible {
  background: #f20b04;
  transform: translateY(-3px);
}

.team-channel-mark {
  position: relative;
  z-index: 1;
  width: 6.5rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: #070707;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.25);
}

.team-channel-copy {
  position: relative;
  z-index: 1;
  flex: 1;
}

.team-channel-copy small,
.team-channel-copy strong,
.team-channel-copy > span {
  display: block;
}

.team-channel-copy small {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.team-channel-copy strong {
  margin-top: 0.1rem;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.team-channel-copy > span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.team-channel-action {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.team-channel-action i {
  font-size: 1.5rem;
  font-style: normal;
}

.streamers-grid {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.streamer-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}

.streamer-card:hover,
.streamer-card:focus-visible {
  border-color: rgba(225, 6, 0, 0.8);
  background: #121212;
  transform: translateY(-5px);
}

.streamer-visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #121212;
}

.streamer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.72), transparent 45%);
  pointer-events: none;
}

.streamer-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.75, 0.15, 1), filter 220ms ease;
}

.streamer-card:hover img,
.streamer-card:focus-visible img {
  transform: scale(1.045);
  filter: contrast(1.06);
}

.streamer-platform {
  position: absolute;
  z-index: 1;
  left: 0.85rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.5rem;
  color: #fff;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(8px);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.streamer-platform i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--red);
}

.streamer-info {
  min-height: 7.5rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1.5rem 1fr 1.5rem;
  gap: 0.75rem;
  align-items: center;
}

.streamer-number {
  align-self: start;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
}

.streamer-info strong,
.streamer-info div > span {
  display: block;
}

.streamer-info strong {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.streamer-info div > span {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.streamer-arrow {
  font-size: 1.3rem;
  transition: color 180ms ease, transform 180ms ease;
}

.streamer-card:hover .streamer-arrow,
.streamer-card:focus-visible .streamer-arrow {
  color: var(--red);
  transform: translate(2px, -2px);
}

.social {
  background: #f0eeeb;
  color: #080808;
}

.social .eyebrow {
  color: #333;
}

.social-heading h2 {
  max-width: 12ch;
}

.social-list {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.social-link {
  min-height: 7.2rem;
  display: grid;
  grid-template-columns: 4rem 1fr minmax(10rem, 0.5fr) 2rem;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

a.social-link:hover,
a.social-link:focus-visible {
  padding-inline: 1rem;
  color: #fff;
  background: var(--red);
}

.social-index {
  color: #6e6a67;
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.social-name {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.social-handle {
  color: #67625e;
  font-size: 0.83rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.social-arrow {
  font-size: 1.5rem;
}

.social-link:hover .social-index,
.social-link:hover .social-handle,
.social-link:focus-visible .social-index,
.social-link:focus-visible .social-handle {
  color: currentColor;
}

.closing {
  position: relative;
  min-height: 80svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #060606;
}

.closing-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.09) 50%, transparent 50.1%),
    linear-gradient(transparent 49.9%, rgba(255, 255, 255, 0.09) 50%, transparent 50.1%);
  background-size: 8rem 8rem;
  mask-image: radial-gradient(circle, black, transparent 70%);
}

.closing-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.closing-mark {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: min(76vw, 46rem);
  aspect-ratio: 1;
  opacity: 0.18;
  filter: saturate(1.2) contrast(1.08);
  transform: translate(-50%, -50%);
}

.closing-content p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.7rem, 9vw, 9rem);
  letter-spacing: -0.02em;
  line-height: 0.86;
  text-transform: uppercase;
}

.closing-content strong {
  color: var(--red);
  font-weight: inherit;
}

.closing-tag {
  margin-top: 2.3rem;
  display: inline-block;
  color: #b5b0ac;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030303;
}

.footer-inner {
  min-height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-inner p,
.footer-inner > a:last-child {
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-inner > a:last-child {
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.15, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.15, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.hero .reveal:nth-child(3) {
  transition-delay: 150ms;
}

.hero .reveal:nth-child(4) {
  transition-delay: 220ms;
}

.hero .reveal:nth-child(5) {
  transition-delay: 300ms;
}

@keyframes hero-settle {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.015); }
}

@keyframes scroll-line {
  0% { background-position: 0 100%; }
  100% { background-position: 0 -100%; }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes live-pulse {
  70% { box-shadow: 0 0 0 0.6rem rgba(225, 6, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 6, 0, 0); }
}

@media (max-width: 980px) {
  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-intro {
    max-width: 42rem;
  }

  .roster-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .streamers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 4.5rem;
    --container: min(100% - 2rem, 42rem);
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(18px);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 240ms cubic-bezier(0.2, 0.75, 0.15, 1), visibility 240ms;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 2rem;
    letter-spacing: 0.03em;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 50rem;
    align-items: end;
  }

  .hero-image {
    background-position: 65% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, #050505 3%, rgba(5, 5, 5, 0.86) 52%, rgba(5, 5, 5, 0.25) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.75), transparent);
  }

  .hero-content {
    padding-top: 8rem;
    padding-bottom: 7rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6.5rem);
  }

  .hero-stats {
    width: 100%;
    gap: 1.5rem;
    justify-content: space-between;
  }

  .hero-stats div + div::before {
    display: none;
  }

  .hero-stamp {
    display: none;
  }

  .scroll-cue {
    left: auto;
    right: 1rem;
    transform: none;
  }

  .section-heading-row {
    display: block;
  }

  .section-note {
    margin-top: 1.5rem;
  }

  .member-info {
    min-height: 9rem;
    padding: 1rem;
  }

  .team-channel {
    align-items: flex-start;
  }

  .team-channel::after {
    right: -1rem;
  }

  .team-channel-action {
    align-self: center;
  }

  .streamer-info {
    min-height: 6.8rem;
  }

  .social-link {
    grid-template-columns: 2.5rem 1fr 2rem;
    min-height: 6.5rem;
  }

  .social-handle {
    grid-column: 2;
    margin-top: -1.4rem;
  }

  .social-arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .footer-inner {
    padding: 2rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    justify-content: space-between;
  }

  .hero-stats dd {
    max-width: 6rem;
  }

  .roster-grid {
    grid-template-columns: 1fr;
  }

  .team-channel {
    padding: 1rem;
    flex-wrap: wrap;
  }

  .team-channel-mark {
    width: 5rem;
  }

  .team-channel-copy {
    min-width: calc(100% - 6.5rem);
  }

  .team-channel-action {
    width: 100%;
    padding: 0.8rem 0 0;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .streamers-grid {
    grid-template-columns: 1fr;
  }

  .member-visual {
    aspect-ratio: 1.35;
  }

  .social-index {
    display: none;
  }

  .social-link {
    grid-template-columns: 1fr 2rem;
  }

  .social-handle {
    grid-column: 1;
  }

  .social-arrow {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
