:root {
  --night-950: #0f0f0f;
  --night-900: #171717;
  --night-850: #212121;
  --night-800: #2b2b2b;
  --ash-100: #181818;
  --ash-200: #232323;
  --ash-300: #323232;
  --white: #ffffff;
  --ink-950: #ffffff;
  --ink-700: #d0d0d0;
  --ink-500: #a9a9a9;
  --lime-500: #ffd400;
  --lime-400: #ffe36b;
  --orange-500: #ff6a00;
  --orange-400: #ff8c2a;
  --cyan-400: #e10600;
  --line-soft: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 34px 84px rgba(0, 0, 0, 0.46);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 2rem));
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink-950);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.11), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(225, 6, 0, 0.08), transparent 20%),
    linear-gradient(180deg, #0f0f0f 0%, #141414 42%, #0f0f0f 100%);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 68px,
      rgba(255, 255, 255, 0.025) 68px,
      rgba(255, 255, 255, 0.025) 69px
    );
  opacity: 0.75;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(255, 212, 0, 0.92);
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 90;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--night-950);
  background: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(15, 15, 15, 0.88);
  border-bottom: 1px solid rgba(255, 106, 0, 0.14);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(15, 15, 15, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.header-shell {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

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

.brand-mark {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 241, 241, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow:
    0 20px 34px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 106, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: auto 10px 8px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.32), transparent 72%);
  filter: blur(10px);
  opacity: 0.8;
  pointer-events: none;
}

.brand-logo {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.03);
  filter:
    drop-shadow(0 10px 16px rgba(0, 0, 0, 0.22))
    drop-shadow(0 2px 8px rgba(255, 106, 0, 0.12));
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  display: flex;
  align-items: baseline;
  gap: 0.38rem;
}

.brand-copy strong,
.footer-brand strong {
  font-family: "Teko", sans-serif;
  color: var(--white);
  font-size: 1.72rem;
  line-height: 0.88;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.footer-brand strong {
  font-size: 2rem;
}

.brand-copy strong span,
.footer-brand strong span {
  color: var(--orange-400);
  text-shadow: 0 0 18px rgba(255, 106, 0, 0.24);
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.72rem 0.72rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange-400);
  background: rgba(255, 106, 0, 0.12);
  transform: translateY(-1px);
}

.site-nav .nav-priority {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
}

@media (min-width: 1121px) {
  .site-nav {
    align-self: center;
    transform: translateY(4px);
  }
}

@media (min-width: 1121px) and (max-width: 1450px) {
  .header-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.55rem;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 17px;
  }

  .brand-copy strong {
    font-size: 1.28rem;
    letter-spacing: 0;
  }

  .brand-copy small {
    display: none;
  }

  .site-nav {
    justify-self: end;
    gap: 0.1rem;
    transform: none;
  }

  .site-nav a {
    min-height: 2.7rem;
    padding: 0.62rem 0.54rem;
    font-size: 0.88rem;
  }

  .header-cta {
    min-height: 3rem;
    padding-inline: 1rem;
  }
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 999px;
  padding: 0.82rem 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.header-cta,
.button,
.floating-cta,
.mobile-sticky-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.88rem 1.35rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.header-cta:hover,
.button:hover,
.floating-cta:hover,
.mobile-sticky-bar a:hover,
.header-cta:focus-visible,
.button:focus-visible,
.floating-cta:focus-visible,
.mobile-sticky-bar a:focus-visible {
  transform: translateY(-2px);
}

.header-cta,
.button-primary,
.mobile-sticky-strong {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 18px 34px rgba(255, 106, 0, 0.28);
}

