:root {
  color-scheme: dark;
  --ink: #05050a;
  --ink-soft: #11111a;
  --paper: #fbfaff;
  --paper-muted: rgba(242, 239, 255, .74);
  --gold: #ff4fb8;
  --gold-bright: #9fe8ff;
  --gold-deep: #6d39ff;
  --line: rgba(179, 129, 255, .28);
  --page-gutter: clamp(20px, 4vw, 68px);
}

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

html {
  min-height: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: var(--ink);
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-trailer-open {
  overflow: hidden;
}

button {
  font: inherit;
}

.arena {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
  animation: arena-reveal 900ms ease-out both;
}

.arena::before {
  position: absolute;
  inset: -2%;
  content: "";
  background-image: url("assets/mma-legacy-empty-arena-v1.jpg");
  background-position: center center;
  background-size: cover;
  filter: saturate(.92) contrast(1.08) brightness(.76);
  transform: scale(1.02);
  animation: arena-breathe 18s ease-in-out infinite alternate;
  will-change: transform;
}

.arena::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 44%, rgba(22, 17, 10, .08) 0 17%, rgba(5, 5, 5, .34) 45%, rgba(3, 3, 3, .78) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, .7) 0, rgba(3, 3, 3, .08) 20%, rgba(3, 3, 3, .18) 61%, rgba(3, 3, 3, .9) 100%);
}

.site-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: clamp(18px, 3vh, 30px) var(--page-gutter);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(4, 4, 4, .76), rgba(4, 4, 4, .18));
  animation: reveal-down 650ms 80ms cubic-bezier(.2, .75, .25, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brand__mark {
  display: grid;
  width: 36px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 222, 144, .7);
  border-radius: 8px;
  color: #171007;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold) 56%, var(--gold-deep));
  box-shadow: 0 7px 24px rgba(205, 135, 26, .2);
  font-size: .66rem;
  font-weight: 1000;
  letter-spacing: -.05em;
}

.brand__name {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.88rem, 1.25vw, 1.05rem);
  font-weight: 850;
  letter-spacing: .08em;
}

.brand__name strong {
  color: var(--paper);
}

.site-header__links {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2.5vw, 34px);
  color: rgba(255, 250, 240, .62);
  font-size: clamp(.67rem, .85vw, .78rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-header__link {
  position: relative;
  cursor: default;
}

.site-header__link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  opacity: 0;
  transform: scaleX(.2);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header__link:hover::after {
  opacity: .8;
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  padding: clamp(44px, 7vh, 82px) var(--page-gutter) clamp(82px, 10vh, 112px);
  text-align: center;
}

.hero__content {
  width: min(100%, 850px);
}

.hero__eyebrow {
  margin: 0 0 clamp(6px, 1vh, 10px);
  color: var(--gold-bright);
  font-size: clamp(.64rem, 1vw, .77rem);
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
  text-shadow: 0 3px 18px #000;
  animation: reveal-up 500ms 120ms cubic-bezier(.2, .75, .25, 1) both;
}

.hero__logo {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .16em;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.3rem, 10.5vw, 9.4rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: .78;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0, 0, 0, .82);
  animation: reveal-up 700ms 220ms cubic-bezier(.2, .75, .25, 1) both;
}

.hero__logo span:last-child {
  color: var(--gold);
  background: linear-gradient(180deg, #fff0b7 0, var(--gold-bright) 24%, var(--gold) 58%, #9d6013 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 25px rgba(218, 146, 31, .2));
}

.hero__headline {
  margin: clamp(24px, 3.2vh, 34px) auto 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.38rem, 2.8vw, 2.35rem);
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: 0 4px 22px #000;
  animation: reveal-up 600ms 390ms cubic-bezier(.2, .75, .25, 1) both;
}

