:root {
  --ink: #080808;
  --ink-soft: #111111;
  --panel: #151515;
  --paper: #f1eee7;
  --paper-muted: #b9b6ae;
  --line: rgba(241, 238, 231, 0.17);
  --line-dark: rgba(8, 8, 8, 0.17);
  --red: #e13b2f;
  --red-deep: #8d1f1a;
  --blue: #3254ff;
  --gold: #c79a47;
  --gold-ink: #8f6c2b;
  --red-paper: #a72a20;
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --shell: min(1420px, calc(100vw - 80px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background: var(--ink);
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

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

button {
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.page-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
}

.grain {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 0 3.25vw;
  border-bottom: 1px solid transparent;
  transition:
    min-height 0.35s var(--ease),
    border-color 0.35s ease;
}

/* Blur/background live on a pseudo-element: backdrop-filter on the header itself
   would turn it into the containing block of the fixed .site-nav (mobile ghost bug). */
.site-header::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(14px);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  border-color: var(--line);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 13px;
  width: max-content;
}

.brand-mark {
  position: relative;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand-bolt {
  position: absolute;
  top: 7px;
  right: -11px;
  color: var(--red);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  padding: 0.08em 0.04em 0.18em;
}

.brand-copy {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 42px);
}

.site-nav a {
  position: relative;
  padding: 14px 2px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  content: "";
  transition: transform 0.35s var(--ease);
}

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

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

.site-nav a.is-active {
  color: #fff;
}

.site-nav a.is-active::after {
  transform: scaleX(1);
  background: var(--gold);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 24px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.16);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  background: #080808;
  isolation: isolate;
}

.hero-media,
.hero-wash,
.hero-rails {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -5;
  background: url("assets/hero-arena-shutterstock.jpg") center / cover no-repeat;
  background-position: calc(50% + clamp(18px, 3vw, 40px)) center;
  filter: saturate(0.75) contrast(1.22) brightness(0.76);
  transform: scaleX(-1) scale(1.035);
}

.hero-wash {
  z-index: -4;
  background:
    radial-gradient(circle at 78% 46%, rgba(225, 59, 47, 0.24), transparent 31%),
    radial-gradient(circle at 12% 62%, rgba(50, 84, 255, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.74) 34%, rgba(8, 8, 8, 0.18) 70%, rgba(8, 8, 8, 0.78) 100%),
    linear-gradient(0deg, #080808 0%, transparent 24%, rgba(8, 8, 8, 0.26) 74%, rgba(8, 8, 8, 0.85) 100%);
}

.hero-rails {
  z-index: -3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-inline: 7vw;
  opacity: 0.32;
}

.hero-rails span {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-rails span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 112px;
  padding-bottom: 92px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(16px, 2.3vh, 32px);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.75vw, 12px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(225, 59, 47, 0.12);
}

.live-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(225, 59, 47, 0.5);
  border-radius: 50%;
  content: "";
  animation: pulse-ring 1.9s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}

.hero-title {
  display: grid;
  row-gap: 0;
  width: min(100%, 1080px);
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

.hero-line {
  display: block;
  width: max-content;
  max-width: 100%;
  color: #fff;
  font-size: clamp(92px, 13.1vw, 248px);
  line-height: 0.78;
  letter-spacing: -0.035em;
  white-space: nowrap;
  will-change: transform;
}

.hero-line-outline {
  color: transparent;
  font-size: clamp(58px, 7.8vw, 150px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.68);
  text-stroke: 1.2px rgba(255, 255, 255, 0.68);
}

.hero-line-last {
  color: var(--red);
}

.hero-line-last b {
  display: inline-flex;
  width: 0.62em;
  height: 1em;
  margin-left: 0.06em;
  color: var(--gold);
  font-size: 0.35em;
  line-height: 1;
  overflow: visible;
  transform: translateY(-0.34em);
}

.hero-line-last b svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: currentColor;
}

/* Entrance: `translate` statt `transform`, damit das JS-Parallax (inline transform) nicht kollidiert. */
@keyframes hero-line-in {
  from {
    opacity: 0;
    translate: 0 44px;
  }
}

.hero-line {
  animation: hero-line-in 0.85s var(--ease) backwards;
}

.hero-title .hero-line:nth-child(2) {
  margin-top: clamp(16px, 1.4vw, 22px);
  animation-delay: 0.1s;
}

.hero-title .hero-line:nth-child(3) {
  animation-delay: 0.2s;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: min(100%, 1080px);
  margin-top: clamp(26px, 4vh, 48px);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-event {
  display: grid;
  gap: 4px;
}

.hero-event .mono-label,
.mono-label {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-event strong {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.1vw, 32px);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-event > span {
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.07em;
}

.hero-countdown {
  margin-top: 4px;
  color: var(--gold) !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 54px;
  padding: 0 22px;
  overflow: visible;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s var(--ease);
}

.button b {
  display: inline-block;
  font-size: 13px;
  line-height: 1.2;
  padding: 0.08em 0.08em 0.22em;
  overflow: visible;
  transition: transform 0.35s var(--ease);
}

.button b.button-arrow {
  display: inline-flex;
  flex: 0 0 auto;
  width: 16px;
  height: 20px;
  padding: 0;
  overflow: visible;
}

.button-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.button-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

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

.button:hover b,
.button:focus-visible b {
  transform: translate(3px, -3px);
}

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

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

.button-hot:hover,
.button-hot:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button-ghost {
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button-light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.button-large {
  min-height: 64px;
  padding-inline: 28px;
}

.hero-side {
  position: absolute;
  right: 24px;
  bottom: 92px;
  display: flex;
  align-items: center;
  gap: 22px;
  writing-mode: vertical-rl;
}

.hero-side span {
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-side strong {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 27px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  70%, 100% { transform: translateY(200%); }
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--ink);
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 76px);
  width: max-content;
  padding: 16px 0 14px;
  animation: ticker 50s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 43px);
  line-height: 1;
  text-transform: uppercase;
}

.ticker-track i {
  color: var(--red);
  font-family: var(--font-sans);
  font-size: 16px;
  font-style: normal;
}

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

.section {
  position: relative;
  padding-block: clamp(110px, 12vw, 210px);
  scroll-margin-top: 72px;
}

.eyebrow {
  margin: 0 0 clamp(22px, 1.5vw, 28px);
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Auf hellen Flächen brauchen Rot und Gold dunklere Stufen (WCAG AA). */
.manifesto .eyebrow,
.legal-main .eyebrow {
  color: var(--red-paper);
}

.champions .eyebrow {
  color: var(--gold-ink);
}

.display-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(74px, 9.4vw, 170px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.display-heading.compact {
  font-size: clamp(66px, 7.6vw, 138px);
}

.display-heading em {
  color: var(--red);
  font-style: normal;
}

.manifesto {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.manifesto::after {
  position: absolute;
  top: 5%;
  right: -0.15em;
  color: rgba(8, 8, 8, 0.035);
  content: "CBN";
  font-family: var(--font-display);
  font-size: min(44vw, 720px);
  line-height: 1;
  pointer-events: none;
}

.manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) 1.66fr;
  gap: clamp(48px, 8vw, 150px);
}

.section-index {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
}

.section-index span {
  color: var(--red-paper);
  font-family: var(--font-display);
  font-size: 20px;
}

.section-index p {
  margin: 2px 0 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto-copy {
  max-width: 1060px;
}

.manifesto-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 5vw, 85px);
  max-width: 780px;
  margin: 58px 0 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
}

.manifesto-detail p {
  margin: 0;
  color: rgba(8, 8, 8, 0.68);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.75;
}

.stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(90px, 11vw, 180px);
  border-block: 1px solid var(--line-dark);
}

.stats > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 32px 30px 28px;
  border-left: 1px solid var(--line-dark);
}

