@import url("https://fonts.googleapis.com/css2?family=Anton&family=Archivo:wght@400;500;600;700;800&display=swap");
:root {
  --navy: #0a1930;
  --navy-soft: #12223b;
  --navy-line: #30425e;
  --orange: #ff7a1e;
  --green: #00c57e;
  --chalk: #faf6ee;
  --sand: #f2ede3;
  --blue-muted: #6780a4;
  --white: #fffdf7;
  --display: "Anton", "Arial Narrow", Impact, sans-serif;
  --body: "Archivo", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--navy);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--chalk);
  color: var(--navy);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 4vw;
  color: var(--chalk);
  background: color-mix(in srgb, var(--navy) 94%, transparent);
  border-bottom: 1px solid rgba(250, 246, 238, 0.12);
  backdrop-filter: blur(14px);
}

.site-header__brand {
  justify-self: start;
}

.desktop-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.desktop-nav a,
.text-link,
.site-footer a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--green);
}

.header-cta {
  justify-self: end;
  padding: 0.72rem 1rem;
  color: var(--navy);
  background: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--green);
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--chalk);
  background: transparent;
}

.header-cta span,
.button span {
  margin-left: 1.2rem;
}

.mobile-nav {
  display: none;
  justify-self: end;
}

.mobile-nav summary {
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-nav nav {
  position: absolute;
  right: 1rem;
  top: 58px;
  display: grid;
  width: 180px;
  background: var(--chalk);
  color: var(--navy);
  border: 1px solid var(--navy);
  box-shadow: 8px 8px 0 var(--orange);
}

.mobile-nav nav a {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(10, 25, 48, 0.15);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.wordmark__name {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.wordmark--light {
  color: var(--chalk);
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  width: 84px;
  height: 78px;
  padding: 0 8px 9px;
}

.brand-mark--compact {
  width: 30px;
  height: 28px;
  gap: 1px;
  padding: 0 2px 4px;
}

.strike {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: end center;
  width: 20px;
  padding-bottom: 7px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1;
  clip-path: polygon(28% 15%, 100% 0, 70% 100%, 0 100%);
}

.brand-mark--compact .strike {
  width: 8px;
  padding-bottom: 2px;
  font-size: 0.42rem;
}

.strike--orange { height: 45px; background: var(--orange); }
.strike--chalk { height: 58px; background: var(--chalk); }
.strike--green { height: 72px; background: var(--green); }
.brand-mark--compact .strike--orange { height: 16px; }
.brand-mark--compact .strike--chalk { height: 21px; }
.brand-mark--compact .strike--green { height: 26px; }

.brand-mark__base {
  position: absolute;
  bottom: 2px;
  left: 13px;
  width: 58px;
  height: 5px;
  border-radius: 99px;
  background: var(--navy-line);
}

.brand-mark--compact .brand-mark__base {
  left: 4px;
  width: 22px;
  height: 2px;
  bottom: 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 8vw;
  overflow: hidden;
  padding: 8vw 7vw 7vw;
  color: var(--chalk);
  background: var(--navy);
}

.hero::before {
  content: "IPA";
  position: absolute;
  right: -2vw;
  bottom: -10vw;
  color: rgba(250, 246, 238, 0.025);
  font-family: var(--display);
  font-size: 34vw;
  line-height: 1;
  letter-spacing: -0.08em;
}

.hero__track-lines {
  position: absolute;
  inset: auto -15% -46% 35%;
  height: 80%;
  border: 1px solid rgba(0, 197, 126, 0.16);
  border-radius: 50% 50% 0 0;
  transform: rotate(-11deg);
  box-shadow: inset 0 0 0 12px var(--navy), inset 0 0 0 13px rgba(255, 122, 30, 0.16), inset 0 0 0 26px var(--navy), inset 0 0 0 27px rgba(250, 246, 238, 0.14);
}

.hero__content,
.next-card {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--navy);
}

.eyebrow__dash {
  width: 18px;
  height: 5px;
  background: var(--orange);
  transform: skewX(-14deg);
}

.hero h1,
.section-heading h2,
.why-section h2,
.games-roadmap h2,
.community h2,
.stories-feature h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 7.8vw, 8.6rem);
}

.hero__accent {
  color: var(--orange);
}

.hero__intro {
  max-width: 610px;
  margin: 2rem 0 0;
  color: #ced8e7;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 205px;
  padding: 1rem 1.1rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--green);
}

.button--orange { background: var(--orange); color: var(--navy); }
.button--navy { background: var(--navy); color: var(--chalk); }

.text-link {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(250, 246, 238, 0.45);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--green);
}

.text-link span { margin-left: 0.75rem; }

