@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Yellowtail&family=Teko:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: #f6f7fb;
  background: #07080c;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

:root {
  --font-title: "Teko", sans-serif;
  --font-script: "Pacifico", cursive;
  --font-script-alt: "Yellowtail", cursive;
  --color-bg: #07080c;
  --color-surface: #101218;
  --color-surface-2: #171a22;
  --color-text: #f6f7fb;
  --color-muted: #a7adbb;
  --color-red: #e50914;
  --color-red-dark: #8f0610;
  --color-red-soft: rgba(229, 9, 20, 0.16);
  --color-border: rgba(255, 255, 255, 0.1);
  --transition: 0.25s ease;
}

.container {
  max-width: 1500px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-title);
  line-height: 0.95;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: var(--color-muted);
}

.site-header {
  position: fixed;
  top: 22px;
  left: 0;
  z-index: 99;
  width: 100%;
  pointer-events: none;
}

.navbar {
  min-height: 0;
  padding: 0;
}

.site-header .container {
  pointer-events: auto;
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 12px 14px 12px 28px;
  overflow: visible;
  border-radius: 0px;
  background: rgba(7, 8, 12, 0.82);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(22px);
}

.header-shell::before {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  background: var(--color-red);
  opacity: 0.9;
}

/* .header-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 210px;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
} */

.navbar-brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-style: italic;
  color: var(--color-text);
  font-size: 28px;
  line-height: 1;
  /* text-transform: uppercase; */
}

.navbar-brand span {
  color: var(--color-text);
}

.navbar-brand strong {
  color: var(--color-red);
}

.navbar-brand img {
  width: 220px;
}

.navbar-nav {
  gap: 12px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 400;
  padding: 10px 15px;
  border-radius: 0;
  transition: var(--transition);
}

.nav-link.dropdown-toggle::after {
  display: none;
}

.nav-dropdown-icon {
  font-size: 16px;
  line-height: 1;
  transition:
    transform var(--transition),
    color var(--transition);
}

.nav-link.show .nav-dropdown-icon,
.nav-link[aria-expanded="true"] .nav-dropdown-icon {
  transform: rotate(180deg);
}

.nav-link:hover,
.nav-link:focus,
.nav-link:active,
.nav-link.show,
.nav-link.active,
.nav-link[aria-expanded="true"],
.navbar-nav .nav-link.show,
.navbar-nav .nav-link.active {
  color: #e50914;
  background: none;
}

.header-track {
  position: absolute;
  top: -1px;
  left: 244px;
  align-items: center;
  height: 23px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: rgba(229, 9, 20, 0.18);
  font-family: var(--font-title);
  font-style: italic;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.navbar-toggler {
  position: relative;
  z-index: 3;
  width: 42px;
  height: 44px;
  padding: 0;
  color: var(--color-text);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background var(--transition);
}

.navbar-toggler::before {
  display: none;
}

.navbar-toggler::after {
  display: none;
}

.navbar-toggler span {
  position: absolute;
  right: 5px;
  display: block;
  width: 24px;
  height: 2px;
  margin: 0;
  background: #fff;
  transform-origin: center;
  transition:
    transform 0.25s ease,
    top 0.25s ease,
    width 0.25s ease,
    background var(--transition);
}

.navbar-toggler span:first-child {
  top: 13px;
}

.navbar-toggler span:nth-child(2) {
  top: 21px;
}

.navbar-toggler span:last-child {
  top: 29px;
  width: 24px;
}

.navbar-toggler:hover,
.navbar-toggler[aria-expanded="true"] {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] span {
  width: 24px;
  background: var(--color-red);
}

.navbar-toggler[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.navbar-toggler[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.18);
}

.navbar-collapse {
  position: relative;
  z-index: 2;
}

.mobile-menu-socials,
.mobile-menu-meta,
.mobile-menu-head,
.mobile-menu-overlay {
  display: none;
}

body.mobile-menu-lock {
  overflow: hidden;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 42px;
  gap: 10px;
  padding: 0 13px;
  /* border: 1px solid var(--color-border);
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.04); */
}

.language-switch span {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.22);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 40px;
  color: var(--color-muted);
  border-radius: 0px;
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.language-switch a.active,
.language-switch a:hover {
  color: #fff;
  background: transparent;
}

.language-switch a.active {
  color: var(--color-red);
}

.ticket-cta {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 154px;
  min-height: 54px;
  padding: 10px 18px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(229, 9, 20, 0.72);
  border-radius: 0px;
  background: #e50914;
  transition: var(--transition);
}

.ticket-cta::before {
  content: "";
  position: absolute;
  top: 9px;
  right: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50% 50% 50% 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.58);
  animation: ticketPulse 1.35s ease-out infinite;
}

@keyframes ticketPulse {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.58);
  }

  70% {
    opacity: 0.78;
    box-shadow: 0 0 0 9px rgba(255, 255, 255, 0);
  }

  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.ticket-cta span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.ticket-cta strong {
  margin-top: 5px;
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.ticket-cta:hover {
  color: #fff;
  background: #b70710;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   Nav Dropdown — mega menu
═══════════════════════════════════════════════════════════ */

/* Caret */
.nav-link.dropdown-toggle::after {
  display: none;
}
.nav-item.dropdown:hover .nav-link.dropdown-toggle::after,
.nav-item.dropdown .nav-link.dropdown-toggle[aria-expanded="true"]::after {
  transform: none;
}

/* Panel */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: row;
  gap: 0;
  min-width: 240px;
  padding: 6px;
  border-top: 2px solid #e50914;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: rgba(7, 8, 12, 0.97);
  backdrop-filter: blur(24px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.62);
  z-index: 200;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

/* Desktop: show on hover */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .nav-dropdown,
  .nav-item.dropdown:focus-within > .nav-dropdown {
    display: flex;
  }
}

/* Bootstrap .show (mobile click) */
.nav-dropdown.show {
  display: flex !important;
}

/* Column */
.nav-dropdown-col {
  display: flex;
  flex-direction: column;
  min-width: 230px;
  padding: 6px;
}

.nav-dropdown-col + .nav-dropdown-col {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

/* Section label */
.nav-dropdown-label {
  display: block;
  padding: 8px 12px 8px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 9px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Item */
.nav-dropdown-item {
  display: block;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav-dropdown-item i {
  display: none;
}
.nav-dropdown-item strong {
  display: inline;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-weight: inherit;
  line-height: inherit;
  text-transform: none;
}
.nav-dropdown-item em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.45;
}
.nav-dropdown-item:hover {
  background: none;
  border-left-color: transparent;
  color: #e50914;
}
.nav-dropdown-item:hover em {
  color: rgba(229, 9, 20, 0.55);
}

/* Profile button */
.nav-profile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.nav-profile:hover {
  color: #fff;
}

.btn-main,
.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 0px;
  font-size: 13px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-main {
  color: #fff;
  background: var(--color-red);
}

.btn-main:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-soft {
  color: #fff;
  background: rgba(7, 8, 12, 0.68);
  backdrop-filter: blur(14px);
}

.btn-soft:hover {
  color: #fff;
  border-color: var(--color-red);
  background: rgba(229, 9, 20, 0.28);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 188px 0 86px;
  isolation: isolate;
  background: var(--color-bg);
  overflow: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(7, 8, 12, 0.056) 0%,
      rgba(7, 8, 12, 0.138) 58%,
      #07080c 100%
    ),
    rgba(7, 8, 12, 0.22);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("../img/hero-cover.png") center / cover no-repeat;
  opacity: 1;
  transition: opacity 0.45s ease;
}

.hero-section.video-ready::after {
  opacity: 0;
}

.hero-section > .container::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -310px;
  z-index: -1;
  width: 100vw;
  height: 360px;
  background: linear-gradient(
    180deg,
    rgba(7, 8, 12, 0) 0%,
    rgba(7, 8, 12, 0.88) 38%,
    #07080c 78%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-f1-watermark {
  position: absolute;
  right: 50%;
  top: 50%;
  z-index: 1;
  width: min(58vw, 760px);
  opacity: 0.16;
  filter: saturate(1.15);
  transform: translate(50%, -38%);
  pointer-events: none;
}

.hero-status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-status span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(7, 8, 12, 0.58);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-status .live-dot {
  position: relative;
  min-height: 12px;
  width: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 0 8px rgba(229, 9, 20, 0.16);
  animation: livePulse 1.4s ease-out infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.44);
  }

  100% {
    box-shadow: 0 0 0 14px rgba(229, 9, 20, 0);
  }
}