.stats > div:last-child {
  border-right: 1px solid var(--line-dark);
}

.stats strong {
  font-family: var(--font-display);
  font-size: clamp(54px, 5.7vw, 102px);
  font-weight: 400;
  line-height: 1;
}

.stats strong span {
  color: var(--red-paper);
  font-size: 0.35em;
}

.stats > div > span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.events {
  background: var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr;
  align-items: end;
  gap: clamp(50px, 10vw, 170px);
  margin-bottom: clamp(62px, 7vw, 110px);
}

.section-head-wide {
  grid-template-columns: 1.2fr 0.8fr;
}

.section-intro,
.champion-copy > p {
  max-width: 500px;
  margin: 0 0 10px;
  color: rgba(241, 238, 231, 0.68);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.75;
}

.event-deck {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr);
  align-items: stretch;
  gap: 22px;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.76fr) minmax(260px, 1fr);
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--ink-soft);
  transition: border-color 0.35s ease;
}

.event-card:hover {
  border-color: rgba(241, 238, 231, 0.34);
}

.poster-button {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #050505;
  cursor: zoom-in;
}

.poster-button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 36%);
  content: "";
}

.poster-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 0.65s var(--ease),
    transform 0.85s var(--ease);
}

.poster-button:hover img,
.poster-button:focus-visible img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.045);
}

