@font-face {
  font-family: "Reguler";
  src: url("../fonts/Reguler.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 700;
  font-display: swap;
}

:root {
  --ink: #08172b;
  --cream: #f7efdf;
  --lime: #c9ff00;
  --orange: #ff5227;
  --gold: #f8bb26;
  --aqua: #2dd8cc;
  --white: #fff9ed;
  --card: rgba(247, 239, 223, 0.96);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
.button,
.kicker,
.primary-nav,
.text-action {
  font-family: "Reguler", "Oswald", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  color: var(--white);
  font-size: clamp(52px, 4.82vw, 94px);
  line-height: 0.95;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(45px, 3.56vw, 70px);
  line-height: 1.04;
  margin-bottom: 30px;
}

h3 {
  font-size: clamp(38px, 3.6vw, 56px);
  line-height: 1;
  margin-bottom: 8px;
}

.container {
  width: min(100% - 8vw, 1768px);
  margin-inline: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 64px;
  padding: 17px 32px 14px;
  border-radius: 10px;
  border: 3px solid transparent;
  font-size: clamp(18px, 1.24vw, 26px);
  line-height: 1;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-lime {
  background: var(--lime);
  color: var(--ink);
}

.button-outline {
  color: var(--white);
  border-color: var(--lime);
  background: rgba(8, 23, 43, 0.45);
}

.button-gold {
  min-height: 60px;
  background: var(--gold);
  color: var(--white);
  font-size: 25px;
}

.text-action {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(19px, 1.33vw, 27px);
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 54px;
  padding: 48px clamp(32px, 5.3vw, 96px) 0;
  color: var(--white);
}

.brand-link {
  width: clamp(170px, 19vw, 350px);
  visibility: hidden;
}

.primary-nav {
  display: flex;
  gap: clamp(28px, 3vw, 54px);
  padding-top: 18px;
  font-size: clamp(19px, 1.15vw, 27px);
  white-space: nowrap;
}

.primary-nav a:hover,
.text-action:hover {
  color: var(--lime);
}

.section-photo {
  position: relative;
  overflow: hidden;
  background-image: url("../img/fans.jpg");
  background-position: center;
  background-size: cover;
}

.hero {
  min-height: clamp(530px, 43vw, 760px);
  padding: 80px 0 38px;
  overflow: visible;
}

.hero-shade,
.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 23, 43, 0.34), rgba(8, 23, 43, 0.5) 48%, rgba(8, 23, 43, 0.86));
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 43, 0.04), rgba(8, 23, 43, 0.44));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(560px, 1fr);
  gap: clamp(38px, 3.3vw, 62px);
  align-items: center;
  width: min(100% - 8.2vw, 1800px);
  margin-inline: auto;
}

.hero-logo {
  align-self: start;
  width: min(100%, 260px);
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.28));
}

.hero-copy {
  min-width: 0;
  padding-top: 42px;
}

.hero h1 {
  font-size: clamp(38px, 3.53vw, 69px);
}

.hero-copy > p {
  max-width: 1080px;
  color: var(--white);
  font-size: clamp(23px, 1.35vw, 31px);
  font-weight: 300;
  line-height: 1.18;
  margin-bottom: 24px;
}

.hero-list {
  display: grid;
  gap: 0;
  max-width: 910px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.hero-list li {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  width: 75%;
  min-height: 58px;
  border-bottom: 2px solid rgba(255, 82, 39, 0.92);
  color: var(--white);
  font-size: clamp(21px, 1.18vw, 29px);
}

.hero-list em {
  color: var(--lime);
  font-style: normal;
}

.hero-list strong,
.hero-copy > p,
.experience-copy p,
.venue-intro,
.map-copy p {
  min-width: 0;
  overflow-wrap: anywhere;
}

.hero-list strong {
  font-weight: 300;
}

.line-icon {
  display: grid;
  place-items: center;
  color: var(--lime);
}

.line-icon img {
  width: clamp(34px, 2.9vw, 54px);
  height: clamp(34px, 2.9vw, 54px);
  object-fit: contain;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

.hero-trophy {
  position: absolute;
  z-index: 3;
  right: clamp(6px, 3.2vw, 64px);
  bottom: -86px;
  width: clamp(340px, 24vw, 480px);
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.45));
}