.hero__description {
  display: grid;
  gap: .28em;
  max-width: 760px;
  margin: clamp(18px, 2.5vh, 26px) auto 0;
  color: var(--paper-muted);
  font-size: clamp(.87rem, 1.25vw, 1.02rem);
  font-weight: 500;
  line-height: 1.45;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .95);
  animation: reveal-up 520ms 560ms cubic-bezier(.2, .75, .25, 1) both;
}

.hero__description span {
  display: block;
}

.hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 298px);
  min-height: 56px;
  margin-top: clamp(24px, 3.7vh, 38px);
  overflow: hidden;
  border: 1px solid rgba(255, 227, 154, .85);
  border-radius: 7px;
  padding: 17px 34px;
  cursor: pointer;
  color: #160e03;
  background: linear-gradient(180deg, #ffe8a9 0, #e8b648 45%, #b97817 100%);
  box-shadow:
    0 18px 50px rgba(188, 112, 18, .3),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  font-size: .87rem;
  font-weight: 950;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  animation: reveal-up 480ms 720ms cubic-bezier(.2, .75, .25, 1) both;
}

.hero__cta::before {
  position: absolute;
  top: -80%;
  left: -35%;
  width: 22%;
  height: 260%;
  content: "";
  background: rgba(255, 255, 255, .48);
  filter: blur(3px);
  opacity: .6;
  transform: rotate(20deg) translateX(-180%);
  transition: transform 600ms ease;
}

.hero__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow:
    0 22px 60px rgba(205, 130, 25, .4),
    inset 0 1px 0 rgba(255, 255, 255, .8);
}

.hero__cta:hover::before,
.hero__cta[data-state="preview"]::before {
  transform: rotate(20deg) translateX(760%);
}

.hero__cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.hero__cta:active,
.hero__cta[data-state="preview"] {
  transform: translateY(1px) scale(.992);
}

.hero__login {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7em;
  min-width: min(100%, 298px);
  min-height: 48px;
  margin: 13px auto 0;
  overflow: hidden;
  border: 1px solid rgba(149, 232, 255, .68);
  border-radius: 7px;
  padding: 13px 26px;
  color: rgba(255, 255, 255, .78);
  background: linear-gradient(180deg, rgba(28, 51, 65, .94), rgba(10, 19, 29, .96));
  box-shadow:
    0 14px 36px rgba(39, 173, 216, .16),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  animation: reveal-up 440ms 790ms cubic-bezier(.2, .75, .25, 1) both;
}

.hero__login::before {
  position: absolute;
  top: -90%;
  left: -35%;
  width: 20%;
  height: 280%;
  content: "";
  background: rgba(255, 255, 255, .3);
  filter: blur(3px);
  opacity: .48;
  transform: rotate(20deg) translateX(-180%);
  transition: transform 600ms ease;
}

.hero__login strong {
  color: #95e8ff;
  font-weight: 950;
  letter-spacing: .18em;
}

.hero__login:hover {
  border-color: rgba(255, 117, 188, .9);
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 18px 46px rgba(39, 173, 216, .24),
    0 0 0 1px rgba(255, 117, 188, .12),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

.hero__login:hover strong { color: #ff75bc; }
.hero__login:hover::before { transform: rotate(20deg) translateX(820%); }
.hero__login:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.hero__login:active { transform: translateY(1px) scale(.992); }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px clamp(16px, 2.7vw, 30px);
  margin: clamp(20px, 3vh, 30px) 0 0;
  padding: 0;
  color: rgba(255, 250, 240, .7);
  font-size: clamp(.65rem, .9vw, .76rem);
  font-weight: 700;
  letter-spacing: .1em;
  list-style: none;
  text-transform: uppercase;
  animation: reveal-up 420ms 880ms cubic-bezier(.2, .75, .25, 1) both;
}

.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__badge-icon {
  display: inline-grid;
  width: 1.15rem;
  place-items: center;
  font-size: .9rem;
  filter: grayscale(1) sepia(1) saturate(1.6) brightness(1.25);
}

.trailer-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .58fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: center;
  min-height: 100svh;
  padding: clamp(86px, 12vh, 144px) max(var(--page-gutter), calc((100vw - 1180px) / 2));
  overflow: hidden;
  border-top: 1px solid rgba(236, 190, 93, .2);
  background:
    radial-gradient(circle at 76% 42%, rgba(255, 63, 173, .22), transparent 31%),
    radial-gradient(circle at 22% 58%, rgba(58, 187, 255, .16), transparent 35%),
    linear-gradient(135deg, rgba(5, 5, 11, .98), rgba(15, 8, 26, .97));
  isolation: isolate;
}