.button-secondary,
.button-dark {
  border: 1px solid rgba(255, 106, 0, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button-dark {
  border-color: rgba(255, 212, 0, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.header-cta:hover,
.button-primary:hover,
.floating-cta:hover,
.mobile-sticky-strong:hover,
.header-cta:focus-visible,
.button-primary:focus-visible,
.floating-cta:focus-visible,
.mobile-sticky-strong:focus-visible {
  background: linear-gradient(135deg, var(--orange-400), #ffab57);
  box-shadow: 0 20px 38px rgba(255, 106, 0, 0.34);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-dark:hover,
.button-dark:focus-visible {
  border-color: rgba(255, 212, 0, 0.36);
  background: rgba(255, 212, 0, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 212, 0, 0.12);
}

.install-shortcut[hidden],
.install-helper[hidden] {
  display: none !important;
}

.install-helper {
  max-width: 34rem;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero {
  position: relative;
  overflow: clip;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 106, 0, 0.18), transparent 20%),
    radial-gradient(circle at 14% 82%, rgba(225, 6, 0, 0.1), transparent 18%),
    linear-gradient(135deg, #090909 0%, #141414 55%, #101010 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% 38%;
  height: 26rem;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 106, 0, 0.22), rgba(225, 6, 0, 0.08));
  filter: blur(54px);
  transform: skewX(-28deg);
  opacity: 0.92;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 42%;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0) 0%, rgba(9, 9, 9, 0.18) 18%, rgba(9, 9, 9, 0.74) 100%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.12), rgba(9, 9, 9, 0.52));
  opacity: 0.52;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 42%;
  display: block;
  width: 58%;
  height: 100%;
  opacity: 0.52;
  pointer-events: none;
}

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

.hero-overlay,
.hero-trackline {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 18%),
    linear-gradient(90deg, rgba(9, 9, 9, 0.24), rgba(9, 9, 9, 0.04) 34%, rgba(9, 9, 9, 0.48) 100%),
    radial-gradient(circle at center, rgba(255, 106, 0, 0.05), transparent 52%);
}

.hero-trackline {
  background:
    linear-gradient(115deg, transparent 0 43%, rgba(255, 106, 0, 0.14) 43% 44.2%, transparent 44.2% 48%, rgba(255, 212, 0, 0.1) 48% 49.2%, transparent 49.2% 52%, rgba(255, 106, 0, 0.1) 52% 53.2%, transparent 53.2%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 35%);
  opacity: 0.92;
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 1.7rem;
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}

.hero-copy {
  max-width: 31rem;
}

.eyebrow,
.section-kicker,
.track-card-kicker,
.event-label {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime-500);
}

.section-kicker-dark {
  color: var(--orange-500);
}

.hero h1,
.section-heading h2,
.track-card h2,
.intro-card h3,
.event-card h3 {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 7.2ch;
  font-size: clamp(3rem, 4.45vw, 4.8rem);
  line-height: 0.9;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--orange-400);
  text-shadow: 0 0 24px rgba(255, 106, 0, 0.18);
}

.hero-text,
.section-heading p,
.intro-card p,
.track-copy p,
.track-facts span,
.structure-card p,
.event-card p,
.social-copy p,
.social-card p,
.reserve-copy p,
.reserve-notes p,
.field small,
.form-helper,
.faq-item p,
.footer-copy {
  line-height: 1.72;
}