.experience {
  padding: clamp(82px, 6.8vw, 132px) 0 clamp(78px, 6.5vw, 124px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(70px, 5.8vw, 116px);
  align-items: start;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--orange);
  font-size: clamp(23px, 1.35vw, 31px);
  line-height: 1;
  margin-bottom: 42px;
}

.kicker::after {
  content: "";
  width: 113px;
  height: 2px;
  background: currentColor;
}

.centered {
  justify-content: center;
  text-align: center;
}

.experience-copy > p:not(.kicker) {
  max-width: 790px;
  font-size: clamp(23px, 1.35vw, 31px);
  font-weight: 300;
  line-height: 1.22;
}

.experience h2 {
  font-size: clamp(38px, 3.53vw, 69px);
}

.experience .two-column {
  align-items: stretch;
}

.experience-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 0;
}

.feature-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 880px;
  margin-top: 64px;
  text-align: center;
}

.feature-icons span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  margin-bottom: 18px;
}

.feature-icons img {
  width: clamp(54px, 3.7vw, 76px);
  height: clamp(54px, 3.7vw, 76px);
  object-fit: contain;
}

.feature-icons strong {
  display: block;
  font-family: "Reguler", "Oswald", Impact, sans-serif;
  font-size: clamp(17px, 0.95vw, 22px);
  font-weight: 400;
  line-height: 1.05;
}

.stage-card-ball {
  display: none;
}

.timeline {
  padding: clamp(78px, 7vw, 126px) 0 clamp(88px, 8vw, 145px);
  color: var(--white);
  background: var(--ink);
}

.timeline h2 {
  color: var(--white);
}

.timeline .kicker.centered::before,
.timeline .kicker.centered::after {
  content: "";
  flex: 0 0 clamp(108px, 9.6vw, 204px);
  width: auto;
  height: 3px;
  background: var(--orange);
}

.stage-row {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) clamp(260px, 16vw, 360px) minmax(320px, 1fr);
  align-items: stretch;
  gap: 0;
  margin-top: 58px;
}

.stage-card {
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: clamp(40px, 5vw, 78px);
  border: 8px solid var(--gold);
  border-radius: 30px;
}

.stage-card p {
  margin: 0;
  font-weight: 300;
}

.stage-card h3 {
  font-size: clamp(40px, 3.78vw, 59px);
}

.stage-card p:not(.stage-date) {
  font-size: clamp(23px, 1.35vw, 31px);
  line-height: 1.18;
}

.stage-group h3,
.stage-group .stage-date {
  color: var(--gold);
}

.stage-group {
  text-align: center;
}

.stage-knockout {
  border-color: var(--aqua);
  text-align: center;
}

.stage-knockout h3,
.stage-knockout .stage-date {
  color: var(--aqua);
}

.stage-date {
  font-family: "Reguler", "Oswald", Impact, sans-serif;
  font-size: clamp(23px, 1.35vw, 31px);
  text-transform: uppercase;
  margin-bottom: 40px !important;
}

.stage-ball {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100%;
  margin-inline: 0;
  align-self: center;
  overflow: visible;
}

.stage-ball img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translate(-50%, -46.5%);
}

.passport {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.25fr);
  min-height: 680px;
  border-bottom: 5px solid var(--lime);
  background-color: #22180f;
  background-image: url("../img/desktop-passport-mockup.png?v=20260529");
  background-position: center right;
  background-size: cover;
}

.passport::before {
  content: "";
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 100'%3E%3Cpolyline points='88,0 100,50 88,100' fill='none' stroke='%23c9ff00' stroke-width='1.2' vector-effect='non-scaling-stroke' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.passport-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  padding: clamp(70px, 6vw, 116px) clamp(34px, 5vw, 88px);
  background: var(--cream);
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
}

.passport-copy h2 {
  max-width: 760px;
}

.passport-lead {
  font-size: clamp(23px, 1.35vw, 31px);
  font-weight: 300;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 30px;
  padding: 0;
  margin: 58px 0 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  position: relative;
  min-height: 72px;
  padding-left: 108px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -4px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: "Reguler", "Oswald", Impact, sans-serif;
  font-size: 34px;
}

