:root {
  --red: #ef0011;
  --ink: #080808;
  --paper: #f2f3f5;
  --soft: #f5f5f5;
  --line: #dadada;
  --muted: #6d6d6d;
}

* {
  box-sizing: border-box;
}

[hidden],
.is-nav-hidden {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

#top,
#airdeck,
#share-win,
#dazcloud,
#screens,
#sales,
#coming-soon,
#used-for-sale,
#equipment,
#merchandise,
#clubs,
#social,
#competition-use,
#feedback {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.has-social-window {
  overflow: hidden;
}

main {
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.2vw, 16px);
  min-height: 70px;
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

nav {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(5px, .7vw, 12px);
  font-size: clamp(.72rem, .78vw, .9rem);
  font-weight: 650;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

nav::-webkit-scrollbar {
  display: none;
}

nav a {
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 96px;
  min-height: 30px;
  padding: 5px 4px;
  text-align: center;
  line-height: 1.05;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

nav a[href="share-win.html"] {
  color: var(--red);
  font-weight: 900;
}

nav a[href="catch-phrase.html"] {
  color: var(--red);
  font-weight: 900;
}

nav a[href="spin-to-win.html"] {
  color: var(--red);
  font-weight: 900;
}

nav a.is-active {
  color: var(--paper);
  background: #707070;
  border-color: #707070;
  border-radius: 8px;
  padding-left: 9px;
  padding-right: 9px;
  font-weight: 900;
}

nav a[href="share-win.html"].is-active {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

nav a[href="catch-phrase.html"].is-active {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

nav a[href="spin-to-win.html"].is-active {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

nav a.nav-latest-news {
  color: #f28c00;
}

nav a.nav-latest-news.is-active {
  color: #f28c00;
  background: #fff2df;
  border-color: #f28c00;
}

.nav-two-line {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1.05;
}

.nav-two-line span {
  white-space: nowrap;
}

nav a[href="equipment-replacement.html"] {
  max-width: 108px;
}

.mobile-home-link {
  display: none;
}

.header-socials {
  display: none;
}

.header-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  height: auto;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: inherit;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
}

button.header-social {
  appearance: none;
  -webkit-appearance: none;
}

.header-social span {
  display: none;
}

.header-social-instagram {
  min-width: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.header-share {
  padding: 0;
}

.header-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-referral-prompt {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 8px;
  width: min(320px, calc(100vw - 28px));
  padding: 16px;
  color: #fff;
  background: #111;
  border: 2px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
  transform: translateY(18px);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}

.instagram-referral-prompt.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.instagram-referral-prompt strong {
  padding-right: 20px;
  font-size: 1.1rem;
  line-height: 1.15;
}

.instagram-referral-kicker {
  max-width: 26ch;
  color: #ff3445;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.instagram-referral-prompt a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  padding: 8px 11px;
  color: #111;
  background: #fff;
  border-radius: 6px;
  font-weight: 800;
}

.instagram-referral-prompt svg {
  width: 20px;
  height: 20px;
  fill: none;
}

.instagram-referral-close {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 26px;
  height: 26px;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.header-clicker {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 8px;
  row-gap: 1px;
  min-width: 92px;
  padding: 7px 10px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 8px;
}

.header-clicker span {
  color: #d9d9d9;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.header-clicker strong {
  grid-row: span 2;
  font-size: 1.42rem;
  line-height: .9;
}

.header-clicker small {
  color: #ededed;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.contact-link {
  flex: 0 0 auto;
  padding: 10px 12px;
  color: var(--paper);
  background: var(--red);
  border-radius: 6px;
  font-size: .92rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(24px, 6vw, 88px);
  padding: clamp(34px, 6vw, 74px) clamp(18px, 5vw, 82px) clamp(28px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  align-self: start;
  display: grid;
  place-items: center;
  min-height: 390px;
  padding-top: clamp(26px, 4vw, 44px);
}

.hero-media-tagline {
  width: min(100%, 520px);
  margin: 14px auto 0;
  text-align: center;
}

.hero-media img {
  width: min(100%, 510px);
  max-height: min(62vh, 510px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .16));
}

.hero-video {
  width: min(100%, 520px);
  max-height: min(72vh, 680px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--ink);
  border: 10px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 24px 46px rgba(0, 0, 0, .22);
}

.video-shell {
  position: relative;
  display: inline-grid;
}

.sound-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  color: var(--paper);
  background: rgba(239, 0, 17, .96);
  border: 2px solid var(--paper);
  border-radius: 999px;
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.sound-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sound-toggle.is-on .sound-slash {
  display: none;
}

.hero-copy {
  align-self: start;
  max-width: 760px;
}

.hero-logo {
  display: block;
  width: min(100%, 520px);
  max-height: 340px;
  margin: 0 0 24px;
  object-fit: contain;
}

.hero-global-reach {
  margin: 0 0 22px;
}

.hero-global-reach h2 {
  max-width: 720px;
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: .96;
  white-space: nowrap;
}

.hero-global-reach .global-reach-map {
  width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-tagline {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(1.15rem, 2.2vw, 1.85rem);
  line-height: 1.08;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 9vw, 8rem);
  line-height: .86;
  font-weight: 800;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  line-height: .95;
  font-weight: 800;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  line-height: 1.1;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.lead {
  max-width: 620px;
  color: #2d2d2d;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.45;
  text-wrap: pretty;
}

.motto {
  max-width: 680px;
  margin: 28px 0 0;
  padding: 16px 18px;
  color: var(--paper);
  background: var(--red);
  border-radius: 8px;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.button.primary {
  color: var(--paper);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: var(--paper);
}

.button.feedback {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.mobile-only,
.sales-contact-mobile {
  display: none;
}

.airdeck-contact-desktop,
.screen-contact {
  width: fit-content;
  margin-top: 18px;
}

.intro,
.clubs,
.social,
.sales,
.coming-soon,
.used-sale,
.equipment,
.merchandise,
.rules-band,
.dazcloud,
.screen-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(24px, 6vw, 76px);
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 82px);
  border-bottom: 1px solid var(--line);
}

.intro p,
.club-copy p,
.social p,
.sales-copy p,
.coming-copy p,
.used-sale p,
.equipment-copy p,
.merch-copy p,
.rules-copy p,
.dazcloud-copy p,
.screen-copy p {
  max-width: 700px;
  color: #303030;
  font-size: 1.08rem;
  line-height: 1.6;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-self: center;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat-grid div {
  min-height: 130px;
  padding: 20px;
  background: var(--paper);
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.stat-grid span {
  color: var(--muted);
  line-height: 1.35;
}

.public-leaderboard {
  display: grid;
  grid-template-columns: minmax(0, .48fr) minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 30px);
  align-items: stretch;
  padding: clamp(28px, 5vw, 58px) clamp(18px, 5vw, 82px);
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.public-leaderboard-copy h2 {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 4rem);
}

.public-leaderboard-copy p {
  margin: 0;
  color: #e9e9e9;
  line-height: 1.45;
}

.public-leaderboard-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.public-leaderboard-list article {
  display: grid;
  align-content: space-between;
  min-height: 132px;
  padding: 14px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
}

.public-leaderboard-list span {
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.public-leaderboard-list strong {
  display: block;
  margin: 10px 0;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.05;
}

.public-leaderboard-list p {
  margin: 0;
  color: #282828;
  font-size: .88rem;
  line-height: 1.25;
}

.public-leaderboard-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.public-leaderboard-list .share-reach-lines {
  display: grid;
  gap: 1px;
  font-size: .66rem;
  line-height: 1.05;
}

.public-leaderboard-list .share-reach-lines em {
  display: block;
  font-style: normal;
  white-space: nowrap;
}

.public-leaderboard > .button {
  align-self: center;
  white-space: nowrap;
}

.global-reach-section,
.share-checkin-section {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px clamp(18px, 4vw, 54px);
  background: #eeeeee;
  border-top: 1px solid #d8d8d8;
}

.home-global-reach {
  padding-top: 22px;
}

.global-reach-copy h2,
.share-checkin-section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: .94;
}

.global-reach-copy p,
.share-checkin-section p {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.3;
}

.global-reach-map {
  display: grid;
  grid-template-columns: 228px 1fr;
  gap: 16px;
  align-items: start;
  height: 254px;
  min-height: 254px;
  padding: 12px 14px;
  border: 1px solid #d5d5d5;
  border-left: 8px solid var(--red);
  border-radius: 8px;
  background: #fff;
}

.global-globe-panel {
  display: grid;
  justify-items: center;
  align-self: start;
}

.global-globe {
  position: relative;
  width: min(228px, 44vw);
  aspect-ratio: 1;
  align-self: start;
  border-radius: 50%;
  overflow: hidden;
  background: #07121d;
  box-shadow: inset -22px -20px 0 rgba(0,0,0,.24), 0 12px 26px rgba(0,0,0,.16);
}

.global-subscribe-button {
  min-height: 28px;
  padding: 0 10px;
  font-size: .68rem;
  line-height: 1;
  background: #f28c00;
  align-self: center;
  white-space: nowrap;
}

.global-subscribe-mobile {
  display: none;
}

.global-subscribe-button:hover,
.global-subscribe-button:focus-visible {
  background: var(--red);
}

.global-globe::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 24%, rgba(255,255,255,.55), transparent 18%),
    radial-gradient(circle at 72% 50%, transparent 42%, rgba(0,0,0,.42) 78%),
    linear-gradient(90deg, rgba(0,0,0,.34), transparent 26%, transparent 68%, rgba(0,0,0,.48));
  pointer-events: none;
  z-index: 4;
}

.global-globe::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .28);
  pointer-events: none;
  z-index: 5;
}

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

.global-map-markers {
  display: none;
}

.map-spin-layer {
  animation: global-svg-lateral-spin 42s linear infinite;
}

.map-ocean {
  fill: url(#global-ocean-shade);
}

.map-land path {
  fill: #e9f0ed;
  opacity: .96;
  stroke: rgba(1, 10, 16, .18);
  stroke-width: 1;
}

.map-grid {
  fill: none;
  stroke: rgba(255, 255, 255, .28);
  stroke-width: 2;
}

.global-globe i {
  display: none;
}

.global-globe em {
  display: none;
}

.global-earth-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.global-stats {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) minmax(0, 1fr);
  gap: 7px;
  max-height: 228px;
  overflow: hidden;
  align-self: stretch;
}

.global-stat-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: baseline;
  white-space: nowrap;
}

.global-stat-row strong {
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1;
}

.global-stat-row span {
  color: #555;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(10px, 1vw, 12px);
}

.global-mini-list {
  display: block;
  gap: 6px;
  min-height: 0;
  max-height: 80px;
  overflow: hidden;
  padding-right: 4px;
}

.global-scroll-track {
  display: grid;
  gap: 4px;
  will-change: transform;
}

.global-mini-list b {
  position: sticky;
  top: 0;
  margin-bottom: 4px;
  background: #fff;
  z-index: 1;
}

.global-mini-list b {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--red);
  text-transform: uppercase;
}

.global-mini-list b span {
  color: #666;
  font-size: 11px;
}

.global-mini-list small {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 5px 8px;
  border-radius: 6px;
  background: #f1f1f1;
  font-weight: 800;
}

@keyframes global-list-loop {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(var(--global-scroll-distance, 0px) * -1));
  }
}

