:root {
  color-scheme: dark;
  --crimson: #990000;
  --crimson-2: #c21d2a;
  --cream: #f7f1e7;
  --cream-2: #ebe1d0;
  --black: #070708;
  --panel: #101114;
  --panel-2: #17191f;
  --muted: #c7beb2;
  --ink: #161616;
  --soft: rgba(22, 22, 22, 0.72);
  --line: rgba(247, 241, 231, 0.17);
  --line-dark: rgba(22, 22, 22, 0.14);
  --gold: #d6a85f;
  --steel: #7e8b92;
  --shadow: rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--cream);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 42px);
  border-bottom: 1px solid transparent;
  background: rgba(7, 7, 8, 0.62);
  backdrop-filter: blur(18px);
}

.site-header.solid,
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 7, 8, 0.95);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand-stack {
  display: grid;
  gap: 1px;
}

.brand-stack strong {
  color: var(--cream);
  font-size: 1.02rem;
  line-height: 1;
}

.brand-stack span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 5px;
  min-width: 0;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.06);
}

.nav-links a {
  border-radius: 6px;
  padding: 9px 12px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 850;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--cream);
  background: rgba(247, 241, 231, 0.11);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
}

.button:hover,
.button:focus-visible,
.profile-button:hover,
.profile-button:focus-visible,
.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--cream);
  background: var(--crimson);
  box-shadow: 0 18px 36px rgba(153, 0, 0, 0.28);
}

.button-cream {
  color: var(--black);
  background: var(--cream);
}

.button-ghost {
  color: var(--cream);
  border-color: rgba(247, 241, 231, 0.3);
  background: rgba(247, 241, 231, 0.08);
}

.button-dark {
  color: var(--cream);
  background: var(--black);
}

.button-wide {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  padding: 120px clamp(20px, 4vw, 44px) 34px;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.96), rgba(7, 7, 8, 0.66) 48%, rgba(7, 7, 8, 0.2)),
    linear-gradient(0deg, rgba(7, 7, 8, 0.96), rgba(7, 7, 8, 0.16) 46%, rgba(7, 7, 8, 0.72));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(26px, 6vw, 78px);
  align-items: end;
  width: min(1180px, 100%);
  min-height: calc(92vh - 154px);
  margin: 0 auto;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 3px;
  margin-right: 9px;
  vertical-align: middle;
  background: var(--crimson-2);
}

.eyebrow-dark {
  color: var(--crimson);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: 5.6rem;
  line-height: 0.88;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.6rem;
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.16;
}

p {
  line-height: 1.6;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.22rem;
}

.hero-actions,
.inline-actions,
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.status-row span,
.event-chip {
  border: 1px solid rgba(247, 241, 231, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--cream);
  background: rgba(247, 241, 231, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card,
.mini-panel,
.video-shell,
.contact-form {
  border: 1px solid rgba(247, 241, 231, 0.16);
  border-radius: 8px;
  background: rgba(16, 17, 20, 0.82);
  box-shadow: 0 30px 76px var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  padding: 22px;
}

.hero-card-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-card-logo img {
  width: 56px;
  height: 56px;
}

.hero-card-logo strong {
  display: block;
  font-size: 1.4rem;
}

.hero-card-logo span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.quick-facts,
.fighter-stats {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.quick-facts {
  margin-bottom: 18px;
}

.quick-facts div,
.fighter-stats div {
  padding: 14px;
  background: rgba(7, 7, 8, 0.44);
}

.quick-facts dt,
.fighter-stats dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quick-facts dd,
.fighter-stats dd {
  margin: 0;
  font-weight: 850;
}

.section {
  padding: clamp(58px, 8vw, 96px) 0;
}

.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.light {
  color: var(--ink);
  background: var(--cream);
}

.dark {
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(153, 0, 0, 0.2), transparent 34%),
    var(--panel);
}

.split,
.page-hero-grid,
.contact-grid,
.stream-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.split > *,
.page-hero-grid > *,
.contact-grid > *,
.stream-grid > * {
  min-width: 0;
}

.section-heading {
  max-width: 680px;
}

.light .section-heading p,
.light .detail-card p,
.light .fighter-card p {
  color: var(--soft);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.detail-card,
.fighter-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(22, 22, 22, 0.1);
}

.feature-card,
.detail-card {
  padding: 22px;
}

.dark .feature-card {
  color: var(--ink);
}

.dark .feature-card p {
  color: var(--soft);
}

.feature-card span,
.detail-kicker,
.mini-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--crimson);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.event-panel {
  padding: 24px;
  color: var(--cream);
  background:
    linear-gradient(145deg, rgba(153, 0, 0, 0.76), rgba(16, 17, 20, 0.94)),
    var(--panel);
}

.event-panel h3 {
  font-size: 2.1rem;
}

.event-panel p {
  color: var(--muted);
}

.event-directory {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.event-list-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 24px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 52px rgba(22, 22, 22, 0.1);
  text-decoration: none;
}

.event-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: var(--crimson);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.event-list-card h3 {
  margin: 0;
  font-size: 2.15rem;
}

.event-list-card p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--soft);
}