.section-kicker {
  display: none;
  margin-bottom: 16px;
  color: var(--color-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lockup {
  display: grid;
  justify-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #fff;
  text-transform: uppercase;
}

.hero-lockup span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-lockup img {
  width: 180px;
  max-width: 46vw;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.42));
}

.hero-lockup strong {
  font-family: var(--font-script-alt);
  font-size: clamp(34px, 4.4vw, 62px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.48);
}

.hero-content h1 {
  max-width: 1060px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(68px, 8.8vw, 132px);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.8;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
}

.hero-content h1 span,
.hero-content h1 strong {
  display: block;
}

.hero-content h1 strong {
  color: var(--color-red);
  font-weight: 700;
}

.hero-content p {
  max-width: 700px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 400;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.countdown-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  max-width: 820px;
  margin: 34px auto 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid var(--color-red);
  border-radius: 0;
  background: rgba(5, 6, 10, 0.25);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px);
}

.countdown-label {
  min-width: 220px;
  height: 100%;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
}

.countdown-label span {
  display: block;
  color: var(--color-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.countdown-label strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.countdown-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  backdrop-filter: none;
  gap: 0;
}

.countdown-item {
  position: relative;
  min-height: 98px;
  padding: 19px 18px 17px;
  border: 0;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.countdown-item::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.countdown-item:first-child::before {
  display: none;
}

.countdown-item::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  height: 2px;
  background: rgba(229, 9, 20, 0.72);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: var(--transition);
}

.countdown-item:hover::after {
  transform: scaleX(1);
}

.countdown-item strong {
  display: block;
  font-family: var(--font-title);
  color: #fff;
  font-size: 54px;
  font-style: italic;
  font-weight: 700;
  line-height: 0.86;
}

.countdown-item span {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.experience-jump {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  left: 50%;
  color: #fff;
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.experience-jump::before {
  content: "";
  width: 52px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.experience-jump span {
  position: relative;
}

.experience-jump span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: var(--transition);
}

.experience-jump small {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 32px;
  border-radius: 10rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.experience-jump small::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 8px;
  background: var(--color-red);
  transform: translateX(-50%);
  animation: jumpMarker 1.25s ease-in-out infinite;
}

.experience-jump:hover {
  color: #fff;
}

.experience-jump:hover span::after {
  transform: scaleX(1);
}

@keyframes jumpMarker {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.4;
  }

  50% {
    transform: translate(-50%, 11px);
    opacity: 1;
  }
}

.weekend-builder {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  padding: 132px 0 90px;
  color: var(--color-text);
  background: #07080c;
}

.weekend-builder::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 360px;
  opacity: 1;
  background: linear-gradient(180deg, #07080c 0%, rgba(7, 8, 12, 0) 100%);
  pointer-events: none;
}

.weekend-builder::after {
  content: "";
  position: absolute;
  top: 310px;
  left: 50%;
  width: 1px;
  height: 300px;
  border-left: 1px dashed rgba(229, 9, 20, 0.34);
  transform: rotate(18deg);
  pointer-events: none;
}

.builder-card {
  position: relative;
  z-index: 2;
  min-height: 372px;
  margin: 0 auto;
  padding: 82px 58px 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: rgba(16, 18, 24, 0.78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.builder-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  background-image:
    linear-gradient(45deg, #fff 25%, transparent 25%),
    linear-gradient(-45deg, #fff 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #fff 75%),
    linear-gradient(-45deg, transparent 75%, #fff 75%);
  background-position:
    0 0,
    0 12px,
    12px -12px,
    -12px 0;
  background-size: 24px 24px;
  mask-image: linear-gradient(135deg, #000, transparent 72%);
  pointer-events: none;
}

.builder-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 45%);
  pointer-events: none;
}

.builder-meta,
.builder-panel,
.builder-progress {
  position: relative;
  z-index: 2;
}

.builder-meta {
  position: absolute;
  top: 24px;
  right: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.builder-meta strong {
  color: var(--color-red);
  font-weight: 900;
}

.builder-progress {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.builder-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--color-red);
  transition: width 0.45s ease;
}

.builder-panel {
  display: none;
}

.builder-panel.is-active {
  display: block;
  animation: builderPanel 0.36s ease both;
}

@keyframes builderPanel {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.builder-heading {
  max-width: 620px;
  margin: 0 auto 36px;
  text-align: center;
}

.builder-heading h2,
.builder-result h2 {
  color: #fff;
  font-size: clamp(42px, 4.7vw, 66px);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.builder-heading p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 300;
}

.builder-heading p::before,
.builder-heading p::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  margin: 0 10px 4px;
  background: rgba(229, 9, 20, 0.65);
}

.builder-options {
  display: grid;
  gap: 18px;
}

.builder-options.two-cols {
  grid-template-columns: repeat(2, 1fr);
}

.builder-options.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.builder-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 86px;
  gap: 16px;
  padding: 18px 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: rgba(7, 8, 12, 0.58);
  text-align: left;
  transition: var(--transition);
}

.builder-option::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: var(--transition);
}

.builder-option.stack {
  grid-template-columns: 1fr;
  align-items: start;
  min-height: 150px;
}

.builder-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  font-size: 21px;
  transition: var(--transition);
}

.builder-option strong {
  font-size: 15px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.builder-option em {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.45;
}

.builder-option small {
  width: 18px;
  height: 18px;
  border-top: 2px solid rgba(255, 255, 255, 0.72);
  border-right: 2px solid rgba(255, 255, 255, 0.72);
  transform: rotate(45deg);
}

.builder-option:hover,
.builder-option.is-selected {
  color: #fff;
  border-color: var(--color-red);
  background: rgba(229, 9, 20, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(229, 9, 20, 0.12);
}

.builder-option:hover::after,
.builder-option.is-selected::after {
  background: var(--color-red);
  transform: scaleX(1);
}

.builder-option:hover span,
.builder-option.is-selected span {
  color: #fff;
  border-color: var(--color-red);
  background: var(--color-red);
}

.builder-option:hover small,
.builder-option.is-selected small {
  border-color: #fff;
}

.builder-option:hover em,
.builder-option.is-selected em {
  color: rgba(255, 255, 255, 0.74);
}

.weekend-builder-studio {
  margin-top: 0;
  padding: 112px 0;
  background: transparent;
}

.weekend-builder-studio::before,
.weekend-builder-studio::after {
  display: none;
}

.builder-studio {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.08fr);
  min-height: 680px;
  overflow: hidden;
  background: transparent;
}

.builder-studio-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.builder-studio-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 12, 0.12);
}

.builder-studio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02) brightness(0.8);
}