.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 58px;
  width: 2px;
  height: calc(100% + 30px);
  background: repeating-linear-gradient(0deg, var(--orange) 0 8px, transparent 8px 16px);
}

.steps strong {
  display: block;
  font-family: "Reguler", "Oswald", Impact, sans-serif;
  font-size: clamp(23px, 1.35vw, 31px);
  font-weight: 400;
  line-height: 1.08;
}

.steps span {
  display: block;
  font-size: clamp(17px, 1.25vw, 25px);
  font-weight: 300;
}

.passport-art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 100%;
}

.passport-art .button {
  position: absolute;
  z-index: 1;
  left: 60%;
  bottom: clamp(22px, 3.2vw, 52px);
  transform: translateX(-50%);
}

.map-band {
  display: grid;
  grid-template-columns: minmax(380px, 0.7fr) minmax(520px, 1fr);
  align-items: stretch;
  border-bottom: 5px solid var(--lime);
}

.map-copy {
  display: grid;
  align-content: center;
  min-height: 200px;
  padding: clamp(48px, 5vw, 80px);
  color: var(--white);
  background: var(--ink);
}

.map-copy h2 {
  color: var(--white);
  margin-bottom: 22px;
}

.map-copy p:not(.kicker) {
  font-size: clamp(23px, 1.35vw, 31px);
  font-weight: 300;
}

.map-wrap {
  position: relative;
  overflow: hidden;
  z-index: 3;
  min-height: 300px;
  background: #edf1f4;
}

.map-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: default;
  touch-action: auto;
}

.map-viewport.is-dragging {
  cursor: grabbing;
}

.map-canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 295%;
  min-width: 100%;
  aspect-ratio: 4746 / 2302;
  min-height: 100%;
  transform: translate3d(calc(-50% - 15px), calc(-50% + 60px), 0);
  transform-origin: center;
  will-change: transform;
}

.map-canvas > img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: fill;
  user-select: none;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  z-index: 10;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--white);
  text-align: center;
  transform: translate(-50%, -100%);
}

.map-pin:hover,
.map-pin:focus-visible {
  z-index: 50;
}

.map-pin > img {
  width: clamp(42px, 3.2vw, 62px);
  height: clamp(42px, 3.2vw, 62px);
  min-height: 0;
  object-fit: contain;
}

.map-pin-card {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 5px);
  z-index: 80;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 230px;
  max-width: 46vw;
  min-height: 78px;
  padding: 13px 14px 12px;
  border: 2px solid var(--gold);
  box-sizing: border-box;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 8px 18px rgba(2, 17, 31, 0.14);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, 6px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.map-pin-card strong {
  display: block;
  width: 100%;
  font-family: "Reguler", "Oswald", Impact, sans-serif;
  font-size: clamp(14px, 0.82vw, 18px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.map-pin-card small {
  display: block;
  width: 100%;
  margin-top: 5px;
  font-size: clamp(9px, 0.54vw, 12px);
  font-weight: 300;
  line-height: 1.12;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: normal;
  overflow-wrap: normal;
}

.map-pin:hover .map-pin-card,
.map-pin:focus-visible .map-pin-card,
.map-pin.is-active .map-pin-card {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.map-controls {
  display: none;
}

.map-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  color: var(--ink);
  background: var(--cream);
  font: 400 28px/1 "Reguler", "Oswald", Impact, sans-serif;
  cursor: pointer;
}

.pin-office {
  left: 49.0%;
  top: 41.1%;
}

.pin-emilios {
  left: 52.6%;
  top: 44%;
}

.pin-mccrays {
  left: 50.1%;
  top: 51.1%;
}

.venues {
  padding: clamp(76px, 7vw, 124px) 0;
}

.venue-intro {
  font-size: clamp(23px, 1.35vw, 31px);
  font-weight: 300;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 74px);
  margin-top: 86px;
}

.venue-card {
  display: grid;
  align-content: start;
  min-height: 320px;
  padding: clamp(26px, 2.8vw, 46px);
  border: 5px solid var(--gold);
  border-radius: 26px;
}

.venue-card > img {
  width: min(360px, 90%);
  height: 92px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 22px;
}

.country {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #a83541;
  font-size: clamp(28px, 2.15vw, 44px);
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.country span {
  font-size: 34px;
}

.country.mexico,
.country.morocco {
  color: #2e7147;
}

.venue-card p:not(.country) {
  max-width: 470px;
  min-height: 72px;
  font-size: clamp(17px, 1.05vw, 23px);
  font-weight: 300;
}

.venue-card .button {
  justify-self: start;
  gap: 8px;
  margin-top: 12px;
}

.footer {
  color: var(--white);
  background-position: center bottom;
}

.footer-overlay {
  background: linear-gradient(180deg, rgba(8, 23, 43, 0.36), rgba(8, 23, 43, 0.82) 36%, rgba(8, 23, 43, 0.88));
}

.footer-content {
  position: relative;
  z-index: 2;
  width: min(100% - 8vw, 1780px);
  margin-inline: auto;
  padding: 78px 0 38px;
}

.social-callout {
  text-align: center;
}

.social-callout p {
  font-family: "Reguler", "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(18px, 1.12vw, 25px);
}

.social-callout strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.2vw, 22px);
  color: var(--gold);
  font-family: "Reguler", "Oswald", Impact, sans-serif;
  font-size: clamp(31px, 2.85vw, 56px);
  font-weight: 400;
  text-transform: uppercase;
}