.poster-button > span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.event-card-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(28px, 3vw, 50px);
}

.event-card-blue {
  box-shadow: inset 0 3px 0 var(--blue);
}

.event-card-red {
  box-shadow: inset 0 3px 0 var(--red);
}

.event-day {
  margin: 0;
  color: var(--paper-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.event-card-blue .event-day {
  color: #8aa0ff;
}

.event-card-red .event-day {
  color: #ff7e74;
}

.event-card h3 {
  margin: 34px 0 30px;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.1vw, 90px);
  font-weight: 400;
  line-height: 0.96;
}

.event-card h3 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.75);
}

/* Corner-Coding: blaue Ecke Samstag, rote Ecke Sonntag — auch in den Outline-Daten. */
.event-card-blue h3 span {
  -webkit-text-stroke-color: rgba(138, 160, 255, 0.65);
}

.event-card-red h3 span {
  -webkit-text-stroke-color: rgba(255, 126, 116, 0.65);
}

.event-times {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-block: 1px solid var(--line);
}

.event-times > div {
  display: grid;
  gap: 8px;
  padding: 18px 12px 18px 0;
}

.event-times > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.event-times span {
  color: var(--paper-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.event-times strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.1vw, 38px);
  font-weight: 400;
}

.fight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
}

.fight-tags li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: rgba(241, 238, 231, 0.78);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.event-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 125px;
  padding: 10px 0 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.poster-button > span b,
.text-link span,
.mobile-action-bar a span {
  display: inline-block;
  line-height: 1.2;
  padding: 0.08em 0.08em 0.22em;
  overflow: visible;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.event-versus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-block: 1px solid var(--line);
}

.event-versus span {
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(44px, 3.4vw, 64px);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
}

.event-versus i {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
}

.event-versus b {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.countdown {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  align-items: stretch;
  margin-top: 60px;
  border: 1px solid var(--line);
}

.countdown-label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 25px 30px;
  border-right: 1px solid var(--line);
  color: var(--paper-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.countdown-grid > div {
  display: grid;
  gap: 4px;
  padding: 21px 28px;
  border-left: 1px solid var(--line);
}

.countdown-grid > div:first-child {
  border-left: 0;
}

.countdown-grid strong {
  min-width: 2ch;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 64px);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  line-height: 1;
}

.countdown-grid span {
  color: var(--paper-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.format {
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.format-media,
.format-overlay {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.format-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.25) brightness(0.68);
}

.format-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.78) 50%, rgba(8, 8, 8, 0.5) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.9), transparent 38%, rgba(8, 8, 8, 0.42));
}

.format-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(60px, 11vw, 180px);
}

.format-copy .eyebrow {
  margin-bottom: clamp(48px, 3.5vw, 64px);
}

.format-copy > p:last-child {
  max-width: 520px;
  margin: 42px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: rgba(241, 238, 231, 0.7);
  line-height: 1.75;
}

