:root {
  color-scheme: light;
  font-family: "Bahnschrift", "DIN Alternate", "Arial Narrow", sans-serif;
  --ink: #0b0d0c;
  --body: #414641;
  --muted: #5e635e;
  --quiet: #696e69;
  --white: #f8f9f6;
  --pure-white: #ffffff;
  --line: rgba(11, 13, 12, 0.16);
  --line-strong: rgba(11, 13, 12, 0.42);
  --lime: #b9ff39;
  --rh: #00c805;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;
  --page-gutter: clamp(24px, 3.33vw, 48px);
  --z-media: 0;
  --z-content: 2;
  --z-nav: 5;
  --z-panel: 10;
  --z-transition: 20;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: var(--white);
}

.machine,
.machine__film,
.machine__wash {
  position: absolute;
}

.machine {
  z-index: var(--z-media);
  overflow: hidden;
  background: var(--white) url("./constructor-table-poster.webp") center / cover no-repeat;
}

.machine__film,
.machine__wash {
  inset: 0;
  width: 100%;
  height: 100%;
}

.machine__film {
  object-fit: cover;
  filter: saturate(0.84) contrast(1.015);
}

.machine__wash {
  pointer-events: none;
}

.site-header {
  position: absolute;
  z-index: var(--z-nav);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.forwardmark {
  display: flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.forwardmark__crest {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  overflow: hidden;
}

.forwardmark__crest img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.forwardmark__name {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.product-signature {
  color: var(--body);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
}

.primary-nav button {
  position: relative;
  padding: 9px 0;
  background: transparent;
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.primary-nav button::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 340ms var(--ease-out);
}

.primary-nav button:hover::after,
.primary-nav button:focus-visible::after,
.primary-nav button[aria-pressed="true"]::after {
  transform: scaleX(1);
}

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--body);
  text-decoration: none;
}

.social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  transition: color 260ms var(--ease-out), transform 360ms var(--ease-out);
}

.social-link:hover svg,
.social-link:focus-visible svg {
  color: var(--ink);
  transform: translate(1px, -1px);
}

.season-lockup {
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.season-lockup__light {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(185, 255, 57, 0.16);
}

.season-lockup__index {
  color: var(--quiet);
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  padding: 10px 7px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--ink);
}

.hero-copy {
  position: absolute;
  z-index: var(--z-content);
}

.hero-copy__context {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 4.5vw, 72px);
  font-weight: 430;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-copy__body {
  max-width: 440px;
  margin: 22px 0 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.5;
  text-wrap: pretty;
}

.competition-deck {
  position: absolute;
  z-index: calc(var(--z-content) + 1);
}

.competition {
  position: relative;
}