.global-mini-list small span {
  color: var(--red);
}

.global-mini-list small[data-accent="orange"] span {
  color: #f97316;
}

.global-mini-list .global-empty-row {
  justify-content: flex-start;
  color: #666;
}

.global-used-list b {
  color: #119447;
}

.global-used-list small span {
  color: #119447;
  text-align: right;
}

.latest-news {
  display: grid;
  grid-template-columns: minmax(0, .42fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
  padding: clamp(34px, 6vw, 70px) clamp(18px, 5vw, 82px);
  background: #f1f1f1;
  border-bottom: 1px solid var(--line);
}

.latest-news-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: .98;
}

.latest-news-copy p {
  max-width: 560px;
  color: #303030;
  line-height: 1.5;
}

.latest-news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.latest-news-list article {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  min-height: 150px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 8px solid var(--red);
  border-radius: 8px;
}

.latest-news-list article > img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  border-radius: 6px;
  background: #ddd;
}

.latest-news-list span {
  color: var(--red);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.latest-news-list strong {
  display: block;
  margin: 6px 0;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.05;
}

.latest-news-list p {
  margin: 0 0 10px;
  color: #333;
  line-height: 1.35;
}

.latest-news-list a {
  color: var(--red);
  font-weight: 900;
}

.latest-news-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, min(42vw, 560px));
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  max-width: 100%;
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 82px) clamp(28px, 5vw, 54px);
  background: #f1f1f1;
  border-bottom: 1px solid var(--line);
}

.latest-news-page h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7.5vw, 7.2rem);
  line-height: .88;
}

.latest-news-page .lead {
  max-width: 720px;
  margin: 0;
  color: #282828;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.45;
}

.latest-subscribe-button {
  margin-top: 22px;
  color: var(--paper);
  background: #f28c00;
  border-color: #f28c00;
}

.latest-subscribe-button:hover,
.latest-subscribe-button:focus-visible {
  color: #f28c00;
  background: var(--paper);
}

.latest-news-hero-image {
  position: relative;
  margin: 0;
  min-height: 320px;
  align-self: start;
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  background: #e8e8e8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.latest-news-page .latest-news-hero-image {
  margin-top: 0;
}

.latest-news-hero-image[hidden] {
  display: none;
}

.latest-news-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.latest-news-hero-image figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: var(--paper);
  background: rgba(8, 8, 8, .78);
  border-left: 4px solid #f28c00;
  border-radius: 6px;
  font-weight: 900;
}

.latest-news-standalone {
  grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr);
  padding-top: clamp(30px, 5vw, 62px);
}

.latest-subscribe-section {
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(320px, .8fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: start;
  padding: clamp(38px, 6vw, 78px) clamp(18px, 5vw, 82px);
  background: #e9e9e9;
  border-bottom: 1px solid var(--line);
}

.latest-subscribe-section h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: .92;
}

.latest-subscribe-section p {
  max-width: 620px;
  color: #303030;
  font-size: 1.08rem;
  line-height: 1.5;
}

.latest-subscribe-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 8px solid #f28c00;
  border-radius: 8px;
}

.latest-subscribe-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.latest-subscribe-form input,
.latest-subscribe-form select,
.latest-subscribe-form textarea {
  width: 100%;
  min-width: 0;
  padding: 12px;
  border: 2px solid var(--line);
  border-radius: 6px;
  font: inherit;
  background: #fff;
}

.latest-subscribe-form textarea {
  resize: vertical;
}

.latest-subscribe-result {
  padding: 14px;
  background: #fff7eb;
  border: 1px solid #f28c00;
  border-radius: 8px;
}

.latest-subscribe-result[hidden] {
  display: none;
}

.latest-subscribe-result strong {
  display: block;
  color: #f28c00;
  text-transform: uppercase;
}

.latest-subscribe-result p {
  margin: 4px 0 0;
}

.top-public-leaderboard {
  position: relative;
  --leaderboard-copy-width: clamp(168px, 11vw, 198px);
  --leaderboard-gap: clamp(6px, .9vw, 10px);
  --leaderboard-clearance: clamp(6px, .6vw, 10px);
  grid-template-columns: var(--leaderboard-copy-width) minmax(0, 1fr);
  gap: var(--leaderboard-gap);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 76px;
  padding: 3px 0;
  border-top: 3px solid var(--red);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .1);
}

@media (min-width: 901px) {
  .top-public-leaderboard {
    position: sticky;
    top: 70px;
    z-index: 18;
  }

  #top,
  #airdeck,
  #share-win,
  #dazcloud,
  #screens,
  #sales,
  #coming-soon,
  #used-for-sale,
  #equipment,
  #merchandise,
  #clubs,
  #social,
  #competition-use,
  #feedback {
    scroll-margin-top: 156px;
  }
}

.top-public-leaderboard::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--leaderboard-copy-width) + var(--leaderboard-gap) + 2px);
  background: var(--ink);
  z-index: 2;
  pointer-events: none;
}

.top-public-leaderboard.is-catch-ribbon {
  --leaderboard-copy-width: clamp(168px, 10.8vw, 194px);
  --leaderboard-clearance: clamp(8px, .8vw, 12px);
}

.top-public-leaderboard.is-catch-ribbon .public-leaderboard-copy {
  gap: 2px;
}

.top-public-leaderboard.is-catch-ribbon .public-leaderboard-copy h2 {
  margin-bottom: 0;
  width: 142px;
  max-width: 142px;
  font-size: clamp(.68rem, .82vw, .82rem);
  line-height: 1.05;
  white-space: normal;
}

.top-public-leaderboard .public-leaderboard-copy {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 2px;
  min-height: 100%;
  padding-left: clamp(22px, 1.8vw, 34px);
  background: var(--ink);
  box-shadow: 2px 0 0 var(--ink);
}

.top-public-leaderboard .public-leaderboard-copy .eyebrow {
  margin-bottom: 1px;
  font-size: .56rem;
}

.top-public-leaderboard .public-leaderboard-copy h2 {
  margin-bottom: 2px;
  max-width: 128px;
  font-size: clamp(.62rem, .68vw, .72rem);
  line-height: 1;
  white-space: normal;
}

.top-public-leaderboard .public-leaderboard-copy p {
  display: none;
}

.top-public-leaderboard .public-leaderboard-list {
  position: absolute;
  inset: clamp(4px, .8vw, 7px) 0 clamp(4px, .8vw, 7px) 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 132px;
  grid-template-columns: none;
  gap: 4px;
  overflow: hidden;
  padding-left: calc(var(--leaderboard-copy-width) + var(--leaderboard-gap) + var(--leaderboard-clearance));
  padding-bottom: 2px;
  z-index: 1;
  align-content: center;
}

.top-public-leaderboard .public-leaderboard-list article {
  min-height: 40px;
  padding: 3px 6px;
  scroll-snap-align: start;
}

.top-public-leaderboard .public-leaderboard-list .leaderboard-rank-spacer {
  min-height: 40px;
  padding: 3px 6px;
  visibility: visible;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .12) 0 6px, rgba(255, 255, 255, .04) 6px 12px),
    rgba(255, 255, 255, .08);
  border: 1px dashed rgba(255, 255, 255, .3);
  opacity: .55;
}

.public-leaderboard-list .previous-winner-card,
.top-public-leaderboard .public-leaderboard-list .previous-winner-card {
  color: var(--paper);
  background: #2f2f2f;
}

.public-leaderboard-list .previous-winner-card span,
.public-leaderboard-list .previous-winner-card p,
.top-public-leaderboard .public-leaderboard-list .previous-winner-card span,
.top-public-leaderboard .public-leaderboard-list .previous-winner-card p {
  color: var(--paper);
}

.public-leaderboard-list .previous-winner-card span,
.top-public-leaderboard .public-leaderboard-list .previous-winner-card span {
  color: var(--red);
}

.top-public-leaderboard .public-leaderboard-list span {
  font-size: .48rem;
}

.top-public-leaderboard .public-leaderboard-list strong {
  margin: 1px 0;
  font-size: clamp(.62rem, .74vw, .74rem);
}

.top-public-leaderboard .public-leaderboard-list p {
  font-size: .52rem;
  line-height: 1.1;
}

