:root {
  --bg: #0d0f0b;
  --surface: #14170f;
  --sunken: #080a07;
  --bone: #f2ede3;
  --secondary: #a8a296;
  --tertiary: #6e6a60;
  --brass: #c4a052;
  --brass-bright: #dcbe74;
  --under: #e05a45;
  --hairline: rgba(242, 237, 227, 0.14);
  --hairline-strong: rgba(242, 237, 227, 0.26);
  --glass: rgba(13, 15, 11, 0.74);
  --display: "Bodoni Moda", "GFS Didot", Didot, "Times New Roman", serif;
  --ui: Inter, "Inter Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1280px, calc(100vw - 72px));
  --header-height: 72px;
  --hero-shift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(196, 160, 82, 0.035), transparent 27%),
    var(--bg);
  color: var(--bone);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--bg);
  background: var(--brass-bright);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
strong,
b,
span {
  font-variant-numeric: tabular-nums;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 15px;
  transform: translateY(-180%);
  background: var(--bone);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-grain {
  position: fixed;
  inset: -60%;
  z-index: 999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  animation: grain-shift 0.35s steps(2) infinite;
}

@keyframes grain-shift {
  0% { transform: translate3d(-2%, -1%, 0); }
  25% { transform: translate3d(1%, 2%, 0); }
  50% { transform: translate3d(2%, -2%, 0); }
  75% { transform: translate3d(-1%, 1%, 0); }
  100% { transform: translate3d(-2%, -1%, 0); }
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow,
.micro-label {
  color: var(--brass);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.27em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

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

.button-solid {
  background: var(--brass);
  box-shadow: 0 8px 24px rgba(196, 160, 82, 0.13);
  color: #11130e;
}

.button-solid:hover {
  background: var(--brass-bright);
  box-shadow: 0 11px 30px rgba(196, 160, 82, 0.2);
}

.button-ghost {
  border-color: rgba(242, 237, 227, 0.35);
  background: rgba(8, 10, 7, 0.25);
  color: var(--bone);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  border-color: rgba(242, 237, 227, 0.66);
  background: rgba(242, 237, 227, 0.055);
}

.button-small {
  min-height: 38px;
  padding-inline: 19px;
  font-size: 11px;
}

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.login-link:focus-visible,
.wordmark:focus-visible,
.store-button:focus-visible,
.menu-button:focus-visible,
.hero-hotspot:focus-visible,
.footer-links a:focus-visible {
  outline: 2px solid var(--brass-bright);
  outline-offset: 4px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(242, 237, 227, 0.12);
  background: rgba(8, 10, 7, 0.9);
  transition: background 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-at-top:not(.menu-visible) {
  background: rgba(8, 10, 7, 0.91);
}

.site-header.is-scrolled,
.site-header.menu-visible {
  border-color: var(--hairline);
  background: rgba(8, 10, 7, 0.82);
  backdrop-filter: blur(18px) saturate(112%);
}

.nav-shell {
  display: grid;
  width: min(1440px, calc(100vw - 44px));
  min-height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-inline: auto;
}

.wordmark {
  justify-self: start;
  color: var(--bone);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.39em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.desktop-nav a,
.login-link {
  color: rgba(242, 237, 227, 0.78);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.login-link:hover,
.footer-links a:hover {
  color: var(--bone);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 21px;
  height: 1px;
  margin: 6px auto;
  background: var(--bone);
  transition: transform 220ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* Desktop hero — approved artwork */
.hero-desktop {
  display: block;
  padding-top: var(--header-height);
  border-bottom: 1px solid var(--hairline);
  background: var(--sunken);
}

.approved-hero {
  position: relative;
  width: min(1600px, 100vw);
  aspect-ratio: 864 / 540;
  margin-inline: auto;
  overflow: hidden;
  background-image: url("assets/hero-approved.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: translate3d(0, var(--hero-shift), 0);
  transform-origin: center top;
  will-change: transform;
}

.hero-hotspot {
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 4px;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.hero-hotspot:hover {
  background: rgba(220, 190, 116, 0.08);
  box-shadow: 0 0 0 1px rgba(220, 190, 116, 0.48), 0 10px 28px rgba(0, 0, 0, 0.2);
}

.hero-hotspot-primary {
  top: 40.5%;
  left: 4.9%;
  width: 18.4%;
  height: 13.5%;
}

.hero-hotspot-secondary {
  top: 40.5%;
  left: 22.9%;
  width: 22.1%;
  height: 13.5%;
}

.hero-mobile {
  display: none;
}

/* Destination marquee */
.marquee-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--sunken);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 31s linear infinite;
}

.marquee-set {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: clamp(17px, 2.2vw, 34px);
  padding: 22px clamp(18px, 2.2vw, 34px);
}

.marquee-set span {
  color: transparent;
  font-family: var(--display);
  font-size: clamp(37px, 4.8vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(196, 160, 82, 0.68);
}

.marquee-set i {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  transform: rotate(45deg);
  border: 1px solid var(--brass);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Shared section treatment */
.section {
  position: relative;
  padding-block: clamp(72px, 7vw, 112px);
}

.section-kicker,
.partners-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Four moments */
.moments {
  background: var(--bg);
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.moment-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--hairline-strong);
  border-radius: 7px;
  background: rgba(20, 23, 15, 0.76);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.13);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.moment-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 160, 82, 0.46);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
}

.moment-image {
  position: relative;
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  background: var(--sunken);
}

.moment-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 7, 0.1), transparent 46%, rgba(8, 10, 7, 0.22));
  pointer-events: none;
}

.moment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.04) brightness(0.82);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.moment-card:hover .moment-image img {
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.04) brightness(0.88);
}

.moment-title {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 17px;
}

.moment-title span {
  display: block;
  margin-bottom: 2px;
  color: rgba(242, 237, 227, 0.78);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1;
}

.moment-title h3 {
  margin: 0;
  color: var(--brass-bright);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.moment-body {
  position: relative;
  min-height: 118px;
  padding: 17px 43px 24px 17px;
}

.moment-body p {
  margin: 0;
  color: rgba(242, 237, 227, 0.82);
  font-size: 13px;
  line-height: 1.48;
}

.card-arrow {
  position: absolute;
  right: 17px;
  bottom: 15px;
  color: var(--brass);
  font-size: 22px;
  line-height: 1;
  transition: transform 220ms ease, color 220ms ease;
}

.moment-card:hover .card-arrow {
  transform: translateX(4px);
  color: var(--brass-bright);
}

/* Destinations */
.destinations {
  padding-top: clamp(20px, 2vw, 38px);
  background: var(--bg);
}

.destination-layout {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.destination-intro h2 {
  max-width: 210px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.text-link span {
  font-size: 17px;
  line-height: 0;
  transition: transform 180ms ease;
}

.text-link:hover {
  color: var(--brass-bright);
}

.text-link:hover span {
  transform: translateX(4px);
}

.destination-scroller {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.destination-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 0.88 / 1;
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  border-radius: 7px;
  background: var(--surface);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 160, 82, 0.48);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08) brightness(0.84);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 450ms ease;
}

.destination-card:hover img {
  transform: scale(1.04);
  filter: saturate(0.9) contrast(1.05) brightness(0.9);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 31%, rgba(8, 10, 7, 0.14) 48%, rgba(8, 10, 7, 0.96) 100%);
}

.destination-copy {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
}

.destination-copy h3 {
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.destination-copy p,
.destination-copy span {
  display: block;
  margin: 0;
  color: rgba(242, 237, 227, 0.8);
  font-size: 12px;
  line-height: 1.45;
}

.round-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -17px;
  display: grid;
  width: 36px;
  height: 36px;
  transform: translateY(-50%);
  place-items: center;
  border: 1px solid rgba(196, 160, 82, 0.62);
  border-radius: 50%;
  background: rgba(8, 10, 7, 0.88);
  color: var(--brass);
}

/* Games */
.games {
  padding-bottom: clamp(48px, 5vw, 76px);
  background: var(--bg);
}

.games-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.92fr);
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  border-radius: 4px;
  background: rgba(20, 23, 15, 0.52);
}