.hero-text {
  max-width: 31ch;
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.hero .eyebrow {
  margin-bottom: 0.72rem;
  color: rgba(255, 255, 255, 0.68);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  max-width: 31rem;
  margin-top: 1.25rem;
}

.hero-actions .button {
  min-width: 14.6rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.hero-points article,
.hero-panel,
.track-card,
.intro-card,
.structure-card,
.event-card,
.social-card,
.lead-form,
.reserve-notes article,
.faq-item {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-points article {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 106, 0, 0.14);
}

.hero-points strong,
.track-facts strong,
.structure-card strong,
.reserve-notes strong {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-points span {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-panel {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(43, 43, 43, 0.92), rgba(15, 15, 15, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.hero-badge {
  display: inline-flex;
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  color: var(--night-950);
  font-weight: 800;
  background: linear-gradient(135deg, var(--lime-500), var(--orange-400));
}

.hero-stats {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.hero-offer {
  margin-top: 1.05rem;
}

.hero-panel-kicker {
  margin: 0;
  color: var(--lime-500);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-offer h2 {
  margin: 0.45rem 0 0;
  font-family: "Teko", sans-serif;
  font-size: clamp(2.3rem, 3.4vw, 3.3rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-panel-text {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.68;
}

.hero-stats-offer {
  grid-template-columns: 1fr;
}

.hero-stats article {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 212, 0, 0.1);
}

.hero-stats span,
.track-facts article span {
  display: block;
  color: var(--lime-400);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stats strong {
  display: block;
  margin-top: 0.38rem;
  font-family: "Teko", sans-serif;
  font-size: 2.15rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.hero-stats p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.hero-panel-cta {
  margin-top: 1rem;
}

.hero-panel-cta .button {
  width: 100%;
}

.track-card {
  margin-top: 0.95rem;
  padding: 1rem;
  color: var(--ink-950);
  background: rgba(24, 24, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.track-card h2 {
  font-size: clamp(2rem, 3.2vw, 2.9rem);
}

.track-card ul {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.track-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-700);
}

.track-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime-500), var(--orange-400));
}

.trust-bar {
  background: linear-gradient(90deg, #111111, #1a1a1a 50%, #111111);
  border-top: 1px solid rgba(255, 106, 0, 0.14);
  border-bottom: 1px solid var(--line-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  padding-block: 1rem;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.section {
  padding-block: clamp(4.4rem, 7vw, 7rem);
}

.section-heading {
  max-width: 54rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  color: var(--ink-950);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.section-heading > p:last-child {
  margin-top: 1rem;
  color: var(--ink-700);
}

.section-heading-split {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 30rem);
  gap: 2rem;
  align-items: end;
}

.section-intro {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.1), transparent 22%),
    linear-gradient(180deg, #101010 0%, #161616 100%);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.intro-card {
  padding: 1.3rem;
  background: rgba(43, 43, 43, 0.9);
  border: 1px solid var(--line-soft);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  color: var(--night-950);
  font-weight: 900;
  background: linear-gradient(135deg, var(--lime-500), var(--orange-400));
}

.intro-card h3,
.event-card h3 {
  font-size: 1.95rem;
}

.intro-card p {
  margin: 0.75rem 0 0;
  color: var(--ink-700);
}

.section-track {
  color: var(--white);
  background:
    radial-gradient(circle at right center, rgba(255, 106, 0, 0.16), transparent 22%),
    linear-gradient(180deg, #0f0f0f 0%, #1b1b1b 100%);
}

.track-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 1.2rem;
  align-items: center;
}

.section-track .section-kicker,
.section-track h2,
.section-track p,
.section-track span,
.section-track strong {
  color: var(--white);
}

.section-track .section-kicker {
  color: var(--lime-500);
}

.track-copy h2 {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.track-copy p {
  max-width: 52ch;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.track-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.track-facts article {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 212, 0, 0.1);
}

.track-facts strong {
  margin-top: 0.3rem;
  font-size: 2.15rem;
}

.track-facts span {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.track-visual {
  display: grid;
  place-items: center;
}

.track-visual-inner {
  position: relative;
  width: min(100%, 38rem);
  aspect-ratio: 1.52 / 1;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.14), transparent 22%),
    radial-gradient(circle at 16% 84%, rgba(225, 6, 0, 0.08), transparent 20%),
    linear-gradient(145deg, rgba(43, 43, 43, 0.88), rgba(15, 15, 15, 0.98)),
    #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.track-visual-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 38px,
      rgba(255, 255, 255, 0.03) 38px,
      rgba(255, 255, 255, 0.03) 39px
    );
  opacity: 0.55;
}

.track-path {
  position: absolute;
  inset: 6% 4%;
  background-image: url("./assets/vgp-tracado-clean.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.track-path-primary {
  opacity: 0.18;
  transform: scale(1.03);
  filter: invert(1) sepia(1) saturate(3) hue-rotate(330deg) brightness(1.12) blur(12px);
  mix-blend-mode: screen;
}

.track-path-secondary {
  opacity: 0.96;
  filter: invert(1) brightness(1.14) contrast(1.08);
  mix-blend-mode: screen;
}

.track-path-tertiary {
  opacity: 0.6;
  transform: scale(1.004);
  filter: invert(1) sepia(1) saturate(12) hue-rotate(338deg) brightness(1.08);
  mix-blend-mode: screen;
}

.track-dot {
  position: absolute;
  left: 91.6%;
  top: 34.8%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--lime-500));
  box-shadow: 0 0 0 10px rgba(255, 106, 0, 0.12);
}

.track-dot::before {
  content: "";
  position: absolute;
  right: calc(100% + 0.35rem);
  top: 50%;
  width: 2.45rem;
  height: 0.34rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.92) 0,
      rgba(255, 255, 255, 0.92) 0.28rem,
      rgba(13, 16, 21, 0.95) 0.28rem,
      rgba(13, 16, 21, 0.95) 0.56rem
    );
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.section-media {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(255, 106, 0, 0.1), transparent 22%),
    linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
}

.section-media .section-heading h2,
.section-media .section-heading p {
  color: var(--white);
}

.section-media .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.media-card,
.media-proof {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.media-card {
  min-height: 17rem;
  background: #0f0f0f;
  isolation: isolate;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.04), rgba(15, 15, 15, 0.78)),
    linear-gradient(135deg, rgba(255, 106, 0, 0.16), transparent 44%);
}

.media-card img,
.media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.media-card:hover img,
.media-card:focus-within img,
.media-card:hover .media-video,
.media-card:focus-within .media-video {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.media-card-wide {
  grid-column: span 2;
  min-height: 22rem;
}

.media-card-video {
  grid-row: span 2;
  min-height: 100%;
}

.media-card-copy {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: grid;
  gap: 0.35rem;
}

.media-card-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  color: var(--night-950);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--lime-500), var(--orange-400));
}

.media-card-copy strong,
.media-proof h3 {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.media-card-copy p,
.media-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.62;
}

.media-proof {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.9rem;
  padding: 1.45rem;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.16), transparent 20%),
    linear-gradient(145deg, rgba(43, 43, 43, 0.96), rgba(15, 15, 15, 0.98));
}

.section-structure {
  background:
    radial-gradient(circle at top left, rgba(255, 106, 0, 0.08), transparent 18%),
    linear-gradient(180deg, #151515 0%, #202020 100%);
}

.section-rules {
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 212, 0, 0.08), transparent 18%),
    linear-gradient(180deg, #0f0f0f 0%, #171717 100%);
}

.rule-card {
  background:
    linear-gradient(160deg, rgba(43, 43, 43, 0.92), rgba(15, 15, 15, 0.94));
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.structure-card {
  padding: 1.2rem;
  background: rgba(43, 43, 43, 0.9);
  border: 1px solid var(--line-soft);
}

.structure-card p {
  margin: 0.7rem 0 0;
  color: var(--ink-700);
}

.structure-card a {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--lime-500);
  font-weight: 800;
}

.section-events {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(225, 6, 0, 0.12), transparent 18%),
    linear-gradient(180deg, #101010 0%, #1a1a1a 100%);
}

.section-events .section-heading h2,
.section-events .section-heading p {
  color: var(--white);
}

.section-events .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.event-card {
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 106, 0, 0.14);
}

.event-card p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.event-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--lime-500);
  font-weight: 800;
}