.next-card {
  width: min(100%, 430px);
  justify-self: end;
  padding: 1rem;
  border: 1px solid rgba(250, 246, 238, 0.28);
  background: rgba(18, 34, 59, 0.88);
  box-shadow: 18px 18px 0 rgba(255, 122, 30, 0.18);
}

.next-card__topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.8rem;
  color: var(--blue-muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.next-card__logo {
  display: grid;
  place-items: center;
  min-height: 170px;
  border: 1px solid rgba(250, 246, 238, 0.1);
  background: var(--navy);
}

.next-card__kicker {
  margin: 1.1rem 0 0.55rem;
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.next-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 0.92;
}

.next-card h2 span { color: var(--orange); }

.next-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.2rem;
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
}

.next-card__stats div {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.75rem 0.4rem;
  border-right: 1px solid var(--navy-line);
}

.next-card__stats div:last-child { border-right: 0; }
.next-card__stats strong { font-family: var(--display); font-size: 1.9rem; font-weight: 400; }
.next-card__stats span { color: var(--blue-muted); font-size: 0.55rem; font-weight: 700; }
.next-card__verified { margin: 0.8rem 0 0; color: var(--blue-muted); font-size: 0.58rem; }

.hero__scroll {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
  writing-mode: vertical-rl;
  color: var(--blue-muted);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero__scroll span { color: var(--orange); }

.ticker {
  overflow: hidden;
  padding: 0.85rem 0;
  color: var(--navy);
  background: var(--green);
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.ticker__track {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-width: 1150px;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.ticker i { color: var(--orange); font-size: 0.6rem; }

.section {
  padding: 8rem 6vw;
}

.section--sand { background: var(--sand); }
.section--chalk { background: var(--chalk); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: 5vw;
  align-items: end;
  margin-bottom: 3.5rem;
}

.section-heading h2,
.games-roadmap h2 {
  font-size: clamp(3.7rem, 6.2vw, 7.1rem);
}

.section-heading h2 span,
.games-roadmap h2 span,
.community h2 span,
.stories-feature h2 span {
  color: var(--orange);
}

.section-heading__aside,
.section-heading__summary {
  max-width: 420px;
  margin: 0;
  line-height: 1.65;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
  padding: 0.5rem 0.65rem;
  color: var(--chalk);
  background: var(--navy);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 197, 126, 0.15);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--navy);
  border-left: 2px solid var(--navy);
}

.schedule-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 1.1rem;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.schedule-card:hover {
  z-index: 2;
  transform: translate(-5px, -5px);
  box-shadow: 8px 8px 0 var(--navy);
}

.schedule-card--orange { background: var(--orange); }
.schedule-card--green { background: var(--green); }
.schedule-card--cream { background: var(--chalk); }

.schedule-card__index,
.schedule-card__date,
.schedule-card__status,
.schedule-card__body p {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.schedule-card__index { align-self: flex-end; }
.schedule-card__date { margin-top: 2rem; }
.schedule-card__body { margin: auto 0; }
.schedule-card__body p { margin: 0 0 0.55rem; opacity: 0.65; }
.schedule-card__body h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3vw, 3.3rem); font-weight: 400; line-height: 0.96; text-transform: uppercase; }
.schedule-card__body span { display: block; margin-top: 0.65rem; font-size: 0.78rem; line-height: 1.45; }
.schedule-card__status { margin-top: 2rem; padding-top: 0.8rem; border-top: 1px solid rgba(10, 25, 48, 0.35); }

.source-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(10, 25, 48, 0.25);
}

.source-note > span,
.source-note a {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.source-note p { margin: 0; font-size: 0.75rem; }

.why-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 720px;
  color: var(--chalk);
  background: var(--navy);
}

.why-section__statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
  border-right: 1px solid var(--navy-line);
}

.why-section h2 { font-size: clamp(4rem, 7vw, 8rem); }
.why-section h2 span { color: var(--orange); }
.why-section__statement > p:last-child { max-width: 520px; margin: 2rem 0 0; color: #cad5e5; font-size: 1.05rem; line-height: 1.7; }

.why-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.why-section__grid article {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.4rem;
  border-right: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  transition: background 180ms ease;
}

.why-section__grid article:hover { background: var(--navy-soft); }
.why-section__grid article > span { margin-bottom: auto; color: var(--orange); font-size: 0.62rem; font-weight: 800; }
.why-section__grid h3 { margin: 3rem 0 0.55rem; font-family: var(--display); font-size: 2.4rem; font-weight: 400; }
.why-section__grid p { margin: 0; color: #aebbd0; font-size: 0.82rem; line-height: 1.55; }

.section-heading--compact {
  margin-bottom: 3rem;
}

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

.athlete-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  color: var(--chalk);
  background: var(--navy);
  border: 1px solid var(--navy);
}

.athlete-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  color: var(--blue-muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.athlete-card__figure {
  position: absolute;
  inset: 0 0 35%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-soft), var(--navy));
}