.discipline-stack {
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.discipline {
  display: grid;
  grid-template-columns: 40px minmax(max-content, 0.5fr) 1fr;
  align-items: center;
  gap: 22px;
  min-height: 102px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  transition:
    color 0.35s ease,
    padding 0.35s var(--ease),
    background 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .discipline:hover {
    padding-inline: 20px;
    background: var(--paper);
    color: var(--ink);
  }
}

.discipline > span {
  font-family: var(--font-mono);
  font-size: 10px;
}

.discipline h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 66px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.discipline p {
  margin: 0;
  color: rgba(241, 238, 231, 0.62);
  font-size: 13px;
  line-height: 1.6;
  transition: color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .discipline:hover p {
    color: rgba(8, 8, 8, 0.6);
  }
}

.champions {
  background: var(--paper);
  color: var(--ink);
}

.champion-copy {
  display: grid;
  justify-items: start;
  gap: 30px;
  padding-bottom: 10px;
}

.champion-copy > p {
  color: rgba(8, 8, 8, 0.62);
}

.rail-controls {
  display: flex;
}

.rail-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.rail-controls button + button {
  border-left: 0;
}

.rail-controls button:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.rail-controls button:hover,
.rail-controls button:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.champion-rail {
  display: grid;
  grid-auto-columns: minmax(290px, 24vw);
  grid-auto-flow: column;
  gap: 1px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior: auto;
  scroll-behavior: smooth;
  scroll-padding-inline: 40px;
  scrollbar-width: none;
  touch-action: pan-y pinch-zoom;
  background: rgba(8, 8, 8, 0.15);
}

.champion-rail:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}

.champion-rail::-webkit-scrollbar {
  display: none;
}

.champion-card {
  position: relative;
  min-height: clamp(500px, 53vw, 720px);
  overflow: hidden;
  background: #101010;
  color: #fff;
  container-type: inline-size;
  isolation: isolate;
}

.champion-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.12) 52%, transparent 75%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 50%);
  content: "";
}

.champion-card::after {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  content: "";
  transition: height 0.55s var(--ease);
}

.champion-card:hover::after {
  height: 100%;
}

.champion-card img {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  filter: grayscale(0.75) contrast(1.12);
  transition:
    filter 0.6s ease,
    transform 0.8s var(--ease);
}

.champion-card img.champion-photo-saidi {
  object-position: 18% center;
}

.champion-card:hover img {
  filter: grayscale(0.1) contrast(1.05);
  transform: scale(1.04);
}

.champion-card > div {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 28px;
  left: 25px;
}

.champion-card span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.champion-card h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: min(clamp(42px, 3.65vw, 66px), 12.7cqi);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.champion-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.title-wall {
  margin-top: clamp(80px, 8vw, 140px);
  border-top: 1px solid var(--line-dark);
}

.title-wall-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.title-wall-heading span {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.title-wall-heading strong {
  color: var(--gold-ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.title-wall-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.title-wall-list article {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 16px 20px 16px 0;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.title-wall-list article:nth-child(3n + 2),
.title-wall-list article:nth-child(3n + 3) {
  padding-left: 20px;
}

.title-wall-list article:nth-child(3n) {
  border-right: 0;
}

.title-wall-list img {
  width: 76px;
  height: 86px;
  background: rgba(8, 8, 8, 0.08);
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}

.title-wall-list span {
  color: var(--gold-ink);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.title-wall-list h3 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.1vw, 34px);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}

.termine {
  background: var(--ink);
}

.termine-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(60px, 11vw, 180px);
}

.termine-sticky {
  position: sticky;
  top: 120px;
}

.termine-sticky > p:last-child {
  max-width: 410px;
  margin: 40px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: rgba(241, 238, 231, 0.66);
  line-height: 1.75;
}

.date-list {
  border-top: 1px solid var(--line);
}

.date-row {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(180px, 0.8fr) minmax(180px, 1fr) auto;
  align-items: center;
  gap: 26px;
  min-height: 116px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    padding 0.35s var(--ease);
}

.date-row::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--paper);
  content: "";
  pointer-events: none;
  transition: transform 0.45s var(--ease);
}

.date-row > * {
  position: relative;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .date-row:hover,
  .date-row:focus-visible {
    padding-inline: 32px;
    background-color: var(--paper);
    color: var(--ink);
  }

  .date-row:hover::before,
  .date-row:focus-visible::before {
    transform: scaleY(1);
  }
}

.date-row.featured {
  box-shadow: inset 3px 0 0 var(--red);
}

.date-year {
  color: rgba(241, 238, 231, 0.62);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

@media (hover: hover) and (pointer: fine) {
  .date-row:hover .date-year,
  .date-row:focus-visible .date-year {
    color: rgba(8, 8, 8, 0.5);
  }
}

.date-row strong {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.3vw, 56px);
  font-weight: 400;
  line-height: 1;
}