.social-callout strong img {
  width: clamp(34px, 2.6vw, 54px);
  height: clamp(34px, 2.6vw, 54px);
  object-fit: contain;
}

.handles {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 72px);
  margin-top: 20px;
  font-size: clamp(18px, 1.3vw, 28px);
  font-weight: 400;
  text-transform: uppercase;
}

.handles a {
  color: var(--white);
}

.handles a:hover {
  color: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(520px, 1.9fr) minmax(340px, 1fr);
  gap: clamp(42px, 4.6vw, 82px);
  align-items: center;
  margin-top: 58px;
}

.footer-logo {
  justify-self: center;
  width: 190px;
}

.footer-links,
.signup {
  min-height: 210px;
  padding-left: clamp(34px, 3.4vw, 58px);
  border-left: 2px solid var(--orange);
}

.footer-links h2,
.signup h2 {
  color: var(--white);
  font-size: clamp(32px, 2.3vw, 48px);
  margin-bottom: 26px;
}

.footer-links {
  display: grid;
  align-content: center;
  grid-template-columns: 1fr;
  row-gap: 26px;
  justify-content: center;
  justify-items: center;
}

.footer-links h2 {
  display: block;
  margin: 0;
  font-size: clamp(2rem, 1.35vw, 30px);
  line-height: 1;
}

.footer-link-row,
.footer-action-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.footer-link-row {
  font-size: clamp(16px, 0.85vw, 20px);
  font-weight: 400;
  white-space: nowrap;
}

.footer-action-row {
  grid-column: auto;
  flex-wrap: nowrap;
}

.footer-action-row .button {
  min-height: 60px;
  padding: 16px 21px 13px;
  border-radius: 8px;
  font-size: clamp(16px, 0.87vw, 21px);
  white-space: nowrap;
}

.footer-action-row .text-action {
  font-size: clamp(16px, 0.9vw, 21px);
  white-space: nowrap;
}

.signup {
  display: grid;
  align-content: center;
  justify-items: center;
  justify-self: center;
  text-align: center;
  width: min(100%, 430px);
}

.signup .cf-turnstile {
  margin-top: 14px;
}

.signup label {
  font-size: clamp(17px, 1.02vw, 23px);
  font-weight: 350;
  margin-bottom: 18px;
}

.signup-row {
  display: flex;
  width: min(100%, 320px);
  height: 54px;
  border: 3px solid var(--lime);
  border-radius: 10px;
  overflow: hidden;
}

.signup input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 24px;
  color: var(--white);
  background: rgba(8, 23, 43, 0.65);
  font: 400 16px "Reguler", "Oswald", sans-serif;
  text-transform: uppercase;
}

.signup input::placeholder {
  color: var(--white);
  opacity: 0.9;
}

.signup button {
  width: 58px;
  border: 0;
  color: var(--ink);
  background: var(--lime);
  font-size: 30px;
  cursor: pointer;
  transition: opacity 160ms ease;
}