.scroll-gallery {
  position: relative;
  height: 210vh;
  margin: 0 calc(50% - 50vw);
  background: #07080c;
}

.scroll-gallery-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 max(24px, calc((100vw - 1500px) / 2));
}

.scroll-gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.scroll-gallery-track figure {
  position: relative;
  width: clamp(270px, 31vw, 470px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #101218;
}

.scroll-gallery-track figure::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(7, 8, 12, 0), rgba(7, 8, 12, 0.58));
  pointer-events: none;
}

.scroll-gallery-track figure:nth-child(even) {
  aspect-ratio: 4 / 5;
  margin-top: 0;
}

.scroll-gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(0.82);
}

.scroll-gallery-track figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  max-width: calc(100% - 36px);
  padding: 0;
  color: #fff;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
}

.gallery-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.82);
}

.gallery-pin i {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1;
}

.gallery-caption-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.gallery-caption-text small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-caption-text strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.builder-studio-content {
  position: relative;
  display: grid;
  align-items: center;
  padding: clamp(42px, 5vw, 72px);
}

.weekend-builder-studio .builder-progress {
  position: absolute;
  top: 0;
  right: clamp(42px, 5vw, 72px);
  left: clamp(42px, 5vw, 72px);
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.weekend-builder-studio .builder-progress span {
  background: var(--color-red);
}

.weekend-builder-studio .builder-panel {
  width: 100%;
}

.weekend-builder-studio .builder-panel.is-active {
  animation: builderPanel 0.32s ease both;
}

.weekend-builder-studio .builder-heading {
  max-width: 600px;
  margin: 0 0 34px;
  text-align: left;
}

.weekend-builder-studio .builder-heading h2,
.weekend-builder-studio .builder-result h2 {
  color: #fff;
  font-size: clamp(46px, 5.8vw, 78px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.86;
  text-transform: uppercase;
}

.weekend-builder-studio .builder-heading p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 300;
}

.weekend-builder-studio .builder-heading p::before,
.weekend-builder-studio .builder-heading p::after {
  display: none;
}

.weekend-builder-studio .builder-options {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.weekend-builder-studio .builder-options.two-cols,
.weekend-builder-studio .builder-options.three-cols {
  grid-template-columns: 1fr;
}

.weekend-builder-studio .builder-option {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  background: transparent;
  text-align: left;
  box-shadow: none;
}

.weekend-builder-studio .builder-option::after {
  display: none;
}

.weekend-builder-studio .builder-option span {
  display: none;
}

.weekend-builder-studio .builder-option strong {
  color: #fff;
  font-family: var(--font-title);
  font-size: clamp(30px, 3vw, 42px);
  font-style: italic;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
}

.weekend-builder-studio .builder-option em {
  max-width: 430px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.45;
}

.weekend-builder-studio .builder-option small {
  width: 28px;
  height: 28px;
  border: 0;
  transform: none;
}

.weekend-builder-studio .builder-option small::before {
  content: "\ea6c";
  color: rgba(255, 255, 255, 0.6);
  font-family: remixicon;
  font-size: 26px;
  font-style: normal;
}

.weekend-builder-studio .builder-option:hover,
.weekend-builder-studio .builder-option.is-selected {
  color: #fff;
  background: transparent;
  transform: none;
  box-shadow: none;
}

.weekend-builder-studio .builder-option:hover strong,
.weekend-builder-studio .builder-option.is-selected strong,
.weekend-builder-studio .builder-option:hover small::before,
.weekend-builder-studio .builder-option.is-selected small::before {
  color: var(--color-red);
}

.weekend-builder-studio .builder-loading {
  min-height: 0;
  text-align: left;
}

.weekend-builder-studio .builder-loading i {
  display: none;
}

.weekend-builder-studio .builder-result {
  min-height: 0;
  text-align: left;
}

.weekend-builder-studio .result-badge {
  margin-bottom: 22px;
  padding: 0;
  border: 0;
  color: var(--color-red);
}

.studio-result-list {
  display: grid;
  gap: 0;
  margin: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.studio-result-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) 1fr;
  gap: 18px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.studio-result-list span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-result-list strong {
  color: #fff;
  font-family: var(--font-title);
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
}

.weekend-builder-studio .result-actions {
  justify-content: flex-start;
  gap: 10px;
}

.builder-loading,
.builder-result {
  min-height: 245px;
  text-align: center;
}

.builder-loading {
  display: none;
  place-items: center;
  align-content: center;
}

.builder-loading.is-active {
  display: grid;
}

.builder-loading i {
  margin-bottom: 24px;
  color: var(--color-red);
  font-size: 44px;
  animation: telemetryBolt 0.8s ease-in-out infinite alternate;
}

@keyframes telemetryBolt {
  to {
    transform: translateY(-5px) rotate(-8deg);
  }
}

.builder-loading h2 {
  color: #fff;
  font-size: clamp(32px, 3.4vw, 46px);
  font-style: italic;
  text-transform: uppercase;
}

.builder-loading p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.result-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--color-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
  max-width: 620px;
  margin: 28px auto 34px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: rgba(7, 8, 12, 0.48);
  text-align: left;
}

.itinerary-grid div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
}

.itinerary-grid i {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
}