.trailer-section::before {
  position: absolute;
  z-index: -1;
  inset: -20%;
  content: "";
  opacity: .14;
  background: repeating-linear-gradient(115deg, transparent 0 74px, rgba(255, 255, 255, .08) 75px, transparent 76px 146px);
  transform: rotate(-4deg);
}

.trailer-section::after {
  position: absolute;
  z-index: -1;
  top: 9%;
  right: 3%;
  width: 48%;
  height: 82%;
  border: 1px solid rgba(236, 190, 93, .08);
  border-radius: 50%;
  content: "";
  transform: perspective(720px) rotateX(64deg);
  box-shadow: 0 0 80px rgba(218, 168, 61, .05);
}

.trailer-section__copy {
  max-width: 610px;
}

.trailer-section__eyebrow {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.trailer-section h2 {
  margin: 0;
  color: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.4rem, 7vw, 7.5rem);
  font-weight: 900;
  letter-spacing: .025em;
  line-height: .82;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0, 0, 0, .7);
}

.trailer-section h2 span {
  color: var(--gold);
}

.trailer-section__copy > p:not(.trailer-section__eyebrow, .trailer-section__disclosure) {
  max-width: 540px;
  margin: 27px 0 0;
  color: rgba(255, 250, 240, .7);
  font-size: clamp(.88rem, 1.25vw, 1.03rem);
  line-height: 1.65;
}

.trailer-section__play {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  border: 1px solid rgba(255, 225, 145, .45);
  border-radius: 8px;
  padding: 11px 19px 11px 11px;
  color: var(--paper);
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .26);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.trailer-section__play:hover {
  border-color: var(--gold-bright);
  background: rgba(220, 168, 61, .1);
  transform: translateY(-2px);
}

.trailer-section__play:focus-visible,
.trailer-poster:focus-visible,
.trailer-dialog button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.trailer-section__play-icon {
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: #160e03;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 24px rgba(220, 168, 61, .22);
  font-size: .82rem;
  text-indent: 2px;
}

.trailer-section__play strong,
.trailer-section__play small {
  display: block;
}

.trailer-section__play strong {
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.trailer-section__play small {
  margin-top: 3px;
  color: rgba(255, 250, 240, .5);
  font-size: .61rem;
}

.trailer-section__disclosure {
  margin: 11px 0 0;
  color: rgba(255, 250, 240, .34);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.trailer-poster {
  position: relative;
  justify-self: center;
  width: min(100%, 348px);
  aspect-ratio: 480 / 848;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 223, 140, .5);
  border-radius: 18px;
  color: #fff;
  background: #080808;
  box-shadow:
    0 36px 90px rgba(0, 0, 0, .62),
    0 0 0 8px rgba(255, 255, 255, .025),
    0 0 70px rgba(197, 48, 33, .12);
  cursor: pointer;
  transform: perspective(1000px) rotateY(-4deg);
  transition: transform 350ms cubic-bezier(.2, .75, .25, 1), box-shadow 350ms ease;
}

.trailer-poster:hover {
  transform: perspective(1000px) rotateY(0) translateY(-7px) scale(1.01);
  box-shadow: 0 44px 100px rgba(0, 0, 0, .68), 0 0 0 8px rgba(255, 255, 255, .035), 0 0 90px rgba(220, 168, 61, .15);
}

.trailer-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.84) contrast(1.12) brightness(.75);
  transform: scale(1.015);
  transition: filter 300ms ease, transform 750ms cubic-bezier(.2, .75, .25, 1);
}