.date-row p {
  margin: 0;
  color: rgba(241, 238, 231, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

@media (hover: hover) and (pointer: fine) {
  .date-row:hover p,
  .date-row:focus-visible p {
    color: rgba(8, 8, 8, 0.6);
  }

  .date-row:hover strong,
  .date-row:hover b,
  .date-row:focus-visible strong,
  .date-row:focus-visible b {
    color: var(--ink);
  }
}

.date-row b {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.45;
  padding-block: 0.12em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.date-row.featured b {
  color: var(--red);
}

.location {
  overflow: hidden;
  background: #0b0b0b;
  isolation: isolate;
}

.location-image {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.location-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.64) 48%, rgba(8, 8, 8, 0.32) 100%),
    linear-gradient(0deg, #080808 0%, transparent 40%, rgba(8, 8, 8, 0.5) 100%);
  content: "";
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.24);
  transform: scale(1.04);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
  align-items: end;
  gap: clamp(50px, 12vw, 200px);
}

.location-grid > * {
  min-width: 0;
}

.location-copy address {
  margin: 42px 0 32px;
  color: rgba(241, 238, 231, 0.72);
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.09em;
  line-height: 1.85;
  text-transform: uppercase;
}

.fighter-callout {
  position: relative;
  padding: 48px;
  scroll-margin-top: 96px;
  border-top: 3px solid var(--red);
  background: var(--paper);
  color: var(--ink);
}

.callout-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(8, 8, 8, 0.45);
  font-family: var(--font-mono);
  font-size: 9px;
}

.fighter-callout > p:first-of-type {
  margin: 0 0 30px;
  color: var(--red-paper);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fighter-callout h3 {
  margin: 0;
  overflow: visible;
  font-family: var(--font-display);
  font-size: clamp(62px, 6vw, 100px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.fighter-callout h3 + p {
  margin: 35px 0;
  color: rgba(8, 8, 8, 0.63);
  font-size: 13px;
  line-height: 1.7;
}

.fighter-callout .button-hot:hover,
.fighter-callout .button-hot:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.callout-legal {
  display: block;
  width: max-content;
  margin-top: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.4);
  color: rgba(8, 8, 8, 0.66);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: clamp(5px, 0.5vw, 8px) solid var(--red);
  isolation: isolate;
}

.final-cta-media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.final-cta-media::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(225, 59, 47, 0.2), transparent 40%),
    rgba(8, 8, 8, 0.78);
  content: "";
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 82%;
  filter: grayscale(0.85) contrast(1.35) brightness(0.92);
  transform: scale(1.18);
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  padding-block: 100px;
  text-align: center;
}

.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(110px, 17vw, 300px);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.final-cta h2 em {
  color: var(--red);
  font-style: normal;
}