.itinerary-grid span {
  color: var(--color-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.itinerary-grid strong {
  margin-top: 3px;
  color: #fff;
  font-size: 14px;
  font-style: italic;
  line-height: 1.2;
}

.result-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.builder-reset,
.builder-save {
  min-height: 44px;
  padding: 0 24px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.builder-save {
  color: #fff;
  border-radius: 0;
  background: var(--color-red);
  box-shadow: 0 16px 32px rgba(229, 9, 20, 0.16);
}

.builder-title {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 94px auto 0;
  text-align: center;
}

.builder-title h2 {
  color: #fff;
  font-size: clamp(52px, 6vw, 82px);
  font-style: italic;
  text-transform: uppercase;
}

.builder-title p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.save-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 8, 12, 0.72);
  backdrop-filter: blur(10px);
}

.save-modal.is-open {
  display: flex;
}

.save-dialog {
  position: relative;
  width: min(100%, 424px);
  padding: 38px 36px 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid var(--color-red);
  border-radius: 0;
  background: rgba(16, 18, 24, 0.95);
  color: #fff;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.save-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.save-dialog > strong {
  color: #fff;
  font-size: 13px;
  font-style: italic;
  text-transform: uppercase;
}

.save-dialog > strong span {
  color: var(--color-red);
}

.save-logo {
  display: block;
  width: 176px;
  max-width: 72%;
  margin: 0 auto;
}

.save-dialog h2 {
  margin-top: 14px;
  color: #fff;
  font-size: 36px;
  font-style: italic;
  text-transform: uppercase;
}

.save-dialog p {
  margin: 4px 0 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.save-dialog label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin-bottom: 12px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  color: #fff;
  background: rgba(7, 8, 12, 0.55);
}

.save-dialog input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.save-dialog input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.save-dialog button:last-child {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: var(--color-red);
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-padding {
  padding: 92px 0;
}

.section-dark {
  background: var(--color-surface);
}

#tickets.section-dark {
  background: #07080c;
}

.race-weekend-screen {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  margin: -92px calc(50% - 50vw);
  padding: 102px max(24px, calc((100vw - 1500px) / 2)) 104px;
  color: #f6f7fb;
  background:
    linear-gradient(180deg, rgba(7, 8, 12, 0.96) 0%, rgba(7, 8, 12, 0.9) 100%),
    radial-gradient(circle at 82% 18%, rgba(229, 9, 20, 0.2), transparent 26%),
    radial-gradient(
      circle at 8% 78%,
      rgba(255, 255, 255, 0.08),
      transparent 22%
    ),
    #07080c;
}

.race-weekend-screen::before {
  top: 122px;
  right: -70px;
}

.race-weekend-screen::after {
  bottom: -170px;
  left: -210px;
}

.race-planner-heading,
.race-day-tabs,
.race-filter-bar,
.race-planner-grid {
  position: relative;
  z-index: 2;
}

.race-planner-heading {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.race-planner-heading span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-red);
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.race-planner-heading h2 {
  color: #fff;
  font-size: clamp(54px, 5.8vw, 88px);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.race-planner-heading p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 500;
}

.race-day-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.race-day-tabs button {
  min-width: 96px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.045);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.race-day-tabs button:hover,
.race-day-tabs button.is-active {
  color: #fff;
  border-color: var(--color-red);
  background: var(--color-red);
  transform: translateY(-2px);
}

.race-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 34px;
}

.race-filter-bar button {
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.035);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.race-filter-bar button:hover,
.race-filter-bar button.is-active {
  color: #fff;
  border-color: rgba(229, 9, 20, 0.78);
  background: rgba(229, 9, 20, 0.2);
}

.race-planner-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(320px, 0.8fr);
  gap: 28px;
  max-width: 1420px;
  margin: 0 auto;
  align-items: stretch;
}

.race-map-panel,
.race-plan-panel {
  /* border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0; */
  /* background: rgba(16, 18, 24, 0.76);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38); */
  backdrop-filter: blur(18px);
}

.race-map-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.race-google-map,
.race-leaflet-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.race-leaflet-map {
  z-index: 0;
  background: #101218;
}

.race-leaflet-map .leaflet-tile {
  filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.58);
}

.race-leaflet-map .leaflet-control-attribution {
  color: rgba(255, 255, 255, 0.58);
  background: rgba(7, 8, 12, 0.72);
  font-size: 10px;
}

.race-leaflet-map .leaflet-control-attribution a {
  color: rgba(255, 255, 255, 0.76);
}

.race-leaflet-map .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(7, 8, 12, 0.8);
}

.race-leaflet-map .leaflet-control-zoom a {
  width: 34px;
  height: 34px;
  border: 0;
  color: #fff;
  background: rgba(7, 8, 12, 0.84);
  line-height: 34px;
}

.race-map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.56), transparent 42%),
    linear-gradient(180deg, rgba(7, 8, 12, 0.18), rgba(7, 8, 12, 0.44));
  pointer-events: none;
}

.race-map-loading {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  background: rgba(7, 8, 12, 0.72);
  color: #fff;
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.race-map-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.race-map-loading i {
  color: var(--color-red);
  font-size: 34px;
  animation: telemetryBolt 0.8s ease-in-out infinite alternate;
}

.race-map-art {
  position: absolute;
  display: none;
  inset: 42px 46px;
  width: calc(100% - 92px);
  height: calc(100% - 84px);
}

.race-map-shadow,
.race-map-line {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.race-map-shadow {
  stroke: rgba(16, 21, 36, 0.2);
  stroke-width: 1;
}

.race-map-line {
  stroke: #101524;
  stroke-width: 4;
  stroke-linejoin: round;
}

.race-map-point {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(7, 8, 12, 0.82);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
  font-size: 18px;
  transition: var(--transition);
}

.race-map-point:hover,
.race-map-point.is-active {
  color: #fff;
  border-color: var(--color-red);
  background: var(--color-red);
  transform: scale(1.08);
}

.race-map-point.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.74);
}

.race-marker-icon {
  background: transparent;
  border: 0;
}

.race-marker-icon .race-map-point {
  width: 100%;
  height: 100%;
}

.race-map-legend {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 8, 12, 0.78);
  color: #fff;
  backdrop-filter: blur(14px);
}

.race-map-legend span,
.race-map-legend strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.race-map-legend strong {
  color: var(--color-red);
}

.race-map-card {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 4;
  display: none;
  width: min(330px, calc(100% - 56px));
  padding: 28px 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--color-red);
  border-radius: 0;
  background: rgba(7, 8, 12, 0.92);
  color: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.race-map-card.is-open {
  display: block;
  animation: builderPanel 0.24s ease both;
}