.trailer-poster:hover img {
  filter: saturate(1) contrast(1.1) brightness(.88);
  transform: scale(1.045);
}

.trailer-poster__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 2, 3, .5), transparent 30%, transparent 55%, rgba(2, 2, 3, .84)),
    linear-gradient(110deg, rgba(20, 60, 130, .15), transparent 45%, rgba(180, 26, 34, .19));
}

.trailer-poster__label {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.trailer-poster__label i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4a51;
  box-shadow: 0 0 12px #ff4a51;
  animation: trailer-live 1.3s ease-in-out infinite;
}

.trailer-poster__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 239, 197, .8);
  border-radius: 50%;
  color: #211404;
  background: rgba(239, 190, 85, .9);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, .05), 0 0 45px rgba(239, 190, 85, .3);
  font-size: 1.25rem;
  text-indent: 4px;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.trailer-poster:hover .trailer-poster__play {
  box-shadow: 0 0 0 14px rgba(255, 255, 255, .07), 0 0 60px rgba(239, 190, 85, .45);
  transform: translate(-50%, -50%) scale(1.08);
}

.trailer-poster__duration {
  position: absolute;
  right: 17px;
  bottom: 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  padding: 4px 7px;
  background: rgba(0, 0, 0, .68);
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.trailer-dialog {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  border: 0;
  padding: clamp(16px, 3vw, 38px);
  color: var(--paper);
  background: rgba(2, 2, 3, .9);
  backdrop-filter: blur(18px);
}

.trailer-dialog::backdrop {
  background: rgba(0, 0, 0, .86);
}

.trailer-dialog[open] {
  display: grid;
  place-items: center;
  animation: trailer-dialog-in 260ms ease both;
}

.trailer-dialog__frame {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(100%, 940px);
  height: min(100%, 880px);
  overflow: hidden;
  border: 1px solid rgba(255, 225, 145, .38);
  border-radius: 14px;
  background: #050608;
  box-shadow: 0 35px 120px rgba(0, 0, 0, .82), 0 0 70px rgba(220, 168, 61, .1);
}

.trailer-dialog header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px 13px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), transparent);
}

.trailer-dialog header small,
.trailer-dialog header strong {
  display: block;
}

.trailer-dialog header small {
  color: var(--gold);
  font-size: .49rem;
  font-weight: 900;
  letter-spacing: .2em;
}

.trailer-dialog header strong {
  margin-top: 2px;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trailer-dialog header button {
  display: grid;
  width: 36px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 7px;
  color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.trailer-dialog header button:hover {
  border-color: rgba(255, 225, 145, .6);
  color: #fff;
  background: rgba(220, 168, 61, .1);
}

.trailer-dialog__screen {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(169, 37, 26, .12), transparent 40%),
    repeating-linear-gradient(100deg, transparent 0 70px, rgba(255, 255, 255, .018) 71px, transparent 72px 140px),
    #030405;
}

.trailer-dialog__screen video {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: calc(100vh - 150px);
  aspect-ratio: 480 / 848;
  object-fit: contain;
  background: #000;
  box-shadow: 0 0 70px rgba(0, 0, 0, .8);
}

.trailer-dialog footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 16px;
  color: rgba(255, 250, 240, .42);
  background: #07080a;
  font-size: .49rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trailer-dialog footer i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.scroll-cue {
  position: absolute;
  bottom: clamp(18px, 3vh, 30px);
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 250, 240, .44);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  transform: translateX(-50%);
  animation: cue-reveal 400ms 1050ms ease both;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, .14);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 45%;
  content: "";
  background: var(--gold);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes arena-breathe {
  from { transform: scale(1.02); }
  to { transform: scale(1.038); }
}