.athlete-card__figure::before,
.athlete-card__figure::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 24%;
  transform: rotate(-18deg);
  opacity: 0.9;
}

.athlete-card--orange .athlete-card__figure::before { background: var(--orange); }
.athlete-card--green .athlete-card__figure::before { background: var(--green); }
.athlete-card--cream .athlete-card__figure::before { background: var(--chalk); }
.athlete-card__figure::after { width: 70%; height: 70%; border: 1px solid rgba(250, 246, 238, 0.15); border-radius: 50%; background: transparent; }

.athlete-card__figure span {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-family: var(--display);
  font-size: 16rem;
  line-height: 1;
  text-shadow: 9px 9px 0 rgba(250, 246, 238, 0.8);
}

.athlete-card__info {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding: 1.5rem;
  background: linear-gradient(to top, var(--navy) 80%, transparent);
}

.athlete-card__info > p { margin: 0 0 0.7rem; color: var(--green); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.12em; }
.athlete-card__info h3 { margin: 0; font-family: var(--display); font-size: 3.3rem; font-weight: 400; line-height: 0.96; text-transform: uppercase; }
.athlete-card__info > span { display: block; min-height: 4.8rem; margin-top: 1rem; color: #c7d0df; font-size: 0.8rem; line-height: 1.55; }
.athlete-card__info a,
.explainer-card__content a { display: flex; justify-content: space-between; margin-top: 1.3rem; padding-top: 0.9rem; border-top: 1px solid var(--navy-line); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; }
.athlete-card__info a b,
.explainer-card__content a b { color: var(--orange); }

.explainer-section {
  color: var(--chalk);
  background: var(--navy);
}

.section-heading--light .section-heading__summary { color: #b4c1d4; }

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

.explainer-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  min-height: 520px;
  background: var(--chalk);
  color: var(--navy);
}

.explainer-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--navy);
}

.explainer-card__visual > span {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: 5.5rem;
  letter-spacing: -0.02em;
}

.explainer-shape {
  position: absolute;
  width: 170px;
  height: 170px;
  border: 22px solid var(--orange);
  border-radius: 50%;
}

.explainer-shape--2 { width: 250px; height: 70px; border-radius: 0; border-color: var(--green); transform: rotate(-13deg); }
.explainer-shape--3 { width: 130px; height: 190px; border-radius: 0; border-color: var(--navy); transform: skew(-15deg); }

.explainer-card__content { display: flex; flex-direction: column; padding: 1.5rem; }
.explainer-card__content > p { margin: 0 0 0.8rem; color: #6f7d90; font-size: 0.57rem; font-weight: 800; letter-spacing: 0.1em; }
.explainer-card__content h3 { margin: 0; font-family: var(--display); font-size: 2.35rem; font-weight: 400; line-height: 1; text-transform: uppercase; }
.explainer-card__content > span { margin-top: 0.85rem; font-size: 0.78rem; line-height: 1.55; }
.explainer-card__content a { margin-top: auto; border-color: rgba(10, 25, 48, 0.25); }

.stories-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 620px;
  border: 2px solid var(--navy);
}

.stories-feature__art {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: var(--orange);
  border-right: 2px solid var(--navy);
}

.stories-feature__number {
  position: absolute;
  left: 5%;
  bottom: -12%;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(16rem, 34vw, 34rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.stories-feature__state {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  padding: 0.45rem 0.6rem;
  color: var(--chalk);
  background: var(--navy);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.stories-feature__rings {
  position: absolute;
  top: 20%;
  right: -5%;
  width: 50%;
  aspect-ratio: 1;
  border: 2px solid var(--chalk);
  border-radius: 50%;
  box-shadow: inset 0 0 0 18px var(--orange), inset 0 0 0 20px var(--chalk), inset 0 0 0 38px var(--orange), inset 0 0 0 40px var(--chalk);
}

.stories-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 6rem);
}

.stories-feature h2 { font-size: clamp(3.5rem, 5.8vw, 6.5rem); }
.stories-feature__content > p:not(.eyebrow) { max-width: 610px; margin: 2rem 0; font-size: 1rem; line-height: 1.7; }
.stories-feature__content .button { align-self: flex-start; }

.games-roadmap {
  padding: 8rem 6vw 5rem;
  color: var(--chalk);
  background: var(--navy);
}

.games-roadmap__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.games-roadmap__line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  border-top: 1px solid var(--navy-line);
}

.roadmap-stop {
  position: relative;
  padding-top: 2rem;
}

.roadmap-stop__dot {
  position: absolute;
  top: -1.1rem;
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  color: var(--navy);
  background: var(--chalk);
  border-radius: 50%;
  font-size: 0.52rem;
  font-weight: 800;
}