.race-card-close {
  position: absolute;
  top: 26px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.race-map-card span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(229, 9, 20, 0.65);
  border-radius: 0;
  color: var(--color-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.race-map-card h3 {
  max-width: 210px;
  margin-top: 24px;
  color: #fff;
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.race-map-card strong {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.race-map-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.race-map-card small {
  display: block;
  margin-top: 14px;
  color: var(--color-red);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.race-map-card > button:last-child {
  width: 100%;
  min-height: 44px;
  margin-top: 22px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: var(--color-red);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.race-plan-panel {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 34px 28px 28px;
  /* background:
    linear-gradient(180deg, rgba(229, 9, 20, 0.08), transparent 36%),
    rgba(7, 8, 12, 0.72); */
}

.race-plan-panel h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.race-plan-panel h3 i {
  color: var(--color-red);
  font-size: 22px;
  font-weight: 400;
}

.race-plan-panel > p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.race-plan-rule {
  height: 1px;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.16);
}

.race-plan-empty {
  display: grid;
  place-items: center;
  align-content: center;
  flex: 1;
  min-height: 180px;
  text-align: center;
}

.race-plan-empty.is-hidden {
  display: none;
}

.race-plan-empty i {
  color: var(--color-red);
  font-size: 34px;
}

.race-plan-empty p {
  max-width: 230px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.35;
}

.race-plan-list {
  display: grid;
  gap: 12px;
  flex: 1;
  align-content: start;
}

.race-plan-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 900;
}

.race-plan-item span {
  display: grid;
  gap: 3px;
}

.race-plan-item small {
  color: var(--color-red);
  font-size: 10px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.race-plan-item button {
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-size: 18px;
  line-height: 1;
}

.race-plan-save {
  min-height: 52px;
  margin-top: 24px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: var(--color-red);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gateway-section {
  position: relative;
  overflow: hidden;
  margin: -92px calc(50% - 50vw);
  padding: 98px max(24px, calc((100vw - 1500px) / 2)) 104px;
  color: #fff;
  background:
    linear-gradient(180deg, #07080c 0%, rgba(16, 18, 24, 0.96) 100%),
    radial-gradient(circle at 78% 22%, rgba(229, 9, 20, 0.2), transparent 26%);
}

.gateway-heading,
.gateway-grid {
  position: relative;
  z-index: 2;
}

.gateway-heading {
  max-width: 880px;
  margin: 0 auto 66px;
  text-align: center;
}

.gateway-heading span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-red);
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gateway-heading h2 {
  color: #fff;
  font-size: clamp(66px, 8vw, 128px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.86;
  text-transform: uppercase;
}

.gateway-heading p {
  max-width: 700px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 300;
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0 auto;
}

.gateway-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 34px 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(7, 8, 12, 0.22) 100%
    ),
    rgba(16, 18, 24, 0.18);
  transition: var(--transition);
}

.gateway-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 8, 12, 0) 0%,
      rgba(7, 8, 12, 0.1) 42%,
      rgba(7, 8, 12, 0.58) 100%
    ),
    var(--gateway-bg) var(--gateway-pos, center) / cover no-repeat;
  opacity: 0.9;
  filter: saturate(1.08) contrast(1.04) brightness(1.08);
  transform: scale(1.02);
  transition: var(--transition);
  pointer-events: none;
}

.gateway-card::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 28px;
  width: 72px;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0.22);
  transform-origin: right;
  transition: var(--transition);
}

.gateway-card:nth-child(1) {
  --gateway-bg: url("../img/4.webp");
  --gateway-pos: center;
}

.gateway-card:nth-child(2) {
  --gateway-bg: url("../img/6.png");
  --gateway-pos: center;
}

.gateway-card:nth-child(3) {
  --gateway-bg: url("../img/7.png");
  --gateway-pos: center;
}

.gateway-card:nth-child(4) {
  --gateway-bg: url("../img/8.png");
  --gateway-pos: center;
}

.gateway-card h3,
.gateway-card p {
  position: relative;
  z-index: 2;
}

.gateway-card h3 {
  color: #fff;
  font-size: 38px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.gateway-card p {
  max-width: 230px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
}

/* .gateway-card:hover {
  color: #fff;
  border-color: rgba(229, 9, 20, 0.7);
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
} */

.gateway-card:hover::before {
  opacity: 1;
  transform: scale(1.08);
}

.gateway-card:hover::after {
  transform: scaleX(1);
}

.arrival-guide {
  position: relative;
  overflow: hidden;
  margin: -92px calc(50% - 50vw);
  padding: 96px max(24px, calc((100vw - 1500px) / 2)) 100px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(16, 18, 24, 0.98) 0%, #07080c 100%),
    radial-gradient(circle at 18% 18%, rgba(229, 9, 20, 0.18), transparent 28%);
}

.arrival-story {
  position: relative;
  z-index: 2;
}

.arrival-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: stretch;
  min-height: 680px;
  width: 100vw;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 0;
  border-right: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.2), rgba(7, 8, 12, 0.96) 61%),
    #05060a;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.44);
}

.arrival-story::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-red),
    transparent
  );
  opacity: 0.75;
  pointer-events: none;
}

.arrival-visual {
  position: relative;
  min-height: 680px;
  background:
    linear-gradient(
      90deg,
      rgba(7, 8, 12, 0.12) 0%,
      rgba(7, 8, 12, 0.11) 48%,
      rgba(7, 8, 12, 0.5) 100%
    ),
    linear-gradient(180deg, rgba(7, 8, 12, 0) 48%, #07080c 100%),
    url("../img/bya.png") center / cover no-repeat;
}

.arrival-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.24), transparent 34%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.055) 0,
      rgba(255, 255, 255, 0.055) 1px,
      transparent 1px,
      transparent 72px
    );
  mix-blend-mode: screen;
  opacity: 0.35;
  pointer-events: none;
}

.arrival-copy {
  position: absolute;
  left: max(36px, calc((100vw - 1500px) / 2));
  bottom: 54px;
  z-index: 4;
  max-width: 610px;
  padding-right: 24px;
}

.arrival-copy span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-red);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.arrival-copy h3 {
  color: #fff;
  font-size: clamp(48px, 5.6vw, 92px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.86;
  text-transform: uppercase;
}

.arrival-copy p {
  max-width: 540px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.arrival-steps {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: end;
  gap: 0;
  padding: 120px max(36px, calc((100vw - 1500px) / 2)) 48px 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 44%),
    rgba(5, 6, 10, 0.34);
}

.arrival-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: start;
  gap: 24px;
  min-height: 124px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  transition: var(--transition);
}

.arrival-steps article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.arrival-steps article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 124px;
  height: 1px;
  background: var(--color-red);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: var(--transition);
}

.arrival-steps article:hover {
  background: linear-gradient(90deg, rgba(229, 9, 20, 0.12), transparent 62%);
}

.arrival-steps article:hover::before {
  transform: scaleX(1);
}

.arrival-steps article > span {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: var(--color-red);
  font-family: var(--font-title);
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.arrival-steps h4 {
  color: #fff;
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.arrival-steps ul {
  display: grid;
  gap: 7px;
  max-width: 500px;
  margin-top: 11px;
}

.arrival-steps li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.arrival-steps li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--color-red);
}

.track-logistics {
  position: relative;
  overflow: hidden;
  margin: -92px calc(50% - 50vw);
  min-height: 1040px;
  padding: 90px max(24px, calc((100vw - 1500px) / 2)) 0;
  color: #fff;
  background: #07080c;
}

.track-heading,
.track-grid {
  position: relative;
  z-index: 2;
}

.track-heading {
  z-index: 4;
}

.track-grid {
  position: static;
  z-index: auto;
}