.top-public-leaderboard .public-leaderboard-list small {
  margin-top: 2px;
}

.top-public-leaderboard .public-leaderboard-list .share-reach-lines {
  font-size: .5rem;
  line-height: 1;
}

.top-public-leaderboard .public-leaderboard-copy > .button {
  width: fit-content;
  min-height: 18px;
  padding: 0 8px;
  font-size: .54rem;
  line-height: 1;
}

.top-public-leaderboard .ribbon-button-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 142px;
  gap: 2px;
}

.top-public-leaderboard .ribbon-button-row .button {
  width: 100%;
  min-height: 17px;
  padding: 0 7px;
  font-size: .48rem;
  line-height: 1;
  white-space: nowrap;
  justify-content: center;
}

@media (min-width: 861px) {
  .top-public-leaderboard + section {
    padding-top: clamp(18px, 3vw, 38px);
  }

  .top-public-leaderboard + .hero {
    min-height: auto;
  }
}

.feature-band {
  padding: clamp(56px, 8vw, 118px) clamp(18px, 5vw, 82px);
  color: var(--paper);
  background: var(--ink);
}

.feature-band .eyebrow {
  color: #ff4b55;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(34px, 6vw, 68px);
}

.airdeck-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 260px);
  align-items: start;
  gap: clamp(20px, 4vw, 44px);
  max-width: none;
}

.competition-badge {
  margin: 0;
  padding: 10px;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
}

.competition-badge img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.section-motto {
  margin: 22px 0 0;
  color: var(--paper);
  font-size: clamp(1.4rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .2);
}

.feature-grid article {
  min-height: 250px;
  padding: 28px;
  background: #111;
}

.number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--red);
  font-weight: 800;
}

.feature-grid p {
  color: #d9d9d9;
  line-height: 1.58;
}

.airdeck-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: 16px;
  margin-top: clamp(28px, 5vw, 54px);
}

.airdeck-photo {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  overflow: hidden;
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
}

.airdeck-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.airdeck-photo-wide img {
  object-position: center;
}

.airdeck-photo figcaption {
  padding: 14px 16px;
  color: #f0f0f0;
  font-weight: 800;
  line-height: 1.35;
}

.airdeck-safety {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  grid-template-rows: 1fr auto;
  gap: clamp(24px, 6vw, 76px);
  row-gap: 18px;
  margin-top: clamp(28px, 5vw, 54px);
}

.airdeck-safety .rules-copy {
  grid-column: 1;
  grid-row: 1;
}

.airdeck-safety .rule-list {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: start;
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .2);
  counter-reset: airdeck-rule;
}

.airdeck-safety .rule-list div {
  padding: 28px;
  background: #111;
  counter-increment: airdeck-rule;
}

.airdeck-safety .rule-list div::before {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: .12em;
  content: counter(airdeck-rule, decimal-leading-zero);
}

.airdeck-safety .rule-list strong {
  color: var(--paper);
  font-size: 1.12rem;
}

.airdeck-safety .rule-list span {
  color: #d9d9d9;
}

.airdeck-safety .rules-copy p:not(.eyebrow) {
  color: #e8e8e8;
}

.airdeck-safety-contact {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  align-self: end;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  text-align: center;
}

.rules-band {
  align-items: stretch;
  background: var(--paper);
}

.feedback-section {
  align-items: stretch;
}

.feedback-left {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.feedback-left p {
  max-width: 700px;
  color: #303030;
  font-size: 1.08rem;
  line-height: 1.6;
}

.feedback-submit {
  display: grid;
  justify-items: start;
  gap: 12px;
  margin-top: clamp(16px, 2.4vw, 24px);
}

.feedback-submit h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.feedback-section > .feedback-sheet-frame {
  align-self: stretch;
  margin-top: 0;
}

.rules-copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.feedback-sheet-frame {
  flex: 1 1 auto;
  width: 100%;
  min-height: 330px;
  margin-top: clamp(18px, 3vw, 30px);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-sizing: border-box;
}

.feedback-sheet-frame iframe {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 330px;
  border: 0;
  box-sizing: border-box;
}

.rule-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.rules-band > .rules-copy {
  order: 2;
}

.rules-band > .rule-list {
  order: 1;
}

.rule-list div {
  padding: 22px;
  background: var(--soft);
}

.rule-list strong,
.rule-list span {
  display: block;
}

.rule-list strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.rule-list span {
  color: var(--muted);
  line-height: 1.45;
}

.feedback-card {
  display: grid;
  align-content: space-between;
  min-height: 150px;
  padding: 22px;
  color: var(--paper);
  background: var(--red);
}

.feedback-card span {
  color: var(--paper);
  font-weight: 800;
  text-transform: uppercase;
}

.feedback-card strong {
  margin-top: 20px;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: .96;
}

.dazcloud {
  --dazcloud-panel-height: clamp(390px, 31vw, 460px);
  align-items: stretch;
  background: var(--paper);
}

.dazcloud-copy {
  align-self: stretch;
}

.cloud-visual {
  align-self: start;
}

.dazcloud-copy {
  display: flex;
  flex-direction: column;
}

.dazcloud-contact {
  align-self: flex-start;
  margin-top: 4px;
}

.dazcloud-support-section {
  padding: clamp(42px, 6vw, 84px) clamp(18px, 5vw, 82px);
  background: #f1f1f1;
}

.dazcloud-support-section .section-heading {
  margin-bottom: 24px;
}

.dazcloud-support-form {
  max-width: 980px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  border-radius: 8px;
  background: #fff;
}

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

.cloud-visual {
  display: grid;
  gap: 16px;
}

.cloud-graphic {
  margin: 0;
  padding: clamp(10px, 2vw, 16px);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
}

.cloud-graphic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.cloud-panel {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 1px;
  min-height: var(--dazcloud-panel-height);
  background: var(--line);
  border: 1px solid var(--line);
}

.cloud-panel div {
  padding: 18px;
  background: var(--soft);
}

.cloud-panel .number {
  margin-bottom: 10px;
}

.cloud-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.cloud-panel p {
  margin: 0;
  color: #303030;
  line-height: 1.45;
}

.dazcloud .screen-points span {
  color: var(--ink);
  background: var(--soft);
  border-color: var(--line);
}

.dazcloud-judging {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 8px;
  flex: 0 0 auto;
  height: var(--dazcloud-panel-height);
  margin-top: auto;
  padding-top: 0;
}

.dazcloud-judging figure {
  margin: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dazcloud-judging img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 30%;
}

.dazcloud-judging .world-champs-photo img {
  object-position: center center;
}

.dazcloud-judging p {
  grid-column: 1 / -1;
  max-width: none;
  margin: 2px 0 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.3;
}

.screen-offer {
  align-items: start;
  color: var(--paper);
  background: var(--ink);
}

.screen-offer .eyebrow {
  color: #ff4b55;
}

.screen-offer p {
  color: #ededed;
}

.screen-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.screen-points span {
  padding: 10px 12px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
  font-weight: 800;
}

.screen-support-photo {
  margin: clamp(18px, 3vw, 30px) 0 0;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.screen-support-photo img {
  display: block;
  width: 100%;
  height: clamp(250px, 25vw, 380px);
  object-fit: cover;
}

.promo-card {
  margin: 0;
  padding: clamp(10px, 2vw, 18px);
  background: #050505;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  align-self: start;
}

.promo-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.sales {
  align-items: stretch;
  background: var(--paper);
}

.sales-copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.sales-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.sales-grid article {
  min-height: 170px;
  padding: 24px;
  background: var(--soft);
}

.sales-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.sales-grid p {
  margin: 0;
  color: #303030;
  line-height: 1.55;
}

.sales-contact-mobile {
  margin-top: 18px;
}

.sales-world-cup {
  margin: auto 0 0;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sales-world-cup img {
  display: block;
  width: 100%;
  height: clamp(150px, 16vw, 220px);
  object-fit: cover;
}

.sales-contact-desktop {
  align-self: flex-start;
  margin-top: 12px;
}

.coming-soon {
  align-items: stretch;
  color: var(--paper);
  background: var(--ink);
}

.coming-soon .eyebrow,
.used-sale .eyebrow {
  color: #ff4b55;
}

.coming-soon p {
  color: #ededed;
}

.coming-copy {
  align-self: start;
  padding-top: 2px;
}

.coming-preview {
  max-width: 360px;
  margin: 18px 0 0;
  overflow: hidden;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
}

.coming-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.coming-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.coming-grid article {
  min-height: 150px;
  padding: 22px;
  background: #111;
}

.coming-item-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
  object-fit: cover;
  background: #050505;
  border-radius: 6px;
}

.coming-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--paper);
  background: var(--red);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coming-grid strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.2;
}

.coming-grid p {
  margin: 8px 0 0;
  color: #d9d9d9;
  line-height: 1.4;
}

.used-sale {
  align-items: center;
  background: var(--paper);
}

.used-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.used-listings {
  display: grid;
  gap: 12px;
}

.used-banner {
  display: grid;
  place-items: center;
  min-height: 150px;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(239, 0, 17, .9), rgba(8, 8, 8, .92)),
    var(--ink);
  border-radius: 8px;
}