.quick-facts-light {
  border-color: rgba(22, 22, 22, 0.12);
  background: rgba(22, 22, 22, 0.12);
}

.quick-facts-light div {
  background: #faf8f4;
}

.quick-facts-light dt {
  color: rgba(22, 22, 22, 0.56);
}

.quick-facts-light dd {
  color: var(--ink);
}

.event-detail-section,
.lineup-section {
  scroll-margin-top: 96px;
}

.event-detail-header {
  max-width: 720px;
  margin-bottom: 28px;
}

.fighter-preview-grid,
.fighter-grid,
.info-grid,
.contact-methods {
  display: grid;
  gap: 18px;
}

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

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

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

.fighter-card {
  display: grid;
  min-height: 100%;
}

.fighter-media {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: var(--panel);
}

.fighter-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fighter-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 8, 0.86), transparent 52%);
}

.fighter-media span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--cream);
  background: rgba(7, 7, 8, 0.72);
  font-size: 0.73rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fighter-body {
  padding: 20px;
}

.fighter-meta,
.profile-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.fighter-meta span,
.profile-summary span {
  border-radius: 999px;
  padding: 6px 9px;
  color: #3a0000;
  background: rgba(153, 0, 0, 0.12);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fighter-stats {
  margin: 16px 0;
  border-color: rgba(22, 22, 22, 0.12);
  background: rgba(22, 22, 22, 0.12);
}

.fighter-stats div {
  background: #faf8f4;
}

.fighter-stats dt {
  color: rgba(22, 22, 22, 0.56);
}

.fighter-stats dd {
  color: var(--ink);
}

.profile-button,
.text-link {
  color: var(--crimson);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-weight: 950;
  text-decoration: none;
}

.page-main {
  padding-top: 76px;
}

.page-hero {
  padding: clamp(56px, 7vw, 90px) 0;
  background:
    linear-gradient(120deg, rgba(153, 0, 0, 0.28), transparent 34%),
    linear-gradient(270deg, rgba(214, 168, 95, 0.12), transparent 38%),
    var(--black);
}

.page-hero h1 {
  font-size: 4rem;
}

.page-hero p {
  max-width: 690px;
  color: var(--muted);
}

.mini-panel {
  padding: 24px;
}

.mini-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.mini-panel span:last-child {
  color: var(--muted);
}

.countdown-panel strong {
  font-size: 4.8rem;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-chip {
  min-height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 0 15px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.filter-chip.is-active {
  color: var(--cream);
  border-color: transparent;
  background: var(--crimson);
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(153, 0, 0, 0.36), transparent 34%),
    repeating-linear-gradient(90deg, rgba(247, 241, 231, 0.04), rgba(247, 241, 231, 0.04) 1px, transparent 1px, transparent 18px),
    #090a0c;
}

.video-topbar,
.video-caption {
  position: absolute;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.video-topbar {
  top: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.video-topbar span:first-child {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--cream);
  background: var(--crimson);
}

.play-lock {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.stream-lock {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 2px solid rgba(247, 241, 231, 0.72);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(153, 0, 0, 0.84);
  box-shadow: 0 18px 44px rgba(153, 0, 0, 0.34);
  font-size: 1.55rem;
  font-weight: 950;
}

.play-triangle {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 38px solid var(--cream);
  filter: drop-shadow(0 12px 26px var(--shadow));
}

.video-caption {
  bottom: 18px;
  align-items: flex-end;
}

.video-caption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cream);
  font-size: 1.1rem;
}

.video-caption span {
  color: var(--muted);
  text-align: right;
}

.timeline-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.timeline-list li {
  position: relative;
  min-height: 84px;
  padding: 18px 18px 18px 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.07);
  counter-increment: steps;
}

.timeline-list li::before {
  content: counter(steps);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: var(--cream);
  background: var(--crimson);
  font-weight: 950;
}

.timeline-list span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
}