.track-heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.track-heading span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-red);
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.track-heading h2 {
  color: #fff;
  font-size: clamp(62px, 7.4vw, 112px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
}

.track-heading p {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 300;
}

.track-grid {
  display: block;
  max-width: none;
  margin: 0 auto;
}

.track-console {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
  pointer-events: none;
}

.track-route-panel,
.track-options,
.track-estimate {
  pointer-events: auto;
}

.track-route-panel {
  position: absolute;
  top: 24px;
  left: max(56px, calc((100vw - 1500px) / 2));
  width: min(610px, calc(100vw - 112px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-content: start;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  transform: none;
}

.track-map-card {
  position: absolute;
  top: 430px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #05060a;
  box-shadow: none;
}

.track-live-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #181a1f;
}

.track-live-map .leaflet-tile {
  filter: grayscale(1) invert(0.88) contrast(0.82) brightness(0.54);
}

.track-live-map .leaflet-control-attribution {
  color: rgba(255, 255, 255, 0.58);
  background: rgba(7, 8, 12, 0.72);
  font-size: 10px;
}

.track-live-map .leaflet-control-attribution a {
  color: rgba(255, 255, 255, 0.76);
}

.track-live-map .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(7, 8, 12, 0.8);
}

.track-live-map .leaflet-control-zoom a {
  width: 34px;
  height: 34px;
  border: 0;
  color: #fff;
  background: rgba(7, 8, 12, 0.84);
  line-height: 34px;
}

.track-destination-icon {
  border: 0;
  background: transparent;
}

.track-destination-icon span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-red);
  font-size: 42px;
  line-height: 1;
  text-shadow: 0 16px 28px rgba(0, 0, 0, 0.42);
}

.track-destination-icon i {
  display: block;
}

.track-search {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: none;
  width: 100%;
  min-height: 50px;
  margin-top: 0;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(7, 8, 12, 0.64);
  backdrop-filter: blur(12px);
}

.track-search i {
  color: rgba(255, 255, 255, 0.72);
}

.track-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 12px;
  color: #fff;
  background: transparent;
  font-size: 13px;
  font-weight: 400;
}

.track-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.track-search button {
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.track-suggestions {
  position: absolute;
  top: 58px;
  left: 0;
  z-index: 6;
  display: none;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 8, 12, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.track-suggestions span {
  display: block;
  padding: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 300;
}

.track-suggestions.is-open {
  display: block;
}

.track-suggestions button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.track-suggestions button:hover,
.track-suggestions button.is-active {
  color: #fff;
  background: rgba(229, 9, 20, 0.22);
}

.track-estimate {
  position: absolute;
  z-index: 1;
  left: max(24px, calc((100vw - 1500px) / 2));
  bottom: 24px;
  min-height: 58px;
  width: min(390px, calc(100vw - 48px));
  padding: 11px 14px;
  border-left: 2px solid var(--track-color, var(--color-red));
  background: rgba(7, 8, 12, 0.62);
  backdrop-filter: blur(12px);
}

.track-estimate span {
  display: block;
  color: var(--color-red);
  font-size: 10px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.track-estimate p {
  margin-top: 5px;
  color: #fff;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
}

.track-options {
  position: absolute;
  top: auto;
  right: max(24px, calc((100vw - 1500px) / 2));
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 8px;
  width: min(700px, calc(100vw - 500px));
}

.track-option {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: #fff;
  background: rgba(7, 8, 12, 0.62);
  text-align: left;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.track-option + .track-option {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.track-option strong {
  display: block;
  font-family: var(--font-title);
  font-size: 18px;
  font-style: italic;
  line-height: 0.95;
  text-transform: uppercase;
}

.track-option small {
  display: none;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.35;
}

.track-option em {
  color: var(--track-color, var(--color-red));
  font-size: 9px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: auto;
}

.track-location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  background: rgba(7, 8, 12, 0.64);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.track-location-btn:hover,
.track-location-btn.is-loading {
  border-color: var(--track-color, var(--color-red));
  background: rgba(229, 9, 20, 0.18);
}

.track-option:hover,
.track-option.is-active {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.26);
}

.track-logistics[data-mode="shuttle"] {
  --track-color: #e50914;
}

.track-logistics[data-mode="metro"] {
  --track-color: #3e6df6;
}

.track-logistics[data-mode="vip"] {
  --track-color: #f3b51b;
}

.global-proof-section {
  position: relative;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  padding: 104px max(24px, calc((100vw - 1500px) / 2)) 98px;
  color: #fff;
  /* background:
    linear-gradient(180deg, rgba(16, 18, 24, 0.98) 0%, #07080c 100%),
    radial-gradient(circle at 82% 18%, rgba(229, 9, 20, 0.16), transparent 30%); */
}

.global-proof-section::before {
  display: none;
}

.global-proof-track {
  display: none;
}

.global-proof-track::after {
  content: "";
  position: absolute;
  display: none;
}

.global-proof-heading,
.proof-experience,
.proof-community-note,
.proof-actions {
  position: relative;
  z-index: 2;
}

.global-proof-heading {
  max-width: 790px;
  margin: 0 auto 58px;
  text-align: center;
}

.global-proof-heading span {
  display: inline-flex;
  color: var(--color-red);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.global-proof-heading h2 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(58px, 7.2vw, 106px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.86;
  text-transform: uppercase;
}

.global-proof-heading p {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
}

.proof-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: stretch;
  gap: 22px;
  margin: 0 auto;
}

.proof-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  /* border: 1px solid rgba(255, 255, 255, 0.14); */
  background:
    linear-gradient(
      180deg,
      rgba(7, 8, 12, 0.06) 0%,
      rgba(7, 8, 12, 0.511) 100%
    ),
    url("../img/istanbul/1137.jpg") center / cover no-repeat,
    #101218;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  border-radius: 5px;
}

.proof-visual::before {
  display: none;
}

.proof-visual-main {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  max-width: 520px;
}

.proof-visual-main span,
.proof-visual-stat span {
  display: block;
  color: #fff;
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-visual-main strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-family: var(--font-title);
  font-size: clamp(20px, 1.72vw, 31px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.proof-visual-stat {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 8, 12, 0.78);
  backdrop-filter: blur(14px);
}

.proof-visual-stat strong {
  display: block;
  color: #fff;
  font-family: var(--font-title);
  font-size: 62px;
  font-style: italic;
  line-height: 0.82;
}

.proof-visual-stat span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.3;
}

.proof-guide-list {
  display: grid;
  align-content: stretch;
}

.proof-guide-list article {
  display: grid;
  grid-template-columns: 74px 1fr;
  min-height: 155px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-guide-list article:last-child {
  border-bottom: none;
}

.proof-step-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--color-red);
  font-size: 22px;
}

.proof-guide-list h3 {
  color: #fff;
  font-size: 34px;
  font-style: italic;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.proof-guide-list p {
  max-width: 520px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
}

.proof-community-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  margin: 18px auto 0;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid var(--color-red);
  background: rgba(7, 8, 12, 0.72);
}

.proof-community-note strong {
  color: #fff;
  font-family: var(--font-title);
  font-size: 30px;
  font-style: italic;
  line-height: 0.95;
  text-transform: uppercase;
}

.proof-community-note p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
}

.proof-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.proof-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 0;
  color: #fff;
  background: var(--color-red);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crowd-section {
  position: relative;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  padding: 104px max(24px, calc((100vw - 1640px) / 2)) 108px;
  color: #fff;
  /* background:
    linear-gradient(180deg, #07080c 0%, rgba(16, 18, 24, 0.98) 100%),
    radial-gradient(circle at 26% 26%, rgba(229, 9, 20, 0.16), transparent 28%); */
}

.crowd-layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.58fr) minmax(720px, 1.42fr);
  align-items: flex-start;
  gap: clamp(44px, 5vw, 92px);
  max-width: 1480px;
  margin: 0 auto;
}