.games-copy {
  padding: 34px 30px 30px;
  border-right: 1px solid var(--hairline);
}

.games-copy h2 {
  max-width: 320px;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(39px, 3.8vw, 58px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.games-copy > p:not(.eyebrow) {
  max-width: 290px;
  margin-bottom: 23px;
  color: var(--secondary);
  font-size: 13px;
  line-height: 1.55;
}

.format-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.format-chips span {
  padding: 7px 12px 6px;
  border: 1px solid rgba(196, 160, 82, 0.62);
  border-radius: 4px;
  color: var(--brass-bright);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.leaderboard {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 14px 14px 0;
}

.leaderboard-scroll {
  min-width: 0;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 160, 82, 0.45) transparent;
}

.leaderboard-table {
  min-width: 690px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 3px 3px 0 0;
  background: rgba(8, 10, 7, 0.28);
}

.leaderboard-row {
  display: grid;
  min-height: 35px;
  grid-template-columns: 42px minmax(125px, 1.2fr) 55px minmax(115px, 1fr) 66px 54px 59px 54px 50px;
  align-items: center;
  border-bottom: 1px solid rgba(242, 237, 227, 0.08);
  color: rgba(242, 237, 227, 0.82);
  font-size: 12px;
}

.leaderboard-row:last-child {
  border-bottom: 0;
}

.leaderboard-row > * {
  min-width: 0;
  padding-inline: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leaderboard-row strong {
  color: var(--bone);
  font-weight: 500;
}

.leaderboard-row b {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
}

.leaderboard-row .under {
  color: var(--under);
}

.leaderboard-head {
  min-height: 32px;
  color: var(--brass);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.leaderboard-footer {
  display: grid;
  min-height: 72px;
  grid-template-columns: 1fr 150px 142px;
  align-items: center;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
  border-radius: 0 0 3px 3px;
}

.carry-note {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-inline: 18px;
}

.skin-stack {
  position: relative;
  display: block;
  width: 22px;
  height: 18px;
  flex: 0 0 22px;
}

.skin-stack::before,
.skin-stack::after {
  content: "";
  position: absolute;
  left: 1px;
  width: 18px;
  height: 8px;
  border: 2px solid var(--brass);
  border-radius: 50%;
}

.skin-stack::before {
  top: 0;
}

.skin-stack::after {
  top: 6px;
}

.carry-note p {
  margin: 0;
  color: rgba(242, 237, 227, 0.78);
  font-size: 11px;
  line-height: 1.35;
}

.live-indicator {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-left: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
}

.live-indicator i,
.live-label i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--under);
  box-shadow: 0 0 0 0 rgba(224, 90, 69, 0.44);
  animation: pulse-live 1.75s ease-out infinite;
}

.live-indicator strong {
  color: var(--under);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.leaderboard-footer > small {
  justify-self: center;
  color: var(--tertiary);
  font-size: 10px;
}

@keyframes pulse-live {
  0% { box-shadow: 0 0 0 0 rgba(224, 90, 69, 0.42); }
  70% { box-shadow: 0 0 0 9px rgba(224, 90, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 90, 69, 0); }
}

/* Partners */
.partners {
  padding-top: 0;
  background: var(--bg);
}

.partners-heading {
  margin-bottom: 25px;
  text-align: center;
}

.partners-heading .eyebrow {
  margin-bottom: 6px;
}

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

.partner-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  border-radius: 4px;
  background: var(--surface);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 160, 82, 0.45);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.19);
}