.contact-form {
  color: var(--ink);
  padding: 22px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(22, 22, 22, 0.1);
}

.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

label {
  color: rgba(22, 22, 22, 0.68);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf7;
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #070708;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.footer-brand p {
  margin: 2px 0 0;
  font-size: 0.9rem;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-inner a {
  text-decoration: none;
}

.profile-dialog,
.contact-dialog {
  width: min(620px, calc(100% - 32px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.profile-dialog::backdrop,
.contact-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.profile-dialog form,
.contact-dialog form {
  position: relative;
  padding: 28px;
}

.profile-dialog p,
.contact-dialog p {
  color: var(--soft);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: rgba(22, 22, 22, 0.72);
  background: #fff;
  cursor: pointer;
  font-weight: 950;
}

.modal-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .page-hero h1 {
    font-size: 3.2rem;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .nav-links {
    justify-self: stretch;
    overflow-x: auto;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 144px;
  }

  .hero-inner,
  .split,
  .page-hero-grid,
  .contact-grid,
  .stream-grid {
    grid-template-columns: 1fr;
  }

  .feature-list,
  .fighter-grid,
  .info-grid,
  .fighter-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    min-height: 64px;
    gap: 10px;
    overflow: hidden;
  }

  .brand {
    flex: 1 1 100%;
  }

  .nav-links {
    flex: 1 0 100%;
    gap: 4px;
    width: 100%;
    max-width: 100%;
    padding: 4px;
    overflow: hidden;
  }

  .nav-links a {
    padding: 8px 9px;
    white-space: nowrap;
    font-size: 0.82rem;
  }

  .brand-stack span {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 132px;
  }

  .hero-inner {
    min-height: calc(88vh - 166px);
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  h1 {
    max-width: 9ch;
    font-size: 2.35rem;
    line-height: 0.96;
  }

  h2 {
    font-size: 1.85rem;
  }

  .lead {
    max-width: 32ch;
    font-size: 1rem;
  }

  .status-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-row span {
    max-width: 100%;
  }

  .hero-actions .button,
  .inline-actions .button {
    width: 100%;
  }

  .hero-card,
  .mini-panel,
  .contact-form {
    padding: 18px;
  }

  .mini-panel strong {
    font-size: 1.45rem;
  }

  .countdown-panel strong {
    font-size: 3.6rem;
  }

  .feature-list,
  .fighter-grid,
  .info-grid,
  .fighter-preview-grid,
  .modal-stats {
    grid-template-columns: 1fr;
  }

  .video-topbar,
  .video-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-caption span {
    text-align: left;
  }

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

  .footer-inner nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 118px;
  }

  body {
    min-width: 320px;
  }

  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    min-height: 0;
    padding: 10px 14px 8px;
    border-bottom-color: var(--line);
    background: rgba(7, 7, 8, 0.97);
    overflow: visible;
  }

  .brand {
    min-height: 42px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-stack strong {
    font-size: 1rem;
  }

  .brand-stack span {
    display: block;
    font-size: 0.72rem;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    padding: 4px;
    overflow: visible;
  }

  .nav-links a {
    display: grid;
    min-height: 38px;
    place-items: center;
    padding: 0 6px;
    white-space: nowrap;
    font-size: 0.82rem;
  }

  .page-main {
    padding-top: 0;
  }

  .hero {
    min-height: 0;
    padding: 22px 16px 28px;
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(7, 7, 8, 0.97), rgba(7, 7, 8, 0.76) 58%, rgba(7, 7, 8, 0.38)),
      linear-gradient(0deg, rgba(7, 7, 8, 0.98), rgba(7, 7, 8, 0.24) 48%, rgba(7, 7, 8, 0.76));
  }

  .hero-inner {
    min-height: 0;
    max-width: 100%;
    gap: 22px;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    max-width: 11ch;
    margin-bottom: 14px;
    font-size: 2.42rem;
    line-height: 1.01;
  }

  h2 {
    font-size: 1.75rem;
    line-height: 1.08;
  }

  h3 {
    font-size: 1.08rem;
  }

  p {
    line-height: 1.55;
  }

  .lead {
    max-width: 30ch;
    font-size: 1rem;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .eyebrow::before {
    width: 22px;
  }

  .status-row {
    flex-direction: row;
    margin-top: 18px;
  }

  .status-row span,
  .event-chip {
    font-size: 0.68rem;
  }

  .hero-actions,
  .inline-actions,
  .dialog-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .button,
  .filter-chip {
    min-height: 50px;
  }

  .hero-actions .button,
  .inline-actions .button,
  .dialog-actions .button {
    width: 100%;
  }

  .hero-card,
  .mini-panel,
  .contact-form,
  .event-panel,
  .event-list-card,
  .feature-card,
  .detail-card {
    box-shadow: 0 14px 34px rgba(22, 22, 22, 0.12);
  }

  .hero-card,
  .mini-panel,
  .event-list-card,
  .event-panel {
    padding: 18px;
  }

  .hero-card-logo {
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-card-logo img {
    width: 46px;
    height: 46px;
  }

  .hero-card-logo strong {
    font-size: 1.18rem;
  }

  .quick-facts div,
  .fighter-stats div {
    padding: 12px;
  }

  .section {
    padding: 42px 0;
  }

  .section-inner,
  .footer-inner {
    width: min(100% - 32px, 1160px);
  }

  .split,
  .page-hero-grid,
  .contact-grid,
  .stream-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-list,
  .fighter-grid,
  .info-grid,
  .fighter-preview-grid,
  .modal-stats {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 34px 0 40px;
  }

  .page-hero h1 {
    max-width: 13ch;
    font-size: 2.18rem;
    line-height: 1.04;
  }

  .page-hero p {
    max-width: 32ch;
  }

  .countdown-panel strong {
    font-size: 3rem;
  }

  .event-directory {
    margin-top: 20px;
  }

  .event-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .event-list-card h3 {
    font-size: 1.58rem;
  }

  .event-detail-section,
  .lineup-section {
    scroll-margin-top: 118px;
  }

  .video-shell {
    aspect-ratio: 4 / 5;
    min-height: 340px;
  }

  .video-topbar,
  .video-caption {
    right: 14px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .video-topbar {
    top: 14px;
  }

  .video-caption {
    bottom: 14px;
  }

  .video-caption span {
    text-align: left;
  }

  .stream-lock {
    width: 72px;
    height: 72px;
    font-size: 1.25rem;
  }

  .toolbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 18px;
  }

  .filter-chip {
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .fighter-media {
    aspect-ratio: 4 / 3.55;
  }

  .fighter-body {
    padding: 16px;
  }

  .fighter-meta span,
  .profile-summary span {
    font-size: 0.66rem;
  }

  .contact-methods {
    gap: 14px;
  }

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

  .footer-inner nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    justify-content: stretch;
  }

  .footer-inner a {
    min-height: 36px;
  }
}

.mobile-title {
  display: none;
}

@media (max-width: 720px) {
  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: inline-block;
    white-space: nowrap;
  }

  .hero {
    display: grid;
    min-height: calc(100vh - 104px);
    min-height: calc(100svh - 104px);
    align-items: end;
    padding: 28px 16px 18px;
  }

  .hero-media {
    object-position: 62% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(7, 7, 8, 0.98), rgba(7, 7, 8, 0.78) 56%, rgba(7, 7, 8, 0.28)),
      linear-gradient(0deg, rgba(7, 7, 8, 0.96), rgba(7, 7, 8, 0.28) 46%, rgba(7, 7, 8, 0.78));
  }

  .hero-inner {
    align-content: end;
    gap: 18px;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: clamp(2rem, 9.5vw, 3.15rem);
    line-height: 0.94;
    white-space: nowrap;
  }

  .hero .lead {
    max-width: 27ch;
  }

  .status-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 18px;
  }

  .status-row span {
    display: grid;
    min-height: 34px;
    place-items: center;
    padding: 6px 7px;
    text-align: center;
    line-height: 1.08;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .hero-card {
    border-top: 3px solid var(--crimson);
    background: rgba(16, 17, 20, 0.92);
  }

  .hero-card .quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card .quick-facts div:first-child {
    grid-column: 1 / -1;
  }

  .hero-card .quick-facts dd {
    font-size: 0.94rem;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: clamp(1.9rem, 9.5vw, 2.45rem);
    white-space: nowrap;
  }

  .status-row {
    grid-template-columns: 1fr;
  }

  .nav-links a {
    font-size: 0.76rem;
  }
}