.used-banner span {
  padding: 12px 18px;
  border: 2px solid rgba(255, 255, 255, .65);
  border-radius: 999px;
  font-size: clamp(1.2rem, 2.4vw, 2.4rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.used-table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.used-table th,
.used-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.used-table th {
  color: var(--paper);
  background: var(--ink);
  font-size: .82rem;
  text-transform: uppercase;
}

.used-table td:first-child {
  width: 72px;
  font-weight: 900;
}

.used-table td:nth-child(2) {
  width: 150px;
  padding: 10px;
}

.used-table td:nth-child(3) {
  font-weight: 850;
}

.used-item-photo {
  display: block;
  width: 132px;
  height: 92px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.used-table tr:last-child td {
  border-bottom: 0;
}

.equipment {
  align-items: start;
  color: var(--paper);
  background: var(--ink);
}

.equipment .eyebrow {
  color: #ff4b55;
}

.equipment p {
  color: #ededed;
}

.equipment-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.equipment-photo {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.equipment-photo-large {
  grid-row: auto;
}

.equipment-photo img {
  width: 100%;
  height: 210px;
  min-height: 0;
  object-fit: cover;
}

.equipment-photo figcaption {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  color: var(--paper);
  background: #0e0e0e;
}

.equipment-photo strong,
.equipment-photo span {
  display: block;
}

.equipment-photo strong {
  font-size: 1.08rem;
}

.equipment-photo span {
  line-height: 1.35;
}

.merchandise {
  position: relative;
  align-items: center;
  color: var(--paper);
  background: var(--ink);
}

.merch-order-counter {
  position: absolute;
  top: clamp(22px, 4vw, 42px);
  right: clamp(18px, 5vw, 82px);
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 10px;
  row-gap: 2px;
  min-width: 126px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
}

.merchandise .merch-order-counter {
  top: clamp(22px, 4vw, 42px);
}

.merch-order-counter span {
  color: #2c2c2c;
  font-size: .62rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.merch-order-counter strong {
  grid-row: span 2;
  color: var(--red);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: .9;
}

.merch-order-counter small {
  color: #303030;
  font-size: .76rem;
  font-weight: 850;
  line-height: 1.05;
  white-space: nowrap;
}

.merchandise .eyebrow {
  color: #ff4b55;
}

.merchandise p {
  color: #ededed;
}

.merch-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
}

.merch-points span {
  padding: 12px 14px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.35;
}

.merch-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.merch-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.merch-card img {
  display: block;
  width: 100%;
  height: 240px;
  min-height: 0;
  object-fit: contain;
  padding: 10px;
  background: #050505;
}

.merch-card figcaption {
  padding: 10px 12px;
  color: var(--paper);
  background: #0e0e0e;
  font-weight: 800;
  font-size: .95rem;
}

.merch-order {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 5vw, 64px);
  padding: clamp(34px, 6vw, 74px) clamp(18px, 5vw, 82px);
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.merch-order-copy {
  align-self: start;
}

.merch-price-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.merch-price-list article {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
}

.merch-price-list span {
  color: #303030;
  font-size: .8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.merch-price-list strong {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
}

.merch-price-list small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.25;
}

.merch-order-form {
  display: grid;
  gap: 16px;
}

.merch-order-form fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.merch-order-form legend {
  padding: 0 8px;
  color: var(--red);
  font-weight: 900;
}

.merch-product-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: start;
  gap: 14px;
  margin-bottom: 12px;
}

.merch-product-head .merch-price-note {
  margin-bottom: 0;
}

.merch-product-head img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.merch-order-form label {
  display: grid;
  gap: 7px;
  font-weight: 850;
}

.merch-price-note {
  margin: 0;
  color: #303030;
  font-weight: 800;
}

.sticker-price-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.sticker-price-grid span {
  display: grid;
  gap: 3px;
  min-height: 54px;
  padding: 9px 8px;
  color: #303030;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 900;
  text-align: center;
}

.sticker-price-grid strong {
  color: var(--red);
  font-size: .98rem;
}

.shirt-selection-rows {
  display: grid;
  gap: 12px;
}

.merch-phrase-rows {
  display: grid;
  gap: 10px;
}

.merch-order-form .merch-phrase-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  align-items: center;
  gap: 12px;
}

.merch-discount-box {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.merch-discount-box legend,
.merch-discount-box .merch-discount-status {
  grid-column: 1 / -1;
}

.merch-discount-apply {
  min-height: 44px;
  padding-inline: 18px;
  border: 2px solid var(--ink);
  cursor: pointer;
}

.merch-discount-status {
  margin: 0;
  color: #303030;
  font-size: .9rem;
  font-weight: 850;
}

.merch-phrase-row span {
  line-height: 1.25;
}

.shirt-row {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.shirt-row-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 950;
}

.shirt-row-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.merch-order-form input,
.merch-order-form select,
.merch-order-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--red);
  border-radius: 6px;
  font: inherit;
  font-weight: 650;
}

.merch-order-form textarea {
  resize: vertical;
}

.merch-order-form select[multiple] {
  min-height: 142px;
}

.merch-total {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
}

.merch-total span {
  color: #ededed;
  font-weight: 900;
  text-transform: uppercase;
}

.merch-total strong {
  justify-self: end;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.merch-total small {
  grid-column: 1 / -1;
  color: #ededed;
  font-weight: 800;
  text-align: right;
}

.merch-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.merch-order-result {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #fff;
  border: 2px solid var(--red);
  border-radius: 8px;
}

.merch-order-result[hidden] {
  display: none;
}

.merch-order-result span {
  color: var(--red);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.merch-order-result strong {
  font-size: 1.18rem;
  line-height: 1.1;
}

.merch-order-result p {
  margin: 0;
  color: #333;
}

.merch-order-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.merch-order-result textarea {
  width: 100%;
  min-height: 150px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: .86rem;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(150px, 240px) 1fr;
  align-items: center;
  gap: 22px;
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.showcase-logo {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: var(--paper);
  border: 1px solid var(--line);
}

.showcase-logo img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.showcase ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.showcase li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.showcase li:last-child {
  border-bottom: 0;
}

.club-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.club-gallery figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bag-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.bag-image-pair img {
  width: 100%;
  height: 210px;
  min-height: 0;
  object-fit: cover;
  background: var(--paper);
}

.club-gallery figcaption {
  padding: 12px 14px;
  font-weight: 800;
}

.club-contact {
  align-self: flex-start;
  margin-top: 6px;
}

.social {
  align-items: center;
  background: var(--red);
  color: var(--paper);
}

.social .eyebrow,
.social p {
  color: var(--paper);
}

.social-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.social-card {
  display: grid;
  align-content: space-between;
  min-height: 160px;
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 6px;
}

.social-card span {
  color: var(--muted);
  font-weight: 800;
}

.social-label,
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

button.footer-social {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.social-label svg,
.footer-social svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.social-card strong {
  font-size: clamp(1.55rem, 3.6vw, 3.2rem);
  line-height: .95;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(18px, 5vw, 82px);
  color: var(--paper);
  background: var(--ink);
  font-weight: 800;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.mobile-section-nav {
  display: none;
}

.mobile-bottom-contact {
  display: none;
}

.mobile-section-links {
  display: grid;
  gap: 8px;
}

.mobile-section-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--paper);
  background: #3f3f3f;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  font-weight: 800;
}

.mobile-section-links a[href="share-win.html"] {
  color: #ff4b55;
}

.mobile-section-links a[href="catch-phrase.html"] {
  color: #ff4b55;
}

.mobile-section-links a.nav-latest-news {
  color: #f28c00;
}

.mobile-section-links a.is-active {
  color: var(--paper);
  background: #707070;
  border-color: #707070;
}

.mobile-section-links a[href="share-win.html"].is-active {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.mobile-section-links a[href="catch-phrase.html"].is-active {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.mobile-section-links a[href="spin-to-win.html"] {
  color: var(--red);
  border-color: rgba(240, 0, 20, .28);
}

.mobile-section-links a[href="spin-to-win.html"].is-active {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.mobile-section-links a.nav-latest-news.is-active {
  color: #f28c00;
  background: #fff2df;
  border-color: #f28c00;
}

.spin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(28px, 5vw, 72px) clamp(22px, 6vw, 86px);
}

.spin-hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: clamp(3rem, 6.2vw, 7.5rem);
  line-height: .9;
}

.spin-hero p {
  max-width: 700px;
  margin: 0 0 18px;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
}

.spin-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spin-wheel-card {
  justify-self: center;
  width: min(100%, 380px);
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.spin-wheel-preview {
  position: relative;
  width: min(280px, 64vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 10px solid #fff;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 11%, transparent 12%),
    conic-gradient(#f00014 0 45deg, #111 45deg 90deg, #ff8a00 90deg 135deg, #fff 135deg 180deg, #f00014 180deg 225deg, #111 225deg 270deg, #ff8a00 270deg 315deg, #fff 315deg 360deg);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .32);
}

.spin-wheel-preview::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--red);
  transform: translateX(-50%);
}

.spin-wheel-card strong {
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
}

.spin-hero-wheel {
  width: min(300px, 100%);
  margin-top: 4px;
}

.spin-live-wheel.spin-mobile-wheel {
  display: none;
}

.spin-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .55fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: start;
  padding: clamp(28px, 5vw, 72px) clamp(22px, 6vw, 86px);
  background: #e9e9e9;
}

.spin-panel h2 {
  max-width: 740px;
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 5vw, 6rem);
  line-height: .92;
}

.spin-steps {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.spin-step {
  padding: 14px 16px;
  border-left: 6px solid var(--red);
  border-radius: 8px;
  background: #fff;
}

.spin-step strong {
  display: block;
  margin-bottom: 3px;
}

.spin-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid #d3d3d3;
  border-left: 7px solid var(--red);
  border-radius: 8px;
  background: #fff;
  min-width: 0;
}

.spin-action-stack {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.spin-first-time-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--red);
  border-left: 7px solid var(--red);
  border-radius: 8px;
  background: #fff7f7;
}

.spin-first-time-card strong {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

.spin-first-time-card p {
  margin: 0;
}

.spin-first-time-card .button {
  justify-self: start;
}

.spin-card label {
  display: grid;
  gap: 6px;
  font-weight: 850;
}

.spin-play-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.spin-fields {
  display: grid;
  gap: 12px;
}

.spin-live-wheel {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  align-self: start;
  width: min(320px, 100%);
  margin-top: 18px;
}

.spin-disc-shell {
  position: relative;
  width: min(300px, 100%);
  aspect-ratio: 1;
}

.spin-live-pointer {
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 25px solid var(--red);
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, .25));
  z-index: 2;
}

.spin-live-disc {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  aspect-ratio: 1;
  margin-top: -3px;
  border: 10px solid #111;
  border-radius: 50%;
  background: conic-gradient(#f00014 0 45deg, #fff 45deg 90deg, #111 90deg 135deg, #ff8a00 135deg 180deg, #f00014 180deg 225deg, #fff 225deg 270deg, #111 270deg 315deg, #ff8a00 315deg 360deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .24), inset 0 0 0 5px rgba(255, 255, 255, .38), inset 0 0 30px rgba(0, 0, 0, .22);
  transition: transform 3.2s cubic-bezier(.12, .68, .12, 1);
}

.spin-live-disc::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 24%, rgba(255,255,255,.42), rgba(255,255,255,0) 28%);
  pointer-events: none;
  z-index: 2;
}

.spin-live-disc::after {
  content: "";
  position: absolute;
  inset: 36.5%;
  border: 7px solid #111;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .24);
  z-index: 3;
}

.spin-live-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(34px, 14.5%, 50px);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: center;
  transform: translate(-49%, -52.7%);
  z-index: 6;
  box-shadow: none;
  pointer-events: none;
}