.final-cta-inner > p:not(.eyebrow) {
  margin: 44px 0 28px;
  color: rgba(241, 238, 231, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  background: #050505;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.85fr 0.6fr;
  gap: 50px;
  padding-block: 75px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 28px;
}

.footer-top > div:first-child > p {
  margin: 0;
  color: rgba(241, 238, 231, 0.6);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-transform: uppercase;
}

.footer-contact,
.footer-address,
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact > span,
.footer-address > span,
.footer-nav > span {
  margin-bottom: 13px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-nav a,
.footer-address p {
  margin: 0;
  padding-block: 3px;
  color: rgba(241, 238, 231, 0.68);
  font-size: 12px;
  line-height: 1.7;
  transition: color 0.2s ease;
}

.footer-contact a:hover,
.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  color: rgba(241, 238, 231, 0.62);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-bottom a,
.footer-bottom button {
  display: inline-block;
  padding-block: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--paper);
}

.footer-bottom button {
  padding: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.footer-bottom button:hover {
  color: var(--paper);
}

.lightbox {
  width: fit-content;
  max-width: calc(100vw - 40px);
  height: fit-content;
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #050505;
  color: #fff;
}

.lightbox[open] {
  animation: lightbox-in 0.3s var(--ease);
}

.lightbox[open]::backdrop {
  animation: lightbox-fade 0.3s ease;
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
}

@keyframes lightbox-fade {
  from {
    opacity: 0;
  }
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
}

.lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 42px);
  max-height: calc(92vh - 2px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-action-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}

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

/* Legal pages */
.legal-body {
  background: var(--paper);
  color: var(--ink);
}

.legal-body .grain {
  mix-blend-mode: multiply;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding-inline: 4vw;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(241, 238, 231, 0.9);
  backdrop-filter: blur(12px);
}

.legal-header .brand-copy {
  border-color: rgba(8, 8, 8, 0.25);
  color: rgba(8, 8, 8, 0.5);
}

.legal-back {
  padding: 12px 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-main {
  width: min(900px, calc(100vw - 50px));
  margin-inline: auto;
  padding: clamp(80px, 10vw, 150px) 0;
}

.legal-main .eyebrow {
  margin-bottom: 30px;
}

.legal-main h1 {
  margin: 0 0 70px;
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 145px);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
}

.legal-main h2 {
  margin: 55px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  text-transform: uppercase;
}

.legal-main h3 {
  margin: 32px 0 8px;
  font-size: 15px;
}

.legal-main p,
.legal-main li {
  color: rgba(8, 8, 8, 0.68);
  font-size: 14px;
  line-height: 1.85;
}

.legal-main a {
  border-bottom: 1px solid rgba(8, 8, 8, 0.35);
}

.legal-note {
  margin-block: 38px;
  padding: 24px;
  border-left: 3px solid var(--red);
  background: rgba(8, 8, 8, 0.05);
}

.legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: min(900px, calc(100vw - 50px));
  margin-inline: auto;
  padding: 28px 0 45px;
  border-top: 1px solid var(--line-dark);
  color: rgba(8, 8, 8, 0.62);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  :root {
    --shell: min(1420px, calc(100vw - 48px));
  }

  .site-header {
    grid-template-columns: minmax(190px, 1fr) auto minmax(180px, 1fr);
    padding-inline: 24px;
  }

  .site-nav {
    gap: 20px;
  }

  .event-card {
    grid-template-columns: 0.78fr 1fr;
  }

  .poster-button {
    min-height: 590px;
  }

  .event-card-content {
    padding: 32px 26px;
  }

  .event-card h3 {
    font-size: clamp(48px, 4.8vw, 70px);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 18px;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 90px 8vw 40px;
    transform: translateY(-100%);
    visibility: hidden;
    background: var(--ink);
    transition:
      transform 0.6s var(--ease),
      visibility 0s 0.6s;
  }

  .site-nav::after {
    position: absolute;
    right: 0;
    bottom: -0.22em;
    color: rgba(255, 255, 255, 0.025);
    content: "CBN";
    font-family: var(--font-display);
    font-size: 54vw;
    line-height: 1;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.6s var(--ease);
  }

  .site-nav a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(38px, 7vw, 70px);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

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

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: -16px -4px -16px -16px;
    padding: 16px 4px 16px 16px;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .menu-toggle > span {
    transform: translateY(-3px);
  }

  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 20px;
    height: 1px;
    background: #fff;
    content: "";
    transition: transform 0.3s ease;
  }

  .menu-toggle i::before {
    transform: translateY(-6px);
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::before {
    transform: rotate(-90deg);
  }

  .event-deck {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .event-versus {
    flex-direction: row;
    min-height: 70px;
    border: 0;
  }

  .event-versus b {
    writing-mode: horizontal-tb;
  }

  .event-card {
    grid-template-columns: minmax(280px, 0.72fr) 1fr;
  }

  .poster-button {
    min-height: 650px;
  }

  .event-card h3 {
    font-size: clamp(66px, 8vw, 100px);
  }

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

  .countdown-label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .format-inner {
    grid-template-columns: 1fr;
  }

  .format-copy {
    max-width: 760px;
  }

  .location-grid {
    grid-template-columns: 1fr 0.75fr;
    gap: 60px;
  }

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

  .title-wall-list article:nth-child(n) {
    padding-inline: 0 20px;
    border-right: 1px solid var(--line-dark);
  }

  .title-wall-list article:nth-child(2n) {
    padding-left: 20px;
    border-right: 0;
  }

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

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  .grain {
    opacity: 0.035;
  }

  .site-header {
    min-height: 70px;
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .site-header.is-scrolled {
    min-height: 64px;
  }

  .brand-copy {
    display: none;
  }

  .brand-mark {
    font-size: 25px;
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .hero-wash {
    background:
      radial-gradient(circle at 75% 30%, rgba(225, 59, 47, 0.24), transparent 35%),
      linear-gradient(0deg, #080808 2%, rgba(8, 8, 8, 0.78) 46%, rgba(8, 8, 8, 0.35) 80%, rgba(8, 8, 8, 0.85));
  }

  .hero-rails {
    padding-inline: 18px;
  }

  .hero-kicker {
    font-size: 9px;
    line-height: 1.5;
    letter-spacing: 0.13em;
  }

  .hero-line {
    font-size: clamp(74px, 25.2vw, 120px);
    line-height: 0.82;
  }

  .hero-line-outline {
    font-size: clamp(48px, 15.7vw, 75px);
    line-height: 0.94;
  }

  .hero-bottom {
    display: grid;
    gap: 25px;
    margin-top: 30px;
    padding-top: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    gap: 14px;
    min-height: 50px;
    padding-inline: 14px;
    font-size: 9px;
  }

  .hero-side {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding-block: 100px;
  }

  .display-heading,
  .display-heading.compact {
    font-size: clamp(62px, 21vw, 104px);
    line-height: 0.96;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-index {
    max-width: 190px;
  }

  .manifesto-detail {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 42px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 70px;
  }

  .stats > div:nth-child(2) {
    border-right: 1px solid var(--line-dark);
  }

  .stats > div:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .stats > div {
    padding: 24px 16px;
  }

  .section-head,
  .section-head-wide {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 52px;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .poster-button {
    min-height: auto;
    aspect-ratio: 1452 / 1650;
  }

  .poster-button img {
    object-position: top center;
  }

  .event-card-content {
    padding: 30px 22px;
  }

  .event-card h3 {
    font-size: clamp(64px, 20vw, 92px);
  }

  .event-versus {
    min-height: 45px;
  }

  .countdown-grid > div {
    padding: 18px 10px;
  }

  .countdown-grid strong {
    font-size: clamp(28px, 10vw, 42px);
  }

  .countdown-label {
    padding: 18px;
  }

  .format {
    min-height: auto;
  }

  .format-inner {
    gap: 70px;
  }

  .format-copy > p:last-child {
    margin-top: 30px;
  }

  .discipline {
    grid-template-columns: 24px minmax(max-content, 0.55fr) 1fr;
    gap: 10px;
    min-height: 82px;
  }

  .discipline h3 {
    font-size: 35px;
  }

  .discipline p {
    font-size: 11px;
  }

  .champion-copy {
    gap: 22px;
  }

  .champion-rail {
    grid-auto-columns: minmax(270px, 80vw);
  }

  .champion-card {
    min-height: 520px;
  }

  .title-wall-list {
    grid-template-columns: 1fr;
  }

  .title-wall-list article:nth-child(n) {
    padding: 14px 0;
    border-right: 0;
  }

  .termine-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .termine-sticky {
    position: static;
  }

  .date-row {
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
    min-height: 100px;
    padding-inline: 10px;
  }

  .date-row p {
    grid-column: 2 / 4;
    grid-row: 2;
  }

  .date-row b {
    grid-column: 3;
    grid-row: 1;
  }

  .date-row:hover {
    padding-inline: 16px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .location-copy .display-heading {
    font-size: clamp(40px, 16.5vw, 104px);
  }

  .location-copy address {
    margin-top: 30px;
  }

  .fighter-callout {
    padding: 38px 26px;
  }

  .fighter-callout h3 {
    font-size: clamp(62px, 20vw, 90px);
  }

  .final-cta {
    min-height: 75vh;
  }

  .final-cta h2 {
    font-size: clamp(88px, 28vw, 140px);
    line-height: 0.78;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-block: 25px;
  }

  .site-footer {
    padding-bottom: calc(56px + env(safe-area-inset-bottom));
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 56px;
    min-height: 56px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    background: var(--ink);
    box-shadow: 0 -14px 45px rgba(0, 0, 0, 0.35);
  }

  body.menu-open .mobile-action-bar {
    transform: translateY(110%);
  }

  .mobile-action-bar {
    transition: transform 0.4s var(--ease);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-inline: 18px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-action-bar a:last-child {
    justify-content: center;
    padding: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    background: var(--ink);
    font-size: 17px;
  }

  .legal-header {
    min-height: 66px;
    padding-inline: 18px;
  }

  .legal-main {
    width: calc(100vw - 36px);
  }

  .legal-footer {
    flex-direction: column;
    width: calc(100vw - 36px);
  }
}

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

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

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