.event-card-featured {
  background:
    radial-gradient(circle at top right, rgba(255, 212, 0, 0.18), transparent 18%),
    linear-gradient(155deg, rgba(255, 106, 0, 0.94), rgba(225, 6, 0, 0.78) 28%, rgba(16, 16, 16, 0.98) 74%);
}

.event-card-featured a {
  color: var(--white);
}

.section-social {
  background:
    radial-gradient(circle at top left, rgba(255, 106, 0, 0.08), transparent 22%),
    linear-gradient(180deg, #0f0f0f 0%, #171717 100%);
}

.social-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: 1rem;
  align-items: start;
}

.social-shell-only {
  display: block;
}

.social-copy h2,
.reserve-copy h2 {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.social-copy p,
.reserve-copy p {
  margin: 1rem 0 0;
  color: var(--ink-700);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.social-list span {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  color: var(--white);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 212, 0, 0.14);
}

.social-card {
  padding: 1.35rem;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.16), transparent 24%),
    linear-gradient(155deg, rgba(15, 15, 15, 0.98), rgba(43, 43, 43, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-card-kicker {
  margin: 0 0 0.8rem;
  color: var(--lime-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-card strong {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.social-card p {
  margin: 0.75rem 0 1.1rem;
  color: rgba(255, 255, 255, 0.76);
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.social-actions .button {
  flex: 1 1 14rem;
}

.social-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1rem;
}

.social-showcase-single {
  grid-template-columns: 1fr;
}

.social-shot {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.social-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.04), rgba(15, 15, 15, 0.72)),
    linear-gradient(140deg, rgba(255, 106, 0, 0.16), transparent 42%);
}

.social-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.social-shot:hover img,
.social-shot:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.social-shot-large {
  grid-row: span 2;
  min-height: 100%;
}

.social-shot-tag,
.social-shot-copy {
  position: absolute;
  z-index: 2;
}

.social-shot-tag {
  top: 0.95rem;
  left: 0.95rem;
  display: inline-flex;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  color: var(--night-950);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--lime-500), var(--orange-400));
}

.social-shot-copy {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.32rem;
}

.social-shot-copy strong {
  font-family: "Teko", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.social-shot-copy small {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.social-profile-card {
  grid-column: 1 / -1;
}

.section-reserve {
  padding-bottom: clamp(6rem, 8vw, 8rem);
}

.reserve-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 1rem;
  align-items: start;
  padding: clamp(1.3rem, 2.8vw, 2rem);
  border-radius: calc(var(--radius-xl) + 0.2rem);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.12), transparent 18%),
    linear-gradient(145deg, rgba(43, 43, 43, 0.94), rgba(18, 18, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.reserve-notes {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.reserve-notes article {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 106, 0, 0.12);
}

.reserve-notes p {
  margin: 0.55rem 0 0;
}

.lead-form {
  padding: 1.3rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.98), rgba(28, 28, 28, 0.98));
  border: 1px solid rgba(255, 106, 0, 0.16);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.92rem 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.field textarea {
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: rgba(225, 6, 0, 0.98);
  box-shadow: 0 0 0 1px rgba(225, 6, 0, 0.32);
}

.field small {
  min-height: 1.15rem;
  color: #ff847a;
}

.button-submit {
  width: 100%;
  margin-top: 0.3rem;
}

.form-helper {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.form-status {
  margin-top: 1rem;
  min-height: 1.5rem;
  color: var(--lime-500);
  font-weight: 700;
}

.form-status.is-error {
  color: #ff847a;
}

.section-faq {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.99), rgba(23, 23, 23, 0.99)),
    #0f0f0f;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: 1rem;
  align-items: start;
}

.section-faq .section-heading h2 {
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 106, 0, 0.12);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: "Teko", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--lime-500);
  font-size: 1.8rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.76);
  padding: 2rem 0 6.4rem;
}

