:root {
  --bg: #050505;
  --surface: rgba(13, 14, 17, 0.88);
  --surface-strong: rgba(10, 11, 14, 0.96);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f3;
  --muted: rgba(245, 245, 243, 0.68);
  --accent: #a9da09;
  --accent-soft: rgba(169, 218, 9, 0.16);
  --shadow: 0 36px 80px rgba(0, 0, 0, 0.55);
  --poster-ratio: 210 / 297;
  --shell-pad: clamp(8px, 0.95vw, 16px);
  --headline-font: "Arial Narrow", "Helvetica Neue", "Nimbus Sans Narrow", sans-serif;
  --ui-font: "Helvetica Neue", "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(169, 218, 9, 0.08), transparent 28%),
    linear-gradient(160deg, #090909 0%, #040404 45%, #080808 100%);
  color: var(--text);
}

body {
  font-family: var(--ui-font);
}

body.has-modal-open {
  overflow: hidden;
}

.pause-page {
  background:
    radial-gradient(circle at 72% 42%, rgba(169, 218, 9, 0.09), transparent 24%),
    #050605;
}

.stage--pause {
  height: calc(100dvh - (var(--shell-pad) * 2));
  min-height: 620px;
  padding: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(255, 255, 255, 0.045) 50%, transparent 50.1%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 24%),
    #080908;
}

.pause-header,
.pause-footer,
.pause-landing {
  position: relative;
  z-index: 3;
}

.pause-header {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(24px, 5vw, 80px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pause-header img {
  display: block;
  width: clamp(128px, 12vw, 190px);
  height: auto;
  filter: brightness(0) invert(1);
}

.pause-header a,
.pause-footer p,
.pause-landing__status,
.pause-landing__eyebrow,
.pause-landing__marker span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pause-header a {
  color: var(--muted);
  transition: color 180ms ease;
}

.pause-header a:hover,
.pause-header a:focus-visible {
  color: var(--accent);
}

.pause-landing {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(44px, 7vh, 90px) clamp(24px, 8vw, 130px);
  overflow: hidden;
}

.pause-landing::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(24px, 5vw, 80px);
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.pause-landing__status {
  position: absolute;
  top: clamp(24px, 4vh, 48px);
  right: clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
}

.pause-landing__status span {
  width: 8px;
  height: 8px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(169, 218, 9, 0.72);
}

.pause-landing__ghost {
  position: absolute;
  right: -0.08em;
  bottom: -0.22em;
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
  font-family: var(--headline-font);
  font-size: clamp(180px, 28vw, 520px);
  font-weight: 800;
  line-height: 0.7;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

.pause-landing__copy {
  position: relative;
  z-index: 1;
  max-width: 950px;
}

.pause-landing__eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
}

.pause-landing__copy h1 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--headline-font);
  font-size: clamp(66px, 10vw, 174px);
  font-weight: 800;
  line-height: 0.76;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.pause-landing__copy > p:last-child {
  max-width: 58ch;
  margin: clamp(28px, 4vh, 48px) 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.7;
}

.pause-landing__marker {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  gap: 8px;
  min-width: 180px;
  padding: 18px 0 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.pause-landing__marker span {
  color: var(--accent);
}

.pause-landing__marker strong {
  font-family: var(--headline-font);
  font-size: 24px;
  text-transform: uppercase;
}

.pause-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pause-footer p {
  margin: 0;
  color: rgba(245, 245, 243, 0.46);
}

@media (max-width: 760px) {
  .stage--pause {
    min-height: 100dvh;
  }

  .pause-header {
    min-height: 92px;
  }

  .pause-landing {
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: 86px;
    padding-bottom: 54px;
  }

  .pause-landing__status {
    right: auto;
    left: 24px;
  }

  .pause-landing__copy h1 {
    max-width: 100%;
    font-size: clamp(50px, 14vw, 62px);
    line-height: 0.8;
  }

  .pause-landing__marker {
    display: none;
  }

  .pause-footer p:last-child {
    display: none;
  }
}

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

button,
.button {
  font: inherit;
}

.viewport-shell {
  display: block;
  width: 100%;
  min-height: 100vh;
  padding: var(--shell-pad);
}

.stage {
  position: relative;
  width: 100%;
  min-height: calc(100vh - (var(--shell-pad) * 2));
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.2vh, 32px);
  padding: clamp(18px, 2.4vh, 36px) clamp(18px, 3vw, 56px) clamp(16px, 2.2vh, 28px);
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%),
    linear-gradient(140deg, #111214 0%, #080809 56%, #050505 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.stage--home {
  height: calc(100dvh - (var(--shell-pad) * 2));
  min-height: calc(100dvh - (var(--shell-pad) * 2));
}

.home-showcase,
.home-rounds {
  position: relative;
  z-index: 3;
}

.home-showcase {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 3.4vw, 56px);
  align-items: stretch;
}

.home-showcase__poster {
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  padding: clamp(14px, 1.3vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(14, 15, 18, 0.94), rgba(7, 8, 10, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 24px 54px rgba(0, 0, 0, 0.34);
}

.home-showcase__poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.home-showcase__copy {
  display: grid;
  align-content: center;
  gap: 16px;
  min-width: 0;
}

.home-showcase__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: clamp(11px, 0.84vw, 14px);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.home-showcase__kicker {
  margin: -4px 0 0;
  color: rgba(245, 245, 243, 0.5);
  font-size: clamp(13px, 0.9vw, 15px);
  letter-spacing: 0.06em;
}

.home-showcase__copy h1 {
  margin: 0;
  font-family: var(--headline-font);
  font-size: clamp(56px, 6vw, 116px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.home-showcase__copy h1 span {
  display: block;
  color: rgba(245, 245, 243, 0.94);
  font-size: 0.84em;
}

.home-showcase__lead {
  margin: 0;
  color: var(--muted);
  max-width: 34ch;
}

.home-showcase__lead {
  font-size: clamp(18px, 1.34vw, 24px);
  line-height: 1.55;
}

.home-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px;
}

.home-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 6px;
}

.home-meta__item {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 16px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-meta__item span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-meta__item strong {
  font-family: var(--headline-font);
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 0.96;
  text-transform: uppercase;
}

.home-rounds {
  display: grid;
  gap: 12px;
}

.home-rounds__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.home-rounds__header h2 {
  margin: 0;
  font-family: var(--headline-font);
  font-size: clamp(24px, 1.8vw, 34px);
  line-height: 0.95;
  text-transform: uppercase;
}

.home-rounds__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-round {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.home-round__index {
  color: var(--accent);
  font-family: var(--headline-font);
  font-size: clamp(24px, 1.8vw, 34px);
  line-height: 1;
}

.home-round__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.home-round__body strong {
  font-family: var(--headline-font);
  font-size: clamp(20px, 1.35vw, 26px);
  line-height: 0.96;
  text-transform: uppercase;
}

.home-round__body p {
  margin: 0;
  color: rgba(245, 245, 243, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.stage::before,
.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stage::before {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.04), transparent 20%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0, transparent 10%, transparent 90%, rgba(255, 255, 255, 0.02) 100%);
}

.stage::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 16%, transparent 86%, rgba(0, 0, 0, 0.22));
}

.stage__frame,
.stage__mesh,
.stage__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stage__frame {
  inset: 2.1%;
}

.stage__mesh {
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.05) 8% 8.25%, transparent 8.25% 100%),
    linear-gradient(180deg, transparent 0 16%, rgba(255, 255, 255, 0.04) 16% 16.25%, transparent 16.25% 100%);
  opacity: 0.18;
}