.crowd-copy {
  position: relative;
}

.crowd-copy > span,
.crowd-back,
.crowd-global-stat span,
.crowd-pick-type,
.crowd-detail-status {
  color: var(--color-red);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.crowd-copy h2 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(58px, 6.8vw, 104px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.86;
  text-transform: uppercase;
}

.crowd-copy p {
  max-width: 460px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.crowd-back {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: transparent;
}

.crowd-back.is-visible {
  display: inline-flex;
}

.crowd-global-stat {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.crowd-global-stat strong {
  color: #fff;
  font-family: var(--font-title);
  font-size: 42px;
  font-style: italic;
  line-height: 0.85;
}

.crowd-global-stat span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0;
  border: 0;
  color: var(--color-red);
}

.crowd-picks {
  display: none;
  margin-top: 28px;
}

.crowd-picks.is-visible {
  display: grid;
  gap: 12px;
}

.crowd-pick {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(7, 8, 12, 0.62);
  text-align: left;
  transition: var(--transition);
}

.crowd-pick:hover,
.crowd-pick.is-active {
  border-color: var(--color-red);
  background: rgba(229, 9, 20, 0.14);
}

.crowd-pick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 18px;
}

.crowd-pick strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 15px;
  font-style: italic;
  font-weight: 900;
}

.crowd-pick i:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.crowd-detail {
  margin-top: 8px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid var(--color-red);
  background: rgba(7, 8, 12, 0.72);
}

.crowd-detail h3 {
  color: #fff;
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.crowd-detail p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 300;
}

.crowd-detail-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.crowd-add-route,
.crowd-save-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  color: #fff;
  background: var(--color-red);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.crowd-save-plan {
  background: #101421;
}

.crowd-detail-status {
  display: none;
  color: rgba(255, 255, 255, 0.82);
}

.crowd-detail-status.is-visible {
  display: inline-flex;
}

.crowd-map-card {
  position: relative;
  min-height: 620px;
  padding: 0;
  border: 0;
  background: transparent;
}

.crowd-map {
  position: relative;
  height: 590px;
  overflow: hidden;
  background: transparent;
}

.crowd-map::before {
  display: none;
}

.crowd-world-map {
  display: none;
}

.crowd-world-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.94;
}

.crowd-region {
  display: none;
}

.crowd-region::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  /* background: rgba(229, 9, 20, 0.42); */
  animation: crowdPulse 1.8s ease-in-out infinite;
  transform: translateX(-50%);
  transform-origin: 50% 50%;
}

.crowd-region::after {
  display: none;
}

.crowd-region i {
  position: relative;
  z-index: 2;
  color: var(--color-red);
  font-size: 32px;
  line-height: 1;
  /* text-shadow:
    0 7px 20px rgba(0, 0, 0, 0.5),
    0 0 18px rgba(229, 9, 20, 0.42); */
}

.crowd-region span {
  position: absolute;
  left: 50%;
  top: 44px;
  white-space: nowrap;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.78);
  font-family: var(--font-title);
  font-size: 11px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 1;
  pointer-events: none;
  transform: translateX(-50%);
  transition: var(--transition);
}

.crowd-region:hover,
.crowd-region.is-active {
  transform: translate(-50%, calc(-100% - 6px));
}

.crowd-region:hover span,
.crowd-region.is-active span {
  color: var(--color-red);
}

.crowd-region-europe {
  left: 45.5%;
  top: 24%;
}

.crowd-region-gulf {
  left: 56%;
  top: 31.5%;
}

.crowd-region-russia {
  left: 61%;
  top: 20%;
}

.crowd-region-asia {
  left: 70%;
  top: 35%;
}

.crowd-region-americas {
  left: 15.5%;
  top: 28.5%;
}

.crowd-region-zone {
  display: none;
}

.crowd-join {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 50px;
  margin: 0;
  border: 0;
  color: #fff;
  background: var(--color-red);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.game-embed-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  padding: 0;
  background: transparent;
}

.game-embed-frame {
  display: block;
  width: 100%;
  height: 100vh;
  min-height: 780px;
  border: 0;
  background: transparent;
}

@media (max-width: 860px) {
  .game-embed-section {
    padding: 0;
    margin: 0;
  }

  .game-embed-frame {
    height: 100dvh;
    min-height: 0;
  }
}

.archive-section {
  position: relative;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  padding: 92px max(24px, calc((100vw - 1500px) / 2)) 100px;
  color: #fff;
  background: transparent;
}

.archive-heading {
  max-width: 980px;
  margin: 0 auto 48px;
  text-align: center;
}

.archive-heading span,
.archive-feature-copy span {
  color: var(--color-red);
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archive-card span {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(7, 8, 12, 0.28);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  font-family: var(--font-main);
  font-size: 10px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.archive-card span::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.archive-heading h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(58px, 7vw, 112px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.86;
  text-transform: uppercase;
}

.archive-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1.22fr) minmax(420px, 0.78fr);
  gap: 18px;
  align-items: stretch;
}

.archive-feature {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #0b0d12;
}

.archive-feature video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08) brightness(0.78);
}

.archive-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(7, 8, 12, 0.22) 100%
    ),
    rgba(16, 18, 24, 0.18);
}

.archive-feature-copy {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 34px;
  max-width: 520px;
}

.archive-feature-copy h3 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(42px, 4.6vw, 74px);
  font-style: italic;
  line-height: 0.86;
  text-transform: uppercase;
}

.archive-feature-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.archive-feature-copy button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  margin-top: 26px;
  padding: 0 24px;
  border: 0;
  color: #fff;
  background: var(--color-red);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.archive-card {
  position: relative;
  min-height: 296px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  border: 0;
  color: #fff;
  /* background: #080a0f; */
  text-align: left;
}

.archive-card-2005 {
  --archive-image: url("../img/ftgp2.png");
}

.archive-card-massa {
  --archive-image: url("../img/fme.jpg");
}

.archive-card-redbull {
  --archive-image: url("../img/redbull.avif");
}

.archive-card-hamilton {
  --archive-image: url("../img/hamilton.jpg");
}

.archive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--archive-image) center / cover no-repeat;
  transition: transform 0.5s ease;
}

.archive-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 12, 0.08), rgba(7, 8, 12, 0.86)),
    rgba(7, 8, 12, 0.08);
}

.archive-card > * {
  position: relative;
  z-index: 1;
}

.archive-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 18px 0 20px;
  color: #fff;
  background: rgba(7, 8, 12, 0.68);
  font-size: 18px;
}

.archive-card strong {
  max-width: 260px;
  color: #fff;
  font-size: 23px;
  font-style: italic;
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.archive-card small {
  max-width: 250px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.archive-card:hover,
.archive-card.is-active {
  transform: none;
}

.archive-card:hover::before {
  transform: scale(1.06);
}

.archive-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 8, 12, 0.86);
  backdrop-filter: blur(12px);
}

.archive-modal.is-open {
  display: flex;
}

.archive-dialog {
  position: relative;
  width: min(980px, 100%);
  background: #090b10;
  box-shadow: 0 34px 140px rgba(0, 0, 0, 0.5);
}