.roadmap-stop--active .roadmap-stop__dot { background: var(--orange); }
.roadmap-stop--green .roadmap-stop__dot { background: var(--green); }
.roadmap-stop > p { margin: 0 0 0.7rem; color: var(--blue-muted); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em; }
.roadmap-stop h3 { margin: 0; font-family: var(--display); font-size: 2.5rem; font-weight: 400; }
.roadmap-stop > span { display: block; max-width: 300px; margin-top: 0.6rem; color: #9eacc1; font-size: 0.72rem; line-height: 1.5; }

.games-roadmap__end {
  display: flex;
  justify-content: space-between;
  margin: 6rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--navy-line);
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.games-roadmap__end span { color: var(--green); }

.community {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 5vw;
  color: var(--navy);
  text-align: center;
  background: var(--green);
}

.community::before,
.community::after {
  content: "";
  position: absolute;
  width: 30vw;
  height: 6vw;
  background: var(--orange);
  transform: rotate(-25deg);
}

.community::before { left: -10vw; top: 16%; }
.community::after { right: -12vw; bottom: 12%; background: var(--chalk); }
.community__mark,
.community > * { position: relative; z-index: 2; }
.community__mark { display: grid; place-items: center; width: 110px; height: 110px; margin-bottom: 2rem; background: var(--navy); border-radius: 50%; }
.community .eyebrow { color: var(--navy); }
.community h2 { font-size: clamp(4.8rem, 9vw, 10rem); }
.community h2 span { color: var(--chalk); }
.community > p:not(.eyebrow) { max-width: 640px; margin: 1.5rem 0 2rem; font-size: 1rem; line-height: 1.65; }

.community__form {
  width: min(100%, 660px);
  display: grid;
  grid-template-columns: 1fr auto;
  border: 2px solid var(--navy);
  background: var(--chalk);
}

.community__form input {
  min-width: 0;
  padding: 1.1rem;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.community__form input:focus { box-shadow: inset 0 0 0 3px var(--orange); }
.community__form button { padding: 1rem 1.2rem; color: var(--chalk); background: var(--navy); border: 0; cursor: pointer; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.06em; }
.community__form button span { margin-left: 1rem; color: var(--green); }
.community__note { margin-top: 0.9rem; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.08em; }

.site-footer {
  padding: 5rem 6vw 1.5rem;
  color: var(--chalk);
  background: var(--navy);
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--navy-line);
}

.site-footer__top .wordmark__name { font-size: 2rem; }
.site-footer__top .brand-mark--compact { transform: scale(1.5); margin-right: 0.7rem; }
.site-footer__top p { margin: 0; color: var(--green); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; line-height: 1.55; text-transform: uppercase; text-align: right; }

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.site-footer__links div { display: flex; flex-direction: column; gap: 0.7rem; }
.site-footer__links div > span { margin-bottom: 0.4rem; color: var(--blue-muted); font-size: 0.56rem; font-weight: 800; letter-spacing: 0.12em; }
.site-footer__links a { font-size: 0.78rem; }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  color: var(--blue-muted);
  border-top: 1px solid var(--navy-line);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 360px; gap: 4vw; padding-left: 6vw; padding-right: 6vw; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .athlete-grid, .explainer-grid { grid-template-columns: 1fr 1fr; }
  .athlete-card:last-child, .explainer-card:last-child { grid-column: 1 / -1; }
  .athlete-card:last-child { min-height: 520px; }
}