.partner-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.75) contrast(1.06) brightness(0.76);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 450ms ease;
}

.partner-card:hover > img {
  transform: scale(1.035);
  filter: saturate(0.86) contrast(1.04) brightness(0.82);
}

.partner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 15, 11, 0.99) 0%, rgba(13, 15, 11, 0.93) 36%, rgba(13, 15, 11, 0.45) 69%, rgba(13, 15, 11, 0.08) 100%);
}

.partner-content {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 78%;
  grid-template-columns: 47px minmax(0, 1fr);
  gap: 18px;
  padding: 26px 25px 24px;
}

.partner-icon {
  width: 43px;
  margin-top: 2px;
  fill: none;
  stroke: var(--brass);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-icon.crest {
  width: 39px;
}

.partner-content .eyebrow {
  margin-bottom: 7px;
}

.partner-content h3 {
  max-width: 370px;
  margin-bottom: 17px;
  font-family: var(--display);
  font-size: clamp(25px, 2.15vw, 34px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.partner-content ul {
  margin-bottom: 24px;
  padding-left: 18px;
  color: rgba(242, 237, 227, 0.77);
  font-size: 15px;
  line-height: 1.65;
}

.partner-content li::marker {
  color: var(--brass);
}

/* Download */
.download {
  padding: 48px 0 42px;
  background: var(--bg);
  text-align: center;
}

.download-inner h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.store-button {
  display: flex;
  min-width: 190px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 7px 15px;
  border: 1px solid rgba(242, 237, 227, 0.45);
  border-radius: 5px;
  background: rgba(8, 10, 7, 0.42);
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 237, 227, 0.72);
  background: rgba(242, 237, 227, 0.04);
}

.store-button svg {
  width: 27px;
  height: 27px;
  fill: var(--bone);
}

.store-button .play-icon {
  fill: none;
  stroke: var(--bone);
  stroke-width: 1.4;
}

.store-button span {
  display: flex;
  flex-direction: column;
}

.store-button small {
  color: rgba(242, 237, 227, 0.76);
  font-size: 8px;
  line-height: 1.1;
}

.store-button strong {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.12;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  background: var(--sunken);
}

.footer-links {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  margin-left: max(24px, calc((100vw - 1280px) / 2));
  padding: 29px 0 70px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links p {
  margin-bottom: 5px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--tertiary);
  font-size: 13px;
  line-height: 1.45;
  transition: color 180ms ease;
}

.footer-wordmark {
  position: absolute;
  right: 2.5vw;
  bottom: -15px;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(90px, 13.5vw, 220px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.8;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(242, 237, 227, 0.17);
}

.footer-legal {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  color: rgba(110, 106, 96, 0.74);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Mobile hero */
.glass-card {
  border: 1px solid rgba(242, 237, 227, 0.22);
  background: rgba(13, 15, 11, 0.82);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.27);
  backdrop-filter: blur(16px);
}

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --shell: min(1080px, calc(100vw - 48px));
  }

  .destination-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
  }

  .partner-content {
    max-width: 88%;
  }

  .games-panel {
    grid-template-columns: 300px minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 66px;
    --shell: min(900px, calc(100vw - 40px));
  }

  .desktop-nav,
  .login-link {
    display: none;
  }

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

  .nav-actions {
    grid-column: 2;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    border-bottom: 1px solid transparent;
    background: rgba(8, 10, 7, 0.96);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(18px);
    transition: max-height 280ms ease, padding 280ms ease, opacity 200ms ease, border-color 280ms ease;
  }

  .mobile-menu.is-open {
    max-height: 520px;
    padding-block: 22px 28px;
    border-color: var(--hairline);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a:not(.button) {
    padding: 13px 0;
    border-bottom: 1px solid rgba(242, 237, 227, 0.08);
    color: rgba(242, 237, 227, 0.85);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .mobile-menu .button {
    margin-top: 18px;
  }

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

  .destination-layout {
    grid-template-columns: 1fr;
  }

  .destination-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 20px;
  }

  .destination-intro .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -8px;
  }

  .destination-intro h2 {
    max-width: 420px;
    margin-bottom: 0;
    font-size: 34px;
  }

  .destination-scroller {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(235px, 1fr));
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .destination-scroller::-webkit-scrollbar {
    display: none;
  }

  .destination-card {
    scroll-snap-align: start;
  }

  .games-panel {
    grid-template-columns: 1fr;
  }

  .games-copy {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .games-copy h2 {
    max-width: 580px;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-content {
    max-width: 72%;
  }

  .footer-wordmark {
    right: -1vw;
    bottom: 18px;
    font-size: 17vw;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .nav-shell {
    width: calc(100vw - 28px);
  }

  .wordmark {
    font-size: 15px;
    letter-spacing: 0.31em;
  }

  .nav-actions > .button {
    display: none;
  }

  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    position: relative;
    display: block;
    min-height: 960px;
    overflow: hidden;
    padding-top: var(--header-height);
    border-bottom: 1px solid var(--hairline);
    background: var(--sunken);
  }

  .hero-mobile-backdrop,
  .hero-mobile-shade {
    position: absolute;
    inset: 0;
  }

  .hero-mobile-backdrop {
    background-image: url("assets/hero-mobile.webp");
    background-position: center top;
    background-size: cover;
    filter: saturate(0.75) contrast(1.08) brightness(0.63);
    transform: scale(1.03);
  }

  .hero-mobile-shade {
    background:
      linear-gradient(180deg, rgba(8, 10, 7, 0.52) 0%, rgba(8, 10, 7, 0.18) 31%, rgba(8, 10, 7, 0.58) 63%, rgba(8, 10, 7, 0.98) 100%),
      linear-gradient(90deg, rgba(8, 10, 7, 0.42), transparent 64%);
  }

  .mobile-hero-shell {
    position: relative;
    z-index: 2;
    width: var(--shell);
    margin-inline: auto;
    padding-top: 66px;
  }

  .mobile-hero-copy {
    position: relative;
    z-index: 3;
  }

  .mobile-hero-copy h1 {
    max-width: 540px;
    margin-bottom: 17px;
    font-family: var(--display);
    font-size: clamp(50px, 14vw, 72px);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.95;
  }

  .mobile-hero-copy h1 em {
    color: var(--brass);
    font-weight: 400;
  }

  .hero-mobile-sub {
    max-width: 520px;
    margin-bottom: 25px;
    color: rgba(242, 237, 227, 0.78);
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-mobile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
  }

  .hero-mobile-actions .button {
    min-height: 45px;
    padding-inline: 16px;
    font-size: 9px;
  }

  .mobile-product {
    position: relative;
    width: min(390px, 100%);
    height: 420px;
    margin: 22px auto -8px;
  }

  .approved-phone {
    position: absolute;
    top: 0;
    left: 50%;
    width: 190px;
    transform: translateX(-50%);
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.42));
    animation: phone-float 5.4s ease-in-out infinite;
  }

  .mobile-live-card {
    position: absolute;
    right: max(0px, calc(50% - 205px));
    bottom: 74px;
    width: 190px;
    padding: 14px 15px 13px;
    border-radius: 11px;
  }

  .live-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--brass);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .live-label i {
    width: 6px;
    height: 6px;
  }

  .mobile-live-card > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
  }

  .mobile-live-card strong {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 400;
  }

  .mobile-live-card b {
    color: var(--under);
    font-family: var(--display);
    font-size: 31px;
    font-weight: 400;
  }

  .mobile-live-card small {
    display: block;
    color: var(--tertiary);
    font-size: 9px;
    text-align: right;
  }

  .mobile-trip-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--hairline-strong);
    border-radius: 7px;
    background: rgba(13, 15, 11, 0.76);
    backdrop-filter: blur(18px);
  }

  .mobile-trip-summary > div {
    min-height: 94px;
    padding: 15px;
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }

  .mobile-trip-summary > div:nth-child(even) {
    border-right: 0;
  }

  .mobile-trip-summary > div:nth-child(n+3) {
    border-bottom: 0;
  }

  .mobile-trip-summary strong,
  .mobile-trip-summary small {
    display: block;
  }

  .mobile-trip-summary strong {
    margin-top: 7px;
    font-family: var(--display);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.1;
  }

  .mobile-trip-summary small {
    margin-top: 4px;
    color: var(--secondary);
    font-size: 9px;
  }

  @keyframes phone-float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -8px); }
  }

  .marquee-set {
    padding-block: 18px;
  }

  .marquee-set span {
    font-size: 38px;
  }

  .section {
    padding-block: 68px;
  }

  .section-kicker,
  .partners-heading h2 {
    font-size: 30px;
    letter-spacing: 0.025em;
  }

  .moment-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .moment-card {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(135px, 0.88fr);
  }

  .moment-image {
    aspect-ratio: 1.12 / 1;
    border-right: 1px solid var(--hairline);
    border-bottom: 0;
  }

  .moment-body {
    min-height: 0;
    padding: 19px 18px 42px;
  }

  .destination-intro {
    display: block;
  }

  .destination-intro .eyebrow {
    margin-bottom: 14px;
  }

  .destination-intro h2 {
    margin-bottom: 22px;
    font-size: 31px;
  }

  .destination-scroller {
    grid-template-columns: repeat(4, minmax(242px, 75vw));
    margin-right: -16px;
    padding-right: 16px;
  }

  .destination-card {
    aspect-ratio: 0.84 / 1;
  }

  .games-copy {
    padding: 27px 20px 24px;
  }

  .games-copy h2 {
    font-size: 43px;
  }

  .leaderboard {
    padding: 10px 10px 0;
  }

  .leaderboard-footer {
    grid-template-columns: 1fr 100px;
  }

  .leaderboard-footer > small {
    display: none;
  }

  .carry-note {
    padding-inline: 12px;
  }

  .live-indicator {
    border-right: 0;
  }

  .partner-card {
    min-height: 430px;
  }

  .partner-card > img {
    object-position: center bottom;
  }

  .partner-shade {
    background: linear-gradient(180deg, rgba(13, 15, 11, 0.99) 0%, rgba(13, 15, 11, 0.93) 54%, rgba(13, 15, 11, 0.3) 84%, rgba(13, 15, 11, 0.08) 100%);
  }

  .partner-content {
    max-width: 100%;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    padding: 23px 20px;
  }

  .partner-content h3 {
    font-size: 30px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-button {
    width: 210px;
  }

  .footer-links {
    width: var(--shell);
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 27px 38px;
    margin-inline: auto;
    padding-bottom: 145px;
  }

  .footer-wordmark {
    right: auto;
    bottom: 48px;
    left: 16px;
    font-size: 24vw;
  }
}