.footer-shell {
  display: grid;
  gap: 1.2rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand-mark {
  width: 74px;
  height: 74px;
  border-radius: 22px;
}

.footer-brand-copy {
  display: grid;
  gap: 0.18rem;
}

.footer-brand p {
  margin: 0;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-links a:focus-visible,
.footer-contact a:focus-visible {
  color: var(--orange-400);
}

.footer-copy {
  margin: 0;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 18;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 18px 36px rgba(255, 106, 0, 0.28);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.floating-cta.is-hidden {
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
}

.mobile-sticky-bar {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 17;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  padding: 0.6rem;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-strong);
}

.mobile-sticky-bar a {
  min-height: 3rem;
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.56s ease, transform 0.56s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero::after {
    inset: 18% -6% 0 46%;
    opacity: 0.42;
  }

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

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.75rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 0.95rem;
    border-radius: var(--radius-md);
    background: rgba(15, 15, 15, 0.98);
    border: 1px solid rgba(255, 106, 0, 0.14);
    box-shadow: var(--shadow-strong);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-shell,
  .track-shell,
  .social-shell,
  .reserve-shell,
  .faq-shell,
  .section-heading-split {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .intro-grid,
  .track-facts,
  .structure-grid,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-card-wide,
  .media-proof {
    grid-column: span 2;
  }

  .media-card-video {
    grid-row: auto;
    min-height: 24rem;
  }

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

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

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 1rem, 100%);
    --header-height: 122px;
  }

  .container {
    width: calc(100vw - 1rem);
  }

  .header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.75rem;
    padding-block: 0.72rem;
  }

  .brand {
    flex: 1;
    min-width: 0;
    gap: 0.78rem;
  }

  .brand-mark {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }

  .brand-copy strong,
  .footer-brand strong {
    font-size: 1.72rem;
  }

  .brand-copy small {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 3rem;
    padding-inline: 1.05rem;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.55rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding: 0.95rem;
    border-radius: var(--radius-md);
    background: rgba(15, 15, 15, 0.98);
    border: 1px solid rgba(255, 106, 0, 0.14);
    box-shadow: var(--shadow-strong);
    scrollbar-width: auto;
    overflow: visible;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(255, 106, 0, 0.14);
    background: rgba(255, 255, 255, 0.04);
  }

  .hero-shell {
    min-height: auto;
    padding-top: 2.2rem;
  }

  .hero::after {
    inset: 0;
    opacity: 0.2;
  }

  .hero-media {
    inset: 0;
    width: 100%;
    opacity: 0.2;
  }

  .hero h1 {
    max-width: 7.4ch;
    font-size: 2.45rem;
  }

  .hero-text {
    max-width: 30ch;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-points,
  .intro-grid,
  .track-facts,
  .structure-grid,
  .media-grid,
  .event-grid,
  .trust-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .social-showcase {
    grid-template-columns: 1fr;
  }

  .social-actions {
    flex-direction: column;
  }

  .social-shot,
  .social-shot-large {
    min-height: 16rem;
    grid-row: auto;
  }

  .track-visual-inner {
    width: min(100%, 22rem);
  }

  .media-card-wide,
  .media-proof {
    grid-column: auto;
  }

  .media-card,
  .media-card-video {
    min-height: 17rem;
  }

  .social-copy h2,
  .reserve-copy h2,
  .section-heading h2 {
    font-size: 2.45rem;
  }

  .lead-form {
    padding: 1.05rem;
  }

  .faq-item summary {
    font-size: 1.45rem;
  }

  .floating-cta {
    display: none;
  }

  .mobile-sticky-bar {
    display: grid;
  }

  .site-footer {
    padding-bottom: 6.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 1.25rem, 100%);
    --header-height: 74px;
    --radius-lg: 18px;
    --radius-md: 14px;
  }

  body::before {
    opacity: 0.32;
  }

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

  .site-header {
    background: rgba(15, 15, 15, 0.97);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
  }

  .header-shell {
    min-height: var(--header-height);
    padding-block: 0.45rem;
    gap: 0.55rem;
  }

  .brand {
    flex: 1 1 auto;
    gap: 0.55rem;
    min-width: 0;
    overflow: hidden;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(255, 106, 0, 0.16);
  }

  .brand-logo {
    transform: scale(1.08);
  }

  .brand-copy {
    min-width: 0;
    gap: 0.06rem;
  }

  .brand-copy strong {
    font-size: 1.34rem;
    line-height: 0.9;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .brand-copy small {
    display: block;
    max-width: 9.6rem;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.58rem;
    letter-spacing: 0.04em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    min-height: 2.7rem;
    padding: 0.72rem 0.92rem;
    border-color: rgba(255, 106, 0, 0.34);
    background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
    box-shadow: 0 14px 28px rgba(255, 106, 0, 0.22);
    color: #111;
    font-size: 0.9rem;
  }

  .site-nav {
    left: 0.25rem;
    right: 0.25rem;
    top: calc(100% + 0.35rem);
    z-index: 70;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    padding: 0.65rem;
    border-radius: 16px;
    background: rgba(15, 15, 15, 0.99);
  }

  .site-nav a {
    min-height: 2.85rem;
    justify-content: flex-start;
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
    font-size: 0.95rem;
    letter-spacing: 0;
  }

  .site-nav .nav-priority {
    justify-content: center;
    margin-top: 0.1rem;
  }

  .hero {
    min-height: auto;
    overflow: hidden;
  }

  .hero::before {
    inset: auto -30% -20% 28%;
    opacity: 0.42;
    filter: blur(40px);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(15, 15, 15, 0.78), rgba(15, 15, 15, 0.95)),
      linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(15, 15, 15, 0.62));
    opacity: 0.74;
  }

  .hero-media {
    display: none;
  }

  .hero-trackline {
    opacity: 0.42;
  }

  .hero-shell {
    gap: 0.9rem;
    padding-top: 0.95rem;
    padding-bottom: 1.2rem;
  }

  .hero-copy {
    max-width: 20rem;
  }

  .hero .eyebrow {
    max-width: 28ch;
    margin-bottom: 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    max-width: 8.8ch;
    font-size: 2.45rem;
    line-height: 0.9;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .hero-text {
    max-width: 28ch;
    margin-top: 0.65rem;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 0.6rem;
    max-width: 20rem;
    margin-top: 0.85rem;
  }

  .button,
  .header-cta {
    min-height: 3.05rem;
    padding: 0.78rem 1rem;
    font-size: 0.95rem;
  }

  .hero-points {
    gap: 0.55rem;
    margin-top: 0.85rem;
  }

  .hero-points article {
    padding: 0.78rem 0.85rem;
    border-radius: 14px;
  }

  .hero-points strong {
    font-size: 1.25rem;
    letter-spacing: 0;
  }

  .hero-points span {
    margin-top: 0.35rem;
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .hero-panel {
    padding: 0.9rem;
    border-radius: 16px;
  }

  .hero-badge {
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
  }

  .hero-offer {
    margin-top: 0.7rem;
  }

  .hero-panel-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero-offer h2 {
    font-size: 2rem;
    line-height: 0.94;
    letter-spacing: 0;
  }

  .hero-panel-text {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .hero-stats-offer {
    display: none;
  }

  .hero-panel-cta {
    margin-top: 0.8rem;
  }

  .hero-panel-cta .button {
    width: 100%;
  }

  .trust-bar {
    padding-block: 0.7rem;
  }

  .trust-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    scroll-snap-type: x proximity;
  }

  .trust-grid p {
    flex: 0 0 auto;
    padding: 0.65rem 0.75rem;
    font-size: 0.8rem;
    line-height: 1;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .section {
    padding-block: 2.6rem;
  }

  .section-heading {
    margin-bottom: 1.2rem;
  }

  .section-heading h2,
  .social-copy h2,
  .reserve-copy h2 {
    font-size: 2.05rem;
    line-height: 0.95;
    letter-spacing: 0;
  }

  .section-heading p,
  .social-copy p,
  .reserve-copy p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .intro-card,
  .structure-card,
  .event-card,
  .reserve-notes article,
  .faq-item {
    border-radius: 16px;
  }

  .track-shell,
  .structure-shell,
  .reserve-shell {
    gap: 1.2rem;
  }

  .track-visual {
    padding: 1rem;
    border-radius: 16px;
  }

  .track-visual-inner {
    width: min(100%, 19rem);
  }

  .track-copy h2 {
    font-size: 2.15rem;
    line-height: 0.95;
    letter-spacing: 0;
  }

  .media-grid,
  .event-grid,
  .structure-grid {
    gap: 0.75rem;
  }

  .media-card,
  .media-card-wide,
  .media-card-video {
    min-height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .media-card-video {
    aspect-ratio: 3 / 4;
  }

  .media-card-copy {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .media-card-copy strong,
  .media-proof h3 {
    font-size: 1.75rem;
    line-height: 0.95;
    letter-spacing: 0;
  }

  .media-card-copy p {
    display: none;
  }

  .media-proof {
    padding: 1rem;
    border-radius: 16px;
  }

  .lead-form {
    padding: 0.9rem;
    border-radius: 16px;
  }

  .faq-item summary {
    font-size: 1.18rem;
    line-height: 1.1;
    letter-spacing: 0;
  }

  .footer-shell {
    gap: 1rem;
  }

  .mobile-sticky-bar {
    left: 1rem;
    right: 1rem;
    bottom: 0.75rem;
    grid-template-columns: 1fr;
    opacity: 0;
    padding: 0.45rem;
    pointer-events: none;
    border-radius: 18px;
    transform: translateY(1rem);
  }

  .mobile-sticky-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-sticky-bar a:not(.mobile-sticky-strong) {
    display: none;
  }

  .mobile-sticky-bar a {
    min-height: 3rem;
    border-radius: 14px;
  }
}

@media (max-width: 390px) {
  .brand-copy strong {
    font-size: 1.18rem;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    padding-inline: 0.82rem;
  }

  .hero h1 {
    max-width: 10.2ch;
    font-size: 2.55rem;
  }

  .hero-offer h2 {
    font-size: 1.78rem;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .header-shell {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: calc(100vw - 1.25rem);
  }

  .brand {
    width: 100%;
    min-width: 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .brand-copy strong {
    max-width: 100%;
    overflow: hidden;
    font-size: 1.22rem;
    text-overflow: ellipsis;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 4.8rem;
    justify-self: end;
    position: relative;
    z-index: 2;
  }

  .site-nav {
    left: 50% !important;
    right: auto !important;
    width: calc(100vw - 1.25rem);
    box-sizing: border-box;
    transform: translateX(-50%);
  }

  .hero .reveal {
    opacity: 1;
    transform: none;
  }

  .hero h1 {
    max-width: 9ch;
    color: var(--white);
    font-size: 2.25rem;
    line-height: 0.9;
  }

  .hero h1 span {
    color: var(--orange-400);
  }

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

@media (max-width: 390px) {
  .brand-copy strong {
    font-size: 1.05rem;
  }

  .hero h1 {
    max-width: 8.8ch;
    font-size: 2.05rem;
  }
}

/* Final hero correction: keep the offer horizontal and restore a visible photo on mobile. */
.hero-copy {
  max-width: min(100%, 36rem);
}

.hero h1 {
  max-width: 13.5ch;
  font-size: clamp(3.2rem, 4.75vw, 5rem);
  line-height: 0.9;
}

.hero h1 span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-top: 0.16em;
  padding: 0.06em 0.16em;
  border-radius: 0.16em;
  color: #0f0f0f;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 18px 34px rgba(255, 106, 0, 0.2);
  font-size: 0.58em;
  line-height: 1;
  text-shadow: none;
  white-space: nowrap;
}

.hero-text {
  max-width: 39ch;
  margin-top: 1rem;
}

.hero-actions {
  margin-top: 1.25rem;
}

@media (max-width: 760px) {
  .hero::after {
    background:
      linear-gradient(180deg, rgba(15, 15, 15, 0.48), rgba(15, 15, 15, 0.92) 62%, rgba(15, 15, 15, 0.98)),
      linear-gradient(90deg, rgba(15, 15, 15, 0.78), rgba(15, 15, 15, 0.36));
    opacity: 0.92;
  }

  .hero-media {
    display: block;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.52;
    filter: saturate(1.08) contrast(1.04);
  }

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

  .hero h1 {
    max-width: 12.8ch;
    font-size: 2.58rem;
    line-height: 0.9;
  }

  .hero h1 span {
    font-size: 0.66em;
  }

  .hero-text {
    max-width: 32ch;
  }

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

@media (max-width: 390px) {
  .hero h1 {
    max-width: 12.6ch;
    font-size: 2.36rem;
  }
}

/* Horizontal hero test requested by the client. */
.hero-shell {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 1.35rem;
}

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

.hero h1 {
  display: grid;
  gap: 0.2rem;
  max-width: 100%;
  font-size: clamp(3rem, 4.35vw, 4.9rem);
  line-height: 0.88;
}

.hero h1 .hero-title-main {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  color: var(--white);
  background: none;
  box-shadow: none;
  font-size: 1em;
  line-height: 0.88;
  text-shadow: none;
  white-space: normal;
}

.hero h1 .hero-price-line {
  display: inline-flex;
  justify-self: start;
  width: auto;
  max-width: 100%;
  margin-top: 0.08rem;
  padding: 0.08em 0.18em;
  border-radius: 0.14em;
  color: #0f0f0f;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 18px 34px rgba(255, 106, 0, 0.2);
  font-size: 0.52em;
  line-height: 1;
  text-shadow: none;
  white-space: nowrap;
}

.hero-text {
  max-width: 64ch;
}

@media (min-width: 761px) {
  .hero::after {
    inset: 0 0 0 34%;
    opacity: 0.32;
  }

  .hero-media {
    inset: 0 0 0 34%;
    width: 66%;
    opacity: 0.76;
    filter: saturate(1.08) contrast(1.06);
  }
}

@media (max-width: 760px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.32rem;
    line-height: 0.9;
  }

  .hero h1 .hero-title-main {
    max-width: 100%;
  }

  .hero h1 .hero-price-line {
    font-size: 0.56em;
  }

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

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.08rem;
  }
}