.competition__select {
  display: grid;
  width: 100%;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.competition__brand {
  display: flex;
  align-items: center;
}

.competition__brand--rh img {
  width: 108px;
  height: auto;
}

.competition__brand--pons {
  gap: 8px;
}

.competition__brand--pons .pons-symbol {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.competition__brand--pons .pons-wordmark,
.pons-lockup .pons-wordmark {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: lowercase;
}

.competition__name {
  font-size: 22px;
  font-weight: 570;
  letter-spacing: -0.025em;
}

.competition__season {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.competition__watch {
  padding: 0;
  background: transparent;
  color: var(--quiet);
  font-size: 11px;
  text-align: left;
}

.competition__watch:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.competition__watch--open {
  display: block;
}

.competition-caption {
  position: absolute;
  z-index: var(--z-content);
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.season-axis {
  position: absolute;
  z-index: var(--z-content);
  display: none;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.season-axis__line {
  position: relative;
  width: 220px;
  height: 1px;
  background: var(--line-strong);
}

.season-axis__line i {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
}

.ignition {
  position: absolute;
  z-index: calc(var(--z-content) + 2);
  display: flex;
  align-items: center;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.ignition__hardware {
  position: relative;
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  transition: filter 420ms var(--ease-out), transform 520ms var(--ease-out);
}

.ignition__hardware img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 2px rgba(11, 13, 12, 0.18));
}

.ignition__hardware i {
  position: absolute;
  top: 48%;
  right: 11%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(185, 255, 57, 0.58);
  animation: ignition-breathe 2.4s ease-in-out infinite;
}

.ignition__copy {
  display: grid;
  gap: 4px;
}

.ignition__copy span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ignition__copy strong {
  font-size: 18px;
  font-weight: 610;
  letter-spacing: -0.025em;
}

.ignition__arrow {
  font-size: 16px;
  transition: transform 350ms var(--ease-out);
}

.ignition:hover .ignition__hardware,
.ignition:focus-visible .ignition__hardware {
  filter: brightness(1.08);
  transform: rotate(5deg) scale(1.035);
}

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

.technology-rail {
  position: absolute;
  z-index: var(--z-content);
  display: flex;
  align-items: center;
  gap: 14px;
  height: 24px;
}

.technology-rail__label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.technology-rail img {
  display: block;
  width: auto;
  max-width: 62px;
  height: 15px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.2);
  opacity: 0.68;
}

.technology-rail .technology-rail__aws {
  width: 34px;
  height: 18px;
  object-fit: contain;
  object-position: center;
}

@keyframes ignition-breathe {
  0%,
  100% {
    opacity: 0.42;
  }
  50% {
    opacity: 1;
  }
}

.nav-surface {
  position: absolute;
  z-index: var(--z-panel);
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 249, 246, 0.98) 0 58%, rgba(248, 249, 246, 0.82) 78%, rgba(248, 249, 246, 0.62)),
    url("./constructor-table-poster.webp") 78% center / cover no-repeat;
  animation: panel-enter 620ms var(--ease-out) both;
}

.nav-surface__close {
  position: absolute;
  top: 30px;
  right: 38px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-view {
  position: absolute;
  top: clamp(130px, 18vh, 190px);
  left: 6vw;
  width: min(850px, 76vw);
}

.nav-view header > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-view h2 {
  margin: 18px 0 0;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 430;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.league-pair {
  display: flex;
  gap: 0;
  width: min(780px, 76vw);
  margin-top: 56px;
  border-top: 1px solid var(--ink);
}

.league-pair__item {
  width: 50%;
  padding: 22px 34px 0 0;
}

.league-pair__item + .league-pair__item {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.league-pair__item > img {
  width: 118px;
}

.pons-lockup {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 22px;
  font-weight: 620;
}

.pons-lockup .pons-symbol {
  width: 28px;
  height: 28px;
}

.league-pair h3 {
  margin: 18px 0 8px;
  font-size: 22px;
  font-weight: 570;
}

.league-pair p,
.nav-view__statement,
.rules-copy {
  color: var(--body);
  font-size: 14px;
  line-height: 1.55;
}

.nav-view__statement,
.rules-copy {
  max-width: 620px;
  margin-top: 52px;
}

.rules-copy {
  display: grid;
  gap: 12px;
}

.rules-copy p {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.garage-transition {
  position: absolute;
  z-index: var(--z-transition);
  inset: 0;
  display: grid;
  place-content: center;
  place-items: center;
  background: var(--ink);
  color: var(--pure-white);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.garage-transition__mark {
  width: 18px;
  height: 18px;
  margin-bottom: 18px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: inset 0 0 0 5px var(--ink);
}

.shell[data-state="launching"] .garage-transition {
  animation: launch 850ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

/* A — Championship Rail */

html[data-shell="A"] .site-header {
  height: 72px;
  padding: 0 38px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 249, 246, 0.96);
}

html[data-shell="A"] .forwardmark {
  gap: 11px;
}

html[data-shell="A"] .product-signature {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

html[data-shell="A"] .primary-nav {
  gap: clamp(24px, 3.5vw, 54px);
  margin: 0 auto;
}

html[data-shell="A"] .season-lockup {
  display: none;
}

html[data-shell="A"] .machine {
  inset: 160px 0 0;
}

html[data-shell="A"] .machine__film {
  object-position: center;
}

html[data-shell="A"] .machine__wash {
  background:
    radial-gradient(circle at 5% 80%, rgba(248, 249, 246, 0.98) 0 6%, transparent 12%),
    radial-gradient(ellipse 22% 18% at 83% 86%, rgba(248, 249, 246, 0.92) 0 46%, transparent 82%),
    linear-gradient(90deg, rgba(248, 249, 246, 0.96) 0%, rgba(248, 249, 246, 0.76) 26%, transparent 46%);
}

html[data-shell="A"] .hero-copy {
  top: clamp(206px, 27vh, 270px);
  left: 38px;
  width: min(430px, 34vw);
}

html[data-shell="A"] .competition-deck {
  top: 72px;
  left: 0;
  display: flex;
  width: 100%;
  height: 88px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 249, 246, 0.95);
}

html[data-shell="A"] .competition {
  width: 50%;
  padding: 13px 38px 12px;
}

html[data-shell="A"] .competition + .competition {
  border-left: 1px solid var(--line);
}

html[data-shell="A"] .competition__select {
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
}

html[data-shell="A"] .competition__season {
  position: absolute;
  top: 22px;
  right: 38px;
}

html[data-shell="A"] .competition__brand--pons img {
  width: 26px;
  height: 26px;
}

html[data-shell="A"] .competition__name {
  padding-right: 76px;
  font-size: 18px;
  white-space: nowrap;
}

html[data-shell="A"] .competition__watch {
  position: absolute;
  bottom: 10px;
  left: 176px;
}

html[data-shell="A"] .competition::after {
  position: absolute;
  right: 38px;
  bottom: -1px;
  left: 38px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 380ms var(--ease-out);
}

html[data-shell="A"] .competition.is-active::after {
  transform: scaleX(1);
}

html[data-shell="A"] .ignition {
  right: 38px;
  bottom: 32px;
  gap: 14px;
}

html[data-shell="A"] .competition-caption {
  right: 38px;
  bottom: 126px;
  width: 260px;
  text-align: right;
}

html[data-shell="A"] .legal-line {
  bottom: 30px;
  left: 38px;
}

/* B — Twin Paddock Gates */

html[data-shell="B"] .site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  height: 72px;
  padding: 0 var(--page-gutter);
  background: linear-gradient(180deg, rgba(248, 249, 246, 0.96), rgba(248, 249, 246, 0));
}

html[data-shell="B"] .forwardmark {
  gap: var(--space-2);
  justify-self: start;
}

html[data-shell="B"] .product-signature {
  margin-left: var(--space-2);
  padding-left: var(--space-4);
  border-left: 1px solid var(--line);
  font-style: normal;
  white-space: nowrap;
}

html[data-shell="B"] .primary-nav {
  gap: clamp(24px, 3vw, 48px);
  justify-self: center;
}

html[data-shell="B"] .social-link {
  justify-self: end;
}

html[data-shell="B"] .season-lockup {
  display: none;
}

html[data-shell="B"] .machine {
  inset: 0;
}

html[data-shell="B"] .machine__film {
  object-position: center;
}

html[data-shell="B"] .machine__wash {
  background:
    radial-gradient(circle at 4% 81%, rgba(248, 249, 246, 0.98) 0 5%, transparent 11%),
    radial-gradient(ellipse 24% 17% at 50% 94%, rgba(248, 249, 246, 0.96) 0 42%, transparent 82%),
    radial-gradient(ellipse 48% 30% at 52% 12%, rgba(248, 249, 246, 0.9) 0 46%, transparent 78%),
    linear-gradient(90deg, rgba(248, 249, 246, 0.64), transparent 24%, transparent 78%, rgba(248, 249, 246, 0.35));
}

html[data-shell="B"] .hero-copy {
  top: 88px;
  left: 50%;
  width: min(640px, 58vw);
  text-align: center;
  transform: translateX(-50%);
}

html[data-shell="B"] .hero-copy__context {
  display: none;
}

html[data-shell="B"] .hero-copy h1 {
  font-size: clamp(40px, 3.4vw, 48px);
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

html[data-shell="B"] .hero-copy__body {
  display: block;
  margin: 10px 0 0;
  color: var(--body);
  font-size: 14px;
  font-weight: 560;
  letter-spacing: 0.08em;
}

html[data-shell="B"] .season-axis {
  position: static;
  display: flex;
  width: 100%;
  margin-top: var(--space-2);
  justify-content: center;
  font-weight: 560;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transform: none;
}

html[data-shell="B"] .season-axis__line {
  display: none;
}

html[data-shell="B"] .season-axis [data-cup-status-name]::after {
  margin-left: 12px;
  color: var(--line-strong);
  content: "—";
}

html[data-shell="B"] .season-axis [data-cup-status-name] {
  display: none;
}

html[data-shell="B"] .season-axis [data-cup-status-copy] {
  color: var(--body);
}

html[data-shell="B"] .competition-deck {
  inset: 0;
  pointer-events: none;
}

html[data-shell="B"] .competition {
  position: absolute;
  width: 360px;
  pointer-events: auto;
}

html[data-shell="B"] .competition--genesis {
  top: clamp(216px, 26vh, 264px);
  left: var(--page-gutter);
}

html[data-shell="B"] .competition--pons {
  right: var(--page-gutter);
  bottom: clamp(144px, 18vh, 184px);
  width: clamp(288px, 20vw, 336px);
}

html[data-shell="B"] .competition__select {
  gap: 8px;
}

html[data-shell="B"] .competition--genesis .competition__brand--rh img {
  width: 118px;
}

html[data-shell="B"] .competition--pons .competition__brand--pons {
  grid-row: 1;
  grid-column: 2;
  justify-content: flex-end;
}

html[data-shell="B"] .competition--pons .competition__select {
  grid-template-columns: auto auto;
  gap: var(--space-3) var(--space-4);
  justify-content: end;
}

html[data-shell="B"] .competition--pons .pons-symbol {
  width: 44px;
  height: 44px;
}

html[data-shell="B"] .competition__name {
  font-size: clamp(30px, 2.7vw, 40px);
  font-weight: 470;
  line-height: 0.96;
  text-transform: uppercase;
}

html[data-shell="B"] .competition--pons .competition__name {
  grid-row: 2;
  grid-column: 1 / -1;
}

html[data-shell="B"] .competition--pons .competition__name,
html[data-shell="B"] .competition--pons .competition__season,
html[data-shell="B"] .competition--pons .competition__watch {
  text-align: right;
}

html[data-shell="B"] .competition__season {
  position: absolute;
  top: 3px;
  right: 0;
}

html[data-shell="B"] .competition--pons .competition__season {
  position: static;
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  justify-self: end;
}

html[data-shell="B"] .competition--genesis .competition__season {
  display: none;
}

html[data-shell="B"] .competition__watch {
  margin-top: var(--space-6);
}

html[data-shell="B"] .competition::before,
html[data-shell="B"] .competition::after {
  position: absolute;
  background: var(--line-strong);
  content: "";
  transition: background 300ms ease;
}

html[data-shell="B"] .competition::before {
  bottom: -18px;
  left: 0;
  width: 96px;
  height: 1px;
}

html[data-shell="B"] .competition::after {
  display: none;
}

html[data-shell="B"] .competition--pons::before {
  right: 0;
  left: auto;
}

html[data-shell="B"] .competition--pons::after {
  right: 0;
  left: auto;
}

html[data-shell="B"] .competition.is-active::before,
html[data-shell="B"] .competition.is-active::after {
  background: var(--lime);
}

html[data-shell="B"] .competition.is-active .competition__name {
  font-weight: 560;
}

html[data-shell="B"] .ignition {
  bottom: var(--space-8);
  left: 50%;
  gap: 16px;
  transform: translateX(-50%);
}

html[data-shell="B"] .ignition__copy {
  display: grid;
}

html[data-shell="B"] .ignition__copy strong {
  font-size: 22px;
  white-space: nowrap;
}

html[data-shell="B"] .ignition__hardware {
  width: 92px;
  height: 92px;
}

html[data-shell="B"] .competition-caption {
  display: none;
}

html[data-shell="B"] .technology-rail {
  bottom: var(--space-6);
  left: var(--page-gutter);
  gap: 12px;
}

/* C — Constructor Fascia */

html[data-shell="C"] .site-header {
  height: 76px;
  padding: 0 38px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 249, 246, 0.92);
}

html[data-shell="C"] .forwardmark {
  gap: 11px;
}

html[data-shell="C"] .product-signature {
  margin-left: 28px;
  padding: 22px 34px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  white-space: nowrap;
}

html[data-shell="C"] .primary-nav {
  gap: clamp(28px, 4vw, 62px);
  margin: 0 auto;
}

html[data-shell="C"] .season-lockup {
  gap: 13px;
}

html[data-shell="C"] .machine {
  inset: 76px 0 174px;
}

html[data-shell="C"] .machine__film {
  object-position: 58% center;
}

html[data-shell="C"] .machine__wash {
  background: linear-gradient(90deg, rgba(248, 249, 246, 0.96) 0%, rgba(248, 249, 246, 0.72) 26%, transparent 45%);
}

html[data-shell="C"] .hero-copy {
  top: 132px;
  left: 38px;
  width: 360px;
}

html[data-shell="C"] .hero-copy__context,
html[data-shell="C"] .hero-copy__body {
  display: none;
}

html[data-shell="C"] .hero-copy h1 {
  font-size: clamp(42px, 4vw, 64px);
}

html[data-shell="C"] .shell::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 174px;
  border-top: 1px solid rgba(11, 13, 12, 0.36);
  background: linear-gradient(180deg, #eef0ec 0%, #d2d5cf 42%, #f1f2ef 100%);
  box-shadow: 0 -4px 8px rgba(11, 13, 12, 0.1);
  content: "";
}

html[data-shell="C"] .competition-deck {
  bottom: 23px;
  left: 38px;
  display: flex;
  width: min(640px, 46vw);
  height: 118px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

html[data-shell="C"] .competition {
  width: 50%;
  padding: 17px 24px 12px;
}

html[data-shell="C"] .competition + .competition {
  border-left: 1px solid var(--line-strong);
}

html[data-shell="C"] .competition__select {
  grid-template-columns: 1fr;
  gap: 4px;
  align-items: center;
}

html[data-shell="C"] .competition__brand {
  grid-column: 1;
}

html[data-shell="C"] .competition__brand--rh img {
  width: 112px;
}

html[data-shell="C"] .competition__name {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

html[data-shell="C"] .competition__season {
  position: relative;
  padding-left: 14px;
}

html[data-shell="C"] .competition__season::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--quiet);
  content: "";
}

html[data-shell="C"] .competition.is-active .competition__season::before {
  background: var(--lime);
}

html[data-shell="C"] .competition__watch {
  margin-top: 8px;
}

html[data-shell="C"] .ignition {
  right: 44px;
  bottom: 42px;
  gap: 16px;
}

html[data-shell="C"] .ignition__hardware {
  width: 88px;
  height: 88px;
}

html[data-shell="C"] .competition-caption {
  display: none;
}

html[data-shell="C"] .technology-rail {
  bottom: 142px;
  left: calc(min(640px, 46vw) + 74px);
}

@keyframes panel-enter {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0);
  }
}

@keyframes launch {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  55%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .site-header {
    display: flex !important;
    height: 60px !important;
    padding: 0 20px !important;
  }

  .forwardmark {
    gap: 8px !important;
  }

  .forwardmark__crest {
    width: 24px;
    height: 24px;
  }

  .forwardmark__name {
    font-size: 14px;
  }

  .product-signature {
    margin-left: 10px !important;
    padding: 0 0 0 10px !important;
    border-right: 0 !important;
    border-left: 1px solid var(--line) !important;
    font-size: 10px;
  }

  .season-lockup {
    margin-left: auto;
  }

  .season-lockup__index {
    display: none;
  }

  .menu-toggle {
    display: block;
    width: 44px;
    height: 44px;
    margin-left: 10px;
  }

  .social-link {
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    z-index: var(--z-panel);
    top: 60px;
    right: 0;
    left: 0;
    display: none;
    margin: 0 !important;
    padding: 26px 20px 30px;
    border-bottom: 1px solid var(--ink);
    background: var(--white);
  }

  .primary-nav.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
  }

  .primary-nav button {
    text-align: left;
  }

  .hero-copy h1 {
    font-size: clamp(39px, 11vw, 56px);
  }

  .hero-copy__body {
    margin-top: 16px;
    font-size: 12px;
  }

  .competition-caption,
  .legal-line {
    display: none !important;
  }

  .nav-surface {
    background:
      linear-gradient(180deg, rgba(248, 249, 246, 0.99) 0 68%, rgba(248, 249, 246, 0.78)),
      url("./constructor-table-poster.webp") 62% bottom / auto 48% no-repeat;
  }

  .nav-surface__close {
    top: 22px;
    right: 20px;
  }

  .nav-view {
    top: 94px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .nav-view h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .league-pair {
    width: 100%;
    margin-top: 38px;
  }

  .league-pair__item {
    padding: 18px 15px 0 0;
  }

  .league-pair__item + .league-pair__item {
    padding-left: 15px;
  }

  .league-pair p {
    font-size: 11px;
  }

  html[data-shell="A"] .machine {
    inset: 310px 0 0;
  }

  html[data-shell="A"] .machine__film {
    object-position: 58% center;
  }

  html[data-shell="A"] .hero-copy {
    top: 188px;
    left: 20px;
    width: calc(100% - 40px);
  }

  html[data-shell="A"] .hero-copy__context,
  html[data-shell="A"] .hero-copy__body {
    display: none;
  }

  html[data-shell="A"] .competition-deck {
    top: 60px;
    height: 112px;
  }

  html[data-shell="A"] .competition {
    padding: 14px 20px 10px;
  }

  html[data-shell="A"] .competition__select {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  html[data-shell="A"] .competition__brand--rh img {
    width: 84px;
  }

  html[data-shell="A"] .competition__name {
    font-size: 14px;
  }

  html[data-shell="A"] .competition__season {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 10px;
  }

  html[data-shell="A"] .competition__watch {
    bottom: 11px;
    left: 20px;
    font-size: 10px;
  }

  html[data-shell="A"] .competition::after {
    right: 20px;
    left: 20px;
  }

  html[data-shell="A"] .ignition {
    right: auto;
    bottom: 22px;
    left: 20px;
  }

  html[data-shell="B"] .machine {
    inset: 0;
  }

  html[data-shell="B"] .machine__film {
    object-position: 58% center;
  }

  html[data-shell="B"] .hero-copy {
    top: 104px;
    left: 20px;
    width: calc(100% - 40px);
    text-align: left;
    transform: none;
  }

  html[data-shell="B"] .hero-copy h1 {
    font-size: 40px;
    line-height: 0.98;
  }

  html[data-shell="B"] .hero-copy__body {
    margin-top: 10px;
    font-size: 12px;
  }

  html[data-shell="B"] .season-axis {
    width: calc(100% - 40px);
    margin-top: 24px;
    justify-content: flex-start;
  }

  html[data-shell="B"] .season-axis__line {
    display: none;
  }

  html[data-shell="B"] .season-axis [data-cup-status-name] {
    display: none;
  }

  html[data-shell="B"] .competition--genesis {
    top: 292px;
    left: 20px;
    width: 220px;
  }

  html[data-shell="B"] .competition--genesis .competition__select {
    background: linear-gradient(90deg, rgba(248, 249, 246, 0.94), rgba(248, 249, 246, 0.76) 72%, transparent);
  }

  html[data-shell="B"] .competition--pons {
    right: 20px;
    bottom: 132px;
    width: 180px;
  }

  html[data-shell="B"] .competition--genesis .competition__brand--rh img {
    width: 96px;
  }

  html[data-shell="B"] .competition__name {
    font-size: 18px;
    line-height: 0.96;
  }

  html[data-shell="B"] .competition--pons .competition__name {
    font-size: 22px;
  }

  html[data-shell="B"] .competition--pons .competition__select {
    gap: 8px 12px;
  }

  html[data-shell="B"] .competition__watch {
    font-size: 12px;
  }

  html[data-shell="B"] .competition--pons .pons-symbol {
    width: 38px;
    height: 38px;
  }

  html[data-shell="B"] .ignition {
    top: auto;
    right: auto;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
  }

  html[data-shell="B"] .ignition__copy {
    display: grid;
  }

  html[data-shell="B"] .ignition__hardware {
    width: 76px;
    height: 76px;
  }

  html[data-shell="B"] .technology-rail {
    top: 66px;
    right: 20px;
    bottom: auto;
    left: auto;
    gap: 9px;
  }

  html[data-shell="C"] .machine {
    inset: 60px 0 178px;
  }

  html[data-shell="C"] .machine__film {
    object-position: 62% center;
  }

  html[data-shell="C"] .hero-copy {
    top: 92px;
    left: 20px;
    width: 270px;
  }

  html[data-shell="C"] .hero-copy h1 {
    font-size: 40px;
  }

  html[data-shell="C"] .shell::after {
    height: 178px;
  }

  html[data-shell="C"] .competition-deck {
    bottom: 54px;
    left: 20px;
    width: calc(100% - 40px);
    height: 108px;
  }

  html[data-shell="C"] .competition {
    padding: 13px 12px 10px;
  }

  html[data-shell="C"] .competition__brand--rh img {
    width: 86px;
  }

  html[data-shell="C"] .competition__brand--pons .pons-symbol {
    width: 22px;
    height: 22px;
  }

  html[data-shell="C"] .competition__name {
    font-size: 11px;
  }

  html[data-shell="C"] .competition__season,
  html[data-shell="C"] .competition__watch {
    font-size: 10px;
  }

  html[data-shell="C"] .ignition {
    right: 18px;
    bottom: 7px;
    gap: 8px;
  }

  html[data-shell="C"] .ignition__hardware {
    width: 44px;
    height: 44px;
  }

  html[data-shell="C"] .ignition__hardware i {
    width: 4px;
    height: 4px;
  }

  html[data-shell="C"] .ignition__copy span {
    display: none;
  }

  html[data-shell="C"] .ignition__copy strong {
    font-size: 14px;
  }

  html[data-shell="C"] .technology-rail {
    right: 20px;
    bottom: 166px;
    left: auto;
    gap: 9px;
  }

  .technology-rail img {
    max-width: 48px;
    height: 12px;
  }
}

@media (max-width: 1000px) and (min-width: 721px) {
  html[data-shell="C"] .product-signature {
    margin-left: 18px;
    padding: 22px 18px;
  }

  html[data-shell="C"] .primary-nav {
    gap: 18px;
  }

  html[data-shell="C"] .season-lockup__index {
    display: none;
  }
}

@media (max-height: 680px) and (min-width: 721px) {
  .hero-copy__body,
  .competition-caption {
    display: none;
  }

  html[data-shell="A"] .hero-copy {
    top: 192px;
  }

  html[data-shell="A"] .ignition {
    bottom: 18px;
  }

  html[data-shell="B"] .competition--genesis {
    top: 184px;
  }

  html[data-shell="B"] .competition--pons {
    right: 32px;
    bottom: 96px;
    width: 256px;
  }

  html[data-shell="B"] .competition--pons .competition__name {
    font-size: 30px;
  }

  html[data-shell="B"] .hero-copy {
    top: 74px;
    width: min(600px, 68vw);
  }

  html[data-shell="B"] .hero-copy h1 {
    font-size: 30px;
    white-space: nowrap;
  }

  html[data-shell="B"] .hero-copy__body {
    margin-top: 7px;
    font-size: 12px;
  }

  html[data-shell="B"] .ignition {
    bottom: 16px;
  }

  html[data-shell="B"] .ignition__hardware {
    width: 76px;
    height: 76px;
  }

  html[data-shell="B"] .technology-rail {
    bottom: 12px;
  }

  html[data-shell="C"] .hero-copy {
    top: 110px;
  }
}

@media (max-height: 360px) and (min-width: 721px) {
  html[data-shell="B"] .competition-deck,
  html[data-shell="B"] .technology-rail,
  html[data-shell="B"] .hero-copy__body,
  html[data-shell="B"] .season-axis {
    display: none;
  }

  html[data-shell="B"] .hero-copy {
    top: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .machine__film {
    display: none;
  }

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