@keyframes arena-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-down {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cue-reveal {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes scroll-pulse {
  0% { opacity: 0; transform: translateY(-110%); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(220%); }
}

@keyframes trailer-live {
  50% { opacity: .35; transform: scale(.72); }
}

@keyframes trailer-dialog-in {
  from { opacity: 0; transform: scale(.985); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 760px) {
  .site-header {
    gap: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand__mark {
    width: 30px;
    border-radius: 6px;
  }

  .brand__name {
    font-size: .72rem;
    letter-spacing: .1em;
  }

  .site-header__links {
    gap: clamp(10px, 3.4vw, 18px);
    font-size: .57rem;
    letter-spacing: .07em;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 76px;
  }

  .hero__logo {
    font-size: clamp(3.3rem, 17vw, 6rem);
  }

  .hero__headline {
    max-width: 560px;
    letter-spacing: .075em;
  }

  .arena::before {
    background-image: url("assets/mma-legacy-empty-arena-v1.jpg");
    background-position: center center;
  }

  .trailer-section {
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 90px;
    text-align: center;
  }

  .trailer-section__copy {
    justify-self: center;
  }

  .trailer-section__copy > p:not(.trailer-section__eyebrow, .trailer-section__disclosure) {
    margin-right: auto;
    margin-left: auto;
  }

  .trailer-poster {
    width: min(78vw, 330px);
    transform: none;
  }

  .trailer-poster:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 430px) {
  :root {
    --page-gutter: 18px;
  }

  .site-header__links {
    gap: 10px;
  }

  .site-header__link {
    font-size: .53rem;
  }

  .hero__eyebrow {
    letter-spacing: .22em;
  }

  .hero__logo {
    flex-direction: column;
    gap: .08em;
    line-height: .72;
  }

  .hero__headline {
    margin-top: 22px;
    font-size: clamp(1.18rem, 6vw, 1.5rem);
  }

  .hero__description {
    max-width: 350px;
    font-size: .82rem;
    line-height: 1.42;
  }

  .hero__cta {
    width: min(100%, 310px);
  }

  .hero__login {
    width: min(100%, 310px);
  }

  .hero__badges {
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
    gap: 9px 16px;
  }

  .scroll-cue span {
    display: none;
  }

  .arena::before {
    background-position: 50% center;
  }

  .arena::after {
    background:
      radial-gradient(circle at 50% 39%, rgba(9, 8, 7, .16) 0 16%, rgba(4, 4, 4, .48) 48%, rgba(3, 3, 3, .85) 100%),
      linear-gradient(180deg, rgba(3, 3, 3, .78), rgba(3, 3, 3, .16) 25%, rgba(3, 3, 3, .75) 100%);
  }

  .trailer-section h2 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .trailer-section__play {
    width: 100%;
    justify-content: center;
  }

  .trailer-dialog {
    padding: 0;
  }

  .trailer-dialog__frame {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .trailer-dialog__screen video {
    width: 100%;
    height: 100%;
    max-height: none;
  }
}

@media (max-height: 720px) and (min-width: 601px) {
  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 58px;
  }

  .hero__logo {
    font-size: clamp(4rem, 9vw, 6.3rem);
  }

  .hero__headline {
    margin-top: 18px;
  }

  .hero__description,
  .hero__cta,
  .hero__badges {
    margin-top: 16px;
  }
}

@media (max-width: 350px) {
  :root {
    --page-gutter: 12px;
  }

  .brand__mark {
    display: none;
  }

  .brand__name {
    font-size: .66rem;
  }

  .site-header__links {
    gap: 8px;
  }

  .site-header__link {
    font-size: .49rem;
  }

  .hero__cta {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .site-header,
  .hero__eyebrow,
  .hero__logo,
  .hero__headline,
  .hero__description,
  .hero__cta,
  .hero__login,
  .hero__badges,
  .scroll-cue {
    opacity: 1;
    transform: none;
    animation-delay: 0ms !important;
  }

  .scroll-cue {
    transform: translateX(-50%);
  }

  .trailer-poster__label i {
    animation: none;
  }
}