.spin-live-disc span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  color: #fff;
  font-size: clamp(.66rem, .86vw, .82rem);
  font-weight: 900;
  line-height: 1;
  text-align: right;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .45);
  transform-origin: 0 50%;
  white-space: normal;
  z-index: 4;
}

.spin-live-disc span.dark {
  color: #111;
  text-shadow: none;
}

.spin-live-wheel strong {
  font-size: .9rem;
  text-align: center;
  color: var(--red);
}

.spin-card input {
  width: 100%;
  box-sizing: border-box;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
}

.spin-card button {
  width: 100%;
}

.spin-card button:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.spin-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spin-result {
  padding: 14px;
  border: 1px solid var(--red);
  border-radius: 8px;
  background: #fff4f4;
}

.spin-result strong {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  text-transform: uppercase;
}

.spin-result p {
  margin: 2px 0;
}

.spin-rules {
  padding: clamp(28px, 5vw, 72px) clamp(22px, 6vw, 86px);
  background: #f2f2f2;
}

.spin-rules h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 4.8rem);
  line-height: .94;
}

.spin-rule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.spin-rule-grid article {
  min-height: 150px;
  padding: 16px;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  background: #fff;
}

.spin-rule-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  text-transform: uppercase;
}

.share-recover-card {
  align-self: start;
  border-left-color: #707070;
}

.share-recover-card h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1;
}

@media (max-width: 860px) {
  .form-two {
    grid-template-columns: 1fr;
  }

  .spin-hero,
  .spin-panel {
    grid-template-columns: 1fr;
  }

  .spin-hero {
    padding-top: 22px;
  }

  .spin-hero h1,
  .spin-panel h2 {
    font-size: clamp(2.6rem, 15vw, 4.5rem);
  }

  .spin-wheel-card {
    width: 100%;
  }

  .spin-card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .spin-play-layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .spin-live-wheel {
    width: 100%;
  }

  .spin-copy > .spin-live-wheel {
    display: none;
  }

  .spin-copy > .share-how-cta {
    display: none;
  }

  .spin-live-wheel.spin-mobile-wheel {
    display: grid;
    margin: 8px auto 0;
  }

  .spin-mobile-wheel .spin-disc-shell {
    width: min(245px, 72vw);
  }

  .spin-mobile-wheel .spin-live-disc {
    width: 100%;
  }

  .spin-fields {
    width: 100%;
  }

  .spin-rule-grid {
    grid-template-columns: 1fr;
  }
}

.social-window {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 14px;
}

.social-window.is-open {
  display: grid;
}

.social-window__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .68);
}

.social-window__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1100px, calc(100vw - 28px));
  height: min(760px, calc(100vh - 28px));
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
}

.social-window__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(16px, 3vw, 28px);
  border-bottom: 1px solid var(--line);
}

.social-window__header .eyebrow {
  margin-bottom: 6px;
}

.social-window__header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1;
}

.social-window__close {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.social-window__frame-wrap {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: clamp(24px, 6vw, 58px);
  background: var(--soft);
}

.social-window__form-frame {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: var(--paper);
  border: 0;
}

.social-window__form-frame:not([hidden]) {
  display: block;
}

.social-window__form-frame[hidden] {
  display: none;
}

.social-window__fallback {
  background: var(--paper);
}

.social-window__fallback p {
  margin: 0;
  color: #343434;
  line-height: 1.45;
}

.social-window__fallback a {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--red);
  border-radius: 6px;
  font-weight: 800;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 82px);
  color: var(--paper);
  background: var(--ink);
}

.dashboard-hero h1 {
  margin: 0 0 18px;
  color: var(--paper);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .9;
}

.dashboard-hero .lead {
  max-width: 760px;
  color: #ededed;
}

.dashboard-status {
  padding: 18px;
  color: var(--paper);
  background: rgba(239, 0, 17, .92);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.35;
}

.dashboard-panel {
  padding: clamp(32px, 5vw, 72px) clamp(18px, 5vw, 82px);
  border-bottom: 1px solid var(--line);
}

.dashboard-panel h2 {
  margin-bottom: 22px;
}

.dashboard-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.dashboard-summary article,
.page-view-card {
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  overflow: hidden;
}

.dashboard-summary span,
.page-view-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-summary strong {
  display: block;
  max-width: 100%;
  font-size: clamp(1.7rem, 2.35vw, 2.55rem);
  line-height: .95;
  letter-spacing: 0;
  white-space: nowrap;
  overflow-wrap: normal;
  font-variant-numeric: tabular-nums;
}

.dashboard-summary article:nth-child(4) strong {
  font-size: clamp(1.8rem, 2.45vw, 2.55rem);
  line-height: 1;
}

.dashboard-summary p,
.page-view-card p {
  margin: 10px 0 0;
  color: #303030;
  font-size: clamp(.95rem, 1.25vw, 1.08rem);
  line-height: 1.18;
}

.daily-chart {
  display: grid;
  grid-template-columns: repeat(14, minmax(28px, 1fr));
  align-items: end;
  gap: 8px;
  min-height: 320px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.chart-day {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 8px;
  height: 260px;
  min-width: 0;
}

.chart-bar {
  align-self: end;
  display: grid;
  place-items: start center;
  min-height: 8px;
  padding-top: 8px;
  color: var(--paper);
  background: var(--red);
  border-radius: 6px 6px 2px 2px;
  font-size: .78rem;
  font-weight: 900;
}

.chart-day small {
  text-align: center;
  font-weight: 800;
}

.page-view-grid,
.contact-click-grid,
.social-click-grid,
.order-click-grid,
.referral-leaderboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-note {
  margin: -8px 0 22px;
  color: #363636;
}

.referral-table-wrap {
  margin-top: 14px;
}

.referral-card code {
  padding: 4px 7px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 5px;
  font-family: inherit;
  font-weight: 900;
}

.share-win-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .34fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px) clamp(18px, 5vw, 82px);
  color: var(--paper);
  background: var(--ink);
}

.share-win-hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--paper);
  font-size: clamp(2.55rem, 6.2vw, 5.7rem);
  line-height: .92;
}

.share-win-hero .lead {
  max-width: 700px;
  margin-bottom: 0;
  color: #ededed;
  font-size: clamp(1.02rem, 1.6vw, 1.32rem);
  line-height: 1.42;
}

.share-prize-card {
  padding: 18px;
  color: var(--paper);
  background: var(--red);
  border-radius: 8px;
}

.share-prize-card span {
  display: block;
  margin-bottom: 8px;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.share-prize-card strong {
  display: block;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: .92;
}

.share-prize-card p {
  margin: 12px 0 0;
  font-size: .95rem;
  line-height: 1.35;
}

.share-win-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .48fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: start;
  padding: clamp(26px, 4vw, 48px) clamp(18px, 5vw, 82px);
  border-bottom: 1px solid var(--line);
}

.share-win-copy h2,
.share-register-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.4vw, 3.5rem);
}