.stage__glow {
  background:
    radial-gradient(circle at 18% 40%, rgba(169, 218, 9, 0.08), transparent 22%),
    radial-gradient(circle at 82% 32%, rgba(169, 218, 9, 0.05), transparent 18%);
}

.topbar {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  z-index: 4;
}

.topbar__logo {
  width: clamp(210px, 20vw, 360px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.topbar__nav {
  display: flex;
  gap: clamp(14px, 1.9vw, 26px);
  padding-top: 10px;
  color: var(--muted);
  font-size: clamp(11px, 0.78vw, 13px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.topbar__nav a {
  position: relative;
  padding-bottom: 8px;
  transition: color 180ms ease;
}

.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right 180ms ease;
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible {
  color: var(--text);
}

.topbar__nav a:hover::after,
.topbar__nav a:focus-visible::after {
  right: 0;
}

.topbar__nav a[aria-current="page"] {
  color: var(--text);
}

.topbar__nav a[aria-current="page"]::after {
  right: 0;
}

.home-slider {
  position: relative;
  z-index: 3;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(14px, 2vh, 20px);
}

.home-slider__viewport {
  position: relative;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(12, 13, 16, 0.96), rgba(6, 7, 9, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 26px 58px rgba(0, 0, 0, 0.36);
}

.home-slide {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.015);
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    visibility 0s linear 420ms;
}

.home-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
}

.home-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}

.home-slide.is-active::before {
  animation: home-slide-zoom 8s ease forwards;
}

.home-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 7, 0.82) 0%, rgba(4, 5, 7, 0.52) 38%, rgba(4, 5, 7, 0.22) 62%, rgba(4, 5, 7, 0.7) 100%),
    linear-gradient(180deg, rgba(4, 5, 7, 0.1) 0%, rgba(4, 5, 7, 0.08) 54%, rgba(4, 5, 7, 0.86) 100%);
}

.home-slide__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.46fr);
  align-items: end;
  gap: clamp(20px, 3vw, 48px);
  width: 100%;
  height: 100%;
  padding: clamp(24px, 3.3vw, 54px);
}

.home-slide__content--calendar {
  grid-template-columns: minmax(0, 1fr);
  align-content: end;
}

.home-slide__copy {
  display: grid;
  gap: 16px;
  align-self: end;
  max-width: min(680px, 100%);
}

.home-slide__copy h1,
.home-slide__title-alt {
  margin: 0;
  font-family: var(--headline-font);
  font-size: clamp(48px, 5.4vw, 102px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-slide__title-alt {
  max-width: 10ch;
}

.home-slide__lead {
  margin: 0;
  max-width: 38ch;
  color: rgba(245, 245, 243, 0.76);
  font-size: clamp(16px, 1.18vw, 22px);
  line-height: 1.56;
  text-wrap: pretty;
}

.home-slide__lead--compact {
  max-width: 40ch;
}

.home-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px;
}

.home-slide__aside {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  min-width: 0;
}

.home-slide__badge {
  display: grid;
  gap: 10px;
  width: min(100%, 320px);
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(5, 6, 8, 0.58);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 22px 40px rgba(0, 0, 0, 0.28);
}

.home-slide__badge span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-slide__badge strong {
  font-family: var(--headline-font);
  font-size: clamp(24px, 1.85vw, 34px);
  line-height: 0.96;
  text-transform: uppercase;
}

.home-slide__badge p {
  margin: 0;
  color: rgba(245, 245, 243, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

.home-round-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-self: end;
}

.home-round-pill {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(6, 7, 9, 0.6);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.home-round-pill span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-round-pill strong {
  font-family: var(--headline-font);
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 0.96;
  text-transform: uppercase;
}

.home-round-pill p {
  margin: 0;
  color: rgba(245, 245, 243, 0.64);
  font-size: 13px;
  line-height: 1.45;
}

.home-slider__controls {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.home-slider__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-slider__dot {
  width: 42px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition:
    width 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.home-slider__dot:hover,
.home-slider__dot:focus-visible,
.home-slider__dot.is-active {
  width: 60px;
  background: var(--accent);
  transform: translateY(-1px);
}

.home-slider__progress {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-left: auto;
  color: rgba(245, 245, 243, 0.62);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-slider__current {
  color: var(--accent);
}

.home-slider__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-slider__button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.home-slider__button:hover,
.home-slider__button:focus-visible {
  border-color: rgba(169, 218, 9, 0.3);
  background: rgba(169, 218, 9, 0.14);
  color: var(--accent);
  transform: translateY(-2px);
}

.home-slider__button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes home-slide-zoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.08);
  }
}

.poster-wall {
  --poster-gap: clamp(12px, 1.2vw, 22px);
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--poster-gap);
  z-index: 3;
}

.stage--home .poster-wall {
  min-height: 0;
}

.poster-card {
  position: relative;
  flex: 0 1 auto;
  width: auto;
  height: 100%;
  aspect-ratio: var(--poster-ratio);
  min-width: 0;
  max-width: calc((100% - (var(--poster-gap) * 2)) / 3);
  transition:
    flex 360ms ease,
    transform 360ms ease,
    filter 360ms ease,
    opacity 360ms ease,
    box-shadow 360ms ease;
}

.poster-wall.is-interacting .poster-card:not(.is-active),
.poster-wall.has-preview .poster-card:not(.is-active) {
  transform: translateX(0);
  filter: saturate(0.78) brightness(0.82);
  opacity: 0.7;
}

.poster-wall.has-preview .poster-card * {
  transition: none;
}

.poster-card.is-active {
  flex: 1 1 auto;
  max-width: none;
  filter: none;
  opacity: 1;
  transform: translateY(-6px) scale(1.015);
  z-index: 2;
}

.poster-card__interactive {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(10, 11, 14, 0.88), rgba(5, 5, 6, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease;
}

.poster-card.is-active .poster-card__interactive,
.poster-card__interactive:focus-visible {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 48%);
  border-color: rgba(169, 218, 9, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(169, 218, 9, 0.06),
    0 24px 54px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(169, 218, 9, 0.08);
}

.poster-card__art {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: clamp(8px, 0.9vw, 12px);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(8, 8, 10, 0.94));
}

.poster-card__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 22%, transparent 42%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.5), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 28%, transparent 100%);
  transition: opacity 280ms ease;
}

.poster-card.is-active .poster-card__art::after {
  opacity: 0.94;
}

.poster-card__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transform: none;
  filter: saturate(1.05) contrast(1.04);
  transition:
    transform 420ms ease,
    filter 420ms ease;
}

.poster-card.is-active .poster-card__art img {
  transform: none;
}

.poster-card__chrome {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2vw, 26px);
  z-index: 2;
  transition:
    transform 280ms ease,
    opacity 280ms ease;
}

.poster-card.is-active .poster-card__chrome {
  transform: translateY(10px);
  opacity: 0;
}

.poster-card__index {
  color: var(--accent);
  font-family: var(--headline-font);
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 800;
  line-height: 1;
}