.signup button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.signup-status {
  min-height: 22px;
  margin-top: 12px;
  color: var(--white);
  font-size: 16px;
}

.signup-status[data-state="success"] {
  color: var(--lime);
}

.signup-status[data-state="error"] {
  color: var(--orange);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 34px;
  margin-top: 44px;
}

.footer-bottom small {
  font-size: 12px;
}

.footer-bottom small:last-child {
  text-align: right;
}

.footer-bottom small a {
  color: var(--white);
}

.footer-bottom small a:hover {
  color: var(--lime);
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}

.partner-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.partner-logos img {
  max-width: 180px;
  max-height: 54px;
  object-fit: contain;
}

@media (max-width: 1180px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

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

  .primary-nav {
    display: none;
  }

  .hero-inner,
  .two-column,
  .passport,
  .map-band,
  .venue-grid,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .brand-link {
    visibility: visible;
    width: 150px;
    justify-self: center;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-inner {
    gap: 28px;
  }

  .container,
  .footer-content,
  .hero-inner {
    width: min(100% - 32px, 1720px);
  }

  .experience-copy,
  .passport-copy,
  .map-copy,
  .venues .container,
  .stage-card {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .experience h2,
  .timeline h2,
  .passport-copy h2,
  .map-copy h2,
  .venues h2,
  .experience-copy > p:not(.kicker),
  .passport-lead,
  .venue-intro,
  .map-copy p:not(.kicker),
  .stage-card p,
  .steps strong,
  .steps span,
  .feature-icons strong {
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-logo {
    display: none;
  }

  .hero-copy {
    padding-top: 46px;
  }

  .hero-list li {
    grid-template-columns: 62px 1fr;
    width: 100%;
  }

  .hero-trophy {
    opacity: 0.45;
  }

  .feature-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .stage-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stage-ball {
    display: grid;
    place-items: center;
    min-height: 140px;
    width: 100%;
    overflow: hidden;
  }

  .stage-ball img {
    position: relative;
    inset: auto;
    width: 50%;
    height: 140px;
    object-fit: cover;
    object-position: 50% 46.5%;
    transform: none;
  }

  .passport-copy {
    clip-path: none;
  }

  .passport::before {
    display: none;
  }

  .footer-links {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links h2,
  .footer-action-row {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-link-row,
  .footer-action-row {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
  }

  .footer-links,
  .signup {
    min-height: unset;
    padding-left: 0;
    border-left: 0;
  }

  .handles,
  .partner-logos {
    flex-wrap: wrap;
  }

  .footer-bottom small,
  .footer-bottom small:last-child {
    text-align: center;
  }
}

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px 20px;
  }

  .site-header > .button {
    display: none;
  }

  .brand-link {
    width: 132px;
  }

  .hero {
    min-height: auto;
    padding-top: 230px;
    padding-bottom: 54px;
  }

  h1 {
    max-width: 100%;
    font-size: 27px;
    overflow-wrap: anywhere;
  }

  h2 {
    max-width: 100%;
    font-size: 31px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .container,
  .footer-content,
  .hero-inner {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-inline: auto;
  }

  .two-column,
  .stage-row,
  .map-band,
  .venue-grid,
  .footer-grid,
  .footer-bottom {
    max-width: 100%;
    min-width: 0;
  }

  .container.two-column {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }

  .passport {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .experience-copy,
  .passport-copy,
  .map-copy,
  .venues .container,
  .stage-card {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .experience h2,
  .timeline h2,
  .passport-copy h2,
  .map-copy h2,
  .venues h2 {
    width: 100%;
    max-width: calc(100vw - 32px);
    font-size: 25px;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-wrap: balance;
  }

  .hero-copy > p {
    max-width: 330px;
    font-size: 18px;
    line-height: 1.18;
  }

  .experience-copy > p:not(.kicker),
  .passport-lead,
  .venue-intro,
  .map-copy p:not(.kicker) {
    width: 100%;
    max-width: calc(100vw - 32px);
    font-size: 16px;
    line-height: 1.22;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .experience-copy > p:not(.kicker),
  .venue-intro,
  .passport-lead,
  .steps strong,
  .steps span,
  .stage-card p,
  .feature-icons strong {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-list li {
    grid-template-columns: 36px minmax(0, 1fr);
    width: 100%;
    min-height: 58px;
    font-size: 16px;
  }

  .line-icon {
    font-size: 34px;
  }

  .hero-actions,
  .footer-links {
    align-items: stretch;
  }

  .hero-actions > *,
  .footer-links > * {
    width: 100%;
  }

  .hero-actions .text-action {
    justify-content: center;
    text-align: center;
  }

  .button,
  .button-gold,
  .text-action {
    font-size: 20px;
  }

  .hero-trophy {
    display: none;
  }

  .kicker {
    gap: 14px;
    width: 100%;
    margin-bottom: 30px;
  }

  .kicker::after {
    flex: 1 1 auto;
    width: auto;
    margin-right: -16px;
  }

  .timeline .kicker.centered {
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
    font-size: 16px;
    white-space: nowrap;
    margin-bottom: 42px;
  }

  .timeline .kicker.centered::before {
    display: none;
  }

  .timeline .kicker.centered::after {
    flex: 1 1 0;
    min-width: 42px;
    max-width: none;
    margin-right: -16px;
  }

  .stage-row {
    gap: 10px;
    margin-top: 40px;
  }

  .feature-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    gap: 24px 18px;
    margin-top: 38px;
  }

  .feature-icons span {
    min-height: 52px;
    margin-bottom: 10px;
  }

  .feature-icons img {
    width: 52px;
    height: 52px;
  }

  .feature-icons strong {
    font-size: 15px;
  }

  .stage-card {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    min-height: unset;
    padding: 30px 24px;
    border-width: 5px;
    border-radius: 18px;
    text-align: center;
  }

  .stage-card h3 {
    font-size: 34px;
  }

  .stage-date {
    font-size: 18px;
    margin-bottom: 18px !important;
  }

  .stage-card p:not(.stage-date) {
    max-width: 100%;
    font-size: 15px;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .passport-copy,
  .map-copy {
    width: 100%;
    max-width: 100vw;
    padding: 20px 20px 0 20px;
  }

  .passport {
    background-image: none;
    background-color: var(--ink);
  }

  .passport-art {
    min-height: 315px;
    background-color: #1c120d;
    background-image: url("../img/mobile-passport-mockup.png?v=20260530");
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .passport-art .button {
    left: 50%;
    bottom: 24px;
    min-width: min(270px, calc(100vw - 80px));
    min-height: 64px;
    padding-inline: 28px;
    font-size: 20px;
    transform: translateX(-50%);
  }

  .passport::before {
    display: none;
  }

  .steps li {
    padding-left: 78px;
  }

  .steps li::before {
    width: 52px;
    height: 52px;
  }

  .steps li:not(:last-child)::after {
    left: 25px;
  }

  .steps strong {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .steps span {
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .map-canvas {
    width: 360%;
    transform: translate3d(calc(-50% - 8px), calc(-50% + 31px), 0);
  }

  .venue-intro {
    overflow-wrap: anywhere;
  }

  .footer-grid {
    gap: 34px;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 18px;
    width: 100%;
  }

  .footer-links h2 {
    display: none;
  }

  .footer-link-row,
  .footer-action-row {
    display: grid;
    justify-items: center;
    width: 100%;
    gap: 14px;
    white-space: normal;
  }

  .footer-link-row {
    font-size: 18px;
  }

  .footer-action-row {
    grid-column: auto;
  }

  .footer-action-row .button,
  .footer-action-row .text-action {
    width: min(100%, 300px);
    white-space: normal;
  }

  .venue-card {
    min-height: unset;
    padding: 28px;
    border-width: 4px;
  }

  .handles {
    display: grid;
  }

  .footer-logo {
    width: 168px;
  }

  .partner-logos {
    display: grid;
    gap: 22px;
  }

  .partner-logos img {
    width: 190px;
    max-width: 190px;
    max-height: 62px;
  }

  .partner-logos a:nth-child(2) img {
    width: 210px;
    max-width: 210px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom small:first-child {
    order: 2;
  }

  .partner-logos {
    order: 1;
  }

  .footer-bottom small:last-child {
    order: 3;
  }

  .signup-row {
    height: 64px;
  }

  .signup input {
    font-size: 18px;
  }
}