.share-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.share-steps article,
.share-register-card,
.share-result {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.share-steps article {
  display: grid;
  grid-template-columns: 46px minmax(0, .28fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.share-steps span,
.share-result span {
  display: block;
  margin-bottom: 0;
  color: var(--red);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.share-steps strong,
.share-result strong {
  display: block;
  font-size: 1.32rem;
  line-height: 1.1;
}

.share-steps p {
  margin: 0;
}

.share-how-cta {
  width: fit-content;
  margin-top: 14px;
}

.share-register-card {
  display: grid;
  gap: 11px;
}

.share-register-card label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.share-register-card input {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.share-result {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  background: #fff;
}

.share-page-leaderboard {
  padding-top: clamp(24px, 4vw, 44px);
  padding-bottom: clamp(24px, 4vw, 44px);
}

.share-result[hidden] {
  display: none;
}

.share-result input {
  font-weight: 800;
}

.share-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.catch-phrase-hero h1 {
  max-width: 860px;
}

.catch-deadline-card {
  background: #2e2e2e;
}

.catch-phrase-card textarea,
.catch-vote-card textarea,
.catch-vote-card select,
.catch-phrase-card select {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.catch-phrase-card textarea,
.catch-vote-card textarea {
  min-height: 82px;
  resize: vertical;
}

.catch-vote-section,
.catch-leaderboard-section {
  display: grid;
  grid-template-columns: minmax(0, .38fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: start;
  padding: clamp(26px, 4vw, 48px) clamp(18px, 5vw, 82px);
  border-bottom: 1px solid var(--line);
}

.catch-vote-copy h2,
.catch-leaderboard-section h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.3vw, 3.4rem);
  line-height: .98;
}

.catch-vote-copy p {
  max-width: 460px;
}

.catch-leaderboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.catch-leaderboard-actions .button {
  min-height: 42px;
  padding: 10px 14px;
  font-size: .86rem;
}

.catch-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.catch-leaderboard-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 31vw);
  grid-template-columns: none;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.catch-leaderboard-list article {
  display: grid;
  align-content: space-between;
  min-height: 164px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  border-radius: 8px;
  scroll-snap-align: start;
}

.catch-leaderboard-list span,
.catch-score-row small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catch-leaderboard-list strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.02rem, 1.45vw, 1.32rem);
  line-height: 1.12;
}

.catch-leaderboard-list p {
  margin: 6px 0 0;
  color: #555;
}

.catch-score-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.catch-score-row b {
  color: var(--red);
  font-size: 1.12rem;
}

.catch-feed-status {
  margin: 0;
  color: #555;
  font-size: .92rem;
  font-weight: 800;
}

.catch-feed-status.is-problem {
  color: var(--red);
}

.auction-hero,
.auction-live-section,
.auction-grid,
.auction-rules {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
}

.auction-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 28px;
  align-items: stretch;
  background: var(--shade);
}

.auction-hero > div:first-child {
  display: grid;
  align-content: start;
  gap: 18px;
}

.auction-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: .9;
}

.auction-hero .lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.auction-hero-image {
  aspect-ratio: 405 / 381;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.auction-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.auction-status-card,
.auction-card,
.auction-live-card,
.auction-item-card,
.auction-rule-grid article,
.auction-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.auction-status-card {
  display: grid;
  align-content: center;
  gap: 10px;
  justify-self: start;
  width: min(100%, 360px);
  max-width: 360px;
  padding: 18px 20px;
  border-left: 7px solid var(--red);
}

.auction-status-card span,
.auction-live-card span,
.auction-item-card span,
.auction-rule-grid span,
.auction-result strong {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
}

.auction-status-card strong,
.auction-live-card strong,
.auction-item-card strong {
  font-size: 1.8rem;
  line-height: 1;
}

.auction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  padding-top: 12px;
}

.auction-buyer-card {
  order: 1;
}

.auction-seller-card {
  order: 2;
}

.auction-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
}

.auction-card h2,
.auction-rules h2 {
  margin-top: 0;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: .95;
}

.auction-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.auction-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.auction-section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: .95;
}

.auction-section-heading p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.auction-terms {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 14px;
  border: 2px solid var(--red);
  border-radius: 8px;
  background: #fff;
}

.auction-terms strong {
  color: var(--red);
  font-size: .88rem;
  text-transform: uppercase;
}

.auction-terms p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.35;
}

.auction-terms-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  padding: 12px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: var(--shade);
}

.auction-terms-check input {
  width: 20px !important;
  min-width: 20px !important;
  height: 20px;
  margin-top: 2px;
}

.auction-live-card {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 18px;
  background: var(--shade);
}

.auction-listings {
  display: grid;
  gap: 12px;
  margin: 0;
}

.auction-item-card {
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr) 210px;
  gap: 16px;
  align-items: stretch;
  padding: 18px;
  background: var(--shade);
}

.auction-item-card:not(:has(.auction-item-image)) {
  grid-template-columns: minmax(0, 1fr) 210px;
}

.auction-item-id {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 8px;
  color: var(--red) !important;
  background: #fff;
  border: 1px solid var(--red);
  border-radius: 999px;
  font-size: .78rem;
  line-height: 1;
}

.auction-item-image {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--line);
}

.auction-bid-select {
  margin-top: 8px;
  color: var(--red);
  background: transparent;
  border: 2px solid var(--red);
  box-shadow: none;
}

.auction-bid-select:hover,
.auction-bid-select:focus-visible {
  color: var(--paper);
  background: var(--red);
}

.auction-bid-summary {
  display: inline-grid;
  gap: 2px;
  margin: 8px 0;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
}

.auction-bid-summary span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.auction-bid-summary strong {
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
}

.auction-status-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 8px 0;
  font-weight: 800;
}

.auction-reserve-status {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
}

.auction-reserve-status.is-not-met {
  color: var(--paper);
  background: var(--red);
}

.auction-reserve-status.is-met {
  background: #137333;
}

.auction-countdown {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
}

.auction-countdown span,
.auction-countdown small {
  color: rgba(255, 255, 255, .72);
}

.auction-countdown strong {
  color: var(--paper);
  font-size: 1.45rem;
  line-height: 1;
}

#auction-bid-form {
  scroll-margin-top: 118px;
}

.auction-countdown.is-pending {
  background: #555;
}

.auction-item-card.is-closed .auction-countdown {
  background: var(--red);
}

.auction-form {
  display: grid;
  gap: 12px;
}

.auction-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.auction-form input,
.auction-form textarea {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  border: 2px solid var(--line);
  border-radius: 6px;
  font: inherit;
  background: #fff;
}

.auction-form textarea {
  resize: vertical;
}

.auction-result {
  display: grid;
  gap: 10px;
  margin-top: 6px;
  padding: 16px;
  border-left: 5px solid var(--red);
}

.auction-result[hidden] {
  display: none;
}