@media (max-width: 420px) {
  .hero-mobile {
    min-height: 980px;
  }

  .mobile-hero-shell {
    padding-top: 48px;
  }

  .mobile-hero-copy h1 {
    font-size: 52px;
  }

  .hero-mobile-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-mobile-actions .button {
    width: 100%;
  }

  .mobile-product {
    margin-top: 16px;
  }

  .approved-phone {
    width: 177px;
  }

  .mobile-live-card {
    right: -4px;
    width: 170px;
  }

  .moment-card {
    grid-template-columns: 1fr;
  }

  .moment-image {
    aspect-ratio: 1.48 / 1;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .moment-body {
    min-height: 105px;
  }

  .destination-scroller {
    grid-template-columns: repeat(4, minmax(225px, 78vw));
  }

  .partner-card {
    min-height: 465px;
  }

  .partner-content {
    grid-template-columns: 1fr;
  }

  .partner-icon {
    width: 38px;
  }

  .partner-content h3 {
    font-size: 28px;
  }
}

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

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

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

/* Initial entrance */
.hero-desktop .approved-hero {
  opacity: 0;
  filter: brightness(0.78);
  transition: opacity 950ms cubic-bezier(0.22, 1, 0.36, 1), filter 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-loaded .hero-desktop .approved-hero {
  opacity: 1;
  filter: none;
}

.hero-stage {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-loaded .hero-stage {
  opacity: 1;
  transform: none;
}

body.is-loaded .stage-1 { transition-delay: 70ms; }
body.is-loaded .stage-2 { transition-delay: 170ms; }
body.is-loaded .stage-3 { transition-delay: 290ms; }
body.is-loaded .stage-4 { transition-delay: 390ms; }
body.is-loaded .stage-5 { transition-delay: 520ms; }
body.is-loaded .stage-6 { transition-delay: 680ms; }

/* Desktop spacing tuned to the proportions of the approved composition. */
@media (min-width: 761px) {
  .moments {
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .destinations {
    padding-top: 14px;
    padding-bottom: 58px;
  }

  .games {
    padding-top: 46px;
    padding-bottom: 52px;
  }

  .partners {
    padding-bottom: 52px;
  }

  .partner-card {
    min-height: 278px;
  }

  .download {
    padding-top: 36px;
    padding-bottom: 32px;
  }
}

.partner-card > img {
  object-position: center;
}