.archive-dialog > button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  color: #fff;
  background: var(--color-red);
  font-size: 20px;
}

.archive-dialog video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #05060a;
}

.archive-dialog h3 {
  margin: 0;
  padding: 18px 22px 22px;
  color: #fff;
  font-size: 34px;
  font-style: italic;
  line-height: 0.9;
  text-transform: uppercase;
}

.champion-section {
  position: relative;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  padding: 88px max(24px, calc((100vw - 1500px) / 2)) 58px;
  color: #fff;
  background: transparent;
}

.champion-heading {
  max-width: 950px;
  margin: 0 auto 48px;
  text-align: center;
}

.champion-heading span {
  color: var(--color-red);
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.champion-heading h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(58px, 7vw, 112px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.86;
  text-transform: uppercase;
}

.champion-heading p {
  max-width: 590px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.champion-card {
  position: relative;
  width: min(1120px, 100%);
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.champion-panel {
  display: none;
}

.champion-panel.is-active {
  display: block;
  animation: championPanel 0.28s ease both;
}

@keyframes championPanel {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.champion-panel[data-champion-panel="intro"],
.champion-panel[data-champion-panel="locked"] {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 42px 0 24px;
  text-align: center;
}

.champion-panel[data-champion-panel="intro"]::before,
.champion-panel[data-champion-panel="locked"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(520px, 72vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transform: translateX(-50%);
}

.champion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 24px;
  background: transparent;
}

.champion-panel h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
}

.champion-panel p {
  max-width: 470px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.champion-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 24px;
  padding: 0 30px;
  border: 0;
  color: #fff;
  background: var(--color-red);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.champion-progress {
  height: 4px;
  margin-bottom: 34px;
  background: rgba(255, 255, 255, 0.16);
}

.champion-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: #fff;
  transition: width 0.28s ease;
}

.champion-panel small {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.champion-panel[data-champion-panel="quiz"] h3 {
  max-width: 860px;
  margin-top: 22px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 0.98;
}

.champion-options {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.champion-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 18px 4px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  background: transparent;
  text-align: left;
  transition: var(--transition);
}

.champion-option strong {
  display: block;
  color: #fff;
  font-size: 17px;
  font-style: italic;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.champion-option > span {
  display: block;
}

.champion-option > span > span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 400;
}

.champion-option i {
  color: rgba(255, 255, 255, 0.66);
  font-size: 20px;
}

.champion-option:hover {
  padding-right: 12px;
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.champion-option.is-selected {
  padding-right: 12px;
  padding-left: 12px;
  background: rgba(229, 9, 20, 0.14);
}

/* ── Package Section ─────────────────────────────────────────────────── */
.package-section {
  position: relative;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  color: #fff;
  /* background: #080a0f; */
}

.package-media {
  display: none;
}

.package-section::after {
  display: none;
}

.package-inner {
  position: relative;
  z-index: 2;
  padding: 88px max(32px, calc((100vw - 1500px) / 2)) 96px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* ── Head row: copy + single CTA ── */
.package-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.package-copy > span {
  color: var(--color-red);
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-copy h2 {
  margin: 16px 0 20px;
  color: #fff;
  font-size: clamp(64px, 7vw, 118px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.82;
  text-transform: uppercase;
}

.package-copy p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}

.package-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 32px;
  background: var(--color-red);
  color: #fff;
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.18s ease;
}

.package-cta:hover {
  opacity: 0.88;
  color: #fff;
}

/* ── 4-tile grid ── */
.package-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  min-height: 390px;
}

.package-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 390px;
  padding: 30px 26px;
  background: #0b0d12;
  color: #fff;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: none;
}

.package-tile > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05) brightness(0.9);
  transition: transform 0.55s ease;
}

.package-tile::after {
  display: none;
}

.package-tile:hover > img {
  transform: scale(1.06);
}

.package-tile:hover {
  color: #fff;
}

.package-tile-body {
  position: relative;
  z-index: 1;
}

.package-tile-body > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-tile-body > span::after {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.package-tile-body h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(22px, 2vw, 34px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.package-tile-body p {
  max-width: 220px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.5;
}

.builder-heading,
.race-planner-heading,
.gateway-heading,
.track-heading,
.global-proof-heading,
.archive-heading,
.champion-heading {
  max-width: 550px;
}

.weekend-builder-studio .builder-heading,
.arrival-copy,
.crowd-copy,
.package-copy,
.section-head {
  max-width: 550px;
}

.gateway-heading p,
.arrival-copy p,
.track-heading p,
.global-proof-heading p,
.crowd-copy p,
.champion-heading p,
.package-copy p {
  max-width: 500px;
}

.builder-heading h2,
.builder-result h2,
.weekend-builder-studio .builder-heading h2,
.weekend-builder-studio .builder-result h2,
.builder-title h2,
.race-planner-heading h2,
.gateway-heading h2,
.arrival-copy h3,
.track-heading h2,
.global-proof-heading h2,
.crowd-copy h2,
.archive-heading h2,
.champion-heading h2,
.package-copy h2 {
  font-size: clamp(44px, 4.8vw, 74px);
  font-weight: 400;
  line-height: 0.92;
}

.archive-feature-copy h3,
.champion-panel h3,
.champion-panel[data-champion-panel="quiz"] h3 {
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 400;
}

.gateway-card h3,
.proof-guide-list h3,
.crowd-detail h3,
.archive-dialog h3 {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 400;
}

.site-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  padding: 70px max(24px, calc((100vw - 1500px) / 2)) 28px;
  color: #fff;
  background: #030406;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(24px, calc((100vw - 1500px) / 2));
  right: max(24px, calc((100vw - 1500px) / 2));
  height: 2px;
  background: var(--color-red);
}

.footer-shell {
  display: grid;
  gap: 34px;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
  display: block;
  width: 218px;
  max-width: 100%;
}

.footer-follow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.footer-follow > span {
  color: var(--color-red);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 17px;
}

.footer-socials a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
}

.footer-socials a:hover {
  color: var(--color-red);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 70px);
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-nav h3 {
  margin: 0 0 5px;
  color: var(--color-red);
  font-size: 11px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-bottom,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  text-decoration: none;
}

.footer-nav a {
  line-height: 1.35;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  color: var(--color-red);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-agency {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-tga-logo {
  display: block;
  width: 132px;
  max-width: 30vw;
  filter: brightness(0) invert(1);
  opacity: 0.78;
}

.footer-agency span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-copyright {
  margin: -12px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  text-align: center;
}

@keyframes crowdPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(229, 9, 20, 0.34),
      0 0 24px rgba(229, 9, 20, 0.24);
  }

  70% {
    box-shadow:
      0 0 0 12px rgba(229, 9, 20, 0),
      0 0 24px rgba(229, 9, 20, 0);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(229, 9, 20, 0),
      0 0 24px rgba(229, 9, 20, 0);
  }
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
}

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

.feature-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface-2);
}

.feature-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  color: #fff;
  border-radius: 8px;
  background: var(--color-red);
  font-size: 24px;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 32px;
}