.poster-card__headline {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.poster-card__headline strong {
  font-family: var(--headline-font);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.poster-card__headline span {
  color: rgba(245, 245, 243, 0.82);
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.poster-card__details {
  position: relative;
  min-width: 0;
  height: 100%;
  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;
  transition:
    opacity 300ms ease,
    transform 300ms ease;
  z-index: 3;
}

.poster-card.is-active .poster-card__details,
.poster-card__interactive:focus-visible .poster-card__details {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.poster-card__details-inner {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: stretch;
  row-gap: 14px;
  height: 100%;
  padding: clamp(20px, 2vw, 28px);
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(10, 11, 14, 0.22), rgba(10, 11, 14, 0.86) 24%, rgba(7, 8, 10, 0.96) 100%);
  backdrop-filter: blur(8px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
  scrollbar-color: rgba(169, 218, 9, 0.45) rgba(255, 255, 255, 0.05);
}

.poster-card__intro,
.poster-card__bottom {
  display: grid;
}

.poster-card__intro {
  gap: 12px;
}

.poster-card__bottom {
  gap: 0;
  align-content: end;
  align-self: end;
}

.poster-card__eyebrow {
  color: var(--accent);
  font-size: clamp(10px, 0.76vw, 13px);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.poster-card__details h1,
.poster-card__details h2 {
  margin: 0;
  font-family: var(--headline-font);
  font-size: clamp(28px, 2vw, 38px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.poster-card__season {
  margin: 0;
  color: rgba(245, 245, 243, 0.82);
  font-size: clamp(12px, 0.92vw, 15px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.poster-card__description {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: clamp(12px, 0.8vw, 13px);
  line-height: 1.45;
}

.poster-card__specs {
  display: grid;
  gap: 10px;
  margin: 0;
}

.poster-card__specs div {
  display: grid;
  gap: 2px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.poster-card__specs dt {
  color: var(--accent);
  font-size: clamp(10px, 0.76vw, 12px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.poster-card__specs dd {
  margin: 0;
  color: var(--text);
  font-size: clamp(12px, 0.84vw, 14px);
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 48px;
  margin-top: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: clamp(11px, 0.82vw, 14px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.button--primary {
  color: #040404;
  background: var(--accent);
  box-shadow:
    0 0 0 1px rgba(169, 218, 9, 0.18),
    0 16px 28px rgba(169, 218, 9, 0.18);
}

.button--ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.button--small {
  min-width: 0;
  min-height: 40px;
  padding: 0 18px;
  font-size: 11px;
}

.stage-footer {
  position: relative;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 4;
}

.stage-footer__legal {
  margin: 0;
  color: rgba(245, 245, 243, 0.54);
  font-size: clamp(9px, 0.68vw, 11px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-footer__social {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
}

.stage-footer__social a {
  color: rgba(245, 245, 243, 0.72);
  font-size: clamp(9px, 0.68vw, 11px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.stage-footer__social a:hover,
.stage-footer__social a:focus-visible {
  color: var(--accent);
}

.stage--results {
  justify-content: center;
}

.stage--directo {
  justify-content: center;
}

.stage--directo .stream-panel {
  align-self: center;
}

.stage--contacto {
  justify-content: center;
}

.stage--championship {
  min-height: calc(100vh - (var(--shell-pad) * 2));
}

.results-panel {
  position: relative;
  z-index: 3;
  width: min(100%, 760px);
  display: grid;
  gap: 16px;
  padding: clamp(28px, 3.2vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(10, 11, 14, 0.82), rgba(7, 8, 10, 0.96)),
    radial-gradient(circle at top left, rgba(169, 218, 9, 0.08), transparent 28%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 24px 54px rgba(0, 0, 0, 0.42);
  margin: auto 0;
}

.results-panel__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: clamp(11px, 0.82vw, 14px);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.results-panel h1 {
  margin: 0;
  font-family: var(--headline-font);
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.results-panel__copy {
  max-width: 45ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.6;
}

.results-panel__copy--strong {
  color: var(--text);
  font-weight: 700;
}

.results-panel__actions {
  padding-top: 6px;
}

.stream-panel {
  position: relative;
  z-index: 3;
  width: min(100%, 1200px);
  display: grid;
  gap: 20px;
  justify-items: center;
  margin: auto 0;
}

.stream-panel__intro {
  width: 100%;
  display: grid;
  gap: 10px;
  text-align: center;
}

.stream-panel__intro h1 {
  margin: 0;
  font-family: var(--headline-font);
  font-size: clamp(40px, 4.4vw, 72px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.stream-embed {
  width: min(100%, 1080px);
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 11, 14, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 24px 54px rgba(0, 0, 0, 0.42);
}

.stream-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-panel {
  position: relative;
  z-index: 3;
  width: min(100%, 1160px);
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
  margin: auto 0;
}

.contact-panel__copy {
  display: grid;
  gap: 14px;
}

.contact-panel__copy h1 {
  margin: 0;
  font-family: var(--headline-font);
  font-size: clamp(40px, 4.7vw, 76px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(10, 11, 14, 0.82), rgba(7, 8, 10, 0.96)),
    radial-gradient(circle at top left, rgba(169, 218, 9, 0.08), transparent 28%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 24px 54px rgba(0, 0, 0, 0.42);
}

.contact-form .button {
  width: 100%;
  margin-top: 0;
}

.contact-field {
  display: grid;
  gap: 10px;
}

.contact-field--full,
.contact-form__status,
.contact-form .button {
  grid-column: 1 / -1;
}

.contact-field span {
  color: var(--muted);
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  outline: none;
  border-color: rgba(169, 218, 9, 0.44);
  box-shadow: 0 0 0 3px rgba(169, 218, 9, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.contact-form__trap {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form__status {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form__status--success {
  background: rgba(169, 218, 9, 0.12);
  border: 1px solid rgba(169, 218, 9, 0.28);
  color: var(--text);
}

.contact-form__status--error {
  background: rgba(255, 108, 108, 0.08);
  border: 1px solid rgba(255, 108, 108, 0.22);
  color: #ffd4d4;
}

.championship-hero,
.championship-section {
  position: relative;
  z-index: 3;
}

.championship-hero {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
}

.championship-hero__visual {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.championship-hero__media {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(12, 13, 15, 0.92), rgba(6, 7, 9, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 24px 54px rgba(0, 0, 0, 0.38);
}

.championship-hero__media img {
  display: block;
  width: 100%;
  height: auto;
}

.championship-hero__download {
  width: 100%;
  min-width: 0;
  margin-top: 0;
}

.championship-hero__copy {
  display: grid;
  gap: 18px;
}

.championship-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.championship-hero__copy h1 {
  margin: 0;
  font-family: var(--headline-font);
  font-size: clamp(44px, 5vw, 88px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.championship-hero__lead {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.7;
}

.championship-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.championship-summary__card,
.car-class-card,
.track-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(12, 13, 15, 0.92), rgba(6, 7, 9, 0.98)),
    radial-gradient(circle at top left, rgba(169, 218, 9, 0.08), transparent 34%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 24px 54px rgba(0, 0, 0, 0.28);
}

.championship-summary__card {
  display: grid;
  gap: 8px;
  min-height: 130px;
  padding: 20px;
}

.championship-summary__card span,
.car-class-card__label,
.track-card__index {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.championship-summary__card strong {
  font-family: var(--headline-font);
  font-size: clamp(18px, 1.4vw, 26px);
  line-height: 1.05;
  text-transform: uppercase;
}

.championship-section {
  display: grid;
  gap: 22px;
}

.championship-section__header {
  color: #a9da09;
  margin-top: 20px;
  display: grid;
  gap: 8px;
}

.championship-section__header h2 {
  margin: 0;
  font-family: var(--headline-font);
  font-size: clamp(30px, 3vw, 54px);
  line-height: 0.95;
  text-transform: uppercase;
}

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

.car-class-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.car-class-card h3,
.track-card h3 {
  margin: 0;
  font-family: var(--headline-font);
  font-size: clamp(24px, 1.8vw, 34px);
  line-height: 0.96;
  text-transform: uppercase;
}

.car-class-card p,
.track-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.track-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(169, 218, 9, 0.55) rgba(255, 255, 255, 0.06);
}

.track-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.track-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.track-card__meta p {
  margin-top: 6px;
  font-size: 14px;
}

.track-card__photo {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(169, 218, 9, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

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

.track-card__photo--placeholder span {
  color: rgba(245, 245, 243, 0.52);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 4, 0.76);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 880px);
  max-height: min(90vh, 920px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(14, 15, 18, 0.96), rgba(7, 8, 10, 0.98)),
    radial-gradient(circle at top left, rgba(169, 218, 9, 0.08), transparent 34%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 32px 90px rgba(0, 0, 0, 0.48);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.modal__content {
  display: grid;
  gap: 22px;
}

.modal__content--success {
  min-height: 320px;
  align-content: center;
}

.modal__header {
  display: grid;
  gap: 10px;
}

.modal__header h2 {
  margin: 0;
  font-family: var(--headline-font);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
}

.modal__copy {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.modal__copy--strong {
  color: var(--text);
  font-weight: 700;
}

.endurance-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.endurance-form .button[type="submit"] {
  grid-column: 1 / -1;
}

.endurance-form__pilot-tools {
  align-items: center;
}

.endurance-form__hint {
  margin: 0;
  color: rgba(245, 245, 243, 0.52);
  font-size: 13px;
}

.endurance-form__extra-pilots {
  display: grid;
  gap: 16px;
}

.endurance-form__pilot-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.poster-card--cup {
  transform-origin: left center;
}

.poster-card--endurance {
  transform-origin: right center;
}

@media (max-width: 1180px) {
  .topbar__logo {
    width: clamp(160px, 18vw, 260px);
  }

  .topbar__nav {
    gap: 14px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .poster-wall {
    gap: 12px;
  }

  .poster-card__details h1,
  .poster-card__details h2 {
    font-size: clamp(28px, 3vw, 42px);
  }
}

@media (max-width: 900px) {
  .stage {
    min-height: calc(100vh - (var(--shell-pad) * 2));
    padding: 24px 20px 26px;
  }

  .stage--home {
    height: auto;
    min-height: calc(100vh - (var(--shell-pad) * 2));
  }

  .home-showcase,
  .home-meta,
  .home-rounds__list {
    grid-template-columns: 1fr;
  }

  .home-showcase {
    gap: 22px;
  }

  .home-showcase__poster {
    max-width: 460px;
  }

  .home-showcase__copy {
    align-content: start;
  }

  .home-rounds__header {
    align-items: start;
    flex-direction: column;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .championship-hero,
  .championship-summary,
  .car-class-grid,
  .endurance-form,
  .endurance-form__pilot-row {
    grid-template-columns: 1fr;
  }

  .championship-hero {
    align-items: start;
  }

  .track-grid {
    grid-auto-columns: minmax(240px, 82vw);
  }

  .modal__dialog {
    padding: 24px 18px 20px;
  }

  .championship-hero__media {
    max-width: 460px;
  }

  .contact-panel__copy {
    max-width: 720px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .poster-wall {
    flex-direction: column;
    min-height: auto;
  }

  .poster-wall.is-interacting .poster-card:not(.is-active),
  .poster-card.is-active,
  .poster-wall.has-preview .poster-card:not(.is-active) {
    flex: 1 1 0;
    filter: none;
    opacity: 1;
    transform: none;
  }

  .poster-card__chrome {
    opacity: 1;
    transform: none;
  }

  .poster-card {
    flex: 1 1 0;
    width: auto;
    min-height: 420px;
    aspect-ratio: auto;
    max-width: none;
  }

  .poster-card__details {
    width: 52%;
    opacity: 1;
    transform: none;
  }

  .poster-card__details-inner {
    background:
      linear-gradient(90deg, rgba(7, 8, 10, 0.06), rgba(7, 8, 10, 0.9) 14%, rgba(7, 8, 10, 0.97) 100%);
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    gap: 10px;
  }

  .topbar__nav {
    width: 100%;
    justify-content: space-between;
    padding-top: 0;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .results-panel {
    width: 100%;
    gap: 14px;
    padding: 22px 18px;
  }

  .stream-panel {
    gap: 16px;
  }

  .contact-panel__copy h1 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .stream-panel__intro h1 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .stream-embed {
    width: 100%;
    border-radius: 18px;
  }

  .results-panel h1 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .results-panel__copy {
    font-size: 15px;
  }

  .contact-form {
    padding: 20px 16px;
    gap: 14px;
  }

  .home-showcase__copy h1 {
    font-size: clamp(42px, 15vw, 68px);
  }

  .home-showcase__lead {
    font-size: 15px;
  }

  .home-showcase__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-meta__item,
  .home-round {
    padding: 14px 0 16px;
  }

  .championship-hero__copy h1 {
    font-size: clamp(34px, 12vw, 56px);
  }

  .championship-summary__card,
  .car-class-card,
  .track-card {
    padding: 18px;
    border-radius: 20px;
  }

  .track-card__photo {
    border-radius: 16px;
  }

  .championship-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .poster-wall {
    gap: 14px;
  }

  .poster-card__details {
    width: 62%;
  }

  .poster-card__details-inner {
    gap: 10px;
    padding: 14px;
  }

  .button {
    min-width: 150px;
    min-height: 42px;
    padding: 0 18px;
    letter-spacing: 0.14em;
  }

  .stage-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .stage-footer__social {
    gap: 12px;
  }
}

@media (max-height: 820px) and (min-width: 901px) {
  .stage {
    gap: 14px;
    padding: 16px 18px;
  }

  .topbar__logo {
    width: clamp(176px, 17vw, 280px);
  }

  .topbar__nav {
    gap: 14px;
    padding-top: 4px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .poster-wall {
    --poster-gap: 10px;
  }

  .poster-card__interactive {
    border-radius: 22px;
  }

  .poster-card.is-active .poster-card__interactive,
  .poster-card__interactive:focus-visible {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 40%);
  }

  .poster-card__chrome {
    padding: 14px;
  }

  .poster-card__index {
    font-size: clamp(24px, 2vw, 34px);
  }

  .poster-card__headline strong {
    font-size: clamp(18px, 1.6vw, 28px);
  }

  .poster-card__headline span,
  .stage-footer__legal,
  .stage-footer__social a {
    font-size: 9px;
  }

  .poster-card__details-inner {
    row-gap: 10px;
    padding: 16px;
  }

  .poster-card__details h1,
  .poster-card__details h2 {
    font-size: clamp(24px, 2vw, 32px);
  }

  .poster-card__description,
  .poster-card__specs dd {
    font-size: 12px;
    line-height: 1.35;
  }

  .poster-card__specs {
    gap: 8px;
  }

  .poster-card__specs div {
    padding-top: 8px;
  }

  .button {
    min-width: 156px;
    min-height: 42px;
    margin-top: 8px;
  }

  .home-showcase {
    gap: 22px;
  }

  .home-showcase__copy {
    gap: 14px;
  }

  .home-showcase__copy h1 {
    font-size: clamp(48px, 5.2vw, 88px);
  }

  .home-showcase__lead {
    font-size: 15px;
    line-height: 1.5;
  }

  .home-meta__item {
    min-height: 84px;
    padding: 12px 0 14px;
  }

  .home-meta__item strong {
    font-size: 21px;
  }

  .home-round {
    padding: 14px 16px 16px;
  }
}

@media (min-width: 1600px) {
  .poster-card.is-active .poster-card__interactive,
  .poster-card__interactive:focus-visible {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 50%);
  }

  .poster-card__details h1,
  .poster-card__details h2 {
    font-size: clamp(28px, 1.85vw, 36px);
  }

  .poster-card__description,
  .poster-card__specs dd {
    font-size: 12px;
    line-height: 1.4;
  }
}

.stage--editorial-home {
  height: auto;
  min-height: 100vh;
  gap: 0;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: #080908;
  box-shadow: none;
}

.editorial-home-page .viewport-shell {
  min-height: 100vh;
  padding: 0;
}

.stage--editorial-home::before,
.stage--editorial-home::after,
.stage--editorial-home > .stage__frame,
.stage--editorial-home > .stage__mesh,
.stage--editorial-home > .stage__glow {
  display: none;
}

.home-editorial {
  position: relative;
  z-index: 3;
  width: 100%;
}

.home-editorial__board {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 100%),
    #080908;
  background-size: 120px 100%, 100% 100%;
}

.home-editorial__hero {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) 188px minmax(0, 1fr);
  gap: 26px;
  min-height: 760px;
  padding: 34px 42px 286px;
  background:
    radial-gradient(circle at 50% 72%, rgba(169, 218, 9, 0.1), transparent 27%),
    linear-gradient(180deg, #101210 0%, #080908 100%);
}

.home-editorial__hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 188px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(180deg, #b7ef0f 0%, #8ebb00 100%);
}

.home-editorial__nav {
  position: absolute;
  top: 34px;
  display: flex;
  gap: 18px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-editorial__nav--left {
  left: 42px;
}

.home-editorial__nav--right {
  right: 42px;
}

.home-editorial__nav a {
  transition: color 180ms ease;
}

.home-editorial__nav a:hover,
.home-editorial__nav a:focus-visible,
.home-editorial__nav a[aria-current="page"] {
  color: #ffffff;
}

.home-editorial__pane,
.home-editorial__spine {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.home-editorial__pane {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-top: 70px;
}

.home-editorial__pane--left {
  max-width: 360px;
}

.home-editorial__eyebrow,
.home-featured__eyebrow,
.home-calendar__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.home-editorial__microcopy {
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-editorial__pane h1 {
  margin: 0;
  color: #f6f6f2;
  font-family: var(--headline-font);
  font-size: clamp(58px, 6vw, 106px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.home-editorial__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  max-width: 30ch;
  font-size: clamp(17px, 1.18vw, 21px);
  line-height: 1.62;
}

.home-editorial__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-editorial__actions .button {
  margin-top: 0;
}

.home-editorial__pane .button--ghost {
  color: #f5f5f2;
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
}

.home-editorial__spine {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 22px;
  padding-top: 18px;
}

.home-editorial__logo {
  width: min(100%, 168px);
  height: auto;
  transform: translateY(-29px);
  filter: brightness(0) invert(1);
}

.home-editorial__spine-ring {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin-top: 42px;
  background:
    radial-gradient(circle at 50% 45%, rgba(8, 9, 8, 0.9) 0 28%, rgba(8, 9, 8, 0.18) 28% 100%);
  color: #080908;
  text-transform: uppercase;
}

.home-editorial__spine-ring span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.home-editorial__spine-ring strong {
  margin-top: -10px;
  font-family: var(--headline-font);
  font-size: 42px;
  line-height: 1;
}

.home-editorial__spine-label {
  margin: 8px 0 0;
  color: rgba(8, 9, 8, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.home-editorial__pane--right {
  justify-items: end;
  text-align: right;
}

.home-editorial__spec {
  display: grid;
  gap: 8px;
  width: min(100%, 314px);
  min-width: 0;
  padding: 18px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-editorial__spec span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-editorial__spec strong {
  color: #f5f5f2;
  font-family: var(--headline-font);
  font-size: clamp(24px, 1.8vw, 34px);
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-editorial__spec p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.55;
}

.home-editorial__hero-visual {
  position: absolute;
  left: 50%;
  right: 42px;
  bottom: 70px;
  z-index: 2;
  display: flex;
  justify-content: center;
  min-width: 0;
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.home-editorial__hero-visual img {
  display: block;
  width: min(100%, 940px);
  max-width: 100%;
  max-height: 390px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 48px rgba(0, 0, 0, 0.5));
}

.home-featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.12fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 48%, rgba(169, 218, 9, 0.08), transparent 26%),
    #0b0c0b;
}

.home-featured__media {
  display: grid;
  place-items: center;
  min-height: 620px;
  margin: 0;
  padding: clamp(34px, 4vw, 70px) clamp(24px, 3vw, 52px);
  background: transparent;
}

.home-featured__media img {
  display: block;
  width: min(100%, 430px);
  height: auto;
  max-height: 620px;
  object-fit: contain;
}

.home-featured__copy {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(30px, 3vw, 54px);
}

.home-featured__copy h2,
.home-calendar h2 {
  margin: 0;
  color: #f5f5f2;
  font-family: var(--headline-font);
  font-size: clamp(42px, 4vw, 72px);
  line-height: 0.9;
  text-transform: uppercase;
}

.home-featured__copy p,
.home-calendar__grid + p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.65;
}

.home-featured__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-featured__stat {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-featured__stat strong {
  color: #f5f5f2;
  font-family: var(--headline-font);
  font-size: clamp(30px, 2vw, 42px);
  line-height: 1;
}

.home-featured__stat span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-featured__link {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-top: 8px;
  color: #080908;
  background: var(--accent);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.home-featured__link:hover,
.home-featured__link:focus-visible {
  transform: translateX(3px);
  border-color: rgba(169, 218, 9, 0.42);
  background: rgba(169, 218, 9, 0.22);
}

.home-featured__link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-calendar {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 3vw, 48px) clamp(24px, 3.2vw, 42px) clamp(32px, 3.4vw, 46px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #080908;
}

.home-calendar__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.home-track-card {
  display: grid;
  gap: 12px;
  padding: 14px 0;
}

.home-track-card__badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-track-card__badge span {
  color: #7da102;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-track-card__badge p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 700;
}

.home-track-card__photo {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(169, 218, 9, 0.08), transparent 42%),
    #0d0f0d;
}

.home-track-card__photo::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.home-track-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-track-card__photo span {
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--headline-font);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.home-track-card__body {
  display: grid;
  gap: 4px;
}

.home-track-card__body strong {
  color: #f5f5f2;
  font-family: var(--headline-font);
  font-size: clamp(19px, 1.35vw, 27px);
  line-height: 0.95;
  text-transform: uppercase;
}

.home-track-card__body span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 700;
}

.home-editorial__footer {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(160px, 0.6fr)) minmax(220px, 0.9fr);
  gap: 22px;
  padding: 28px 34px 30px;
  background:
    linear-gradient(135deg, rgba(169, 218, 9, 0.12), transparent 36%),
    #050605;
  color: #f2f2ed;
}

.home-editorial__footer-brand,
.home-editorial__footer-nav,
.home-editorial__footer-cta {
  display: grid;
  align-content: start;
  gap: 10px;
}

.home-editorial__footer-logo {
  width: 140px;
  height: auto;
}

.home-editorial__footer-brand p,
.home-editorial__footer-cta p {
  margin: 0;
  color: rgba(242, 242, 237, 0.64);
  font-size: 14px;
  line-height: 1.58;
}

.home-editorial__footer-nav span,
.home-editorial__footer-cta span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-editorial__footer-nav a {
  color: rgba(242, 242, 237, 0.78);
  font-size: 13px;
  transition: color 180ms ease;
}

.home-editorial__footer-nav a:hover,
.home-editorial__footer-nav a:focus-visible {
  color: #ffffff;
}

.home-editorial__footer-cta .button {
  margin-top: 2px;
}

@media (max-width: 1180px) {
  .home-editorial__hero {
    grid-template-columns: minmax(0, 1fr) 148px minmax(0, 0.92fr);
    min-height: 700px;
    padding: 32px 28px 250px;
  }

  .home-editorial__hero::before {
    width: 148px;
  }

  .home-editorial__nav--left {
    left: 28px;
  }

  .home-editorial__nav--right {
    right: 28px;
  }

  .home-featured {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-featured__media {
    min-height: 0;
    padding: 48px 24px 20px;
  }

  .home-featured__media img {
    width: min(100%, 380px);
    max-height: none;
  }

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

  .home-calendar__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 24vw);
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(169, 218, 9, 0.55) rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 900px) {
  .stage--editorial-home {
    padding-bottom: 24px;
  }

  .home-editorial__board {
    border-radius: 0;
  }

  .home-editorial__hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    min-height: auto;
    padding: 82px 18px 24px;
  }

  .home-editorial__hero::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 112px;
    transform: none;
  }

  .home-editorial__nav {
    top: 20px;
    gap: 12px;
    font-size: 10px;
  }

  .home-editorial__nav--left {
    left: 18px;
  }

  .home-editorial__nav--right {
    right: 18px;
  }

  .home-editorial__pane {
    padding-top: 0;
  }

  .home-editorial__pane--left,
  .home-editorial__spec {
    max-width: none;
    width: 100%;
  }

  .home-editorial__pane--left {
    order: 1;
  }

  .home-editorial__spine {
    order: 2;
    justify-items: start;
    padding-top: 0;
  }

  .home-editorial__logo {
    width: 132px;
    transform: none;
  }

  .home-editorial__spine-ring {
    margin-top: 0;
    width: 94px;
    height: 94px;
  }

  .home-editorial__spine-ring strong {
    font-size: 30px;
  }

  .home-editorial__spine-label {
    writing-mode: initial;
    transform: none;
    justify-content: center;
    margin: 0;
  }

  .home-editorial__pane--right {
    order: 4;
    justify-items: stretch;
    text-align: left;
  }

  .home-editorial__hero-visual {
    order: 3;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    transform: none;
    margin-top: 6px;
    justify-content: flex-start;
  }

  .home-editorial__hero-visual img {
    width: 100%;
    max-width: 100%;
    max-height: none;
    border-radius: 0;
    border: 0;
  }

  .home-featured__copy,
  .home-calendar,
  .home-editorial__footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 640px) {
  .home-editorial__hero {
    padding-top: 88px;
  }

  .home-editorial__nav {
    top: 14px;
    gap: 6px 8px;
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .home-editorial__nav--left {
    left: 12px;
  }

  .home-editorial__nav--right {
    right: 12px;
    display: grid;
    justify-items: end;
    gap: 2px;
  }

  .home-editorial__spine-ring,
  .home-editorial__spine-label {
    display: none;
  }

  .home-editorial__logo {
    width: 146px;
  }

  .home-editorial__spec strong,
  .home-editorial__spec p {
    overflow-wrap: anywhere;
  }

  .home-editorial__pane h1 {
    max-width: 6.1ch;
    font-size: clamp(30px, 10.2vw, 46px);
  }

  .home-featured__copy h2,
  .home-calendar h2 {
    max-width: 9ch;
    font-size: clamp(30px, 9.6vw, 46px);
  }

  .home-editorial__lead,
  .home-featured__copy p {
    font-size: 15px;
  }

  .home-editorial__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-featured__stats,
  .home-editorial__footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-featured__media {
    min-height: 0;
    padding: 32px 18px 8px;
  }

  .home-featured__media img {
    width: min(82vw, 300px);
  }

  .home-calendar__grid {
    grid-auto-columns: minmax(210px, 72vw);
  }
}

@media (max-width: 900px) {
  .home-slider__viewport {
    min-height: 560px;
  }

  .home-slide__content,
  .home-slide__content--calendar {
    grid-template-columns: 1fr;
    align-content: end;
  }

  .home-slide__aside {
    justify-content: flex-start;
  }

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

@media (max-width: 640px) {
  .home-slider {
    gap: 14px;
  }

  .home-slider__viewport {
    min-height: 560px;
    border-radius: 24px;
  }

  .home-slide__content {
    padding: 18px 16px 20px;
    gap: 14px;
  }

  .home-slide__copy h1,
  .home-slide__title-alt {
    font-size: clamp(27px, 9.4vw, 44px);
    max-width: 9ch;
  }

  .home-slide__lead {
    max-width: 30ch;
    font-size: 14px;
    line-height: 1.48;
  }

  .home-slide__copy {
    gap: 12px;
  }

  .home-slide__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-slide__badge {
    width: 100%;
    gap: 8px;
    padding: 16px;
  }

  .home-slide__badge strong {
    font-size: 22px;
  }

  .home-slide__badge p {
    font-size: 12px;
  }

  .home-round-strip {
    grid-template-columns: 1fr;
  }

  .home-round-pill {
    padding: 16px;
  }

  .home-slider__controls {
    flex-wrap: wrap;
  }

  .home-slider__progress {
    order: 3;
    margin-left: 0;
  }

  .home-slider__button {
    width: 42px;
    height: 42px;
  }
}

@media (max-height: 820px) and (min-width: 901px) {
  .home-slide__content {
    padding: 22px 24px;
    gap: 20px;
  }

  .home-slide__copy h1,
  .home-slide__title-alt {
    font-size: clamp(42px, 4.6vw, 78px);
  }

  .home-slide__lead {
    font-size: 15px;
    line-height: 1.48;
  }

  .home-slide__badge {
    gap: 8px;
    padding: 18px 20px;
  }

  .home-slide__badge strong {
    font-size: 24px;
  }

  .home-round-pill {
    padding: 14px 14px 13px;
  }

  .home-round-pill strong {
    font-size: 22px;
  }
}

/* Shared editorial system for internal pages. */
.editorial-page {
  background: #080908;
}

.editorial-page .viewport-shell {
  min-height: 100vh;
  padding: 0;
}

.stage--editorial-page {
  min-height: 100vh;
  gap: 0;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 100%),
    #080908;
  background-size: 120px 100%, 100% 100%;
  box-shadow: none;
  justify-content: flex-start;
}

.stage--editorial-page::before,
.stage--editorial-page::after,
.stage--editorial-page > .stage__frame,
.stage--editorial-page > .stage__mesh,
.stage--editorial-page > .stage__glow {
  display: none;
}

.editorial-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 188px minmax(0, 1fr);
  align-items: start;
  width: 100%;
  min-height: 112px;
  padding: 0 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d0f0d;
}

.editorial-header::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 188px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 70%),
    linear-gradient(180deg, #b7ef0f 0%, #8ebb00 100%);
}

.editorial-header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 34px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-header__nav--right {
  justify-content: flex-end;
}

.editorial-header__nav a {
  transition: color 180ms ease;
}

.editorial-header__nav a:hover,
.editorial-header__nav a:focus-visible,
.editorial-header__nav a[aria-current="page"] {
  color: #ffffff;
}

.editorial-header__brand {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 100%;
  padding-top: 23px;
}

.editorial-header__brand img {
  display: block;
  width: min(100%, 168px);
  height: auto;
  filter: brightness(0) invert(1);
}

.stage--editorial-page > .results-panel,
.stage--editorial-page > .stream-panel,
.stage--editorial-page > .contact-panel,
.stage--editorial-page > .championship-hero,
.stage--editorial-page > .championship-section {
  width: min(100%, 1440px);
  margin-right: auto;
  margin-left: auto;
}

.stage--editorial-page .results-panel {
  min-height: calc(100vh - 190px);
  align-content: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(72px, 10vw, 150px) clamp(24px, 7vw, 110px);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 72% 52%, rgba(169, 218, 9, 0.13), transparent 22%),
    transparent;
  box-shadow: none;
}

.stage--editorial-page .results-panel h1 {
  max-width: 9ch;
  font-size: clamp(64px, 9vw, 148px);
  line-height: 0.84;
}

.stage--editorial-page .results-panel__copy {
  max-width: 52ch;
}

.stage--editorial-page .stream-panel {
  grid-template-columns: minmax(290px, 0.55fr) minmax(0, 1fr);
  align-items: center;
  justify-items: stretch;
  gap: 30px;
  min-height: calc(100vh - 188px);
  margin: 0 auto;
  padding: clamp(42px, 5vw, 74px) 42px;
}

.stage--editorial-page .stream-panel__intro {
  text-align: left;
}

.stage--editorial-page .stream-panel__intro h1 {
  max-width: 100%;
  font-size: clamp(40px, 4vw, 64px);
}

.stage--editorial-page .stream-embed {
  width: min(100%, 1180px);
  margin: 0 auto;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.12);
  background: #050605;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.stage--editorial-page .contact-panel {
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 124px) 42px;
}

.stage--editorial-page .contact-panel__copy h1 {
  font-size: clamp(54px, 6.8vw, 108px);
  line-height: 0.86;
}

.stage--editorial-page .contact-form {
  padding: 12px 0 12px clamp(28px, 4vw, 58px);
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stage--editorial-page .contact-field input,
.stage--editorial-page .contact-field textarea,
.stage--editorial-page .contact-field select {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  padding: 15px 0;
  background: transparent;
}

.stage--editorial-page .contact-field input:focus,
.stage--editorial-page .contact-field textarea:focus,
.stage--editorial-page .contact-field select:focus {
  border-color: var(--accent);
  background: transparent;
  box-shadow: none;
}

.stage--editorial-page .championship-hero {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 112px);
  padding: clamp(62px, 7vw, 110px) 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 24% 50%, rgba(169, 218, 9, 0.08), transparent 22%),
    transparent;
}

.stage--editorial-page .championship-hero__media {
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stage--editorial-page .championship-hero__media img {
  width: min(100%, 340px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.46);
}

.stage--editorial-page .championship-hero__download {
  width: min(100%, 340px);
}

.stage--editorial-page .championship-hero__copy h1 {
  max-width: 10ch;
  font-size: clamp(58px, 7vw, 116px);
  line-height: 0.86;
}

.stage--editorial-page .championship-section {
  gap: 26px;
  padding: clamp(54px, 6vw, 92px) 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stage--editorial-page .championship-section__header {
  margin-top: 0;
}

.stage--editorial-page .car-class-grid {
  gap: 28px;
}

.stage--editorial-page .car-class-card,
.stage--editorial-page .track-card {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stage--editorial-page .car-class-card {
  min-height: 210px;
  padding: 22px 0;
}

.stage--editorial-page .track-grid {
  grid-auto-flow: initial;
  grid-auto-columns: auto;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  padding-bottom: 0;
}

.stage--editorial-page .track-card {
  align-content: start;
  min-width: 0;
  padding: 16px 0 0;
}

.stage--editorial-page .track-card__meta {
  display: grid;
  gap: 10px;
  min-height: 104px;
}

.stage--editorial-page .track-card h3 {
  overflow-wrap: anywhere;
  font-size: clamp(18px, 1.05vw, 21px);
}

.stage--editorial-page .track-card__meta p {
  font-size: 12px;
}

.stage--editorial-page .track-card__photo {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(169, 218, 9, 0.08), transparent 42%),
    #0d0f0d;
}

.stage--editorial-page .track-card__photo::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.stage--editorial-page .track-card__photo--placeholder span {
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--headline-font);
  font-size: clamp(32px, 3.2vw, 52px);
}

.editorial-page .modal__dialog {
  border-radius: 0;
  border-top: 3px solid var(--accent);
  background: #0b0c0b;
}

.editorial-page .modal__close {
  border-radius: 0;
}

.editorial-page .modal .contact-field input,
.editorial-page .modal .contact-field textarea,
.editorial-page .modal .contact-field select {
  border-radius: 0;
}

.stage--editorial-page .stage-footer {
  width: 100%;
  margin-top: auto;
  padding: 28px 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(169, 218, 9, 0.08), transparent 34%),
    #050605;
}

@media (max-width: 1180px) {
  .editorial-header {
    grid-template-columns: minmax(0, 1fr) 148px minmax(0, 1fr);
    padding: 0 28px;
  }

  .editorial-header::before {
    width: 148px;
  }

  .editorial-header__brand img {
    width: 132px;
  }

  .editorial-header__brand {
    padding-top: 21px;
  }

  .stage--editorial-page .track-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 24vw);
    overflow-x: auto;
    padding-bottom: 12px;
  }
}

@media (max-width: 900px) {
  .editorial-header {
    min-height: 96px;
    grid-template-columns: minmax(0, 1fr) 132px minmax(0, 1fr);
    padding: 0 18px;
  }

  .editorial-header::before {
    width: 132px;
  }

  .editorial-header__nav {
    gap: 10px;
    padding-top: 20px;
    font-size: 9px;
    letter-spacing: 0.11em;
  }

  .editorial-header__brand {
    padding-top: 34px;
  }

  .editorial-header__brand img {
    width: 116px;
  }

  .stage--editorial-page .contact-panel,
  .stage--editorial-page .championship-hero,
  .stage--editorial-page .stream-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .stage--editorial-page .stream-panel {
    min-height: 0;
  }

  .stage--editorial-page .results-panel,
  .stage--editorial-page .stream-panel,
  .stage--editorial-page .contact-panel,
  .stage--editorial-page .championship-hero,
  .stage--editorial-page .championship-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .stage--editorial-page .contact-form {
    padding: 32px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .stage--editorial-page .championship-hero__media {
    justify-items: start;
  }

  .stage--editorial-page .championship-hero__visual {
    justify-items: start;
  }

  .stage--editorial-page .championship-hero__media img {
    width: min(100%, 320px);
  }

  .stage--editorial-page .championship-hero__download {
    width: min(100%, 320px);
  }

  .stage--editorial-page .car-class-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stage--editorial-page .car-class-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .editorial-header {
    min-height: 88px;
    grid-template-columns: minmax(0, 1fr) 100px minmax(0, 1fr);
    padding: 0 10px;
  }

  .editorial-header::before {
    width: 100px;
  }

  .editorial-header__nav {
    gap: 6px;
    padding-top: 14px;
    font-size: 7px;
    letter-spacing: 0.06em;
  }

  .editorial-header__brand {
    padding-top: 29px;
  }

  .editorial-header__brand img {
    width: 90px;
  }

  .stage--editorial-page .results-panel,
  .stage--editorial-page .stream-panel,
  .stage--editorial-page .contact-panel,
  .stage--editorial-page .championship-hero,
  .stage--editorial-page .championship-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .stage--editorial-page .results-panel {
    min-height: calc(100vh - 166px);
  }

  .stage--editorial-page .results-panel h1 {
    font-size: clamp(48px, 17vw, 72px);
  }

  .stage--editorial-page .stream-panel__intro h1,
  .stage--editorial-page .contact-panel__copy h1,
  .stage--editorial-page .championship-hero__copy h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .stage--editorial-page .stream-panel__intro h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 48px);
  }

  .stage--editorial-page .track-grid {
    grid-auto-columns: minmax(220px, 76vw);
  }

  .stage--editorial-page .stage-footer {
    padding: 24px 18px;
  }
}

/* Private administration area. */
.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(169, 218, 9, 0.1), transparent 28%),
    #080908;
  background-size: 120px 100%, 100% 100%, 100% 100%;
}

.admin-shell {
  width: 100%;
  min-height: 100vh;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding: 0 clamp(24px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 15, 13, 0.94);
}

.admin-header__brand img {
  display: block;
  width: clamp(140px, 15vw, 210px);
  height: auto;
  filter: brightness(0) invert(1);
}

.admin-header__session {
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-header__session span,
.admin-header__session button {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-header__session form {
  margin: 0;
}

.admin-header__session button {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--accent);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.65fr);
  align-items: center;
  gap: clamp(42px, 8vw, 130px);
  width: min(100%, 1180px);
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 110px) 28px;
}

.admin-login__copy {
  display: grid;
  gap: 18px;
}

.admin-login__copy > span,
.admin-dashboard__intro > div > span,
.admin-empty > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.admin-login__copy h1,
.admin-dashboard__intro h1,
.admin-empty h2 {
  margin: 0;
  font-family: var(--headline-font);
  font-weight: 800;
  line-height: 0.88;
  text-transform: uppercase;
}

.admin-login__copy h1 {
  max-width: 9ch;
  font-size: clamp(58px, 7vw, 112px);
}

.admin-login__copy p,
.admin-dashboard__intro p,
.admin-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.admin-login__form {
  display: grid;
  gap: 24px;
  padding: 12px 0 12px clamp(28px, 4vw, 58px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-field {
  display: grid;
  gap: 8px;
}

.admin-field span,
.admin-search span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-field input,
.admin-search input {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  transition: border-color 180ms ease;
}

.admin-field input:focus,
.admin-search input:focus {
  border-color: var(--accent);
}

.admin-login__form .button {
  width: 100%;
  margin-top: 8px;
}

.admin-login__error {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 104, 104, 0.42);
  color: #ffb9b9;
  font-size: 14px;
  line-height: 1.5;
}

.admin-dashboard {
  display: grid;
  gap: clamp(34px, 4vw, 58px);
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 86px) clamp(20px, 4vw, 60px) 80px;
}

.admin-dashboard__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.admin-dashboard__intro > div {
  display: grid;
  gap: 14px;
}

.admin-dashboard__intro h1 {
  font-size: clamp(52px, 6vw, 96px);
}

.admin-dashboard__intro p {
  max-width: 42ch;
  text-align: right;
}

.admin-dashboard code {
  color: rgba(255, 255, 255, 0.82);
  font-family: inherit;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.admin-stats article {
  display: grid;
  gap: 6px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.admin-stats strong {
  font-family: var(--headline-font);
  font-size: clamp(40px, 4vw, 66px);
  line-height: 0.9;
}

.admin-stats span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.admin-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding-top: 8px;
}

.admin-search {
  display: grid;
  gap: 6px;
  width: min(100%, 480px);
}

.admin-toolbar p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.admin-team {
  display: grid;
  gap: 24px;
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(169, 218, 9, 0.055), transparent 38%),
    rgba(8, 9, 8, 0.78);
}

.admin-team[hidden] {
  display: none;
}

.admin-team__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.admin-team__header > div {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.admin-team__class {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.admin-team__header h2 {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: var(--headline-font);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 0.9;
  text-transform: uppercase;
}

.admin-team__header > strong {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-team__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.admin-team__details div {
  min-width: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-team__details dt {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-team__details dd {
  margin: 7px 0 0;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.45;
}

.admin-team__details a:hover,
.admin-team__details a:focus-visible {
  color: var(--accent);
}

.admin-team__pilots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-team__pilots > div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-team__pilots > div > span {
  color: var(--accent);
  font-family: var(--headline-font);
  font-size: 22px;
}

.admin-team__pilots p {
  display: grid;
  gap: 3px;
  min-width: 0;
  margin: 0;
}

.admin-team__pilots strong,
.admin-team__pilots small {
  overflow-wrap: anywhere;
}

.admin-team__pilots strong {
  font-size: 14px;
}

.admin-team__pilots small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.admin-team__footer {
  color: rgba(255, 255, 255, 0.28);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-empty {
  display: grid;
  gap: 14px;
  min-height: 340px;
  align-content: center;
  padding: clamp(34px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 76% 50%, rgba(169, 218, 9, 0.1), transparent 24%),
    transparent;
}

.admin-empty h2 {
  max-width: 12ch;
  font-size: clamp(44px, 5vw, 78px);
}

.admin-empty p {
  max-width: 54ch;
}

.admin-empty--compact {
  min-height: 280px;
}

.admin-contacts {
  display: grid;
  gap: 30px;
  margin-top: clamp(22px, 4vw, 54px);
  padding-top: clamp(42px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.admin-section-heading > div {
  display: grid;
  gap: 12px;
}

.admin-section-heading span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.admin-section-heading h2 {
  margin: 0;
  font-family: var(--headline-font);
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.9;
  text-transform: uppercase;
}

.admin-section-heading p {
  max-width: 40ch;
  margin: 0;
  color: var(--muted);
  text-align: right;
  line-height: 1.6;
}

.admin-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-contact {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(169, 218, 9, 0.05), transparent 38%),
    rgba(8, 9, 8, 0.78);
}

.admin-contact[hidden] {
  display: none;
}

.admin-contact__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.admin-contact__header > div {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.admin-contact__header span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-contact__header h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: var(--headline-font);
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 0.92;
  text-transform: uppercase;
}

.admin-contact__header time {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.admin-contact__email {
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  border-bottom: 1px solid rgba(169, 218, 9, 0.42);
}

.admin-contact__email:hover,
.admin-contact__email:focus-visible {
  color: var(--accent);
}

.admin-contact__message {
  min-height: 100px;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.admin-no-results {
  margin: 0;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted);
}

@media (max-width: 900px) {
  .admin-login {
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
  }

  .admin-login__form {
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .admin-dashboard__intro {
    align-items: start;
    flex-direction: column;
  }

  .admin-dashboard__intro p {
    text-align: left;
  }

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

  .admin-team-grid,
  .admin-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-section-heading {
    align-items: start;
    flex-direction: column;
  }

  .admin-section-heading p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .admin-header {
    min-height: 88px;
    padding: 0 18px;
  }

  .admin-header__brand img {
    width: 126px;
  }

  .admin-header__session > span {
    display: none;
  }

  .admin-login {
    min-height: calc(100vh - 88px);
    padding: 44px 18px;
  }

  .admin-login__copy h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .admin-dashboard {
    padding: 42px 18px 60px;
  }

  .admin-dashboard__intro h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

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

  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-toolbar p {
    margin: 0;
  }

  .admin-team {
    padding: 20px 16px;
  }

  .admin-team__header,
  .admin-team__details {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-team__header {
    display: grid;
  }

  .admin-team__pilots {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-contact {
    padding: 20px 16px;
  }

  .admin-contact__header {
    display: grid;
  }
}