@media (max-width: 800px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 62px; padding: 0 1rem; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-nav { display: block; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 4rem; padding: 6rem 1.25rem 5rem; }
  .hero h1 { font-size: clamp(4rem, 17vw, 6.8rem); }
  .hero__intro { font-size: 1rem; }
  .hero__scroll { display: none; }
  .next-card { width: 100%; justify-self: stretch; }
  .ticker__track { justify-content: flex-start; gap: 1.3rem; padding-left: 1rem; }
  .section { padding: 5.5rem 1rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-heading h2, .games-roadmap h2 { font-size: clamp(3.7rem, 15vw, 6rem); }
  .source-note { grid-template-columns: 1fr; gap: 0.5rem; }
  .why-section { grid-template-columns: 1fr; }
  .why-section__statement { padding: 5rem 1.25rem; border-right: 0; border-bottom: 1px solid var(--navy-line); }
  .why-section h2 { font-size: clamp(4rem, 17vw, 7rem); }
  .why-section__grid article { min-height: 280px; padding: 1.5rem; }
  .athlete-grid, .explainer-grid { grid-template-columns: 1fr; }
  .athlete-card:last-child, .explainer-card:last-child { grid-column: auto; }
  .athlete-card { min-height: 580px; }
  .stories-feature { grid-template-columns: 1fr; }
  .stories-feature__art { min-height: 390px; border-right: 0; border-bottom: 2px solid var(--navy); }
  .games-roadmap { padding: 5.5rem 1.25rem 4rem; }
  .games-roadmap__line { grid-template-columns: 1fr; gap: 3.5rem; margin-left: 1rem; border-top: 0; border-left: 1px solid var(--navy-line); }
  .roadmap-stop { padding: 0 0 0 2rem; }
  .roadmap-stop__dot { top: 0; left: -1.1rem; }
  .games-roadmap__end { font-size: 2.5rem; }
  .community { padding: 6rem 1rem; }
  .community h2 { font-size: clamp(4.5rem, 20vw, 7rem); }
  .community__form { grid-template-columns: 1fr; }
  .site-footer { padding: 4rem 1.25rem 1.25rem; }
  .site-footer__top { align-items: start; flex-direction: column; gap: 2rem; }
  .site-footer__top p { text-align: left; }
  .site-footer__bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .button { width: 100%; }
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-card { min-height: 330px; }
  .why-section__grid { grid-template-columns: 1fr; }
  .why-section__grid article { min-height: 230px; }
  .games-roadmap__end { align-items: flex-end; flex-direction: column; }
  .site-footer__links { grid-template-columns: 1fr 1fr; }
  .site-footer__links div:last-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* Static launch additions. These extend the original visual system only. */
[hidden] { display: none !important; }
textarea { font: inherit; }
.desktop-nav .active { color: var(--green); }
.desktop-nav { gap: clamp(0.8rem, 1.7vw, 2rem); }
.button, .explainer-vote { border: 0; cursor: pointer; }
.countdown-stats strong { min-width: 2ch; }

.results-desk {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 6vw;
  padding: 8rem 6vw;
  color: var(--chalk);
  background: var(--navy);
  border-bottom: 1px solid var(--navy-line);
}
.results-desk__heading h2,
.inner-hero h1,
.profile-hero h1,
.explainer-hero h1,
.utility-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: .91;
  text-transform: uppercase;
}
.results-desk__heading h2 { font-size: clamp(4rem, 7vw, 8rem); }
.results-desk__heading h2 span,
.inner-hero h1 span,
.profile-hero h1 span,
.explainer-hero h1 span,
.utility-cta h2 span { color: var(--orange); }
.results-desk__grid { display: grid; grid-template-columns: .9fr 1.1fr; border: 1px solid var(--navy-line); }
.desk-lead { display: flex; flex-direction: column; justify-content: center; padding: clamp(1.5rem, 3vw, 3rem); border-right: 1px solid var(--navy-line); }
.desk-lead .live-pill { align-self: flex-start; margin: 0 0 2rem; background: var(--navy-soft); }
.desk-lead h3 { margin: 0; font-family: var(--display); font-size: clamp(2.5rem, 4vw, 4.4rem); font-weight: 400; line-height: .96; text-transform: uppercase; }
.desk-lead p { margin: 1rem 0 2rem; color: #aebbd0; font-size: .84rem; line-height: 1.65; }
.desk-lead .button { align-self: flex-start; }
.desk-feed { display: grid; }
.desk-feed a { display: flex; flex-direction: column; justify-content: center; min-height: 175px; padding: 1.5rem; border-bottom: 1px solid var(--navy-line); transition: background 180ms ease; }
.desk-feed a:last-child { border-bottom: 0; }
.desk-feed a:hover, .desk-feed a:focus-visible { background: var(--navy-soft); }
.desk-feed span { color: var(--green); font-size: .56rem; font-weight: 800; letter-spacing: .11em; }
.desk-feed strong { margin: .75rem 0 1.1rem; font-size: .92rem; line-height: 1.5; }
.desk-feed b { color: var(--orange); font-size: .56rem; letter-spacing: .1em; }

.explainer-vote {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: .9rem 0 0;
  color: var(--navy);
  background: transparent;
  border-top: 1px solid rgba(10, 25, 48, .25);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: left;
}
.explainer-vote b { color: var(--orange); }
.explainer-vote:disabled { opacity: .62; cursor: default; }

.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.community__form { position: relative; }
.community__consent { grid-column: 1 / -1; display: flex; align-items: center; gap: .6rem; padding: .65rem 1rem; border-top: 1px solid rgba(10, 25, 48, .2); font-size: .62rem; font-weight: 700; text-align: left; }
.community__consent input { width: auto; min-width: auto; padding: 0; accent-color: var(--navy); }
.community__form .form-status { grid-column: 1 / -1; margin: 0; padding: 0 1rem .7rem; font-size: .65rem; font-weight: 700; text-align: left; }
.capture-form button:disabled { cursor: wait; opacity: .7; }
.community-pitch { width: min(100%, 1050px); display: grid; grid-template-columns: .75fr 1.25fr; gap: 2.5rem; margin-top: 4rem; padding: 2.5rem; color: var(--chalk); background: var(--navy); border: 2px solid var(--navy); text-align: left; }
.community-pitch > div > span, .pitch-form label > span { color: var(--green); font-size: .56rem; font-weight: 800; letter-spacing: .11em; }
.community-pitch h3 { margin: .8rem 0; font-family: var(--display); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 400; line-height: .94; }
.community-pitch p { margin: 0; color: #b4c1d4; font-size: .8rem; line-height: 1.6; }
.pitch-form { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pitch-form label { display: grid; gap: .4rem; }
.pitch-form input, .pitch-form textarea { width: 100%; padding: .85rem; color: var(--chalk); background: var(--navy-soft); border: 1px solid var(--navy-line); outline: 0; }
.pitch-form input:focus, .pitch-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 2px var(--orange); }
.pitch-form__wide { grid-column: 1 / -1; }
.pitch-form .pitch-consent { display: flex; grid-template-columns: auto 1fr; align-items: center; gap: .6rem; color: #b4c1d4; font-size: .62rem; }
.pitch-form .pitch-consent input { width: auto; accent-color: var(--green); }
.pitch-form button { justify-self: start; padding: .9rem 1rem; color: var(--navy); background: var(--green); border: 0; cursor: pointer; font-size: .64rem; font-weight: 800; letter-spacing: .08em; }
.pitch-form .form-status { align-self: center; margin: 0; color: var(--chalk); font-size: .65rem; }

.toast { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 100; max-width: min(360px, calc(100vw - 2.5rem)); padding: .95rem 1rem; color: var(--chalk); background: var(--navy); border: 1px solid var(--green); box-shadow: 8px 8px 0 var(--orange); font-size: .72rem; font-weight: 700; line-height: 1.4; opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity 180ms ease, transform 180ms ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

.inner-hero { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 6vw; align-items: end; min-height: 560px; padding: 8rem 6vw 5rem; color: var(--chalk); background: var(--navy); border-bottom: 1px solid var(--navy-line); }
.inner-hero h1 { max-width: 1000px; font-size: clamp(4.5rem, 9vw, 10rem); }
.inner-hero > div > p:last-child { max-width: 650px; margin: 2rem 0 0; color: #b4c1d4; line-height: 1.65; }
.inner-hero__aside { display: flex; flex-direction: column; gap: .8rem; padding: 1.2rem; border: 1px solid var(--navy-line); }
.inner-hero__aside span, .inner-hero__aside a { color: var(--blue-muted); font-size: .58rem; font-weight: 800; letter-spacing: .1em; }
.inner-hero__aside strong { color: var(--green); font-family: var(--display); font-size: 2rem; font-weight: 400; }
.inner-hero__aside a { color: var(--orange); }
.schedule-toolbar { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 4rem; padding-bottom: 1.2rem; border-bottom: 2px solid var(--navy); }
.schedule-toolbar > div:first-child > span { font-size: .58rem; font-weight: 800; letter-spacing: .11em; }
.schedule-toolbar p { margin: .35rem 0 0; color: #6f7d90; font-size: .7rem; }
.filter-buttons { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .5rem; }
.filter-buttons button { padding: .55rem .7rem; color: var(--navy); background: transparent; border: 1px solid var(--navy); cursor: pointer; font-size: .58rem; font-weight: 800; letter-spacing: .08em; }
.filter-buttons button.active, .filter-buttons button:hover { color: var(--chalk); background: var(--navy); }
.schedule-day { margin-top: 5rem; }
.schedule-day:first-of-type { margin-top: 0; }
.schedule-day__heading { display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 1rem; margin-bottom: 1.3rem; }
.schedule-day__heading > span { color: var(--orange); font-size: .58rem; font-weight: 800; letter-spacing: .1em; }
.schedule-day__heading h2 { margin: 0; font-family: var(--display); font-size: clamp(3rem, 6vw, 6rem); font-weight: 400; line-height: .9; }
.schedule-day__heading p { margin: 0; color: #6f7d90; font-size: .7rem; }
.schedule-grid--two { grid-template-columns: repeat(2, 1fr); }
.schedule-grid--two .schedule-card { min-height: 340px; }
.schedule-card__status { display: block; }
.utility-cta { display: flex; justify-content: space-between; align-items: end; gap: 3rem; padding: 6rem 6vw; color: var(--chalk); background: var(--navy); border-top: 1px solid var(--navy-line); }
.utility-cta h2 { font-size: clamp(3.7rem, 7vw, 7rem); }
.utility-cta > div > p:last-child { max-width: 600px; color: #b4c1d4; line-height: 1.6; }

.profile-hero { display: grid; grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr); min-height: 720px; color: var(--chalk); background: var(--navy); }
.profile-hero__art { position: relative; display: grid; place-items: center; overflow: hidden; background: var(--green); border-right: 1px solid var(--navy-line); }
.profile-hero__art::before { content: ""; position: absolute; width: 130%; height: 23%; background: var(--orange); transform: rotate(-18deg); }
.profile-hero__art span { position: relative; z-index: 1; color: var(--navy); font-family: var(--display); font-size: clamp(18rem, 35vw, 35rem); line-height: .8; text-shadow: 10px 10px 0 var(--chalk); }
.profile-hero__art i { position: absolute; right: 10%; bottom: 9%; width: 42%; aspect-ratio: 1; border: 2px solid var(--chalk); border-radius: 50%; }
.profile-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 7vw, 7rem); }
.profile-hero__place { margin-bottom: 1.2rem; color: var(--green); font-size: .58rem; font-weight: 800; letter-spacing: .12em; }
.profile-hero h1 { font-size: clamp(5rem, 10vw, 11rem); }
.profile-hero__copy > p:not(.eyebrow) { max-width: 650px; margin: 2rem 0; color: #c7d0df; line-height: 1.7; }
.profile-body { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 6vw; }
.profile-body__main h2 { margin: 0; font-family: var(--display); font-size: clamp(3.6rem, 6vw, 7rem); font-weight: 400; line-height: .92; }
.profile-body__main h2 span { color: var(--orange); }
.profile-lead { max-width: 830px; margin: 2rem 0 3rem; font-size: 1.05rem; line-height: 1.75; }
.profile-facts, .watch-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--navy); border-left: 2px solid var(--navy); }
.profile-facts article, .watch-grid article { min-height: 220px; padding: 1.2rem; border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy); }
.profile-facts span, .watch-grid b { color: var(--orange); font-size: .58rem; font-weight: 800; letter-spacing: .1em; }
.profile-facts strong, .watch-grid h4 { display: block; margin: 2.5rem 0 .6rem; font-family: var(--display); font-size: 2rem; font-weight: 400; text-transform: uppercase; }
.profile-facts p, .watch-grid p { margin: 0; font-size: .76rem; line-height: 1.55; }
.profile-subhead { margin: 4rem 0 1.2rem; font-family: var(--display); font-size: 2.4rem; font-weight: 400; }
.watch-grid article:nth-child(1) { background: var(--orange); }
.watch-grid article:nth-child(1) b { color: var(--navy); }
.watch-grid article:nth-child(2) { background: var(--green); }
.profile-sidebar { align-self: start; position: sticky; top: 96px; padding: 1.5rem; color: var(--chalk); background: var(--navy); }
.profile-sidebar > span { color: var(--green); font-size: .56rem; font-weight: 800; letter-spacing: .1em; }
.profile-sidebar h3 { margin: 1rem 0; font-family: var(--display); font-size: 3rem; font-weight: 400; line-height: .95; }
.profile-sidebar p { color: #b4c1d4; font-size: .78rem; line-height: 1.6; }
.profile-sidebar .button { margin: 1rem 0 2rem; background: var(--green); color: var(--navy); }
.profile-sidebar__links { display: grid; }
.profile-sidebar__links a { padding: .85rem 0; border-top: 1px solid var(--navy-line); font-size: .7rem; }
.profile-source { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; padding: 1.3rem 6vw; color: var(--chalk); background: var(--navy); border-top: 1px solid var(--navy-line); }
.profile-source span, .profile-source a { color: var(--orange); font-size: .58rem; font-weight: 800; letter-spacing: .1em; }
.profile-source p { margin: 0; color: #b4c1d4; font-size: .72rem; line-height: 1.5; }

.explainer-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; color: var(--chalk); background: var(--navy); }
.explainer-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: 7vw; }
.explainer-hero h1 { font-size: clamp(5rem, 10vw, 11rem); }
.explainer-hero__copy > p:not(.eyebrow) { max-width: 620px; margin: 2rem 0; color: #c7d0df; line-height: 1.7; }
.explainer-hero__copy .button { align-self: flex-start; }
.explainer-hero__visual { position: relative; overflow: hidden; background: var(--green); border-left: 1px solid var(--navy-line); }
.explainer-hero__visual > span { position: absolute; right: 1.5rem; top: 1.5rem; color: var(--navy); font-size: .6rem; font-weight: 800; letter-spacing: .1em; }
.explainer-hero__visual > b { position: absolute; left: 50%; top: 50%; width: 34px; height: 34px; transform: translate(-50%, -50%); background: var(--orange); border: 4px solid var(--navy); border-radius: 50%; }
.bowl { position: absolute; width: 145px; height: 145px; background: var(--navy); border: 14px solid var(--chalk); border-radius: 50%; box-shadow: inset 0 0 0 6px var(--orange); }
.bowl--one { left: 14%; top: 18%; }
.bowl--two { right: 12%; top: 37%; transform: scale(.76); }
.bowl--three { left: 25%; bottom: 7%; transform: scale(.9); }
.explainer-body h2 { margin: 0; font-family: var(--display); font-size: clamp(3.7rem, 6vw, 7rem); font-weight: 400; line-height: .92; }
.rules-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--navy); border-left: 2px solid var(--navy); }
.rules-grid article { min-height: 300px; padding: 1.3rem; border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy); }
.rules-grid article:nth-child(1) { background: var(--orange); }
.rules-grid article:nth-child(2) { background: var(--green); }
.rules-grid > article > span { font-size: .58rem; font-weight: 800; }
.rules-grid h3 { margin: 5rem 0 .7rem; font-family: var(--display); font-size: 2.2rem; font-weight: 400; }
.rules-grid p { margin: 0; font-size: .78rem; line-height: 1.55; }
.explainer-example { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 430px; margin-top: 4rem; color: var(--chalk); background: var(--navy); }
.explainer-example__diagram { position: relative; overflow: hidden; background: var(--orange); }
.mini-jack, .mini-bowl { position: absolute; border-radius: 50%; }
.mini-jack { left: 50%; top: 50%; width: 24px; height: 24px; background: var(--chalk); transform: translate(-50%, -50%); border: 3px solid var(--navy); }
.mini-bowl { width: 80px; height: 80px; background: var(--navy); border: 8px solid var(--chalk); }
.mini-bowl--india-1 { left: 27%; top: 30%; }
.mini-bowl--india-2 { left: 55%; bottom: 18%; }
.mini-bowl--opp { right: 8%; top: 15%; background: var(--green); }
.explainer-example > div:last-child { display: flex; flex-direction: column; justify-content: center; padding: 5vw; }
.explainer-example > div:last-child > span { color: var(--green); font-size: .58rem; font-weight: 800; letter-spacing: .1em; }
.explainer-example h3 { margin: 1rem 0; font-family: var(--display); font-size: clamp(3rem, 5vw, 5rem); font-weight: 400; line-height: .95; }
.explainer-example p { max-width: 600px; color: #b4c1d4; line-height: 1.65; }
.explainer-why { min-height: 650px; }

@media (max-width: 1100px) {
  .results-desk { grid-template-columns: 1fr; }
  .profile-body { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .results-desk { padding: 5.5rem 1rem; }
  .results-desk__grid, .community-pitch, .inner-hero, .profile-hero, .explainer-hero, .explainer-example { grid-template-columns: 1fr; }
  .desk-lead { border-right: 0; border-bottom: 1px solid var(--navy-line); }
  .community-pitch { padding: 1.3rem; }
  .pitch-form { grid-template-columns: 1fr; }
  .pitch-form__wide { grid-column: auto; }
  .inner-hero { min-height: auto; padding: 6rem 1.25rem 4rem; }
  .inner-hero__aside { margin-top: 2rem; }
  .schedule-toolbar { align-items: flex-start; flex-direction: column; }
  .filter-buttons { justify-content: flex-start; }
  .schedule-day__heading { grid-template-columns: 1fr; }
  .schedule-grid--two { grid-template-columns: 1fr; }
  .utility-cta { align-items: flex-start; flex-direction: column; padding: 5rem 1.25rem; }
  .profile-hero__art { min-height: 440px; border-right: 0; border-bottom: 1px solid var(--navy-line); }
  .profile-hero__copy { padding: 5rem 1.25rem; }
  .profile-facts, .watch-grid { grid-template-columns: 1fr; }
  .profile-source { grid-template-columns: 1fr; gap: .6rem; padding: 1.3rem; }
  .explainer-hero__visual { min-height: 500px; border-left: 0; border-top: 1px solid var(--navy-line); }
  .explainer-hero__copy { padding: 5rem 1.25rem; }
  .rules-grid { grid-template-columns: 1fr; }
  .explainer-example__diagram { min-height: 380px; }
}

@media (max-width: 520px) {
  .results-desk__heading h2, .inner-hero h1, .profile-hero h1, .explainer-hero h1, .utility-cta h2 { font-size: clamp(3.7rem, 16vw, 5.4rem); }
  .community__form { grid-template-columns: 1fr; }
  .community__consent, .community__form .form-status { grid-column: auto; }
  .profile-hero__art span { font-size: 16rem; }
  .bowl { width: 105px; height: 105px; }
}