.auction-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.auction-result textarea {
  min-height: 150px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.auction-rule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.auction-rule-grid article {
  padding: 18px;
}

.auction-rule-grid strong {
  display: block;
  margin: 8px 0;
  font-size: 1.1rem;
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.page-view-card strong {
  display: block;
  max-width: 100%;
  font-size: 1.28rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.page-view-meter {
  height: 8px;
  margin-top: 16px;
  overflow: hidden;
  background: #dedede;
  border-radius: 999px;
}

.page-view-meter i {
  display: block;
  height: 100%;
  background: var(--red);
}

.dashboard-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--soft);
}

.dashboard-table th,
.dashboard-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.dashboard-table th {
  color: var(--paper);
  background: var(--ink);
  font-size: .8rem;
  text-transform: uppercase;
}

.dashboard-table tr:last-child td {
  border-bottom: 0;
}

@media (min-width: 1440px) {
  .hero,
  .intro,
  .feature-band,
  .rules-band,
  .dazcloud,
  .screen-offer,
  .sales,
  .coming-soon,
  .used-sale,
  .auction-hero,
  .auction-live-section,
  .auction-grid,
  .auction-rules,
  .share-win-hero,
  .share-win-panel,
  .catch-vote-section,
  .catch-leaderboard-section,
  .public-leaderboard,
  .dashboard-hero,
  .equipment,
  .merchandise,
  .clubs,
  .social,
  footer {
    padding-left: max(82px, calc((100vw - 1320px) / 2));
    padding-right: max(82px, calc((100vw - 1320px) / 2));
  }
}

@media (max-width: 860px) {
  #top,
  #airdeck,
  #share-win,
  #dazcloud,
  #screens,
  #sales,
  #coming-soon,
  #used-for-sale,
  #auction-equipment,
  #equipment,
  #merchandise,
  #clubs,
  #social,
  #competition-use,
  #feedback {
    scroll-margin-top: 180px;
  }

  .site-header {
    position: sticky;
    top: 0;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 0;
    padding: 6px 10px 7px;
  }

  .brand {
    order: 1;
    flex: 0 0 auto;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  nav {
    order: 4;
    flex: 0 0 calc(100vw - 20px);
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0;
    padding: 3px max(16px, 4vw) 2px 0;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    scroll-behavior: auto;
    scrollbar-width: thin;
    font-size: .92rem;
  }

  nav::after {
    content: "";
    flex: 0 0 max(8px, 2vw);
  }

  nav a {
    flex: 0 0 clamp(126px, 37vw, 150px);
    width: clamp(126px, 37vw, 150px);
    max-width: none;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    text-align: center;
    white-space: normal;
  }

  nav a.is-active {
    color: var(--paper);
    background: #707070;
    border-color: #707070;
  }

  nav a[href="share-win.html"].is-active {
    color: var(--paper);
    background: var(--red);
    border-color: var(--red);
  }

  nav a[href="catch-phrase.html"].is-active {
    color: var(--paper);
    background: var(--red);
    border-color: var(--red);
  }

  nav a.mobile-home-link {
    position: sticky;
    left: 0;
    z-index: 2;
    display: inline-flex;
    color: var(--paper);
    background: var(--ink);
    border-color: var(--ink);
    box-shadow: 8px 0 12px rgba(255, 255, 255, .88);
  }

  nav a.mobile-home-link.is-active {
    color: var(--paper);
    background: #707070;
    border-color: #707070;
  }

  .contact-link {
    margin-left: auto;
  }

  .header-clicker {
    order: 3;
    margin-left: auto;
    min-width: 76px;
    padding: 6px 7px;
  }

  .header-socials {
    order: 2;
    display: inline-flex;
    align-items: center;
    gap: clamp(15px, 5vw, 24px);
    margin-left: 0;
    font-size: 1.04rem;
    font-weight: 800;
    line-height: 1;
    color: var(--ink);
  }

  .header-socials .header-social {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    color: var(--ink) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font: inherit !important;
    line-height: 1 !important;
  }

  .header-socials .header-social svg {
    flex: 0 0 auto !important;
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  .header-socials .instagram-mark circle:last-child {
    fill: currentColor !important;
    stroke: none !important;
  }

  .hero,
  .latest-news-page,
  .latest-subscribe-section,
  .intro,
  .rules-band,
  .dazcloud,
  .screen-offer,
  .sales,
  .coming-soon,
  .used-sale,
  .auction-hero,
  .auction-grid,
  .auction-rules,
  .share-win-hero,
  .share-win-panel,
  .catch-vote-section,
  .catch-leaderboard-section,
  .dashboard-hero,
  .equipment,
  .merchandise,
  .merch-order,
  .clubs,
  .social {
    grid-template-columns: 1fr;
  }

  .latest-news-page {
    align-items: start;
    padding: 30px 16px 22px;
  }

  .latest-news-page h1 {
    font-size: clamp(2.4rem, 13vw, 4.4rem);
  }

  .latest-news-hero-image,
  .latest-news-hero-image img {
    min-height: 220px;
  }

  .latest-news-page .latest-news-hero-image {
    margin-top: 0;
  }

  .latest-subscribe-section {
    padding: 28px 16px;
  }

  .auction-hero,
  .auction-live-section,
  .auction-grid,
  .auction-rules {
    padding: 24px 18px;
  }

  .catch-vote-section,
  .catch-leaderboard-section {
    padding: 24px 18px;
  }

  .catch-choice-grid {
    grid-template-columns: 1fr;
  }

  .catch-leaderboard-actions {
    display: none;
  }

  .catch-score-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .auction-section-heading {
    display: grid;
    gap: 8px;
  }

  .auction-section-heading p {
    max-width: none;
  }

  .auction-hero-image {
    order: -1;
    min-height: 190px;
  }

  .auction-status-card {
    width: 100%;
    max-width: none;
  }

  .auction-card {
    padding: 18px;
  }

  .auction-seller-card {
    order: 1;
  }

  .auction-buyer-card {
    order: 2;
  }

  #auction-bid-form {
    scroll-margin-top: 176px;
  }

  .auction-rule-grid {
    grid-template-columns: 1fr;
  }

  .auction-item-card {
    grid-template-columns: 1fr;
  }

  .auction-item-card:not(:has(.auction-item-image)) {
    grid-template-columns: 1fr;
  }

  .auction-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .merch-order-counter {
    position: absolute;
    top: 16px;
    right: 14px;
    min-width: 108px;
    margin: 0;
    padding: 7px 9px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
  }

  .merch-order-counter span {
    font-size: .56rem;
  }

  .merch-order-counter strong {
    font-size: 1.14rem;
  }

  .mobile-section-nav {
    display: none;
    padding: 24px 18px 28px;
    color: var(--paper);
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .mobile-section-nav .eyebrow {
    color: #ff4b55;
  }

  .mobile-section-nav h2 {
    margin-bottom: 16px;
    color: var(--paper);
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .mobile-section-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-section-links a {
    min-height: 48px;
    color: var(--paper);
    background: #3f3f3f;
    border-color: rgba(255, 255, 255, .18);
    font-size: .92rem;
    line-height: 1.15;
  }

  .coming-preview {
    max-width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 250px;
    order: 1;
    padding-top: 0;
  }

  .hero-copy {
    order: 2;
  }

  .dashboard-hero {
    align-items: start;
    gap: 18px;
    padding: 30px 18px 24px;
  }

  .dashboard-hero h1 {
    max-width: 9ch;
    margin-bottom: 12px;
    font-size: clamp(2.6rem, 13vw, 4.4rem);
    line-height: .92;
  }

  .dashboard-hero .lead {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.45;
  }

  .dashboard-status {
    width: 100%;
    padding: 14px;
    font-size: .92rem;
  }

  .stat-grid,
  .feature-grid,
  .airdeck-gallery,
  .airdeck-safety,
  .sticker-price-grid,
  .sales-grid,
  .coming-grid,
  .dashboard-summary,
  .page-view-grid,
  .contact-click-grid,
  .social-click-grid,
  .order-click-grid,
  .referral-leaderboard-grid,
  .public-leaderboard-list,
  .latest-news,
  .latest-news-list,
  .equipment-board,
  .merch-gallery,
  .airdeck-heading,
  .club-gallery,
  .showcase {
    grid-template-columns: 1fr;
  }

  .latest-news {
    padding: 24px 16px;
  }

  .latest-news-copy h2 {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

  .latest-news-list article {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 118px;
    padding: 10px;
  }

  .latest-news-list article > img {
    height: 96px;
  }

  .share-steps,
  .share-actions,
  .merch-order-actions {
    grid-template-columns: 1fr;
  }

  .share-steps article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .share-steps p {
    grid-column: 2;
  }

  .top-public-leaderboard {
    --leaderboard-copy-width: clamp(98px, 31vw, 132px);
    --leaderboard-gap: 6px;
    --leaderboard-clearance: 10px;
    position: fixed;
    top: 112px;
    left: 0;
    right: 0;
    z-index: 17;
    grid-template-columns: var(--leaderboard-copy-width) minmax(0, 1fr);
    gap: var(--leaderboard-gap);
    align-items: center;
    min-height: 72px;
  }

  .top-public-leaderboard + section,
  .top-public-leaderboard + .hero {
    margin-top: 72px;
  }

  .top-public-leaderboard .public-leaderboard-copy {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .top-public-leaderboard .public-leaderboard-copy h2 {
    font-size: clamp(.62rem, 2.8vw, .76rem);
  }

  .top-public-leaderboard.is-catch-ribbon {
    --leaderboard-copy-width: clamp(132px, 40vw, 168px);
  }

  .top-public-leaderboard.is-catch-ribbon .public-leaderboard-copy h2 {
    font-size: clamp(.52rem, 2.4vw, .66rem);
  }

  .top-public-leaderboard .public-leaderboard-copy p {
    display: none;
  }

  .top-public-leaderboard .public-leaderboard-list {
    position: absolute;
    inset: 4px 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 118px;
    grid-template-columns: none;
    overflow: hidden;
    padding-left: calc(var(--leaderboard-copy-width) + var(--leaderboard-gap) + var(--leaderboard-clearance));
    padding-bottom: 2px;
  }

  .top-public-leaderboard .public-leaderboard-list article {
    scroll-snap-align: start;
  }

  .top-public-leaderboard .public-leaderboard-copy > .button {
    width: auto;
    min-height: 18px;
    padding: 0 5px;
    font-size: .5rem;
  }

  .feature-grid article {
    min-height: 0;
  }

  .airdeck-safety {
    grid-template-rows: auto;
  }

  .airdeck-safety .rules-copy,
  .airdeck-safety .rule-list,
  .airdeck-safety-contact {
    grid-column: auto;
    grid-row: auto;
  }

  .airdeck-safety-contact {
    justify-self: stretch;
  }

  .dazcloud-copy,
  .cloud-visual {
    display: contents;
  }

  .dazcloud-copy .eyebrow {
    order: 1;
  }

  .dazcloud-copy h2 {
    order: 2;
  }

  .dazcloud-copy > p {
    order: 3;
  }

  .dazcloud-contact {
    order: 4;
  }

  .cloud-graphic {
    order: 5;
  }

  .dazcloud-copy .screen-points {
    order: 6;
  }

  .dazcloud-judging {
    order: 7;
  }

  .cloud-panel {
    order: 8;
    grid-template-rows: auto;
    min-height: 0;
  }

  .dazcloud-judging {
    grid-template-rows: auto;
    height: auto;
    flex: initial;
  }

  .airdeck-photo img {
    min-height: 260px;
  }

  .equipment-photo-large {
    grid-row: auto;
  }

  .screen-copy {
    display: flex;
    flex-direction: column;
  }

  .screen-copy .eyebrow {
    order: 1;
  }

  .screen-copy h2 {
    order: 2;
  }

  .screen-copy > p {
    order: 3;
  }

  .screen-support-photo {
    order: 5;
  }

  .screen-contact {
    order: 4;
  }

  .screen-copy .screen-points {
    order: 6;
  }

  .mobile-only {
    display: block;
  }

  .mobile-airdeck-contact {
    width: fit-content;
  }

  .sales-contact-desktop {
    display: none;
  }

  .airdeck-contact-desktop {
    display: none;
  }

  .sales-contact-mobile {
    display: inline-flex;
  }

  .sales-copy {
    display: contents;
  }

  .sales-copy .eyebrow {
    order: 1;
  }

  .sales-copy h2 {
    order: 2;
  }

  .sales-copy > p {
    order: 3;
  }

  .sales-contact-mobile {
    order: 4;
  }

  .sales-world-cup {
    order: 5;
    margin: 18px 0 0;
  }

  .sales-grid {
    order: 6;
  }

  .rules-copy,
  .rule-list {
    display: contents;
  }

  .feedback-left {
    display: flex;
  }

  .rules-copy .eyebrow {
    order: 1;
  }

  .rules-copy h2 {
    order: 2;
  }

  .rules-copy > p {
    order: 3;
  }

  .feedback-card {
    order: 4;
  }

  .feedback-submit {
    order: 4;
  }

  .rule-list div {
    order: 5;
  }

  .feedback-sheet-frame {
    order: 6;
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .catch-leaderboard-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mobile-bottom-contact {
    display: block;
    padding: 22px 18px;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }

  .mobile-bottom-contact .button {
    width: 100%;
  }

  .mobile-section-nav {
    display: block;
  }
}

@media (max-width: 480px) {
  .site-header {
    min-height: 0;
    column-gap: 7px;
    row-gap: 7px;
    padding: 6px 8px 7px;
  }

  nav {
    flex-basis: calc(100vw - 16px);
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 47px;
    height: 47px;
  }

  .contact-link {
    order: 4;
    margin-left: 0;
    max-width: calc(100vw - 86px);
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: .86rem;
  }

  .header-clicker {
    order: 3;
    min-width: 72px;
    padding: 5px 6px;
  }

  .header-socials {
    gap: 11px;
    font-size: .88rem;
  }

  .header-social {
    width: auto;
    height: auto;
    padding: 0;
    font-size: inherit;
  }

  .header-social-instagram {
    min-width: 0;
    height: auto;
    padding: 0;
  }

  .header-social svg {
    width: 18px;
    height: 18px;
  }

  .header-clicker strong {
    font-size: 1.08rem;
  }

  .header-clicker small {
    font-size: .61rem;
  }

  .header-clicker span {
    font-size: .62rem;
  }

  .hero,
  .intro,
  .feature-band,
  .rules-band,
  .dazcloud,
  .screen-offer,
  .sales,
  .coming-soon,
  .used-sale,
  .public-leaderboard,
  .equipment,
  .merchandise,
  .clubs,
  .social {
    padding-left: 14px;
    padding-right: 14px;
  }

  .shirt-row-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 190px;
  }

  .hero-media img {
    width: min(100%, 300px);
    max-height: 300px;
  }

  .hero-video {
    width: min(100%, 320px);
    max-height: 62vh;
    border-width: 7px;
  }

  .sound-toggle {
    top: auto;
    bottom: 12px;
    right: 12px;
    min-height: 40px;
  }

  .hero-logo {
    width: min(100%, 330px);
    max-height: 230px;
  }

  .button {
    width: 100%;
  }

  .mobile-airdeck-contact,
  .mobile-screen-contact,
  .club-contact,
  .sales-contact-mobile {
    width: 100%;
  }

  .stat-grid div,
  .feature-grid article,
  .airdeck-photo figcaption,
  .sales-grid article,
  .equipment-photo figcaption,
  .club-gallery figcaption,
  .showcase,
  .social-card {
    padding: 18px;
  }

  .airdeck-photo img {
    min-height: 220px;
  }

  .feedback-sheet-frame,
  .feedback-sheet-frame iframe {
    min-height: 300px;
  }

  .dazcloud-judging {
    grid-template-columns: 1fr;
    margin-top: 22px;
    padding-top: 0;
  }

  .dazcloud-judging img {
    height: 170px;
  }

  .sales-world-cup img {
    height: 180px;
  }

  .used-listings {
    overflow-x: auto;
  }

  .used-table {
    min-width: 650px;
  }

  .dashboard-hero {
    align-items: start;
  }

  .dashboard-summary,
  .page-view-grid,
  .contact-click-grid,
  .social-click-grid,
  .order-click-grid {
    grid-template-columns: 1fr;
  }

  .daily-chart {
    grid-template-columns: repeat(7, minmax(28px, 1fr));
    overflow-x: auto;
  }

  .chart-day {
    height: 210px;
  }

  .dashboard-table {
    min-width: 760px;
  }

  .bag-image-pair img {
    height: 150px;
  }

  .equipment-photo img {
    height: 150px;
  }

  .screen-support-photo img {
    height: 210px;
  }

  .merch-card img {
    height: 180px;
  }

  .social-card {
    min-height: 138px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  footer > span:first-child,
  .footer-links a[href^="mailto:"] {
    display: none;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .social-window {
    padding: 10px;
  }

  .social-window__panel {
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
  }

  .social-window__header,
  .social-window__fallback {
    flex-direction: column;
    align-items: stretch;
  }

  .social-window__frame-wrap {
    padding: 0;
  }

  .social-window__close,
  .social-window__fallback a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 340px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .lead,
  .motto,
  .intro p,
  .club-copy p,
  .dazcloud-copy p,
  .sales-copy p,
  .equipment-copy p,
  .social p {
    font-size: 1rem;
  }

  .social-card strong {
    font-size: 1.38rem;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 180px;
  }

  .hero-media img {
    max-height: 220px;
  }

  .hero-video {
    max-height: 220px;
  }
}


.catch-vote-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px clamp(18px, 5vw, 82px);
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.catch-vote-promo h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.7rem, 3.2vw, 3.15rem);
  line-height: .98;
}

.catch-vote-promo p:not(.eyebrow) {
  max-width: 780px;
  margin: 8px 0 0;
  color: #efefef;
}

.catch-vote-promo .button {
  white-space: nowrap;
}

.catch-vote-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 860px) {
  .catch-vote-promo {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .catch-vote-promo .button {
    width: 100%;
  }

  .catch-vote-actions {
    grid-template-columns: 1fr;
  }
}


.used-card-list {
  display: grid;
  gap: 14px;
}

.used-sale-card {
  display: grid;
  grid-template-columns: minmax(110px, 180px) minmax(0, 1fr) minmax(190px, .32fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.used-sale-card-image {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 6px;
}

.used-sale-card-main {
  display: grid;
  align-content: start;
  gap: 8px;
}

.used-sale-edit-fields {
  display: grid;
  gap: 12px;
}

.used-sale-edit-fields[hidden] {
  display: none;
}

.image-paste-box {
  display: grid;
  gap: 8px;
  padding: 14px;
  color: var(--ink);
  background: #fff;
  border: 2px dashed #b8b8b8;
  border-radius: 8px;
  outline: none;
}

.image-paste-box:focus,
.image-paste-box.is-dragging {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 0, 17, .12);
}

.image-paste-box strong {
  font-size: .95rem;
  text-transform: uppercase;
}

.image-paste-box span {
  color: #555;
  font-size: .9rem;
  line-height: 1.25;
}

.image-paste-box input[type="file"] {
  width: 100%;
  padding: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.image-paste-box img {
  width: min(100%, 220px);
  max-height: 160px;
  object-fit: contain;
  background: var(--soft);
  border-radius: 6px;
}

.used-sale-card-main strong {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.02;
}

.used-status {
  width: fit-content;
  padding: 5px 10px;
  color: #fff;
  background: #12883d;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.used-status.is-pending {
  background: #666;
}

.used-sale-price-panel,
.auction-fee-preview {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
}

.used-sale-price-panel span,
.auction-fee-preview span {
  color: #f4f4f4;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.used-sale-price-panel strong,
.auction-fee-preview strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .95;
}

.used-sale-price-panel small,
.auction-fee-preview small {
  color: #d8d8d8;
  line-height: 1.25;
}

.auction-fee-preview {
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--red);
}

.auction-fee-preview span,
.auction-fee-preview small {
  color: #555;
}

.auction-fee-preview strong {
  color: var(--red);
}

.auction-bid-summary small {
  display: block;
  margin-top: 4px;
  color: #555;
  font-weight: 850;
}

@media (max-width: 860px) {
  .used-sale-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .used-sale-price-panel {
    grid-column: 1 / -1;
  }

  .used-sale-card-image {
    min-height: 110px;
  }
}


@media (min-width: 861px) {
  .used-sale-market {
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    gap: clamp(20px, 3vw, 42px);
  }

  .used-sale-card {
    grid-template-columns: minmax(190px, 220px) minmax(250px, 1fr) minmax(190px, 216px);
    gap: 20px;
    align-items: stretch;
    padding: 20px 22px;
  }

  .used-sale-card-image {
    height: 260px;
    min-height: 260px;
    object-fit: contain;
  }

  .used-sale-card-main {
    gap: 10px;
    min-width: 0;
  }

  .used-sale-card-main .auction-item-id {
    width: fit-content;
    max-width: 100%;
    padding: 4px 8px;
    font-size: .68rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .used-sale-card-main strong {
    max-width: 100%;
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    overflow-wrap: normal;
  }

  .used-sale-card-main p {
    max-width: 42ch;
    line-height: 1.38;
  }

  .used-sale-price-panel {
    justify-content: start;
    align-content: center;
    padding: 22px 18px;
    min-width: 0;
  }

  .used-sale-price-panel strong {
    font-size: clamp(2.35rem, 4.2vw, 3.35rem);
    letter-spacing: 0;
    white-space: nowrap;
  }

  .used-sale-price-panel .button {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }
}

@media (min-width: 861px) and (max-width: 1280px) {
  .used-sale-market {
    grid-template-columns: 1fr;
  }

  .used-sale-market .used-copy {
    max-width: 760px;
  }

  .used-sale-card {
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr) minmax(170px, 190px);
    gap: 16px;
    padding: 16px;
  }

  .used-sale-card-image {
    height: 220px;
    min-height: 220px;
  }

  .used-sale-card-main strong {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
  }

  .used-sale-card-main p {
    max-width: 50ch;
    font-size: 1rem;
  }

  .used-sale-price-panel {
    padding: 18px 14px;
  }

  .used-sale-price-panel strong {
    font-size: clamp(2.15rem, 4vw, 2.85rem);
  }
}

@media (max-width: 860px) {
  .global-reach-section,
  .share-checkin-section {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 14px;
  }

  .global-reach-copy h2,
  .share-checkin-section h2 {
    font-size: 34px;
  }

  .hero-global-reach h2 {
    font-size: clamp(1.15rem, 5vw, 1.55rem);
    white-space: normal;
  }

  .global-reach-copy p,
  .share-checkin-section p {
    font-size: 16px;
  }

  .home-global-reach .global-reach-copy {
    display: none;
  }

  .global-reach-map {
    grid-template-columns: 138px 1fr;
    height: 258px;
    min-height: 0;
    padding: 12px;
    gap: 12px;
  }

  .global-globe {
    width: 138px;
  }

  .global-globe-panel {
    gap: 6px;
  }

  .global-subscribe-desktop {
    display: none;
  }

  .global-subscribe-mobile {
    display: inline-flex;
  }

  .global-subscribe-button {
    justify-content: center;
    width: fit-content;
    min-height: 22px;
    padding: 0 9px;
    font-size: .58rem;
  }

  .global-stat-row {
    gap: 6px;
  }

  .global-stat-row strong {
    font-size: 24px;
  }

  .global-stat-row span {
    font-size: 10px;
  }

  .global-stats {
    grid-template-rows: auto minmax(0, 1fr) minmax(0, 1fr);
    max-height: 234px;
    gap: 7px;
  }

  .global-mini-list small {
    padding: 5px 7px;
  }
}
