:root {
  --ink: #111318;
  --paper: #f4efdf;
  --paper-deep: #e9e0c9;
  --lime: #dfff00;
  --blue: #1949ff;
  --red: #ff4d31;
  --white: #fffdf5;
  --line: rgba(17, 19, 24, 0.22);
  --display: "Archivo Black", "Arial Black", sans-serif;
  --body: "DM Sans", "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --shadow-hard: 8px 8px 0 var(--ink);
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.78), transparent 24rem),
    var(--paper);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

body.is-app-mode {
  background: var(--paper);
}

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

button {
  color: inherit;
  font: inherit;
}

button:not(:disabled),
a[href] {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 4px;
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.paper-noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
}

.cursor-orb {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(223, 255, 0, 0.16);
  filter: blur(12px);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 200ms ease;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 2px solid var(--ink);
  background: rgba(244, 239, 223, 0.88);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: flex;
  align-items: stretch;
  width: fit-content;
  color: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -0.06em;
  transform: rotate(-2deg);
}

.wordmark span {
  display: grid;
  place-items: center;
  min-width: 42px;
  padding: 10px 7px 9px;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.wordmark span + span {
  margin-left: -2px;
}

.wordmark span:nth-child(2) {
  color: var(--paper);
  background: var(--ink);
}

.wordmark span:nth-child(3) {
  background: var(--lime);
}

.edition-stamp {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.header-cta,
.result-retake-top {
  justify-self: end;
  padding: 10px 0 8px;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header-cta span {
  display: inline-block;
  margin-left: 10px;
  transition: transform 180ms ease;
}

.header-cta:hover span {
  transform: translate(3px, -3px);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}

.ticker {
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker__track span,
.ticker__track b {
  display: block;
  padding: 11px 14px 10px;
}

.ticker__track b {
  font-size: 10px;
}

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

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
  min-height: calc(100svh - var(--header-height) - 80px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 6vw, 92px) clamp(24px, 5.3vw, 86px) clamp(42px, 5vw, 72px);
  border-right: 2px solid var(--ink);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255, 77, 49, 0.16);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  50% { transform: scale(0.65); box-shadow: 0 0 0 9px rgba(255, 77, 49, 0.06); }
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(66px, 8.2vw, 136px);
  font-weight: 900;
  line-height: 0.78;
  text-transform: uppercase;
  letter-spacing: -0.082em;
}

.hero h1 > span {
  display: block;
  width: fit-content;
  animation: hero-rise 700ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero h1 > span:nth-child(2) {
  animation-delay: 90ms;
}

.hero h1 > span:nth-child(3) {
  animation-delay: 180ms;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(60px) rotate(2deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.hero-title-accent {
  position: relative;
  z-index: 0;
  margin-top: 16px;
  padding: 2px 18px 7px 11px;
  color: var(--paper);
  background: var(--blue);
  transform: rotate(-2deg) !important;
  box-shadow: 8px 8px 0 var(--ink);
}

.hero__lede {
  max-width: 620px;
  margin: 36px 0 0;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 14px 20px;
  border: 2px solid var(--ink);
  border-radius: 0;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, background 160ms ease;
}

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.button--big {
  min-height: 64px;
  padding: 19px 25px;
  font-size: 13px;
}

.button--primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--lime);
}

.button--primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--lime);
}

.button--paper {
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--lime);
}

.button--paper:hover,
.button--lime:hover,
.button--outline:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}

.button--lime {
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--paper);
}

.button--outline {
  background: transparent;
}

.text-button {
  padding: 8px 0;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
}

.text-button span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 160ms ease;
}

.text-button:hover span {
  transform: translateY(4px);
}

.hero__facts {
  display: flex;
  gap: 0;
  width: fit-content;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border: 2px solid var(--ink);
}

.hero__facts li {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 10px 14px;
}

.hero__facts li + li {
  border-left: 2px solid var(--ink);
}

.hero__facts strong {
  font-family: var(--display);
  font-size: 19px;
}

.hero__facts span {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.85%, rgba(17, 19, 24, 0.14) 50%, transparent 50.15%),
    linear-gradient(transparent 49.85%, rgba(17, 19, 24, 0.14) 50%, transparent 50.15%),
    radial-gradient(circle, rgba(223, 255, 0, 0.82) 0 5%, transparent 5.2%),
    var(--red);
  background-size: 80px 80px, 80px 80px, auto, auto;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 2px solid rgba(17, 19, 24, 0.35);
  pointer-events: none;
}

.scanner {
  position: relative;
  display: grid;
  place-items: center;
  width: min(73%, 500px);
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 13px 13px 0 var(--ink);
}

.scanner::before,
.scanner::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 104%;
  height: 48px;
  border: 2px solid var(--ink);
  background: var(--lime);
}

.scanner::before { transform: rotate(34deg); }
.scanner::after { transform: rotate(-34deg); background: var(--blue); }

.scanner__rings span {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(17, 19, 24, 0.42);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.scanner__rings span:nth-child(1) { width: 84%; height: 84%; }
.scanner__rings span:nth-child(2) { width: 60%; height: 60%; }
.scanner__rings span:nth-child(3) { width: 35%; height: 35%; }

.scanner__crosshair {
  position: absolute;
  background: rgba(17, 19, 24, 0.2);
}

.scanner__crosshair--x { width: 94%; height: 1px; }
.scanner__crosshair--y { width: 1px; height: 94%; }

.aura-ball {
  position: relative;
  z-index: 2;
  width: 31%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
  animation: ball-float 4s ease-in-out infinite;
}

@keyframes ball-float {
  50% { transform: translateY(-10px) rotate(7deg); }
}

.aura-ball::before {
  content: "";
  position: absolute;
  top: 32%;
  left: 34%;
  width: 33%;
  aspect-ratio: 1;
  background: var(--ink);
  clip-path: polygon(50% 0, 100% 38%, 81% 100%, 19% 100%, 0 38%);
}

.aura-ball__patch {
  position: absolute;
  width: 29%;
  aspect-ratio: 1;
  background: var(--ink);
  clip-path: polygon(50% 0, 100% 38%, 81% 100%, 19% 100%, 0 38%);
}

.aura-ball__patch--1 { top: -9%; left: 36%; }
.aura-ball__patch--2 { top: 32%; right: -11%; transform: rotate(20deg); }
.aura-ball__patch--3 { bottom: -8%; right: 19%; }
.aura-ball__patch--4 { top: 50%; left: -9%; transform: rotate(-18deg); }

.scanner__label {
  position: absolute;
  z-index: 4;
  padding: 6px 10px;
  border: 2px solid var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.scanner__label--top { top: 6%; transform: rotate(-2deg); }
.scanner__label--bottom { bottom: 6%; background: var(--ink); color: var(--paper); transform: rotate(2deg); }

.orbit-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px 5px 5px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  animation: chip-bob 3s ease-in-out infinite;
}

.orbit-chip b {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--display);
  font-size: 10px;
}

.orbit-chip--one { top: 18%; left: -8%; transform: rotate(-7deg); }
.orbit-chip--two { top: 18%; right: -10%; animation-delay: -1.4s; transform: rotate(5deg); }
.orbit-chip--three { bottom: 17%; left: -5%; animation-delay: -0.8s; transform: rotate(4deg); }
.orbit-chip--four { right: -6%; bottom: 18%; animation-delay: -2s; transform: rotate(-5deg); }

@keyframes chip-bob {
  50% { margin-top: -8px; }
}

.hero-sticker {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 110px;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--blue);
  color: var(--paper);
  font-family: var(--display);
  font-size: 12px;
  line-height: 1.05;
  text-align: center;
  box-shadow: 5px 5px 0 var(--ink);
}

.hero-sticker--one { right: 3%; bottom: 8%; transform: rotate(11deg); }
.hero-sticker--two {
  top: 6%; left: 3%; width: 82px; background: var(--lime); color: var(--ink); font-size: 10px; transform: rotate(-12deg);
}

.hero__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 8px clamp(24px, 5.3vw, 86px);
  border-top: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scroll-line {
  width: min(28vw, 360px);
  height: 1px;
  background: var(--ink);
}

.how {
  padding: clamp(76px, 9vw, 140px) clamp(24px, 6vw, 96px);
  border-bottom: 2px solid var(--ink);
}

.section-tag {
  width: fit-content;
  margin-bottom: 30px;
  padding: 6px 9px;
  border: 2px solid var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}

.section-tag--light {
  background: var(--paper);
}

.how__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: clamp(40px, 8vw, 140px);
  align-items: end;
}

.how h2,
.squad-preview h2,
.squad-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.91;
  text-transform: uppercase;
  letter-spacing: -0.07em;
}

.how__intro > p {
  max-width: 500px;
  margin: 0 0 5px;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(54px, 7vw, 96px) 0 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 300px;
  padding: 26px clamp(20px, 2.5vw, 38px) 34px;
  background: rgba(255, 253, 245, 0.23);
  transition: background 180ms ease, transform 180ms ease;
}

.steps li + li { border-left: 2px solid var(--ink); }
.steps li:hover { z-index: 2; background: var(--lime); transform: translateY(-8px); }

.step-number {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 45px 0 26px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-family: var(--display);
  font-size: 28px;
  box-shadow: 5px 5px 0 var(--ink);
}

.steps h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.steps p {
  max-width: 330px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.squad-preview {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 130px) clamp(24px, 6vw, 96px) 0;
  color: var(--paper);
  background: var(--blue);
}

.squad-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 46px 46px;
}

.squad-preview__heading,
.squad-preview__foot,
.name-wall {
  position: relative;
  z-index: 1;
}

.squad-preview__heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
}

.squad-preview h2 {
  font-size: clamp(56px, 8.5vw, 132px);
}

.name-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 78px -10px 68px;
}

.name-wall span {
  padding: 7px 11px 9px;
  border: 2px solid var(--paper);
  font-family: var(--display);
  font-size: clamp(25px, 4.1vw, 67px);
  line-height: 1;
  letter-spacing: -0.055em;
  transform: rotate(var(--tilt, -1deg));
  transition: color 130ms ease, background 130ms ease, transform 130ms ease;
}

.name-wall span:nth-child(2n) { --tilt: 1deg; }
.name-wall span:nth-child(3n) { color: var(--lime); }
.name-wall span:hover { color: var(--ink); background: var(--lime); transform: rotate(0) scale(1.03); }

.squad-preview__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 116px;
  border-top: 2px solid var(--paper);
}

.squad-preview__foot p {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding: 44px clamp(24px, 6vw, 96px);
  border-top: 2px solid var(--ink);
  background: var(--lime);
}

.wordmark--footer {
  flex-shrink: 0;
}

.site-footer p {
  max-width: 780px;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.footer-top {
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: none;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Quiz */

.quiz-view {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17,19,24,.055) 1px, transparent 1px),
    linear-gradient(rgba(17,19,24,.055) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
}

.quiz-view::before {
  content: "";
  position: absolute;
  top: 88px;
  right: -90px;
  width: 340px;
  height: 340px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 42px var(--lime), inset 0 0 0 44px var(--ink), inset 0 0 0 82px var(--paper), inset 0 0 0 84px var(--ink);
  opacity: .58;
}

.quiz-topbar,
.result-topbar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto minmax(240px, 640px) auto;
  align-items: center;
  gap: clamp(24px, 6vw, 90px);
  min-height: 90px;
  padding: 16px clamp(20px, 4vw, 60px);
  border-bottom: 2px solid var(--ink);
  background: rgba(244,239,223,.94);
}

.quiz-mark {
  display: flex;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--display);
  font-size: 13px;
  line-height: 1;
}

.quiz-mark span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.quiz-mark span + span { margin-left: -2px; }
.quiz-mark span:nth-child(2) { color: var(--paper); background: var(--ink); }
.quiz-mark span:nth-child(3) { background: var(--lime); }

.quiz-progress-wrap { width: 100%; }

.quiz-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 9px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .07em;
}

.quiz-progress-meta b { font-size: 11px; }

.quiz-progress {
  position: relative;
  height: 9px;
  border: 2px solid var(--ink);
  background: var(--paper-deep);
}

.quiz-progress > span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 12.5%;
  background: var(--blue);
  transition: width 380ms cubic-bezier(.2,.8,.2,1);
}

.quiz-progress i {
  position: absolute;
  top: 50%;
  left: 12.5%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  transform: translate(-50%, -50%);
  transition: left 380ms cubic-bezier(.2,.8,.2,1);
}

.quiz-close {
  justify-self: end;
  width: 43px;
  height: 43px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-size: 29px;
  line-height: 1;
  transition: transform 150ms ease, background 150ms ease;
}

.quiz-close:hover { background: var(--red); transform: rotate(6deg); }

.quiz-stage {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 150px));
  margin: 0 auto;
  padding: clamp(50px, 7vw, 104px) 0 54px;
}

.question-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 22px;
}

.question-kicker,
.instinct-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.question-kicker {
  width: fit-content;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  background: var(--lime);
}

.instinct-label span { color: var(--red); font-size: 16px; }

.question-card {
  animation: question-in 420ms cubic-bezier(.2,.8,.2,1) both;
}

.question-card.is-leaving {
  animation: question-out 240ms ease both;
}

@keyframes question-in {
  from { opacity: 0; transform: translateX(35px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes question-out {
  to { opacity: 0; transform: translateX(-35px); }
}

.question-card h2 {
  max-width: 1020px;
  margin: 0 0 clamp(38px, 5vw, 68px);
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 88px);
  line-height: .96;
  letter-spacing: -.065em;
}

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

.answer-button {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 102px;
  padding: 17px 20px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: rgba(255,253,245,.82);
  text-align: left;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.answer-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--lime);
  transform: translateX(-102%);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1);
}

.answer-button > * { position: relative; z-index: 1; }
.answer-button:hover { transform: translate(-4px, -4px); box-shadow: 7px 7px 0 var(--ink); }
.answer-button:hover::before { transform: translateX(0); }

.answer-button.is-picked {
  background: var(--blue);
  color: var(--paper);
  transform: scale(.985);
}

.answer-button.is-picked::before { display: none; }

.answer-key {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}

.answer-copy strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -.035em;
}

.answer-copy small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  opacity: .68;
}

.answer-arrow {
  font-size: 24px;
  transition: transform 140ms ease;
}

.answer-button:hover .answer-arrow { transform: translateX(5px); }

.quiz-hint {
  margin: 22px 0 0;
  color: rgba(17,19,24,.62);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-align: center;
  letter-spacing: .04em;
}

.quiz-hint kbd {
  min-width: 21px;
  padding: 2px 5px;
  border: 1px solid var(--ink);
  border-bottom-width: 3px;
  background: var(--white);
  font: inherit;
}

.quiz-sideline {
  position: absolute;
  top: 50%;
  z-index: 1;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .15em;
  writing-mode: vertical-rl;
}

.quiz-sideline--left { left: 23px; transform: translateY(-50%) rotate(180deg); }
.quiz-sideline--right { right: 23px; transform: translateY(-50%); }

/* Result */

.result-view {
  --result-primary: #75aadb;
  --result-secondary: #fff;
  --result-accent: #f4c542;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 12%, var(--result-accent) 0 15%, transparent 15.2%),
    linear-gradient(115deg, transparent 0 62%, color-mix(in srgb, var(--result-primary) 24%, transparent) 62% 100%),
    var(--paper);
}

.result-view::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 90px 0 0;
  opacity: .18;
  background-image:
    linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.result-topbar {
  grid-template-columns: auto 1fr auto;
  max-width: none;
}

.result-topbar > p {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  letter-spacing: .08em;
}

.result-topbar small { opacity: .55; }

.result-wrap {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 108px) 0 90px;
}

.result-intro {
  margin-bottom: 26px;
}

.result-intro p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 9px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.result-intro p span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(25,73,255,.12);
}

.result-intro h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 90px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.07em;
}

.result-intro em {
  display: inline-block;
  color: var(--blue);
  font-style: normal;
  transform: rotate(-2deg);
}

.result-card {
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 13px 13px 0 var(--ink);
  animation: result-pop 580ms cubic-bezier(.16,.9,.25,1.25) both;
}

@keyframes result-pop {
  from { opacity: 0; transform: translateY(45px) rotate(1deg) scale(.97); }
  to { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

.result-portrait-column {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 610px;
  padding: clamp(28px, 4vw, 54px);
  overflow: hidden;
  border-right: 3px solid var(--ink);
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(17,19,24,.09) 48% 50%, transparent 50%),
    var(--result-primary);
  background-size: 24px 24px, auto;
}

.result-portrait-column::before {
  content: "";
  position: absolute;
  top: 4%;
  left: -13%;
  width: 126%;
  aspect-ratio: 1;
  border: 2px dashed rgba(17,19,24,.52);
  border-radius: 50%;
  animation: slow-spin 20s linear infinite;
}

@keyframes slow-spin { to { transform: rotate(360deg); } }

.result-sticker {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 470px;
}

.portrait {
  position: relative;
  width: min(92%, 410px);
  aspect-ratio: .78;
  filter: drop-shadow(10px 12px 0 rgba(17,19,24,.85));
}

.portrait__burst {
  position: absolute;
  inset: 2% 0 12%;
  background: var(--result-accent);
  clip-path: polygon(50% 0,58% 17%,72% 5%,74% 23%,94% 16%,85% 35%,100% 42%,82% 51%,96% 67%,75% 68%,73% 91%,57% 76%,48% 100%,41% 77%,21% 91%,23% 70%,0 66%,16% 51%,1% 39%,21% 34%,10% 15%,31% 22%,32% 3%);
}

.portrait__body {
  position: absolute;
  z-index: 2;
  bottom: 1%;
  left: 14%;
  width: 72%;
  height: 48%;
  border: 3px solid var(--ink);
  border-radius: 48% 48% 8% 8% / 30% 30% 8% 8%;
  background: var(--result-secondary);
  overflow: hidden;
}

.portrait__body::before {
  content: "";
  position: absolute;
  top: -5%;
  left: 42%;
  width: 16%;
  height: 100%;
  background: var(--result-primary);
  transform: skewX(-8deg);
}

.portrait.executive .portrait__body {
  background: #222733;
}

.portrait.executive .portrait__body::before {
  top: 0;
  left: 45%;
  width: 10%;
  background: var(--result-primary);
  clip-path: polygon(0 0, 100% 0, 75% 70%, 50% 100%, 25% 70%);
  transform: none;
}

.portrait__neck {
  position: absolute;
  z-index: 3;
  top: 43%;
  left: 42%;
  width: 17%;
  height: 17%;
  border: 3px solid var(--ink);
  background: #d79a70;
}

.portrait__head {
  position: absolute;
  z-index: 4;
  top: 16%;
  left: 31%;
  width: 39%;
  height: 39%;
  border: 3px solid var(--ink);
  border-radius: 44% 48% 42% 45% / 42% 44% 53% 54%;
  background: #dca077;
}

.portrait__head::before,
.portrait__head::after {
  content: "";
  position: absolute;
  top: 46%;
  width: 9%;
  height: 5%;
  border-radius: 50%;
  background: var(--ink);
}

.portrait__head::before { left: 24%; }
.portrait__head::after { right: 24%; }

.portrait__nose {
  position: absolute;
  z-index: 5;
  top: 41%;
  left: 48%;
  width: 9%;
  height: 8%;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: skew(-8deg);
}

.portrait__mouth {
  position: absolute;
  z-index: 5;
  top: 49%;
  left: 44%;
  width: 17%;
  height: 2%;
  border-bottom: 3px solid var(--ink);
  border-radius: 50%;
}

.portrait__hair {
  position: absolute;
  z-index: 5;
  top: 12%;
  left: 29%;
  width: 44%;
  height: 21%;
  border: 3px solid var(--ink);
  border-radius: 55% 60% 25% 20%;
  background: #20180f;
  transform: rotate(-2deg);
}

.portrait.close-crop .portrait__hair,
.portrait.crop-hair .portrait__hair,
.portrait.fade-hair .portrait__hair {
  top: 14%;
  left: 32%;
  width: 38%;
  height: 13%;
  border-radius: 50% 50% 20% 20%;
}

.portrait.fade-hair .portrait__hair { height: 17%; background: #121212; }

.portrait.swept-hair .portrait__hair,
.portrait.wave-hair .portrait__hair {
  top: 10%;
  height: 24%;
  clip-path: polygon(0 47%, 10% 15%, 36% 5%, 55% 0, 79% 13%, 100% 4%, 91% 79%, 72% 62%, 59% 80%, 37% 62%, 15% 82%);
}

.portrait.wave-hair .portrait__hair { background: #d4a94d; }

.portrait.long-hair .portrait__hair {
  top: 10%;
  left: 27%;
  width: 47%;
  height: 51%;
  border-radius: 55% 55% 37% 37%;
  background: #e6c676;
}

.portrait.long-hair .portrait__head { z-index: 6; }
.portrait.long-hair .portrait__nose,
.portrait.long-hair .portrait__mouth { z-index: 7; }

.portrait.short-curls .portrait__hair,
.portrait.curls .portrait__hair {
  top: 8%;
  left: 26%;
  width: 51%;
  height: 27%;
  border-radius: 48%;
  background:
    radial-gradient(circle at 12% 56%, #1b1714 0 12%, transparent 13%),
    radial-gradient(circle at 30% 22%, #1b1714 0 15%, transparent 16%),
    radial-gradient(circle at 52% 22%, #1b1714 0 16%, transparent 17%),
    radial-gradient(circle at 74% 26%, #1b1714 0 15%, transparent 16%),
    radial-gradient(circle at 88% 59%, #1b1714 0 14%, transparent 15%),
    #1b1714;
}

.portrait.curls .portrait__hair {
  top: 6%;
  left: 22%;
  width: 57%;
  height: 41%;
}

.portrait.bald .portrait__hair {
  top: 14%;
  left: 32%;
  width: 38%;
  height: 9%;
  border-width: 0 0 3px;
  background: transparent;
}

.portrait.silver-hair .portrait__hair { background: #bab7ad; }

.portrait__monogram {
  position: absolute;
  z-index: 8;
  right: 1%;
  bottom: 7%;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--display);
  font-size: 35px;
  letter-spacing: -.08em;
  box-shadow: 5px 5px 0 var(--result-accent);
  transform: rotate(7deg);
}

.portrait__number {
  position: absolute;
  z-index: 7;
  top: 7%;
  left: 0;
  padding: 5px 9px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-6deg);
}

.result-serial {
  position: relative;
  z-index: 3;
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
}

.result-copy {
  padding: clamp(34px, 5vw, 72px);
}

.result-role-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.result-copy h2 {
  max-width: 680px;
  margin: 30px 0 6px;
  font-family: var(--display);
  font-size: clamp(47px, 6vw, 91px);
  line-height: .86;
  text-transform: uppercase;
  letter-spacing: -.075em;
}

.result-tagline {
  width: fit-content;
  margin: 17px 0 28px;
  padding: 6px 10px;
  border: 2px solid var(--ink);
  background: var(--result-accent);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  transform: rotate(-1deg);
}

.result-bio {
  max-width: 680px;
  margin: 0;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.02em;
}

.result-copy blockquote {
  position: relative;
  max-width: 620px;
  margin: 28px 0 34px;
  padding: 15px 18px 15px 45px;
  border-left: 5px solid var(--result-primary);
  background: color-mix(in srgb, var(--result-primary) 12%, var(--paper));
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}

.result-copy blockquote::before {
  content: "“";
  position: absolute;
  top: 3px;
  left: 13px;
  font-family: Georgia, serif;
  font-size: 38px;
}

.aura-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px 24px;
}

.aura-stat > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.aura-stat__bar {
  display: block;
  height: 9px;
  border: 2px solid var(--ink);
  background: var(--paper-deep);
}

.aura-stat__bar i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--result-primary);
  transition: width 900ms cubic-bezier(.2,.8,.2,1) 400ms;
}

.result-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 31px;
}

.scouting-card,
.watch-job-card {
  min-height: 190px;
  padding: 28px 30px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.scouting-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scouting-card li {
  padding: 7px 10px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-size: 13px;
  font-weight: 700;
}

.watch-job-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--result-accent);
}

.watch-job-card span {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
}

.watch-job-card p {
  max-width: 540px;
  margin: 30px 0 0;
  font-family: var(--display);
  font-size: clamp(23px, 2.7vw, 40px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.045em;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
}

.confetti-layer {
  position: fixed;
  z-index: 20;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  top: -30px;
  width: 10px;
  height: 22px;
  border: 2px solid var(--ink);
  background: var(--confetti-color);
  animation: confetti-fall var(--fall-time) cubic-bezier(.18,.63,.4,1) var(--fall-delay) forwards;
}

@keyframes confetti-fall {
  to { transform: translate3d(var(--drift), 110vh, 0) rotate(var(--spin)); }
}

/* Squad modal */

.squad-dialog {
  width: min(1080px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 3px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--ink);
}

.squad-dialog::backdrop {
  background: rgba(17,19,24,.74);
  backdrop-filter: blur(6px);
}

.copy-dialog {
  width: min(680px, calc(100% - 32px));
  margin: auto;
  padding: clamp(30px, 5vw, 58px);
  border: 3px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--lime);
}

.copy-dialog::backdrop {
  background: rgba(17,19,24,.76);
  backdrop-filter: blur(6px);
}

.copy-dialog__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  background: var(--red);
  font-size: 28px;
  line-height: 1;
}

.copy-dialog h2 {
  max-width: 520px;
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 70px);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.06em;
}

.copy-dialog > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  font-weight: 600;
}

.copy-dialog__field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 28px 0 30px;
}

.copy-dialog__field input {
  min-width: 0;
  height: 54px;
  padding: 0 14px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
}

.copy-dialog__field button {
  min-height: 54px;
  margin-left: -2px;
  padding: 0 16px;
  border: 2px solid var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.squad-dialog__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(26px, 4vw, 52px);
  border-bottom: 2px solid var(--ink);
}

.squad-dialog h2 { font-size: clamp(48px, 7vw, 92px); }

.squad-dialog__top button {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  background: var(--red);
  font-size: 30px;
}

.squad-dialog__intro {
  max-width: 780px;
  margin: 0;
  padding: 24px clamp(26px, 4vw, 52px);
  border-bottom: 2px solid var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.squad-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
  padding: clamp(24px, 4vw, 46px);
}

.squad-card {
  position: relative;
  min-height: 220px;
  padding: 18px;
  border: 2px solid var(--ink);
  background: var(--card-color, var(--white));
  color: var(--ink);
  font: inherit;
  text-align: left;
  transition: z-index 0s, transform 160ms ease, box-shadow 160ms ease;
}

.squad-card:nth-child(3n+2) { margin-left: -2px; }
.squad-card:nth-child(3n+3) { margin-left: -2px; }
.squad-card:nth-child(n+4) { margin-top: -2px; }
.squad-card:hover { z-index: 3; transform: translate(-5px,-5px) rotate(-1deg); box-shadow: 8px 8px 0 var(--ink); }

.squad-card__top {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.squad-card__mono {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 30px 0 22px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  box-shadow: 4px 4px 0 var(--card-accent, var(--lime));
}

.squad-card h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 29px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.045em;
}

.squad-card p {
  margin: 0;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.squad-card__preview {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  transition: max-height 180ms ease, margin 180ms ease, opacity 180ms ease;
}

.squad-card[aria-expanded="true"] .squad-card__preview {
  max-height: 70px;
  margin-top: 14px;
  opacity: 1;
}

.squad-dialog__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 24px clamp(26px, 4vw, 52px) 32px;
  border-top: 2px solid var(--ink);
  background: var(--white);
}

.squad-dialog__bottom p { margin: 0; font-weight: 700; }

.toast {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  padding: 14px 18px;
  border: 2px solid var(--ink);
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  animation: toast-in 220ms ease both;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(16px); }
}

@media (max-width: 1250px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr);
  }

  .hero h1 { font-size: clamp(62px, 9vw, 104px); }
  .scanner { width: 78%; }
  .hero__facts { flex-wrap: wrap; }

  .result-card { grid-template-columns: minmax(300px, .75fr) 1.25fr; }
  .result-portrait-column { min-height: 570px; }
  .result-sticker { min-height: 430px; }
}

@media (max-width: 820px) {
  :root { --header-height: 76px; }

  .cursor-orb { display: none; }
  .site-header { grid-template-columns: 1fr auto; min-height: var(--header-height); padding: 10px 20px; }
  .edition-stamp { display: none; }
  .wordmark { font-size: 12px; }
  .wordmark span { min-width: 35px; padding: 9px 5px 8px; }
  .header-cta { font-size: 10px; }

  .hero__grid { display: flex; flex-direction: column; min-height: auto; }
  .hero__copy { min-height: calc(100svh - 110px); padding: 54px 24px 46px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .hero h1 { font-size: clamp(62px, 16.2vw, 110px); }
  .hero__lede { max-width: 570px; }
  .hero__visual { min-height: min(96vw, 730px); }
  .scanner { width: min(67%, 480px); }
  .hero__footer { padding: 12px 24px; }
  .hero__footer span:first-child,
  .scroll-line { display: none; }
  .hero__footer span:last-child { margin-left: auto; }

  .how__intro { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .how__intro > * { min-width: 0; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 230px; }
  .steps li + li { border-top: 2px solid var(--ink); border-left: 0; }
  .step-icon { margin: 30px 0 23px; }

  .squad-preview__heading { align-items: flex-start; flex-direction: column; }
  .name-wall { margin-top: 58px; }

  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { grid-column: 1 / -1; grid-row: 2; }

  .quiz-topbar { grid-template-columns: auto 1fr auto; gap: 16px; min-height: 76px; padding: 10px 16px; }
  .quiz-mark span { width: 29px; height: 29px; font-size: 10px; }
  .quiz-progress-meta span:first-child { display: none; }
  .quiz-progress-meta { justify-content: flex-end; margin-bottom: 6px; }
  .quiz-close { width: 37px; height: 37px; }
  .quiz-stage { width: min(100% - 38px, 700px); padding-top: 55px; }
  .question-card h2 { font-size: clamp(38px, 8.5vw, 66px); }
  .answers { grid-template-columns: 1fr; }
  .answer-button { min-height: 87px; }
  .quiz-sideline { display: none; }

  .result-topbar { min-height: 76px; padding: 10px 16px; }
  .result-topbar > p { font-size: 8px; }
  .result-topbar small { display: none; }
  .result-retake-top { font-size: 9px; }
  .result-wrap { width: min(100% - 32px, 720px); padding-top: 52px; }
  .result-card { grid-template-columns: 1fr; }
  .result-portrait-column { min-height: 560px; border-right: 0; border-bottom: 3px solid var(--ink); }
  .result-sticker { min-height: 450px; }
  .portrait { width: min(75%, 400px); }
  .result-lower { grid-template-columns: 1fr; }

  .squad-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .squad-card:nth-child(3n+2),
  .squad-card:nth-child(3n+3) { margin-left: 0; }
  .squad-card:nth-child(2n) { margin-left: -2px; }
  .squad-card:nth-child(n+3) { margin-top: -2px; }
}

@media (max-width: 560px) {
  .site-header { position: relative; }
  .header-cta span { display: none; }
  .ticker__track span,
  .ticker__track b { padding-top: 9px; padding-bottom: 8px; }

  .hero__copy { min-height: calc(100svh - 104px); padding-top: 42px; }
  .eyebrow { margin-bottom: 22px; font-size: 9px; }
  .hero h1 { font-size: clamp(58px, 17.4vw, 93px); line-height: .8; }
  .hero-title-accent { margin-top: 12px; padding-right: 12px; box-shadow: 6px 6px 0 var(--ink); }
  .hero__lede { margin-top: 30px; font-size: 16px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 16px; margin-top: 28px; }
  .button--big { min-height: 58px; }
  .text-button { align-self: flex-start; }
  .hero__facts { width: 100%; margin-top: 34px; }
  .hero__facts li { flex: 1; justify-content: center; padding-inline: 7px; }
  .hero__facts strong { font-size: 17px; }
  .hero__facts span { font-size: 7px; }

  .hero__visual { min-height: 116vw; }
  .scanner { width: 74%; box-shadow: 8px 8px 0 var(--ink); }
  .orbit-chip { font-size: 6px; }
  .orbit-chip b { width: 23px; height: 23px; font-size: 8px; }
  .orbit-chip--one { left: -12%; }
  .orbit-chip--two { right: -14%; }
  .orbit-chip--three { left: -10%; }
  .orbit-chip--four { right: -11%; }
  .scanner__label { font-size: 6px; }
  .hero-sticker--one { width: 76px; font-size: 8px; }
  .hero-sticker--two { width: 64px; font-size: 7px; }

  .how { padding: 74px 20px; }
  .how h2,
  .squad-preview h2 { font-size: clamp(47px, 14vw, 73px); }
  .how__intro > p { font-size: 16px; }
  .steps li { padding: 23px 22px 29px; }

  .squad-preview { padding: 72px 20px 0; }
  .squad-preview__heading .button { width: 100%; }
  .name-wall { gap: 7px; margin: 50px -3px 52px; }
  .name-wall span { font-size: clamp(23px, 8.2vw, 38px); }
  .squad-preview__foot { align-items: stretch; flex-direction: column; padding: 25px 0 30px; }
  .squad-preview__foot .button { width: 100%; }

  .site-footer { grid-template-columns: 1fr; gap: 25px; padding: 38px 20px; }
  .site-footer p { grid-column: auto; grid-row: auto; }
  .footer-top { justify-self: start; }

  .quiz-topbar { grid-template-columns: auto 1fr auto; }
  .quiz-mark span { width: 26px; height: 28px; border-width: 1.5px; }
  .quiz-progress { height: 8px; }
  .quiz-close { width: 34px; height: 34px; font-size: 24px; }
  .quiz-stage { width: calc(100% - 30px); padding: 38px 0 32px; }
  .question-meta { margin-bottom: 17px; }
  .question-kicker { font-size: 8px; }
  .instinct-label { display: none; }
  .question-card h2 { margin-bottom: 31px; font-size: clamp(34px, 10.4vw, 55px); }
  .answers { gap: 10px; }
  .answer-button { grid-template-columns: 32px 1fr auto; min-height: 79px; padding: 13px 14px; gap: 11px; }
  .answer-key { width: 29px; height: 29px; }
  .answer-copy strong { font-size: 16px; }
  .answer-copy small { font-size: 10px; line-height: 1.25; }
  .answer-arrow { font-size: 19px; }
  .quiz-hint { display: none; }

  .result-topbar { grid-template-columns: auto 1fr auto; gap: 9px; }
  .quiz-mark--result span { width: 24px; height: 27px; }
  .result-topbar > p { font-size: 6px; }
  .result-retake-top { font-size: 8px; }
  .result-wrap { width: calc(100% - 24px); padding: 42px 0 68px; }
  .result-intro h1 { font-size: clamp(42px, 13vw, 68px); }
  .result-card { box-shadow: 8px 8px 0 var(--ink); }
  .result-portrait-column { min-height: 460px; padding: 24px; }
  .result-sticker { min-height: 365px; }
  .portrait { width: min(82%, 330px); }
  .portrait__monogram { width: 70px; height: 70px; font-size: 27px; }
  .result-copy { padding: 29px 23px 33px; }
  .result-copy h2 { font-size: clamp(45px, 14vw, 69px); margin-top: 26px; }
  .result-bio { font-size: 15px; }
  .aura-stats { grid-template-columns: 1fr; gap: 13px; }
  .scouting-card,
  .watch-job-card { padding: 24px 22px; }
  .result-actions { align-items: stretch; flex-direction: column; }
  .result-actions .button { width: 100%; }
  .result-actions .text-button { align-self: center; }

  .squad-dialog { width: calc(100% - 18px); max-height: calc(100svh - 18px); box-shadow: 7px 7px 0 var(--ink); }
  .squad-dialog__top { padding: 25px 19px; }
  .squad-dialog h2 { font-size: 48px; }
  .squad-dialog__top button { width: 42px; height: 42px; }
  .squad-dialog__intro { padding: 19px; font-size: 13px; }
  .squad-grid { grid-template-columns: 1fr; padding: 18px; }
  .squad-card { min-height: 170px; }
  .squad-card:nth-child(2n),
  .squad-card:nth-child(n+3) { margin-left: 0; }
  .squad-card:nth-child(n+2) { margin-top: -2px; }
  .squad-card__mono { width: 54px; height: 54px; margin: 24px 0 18px; }
  .squad-dialog__bottom { align-items: stretch; flex-direction: column; padding: 20px 19px 24px; }
  .squad-dialog__bottom .button { width: 100%; }
  .toast { right: 14px; bottom: 14px; left: 14px; text-align: center; }
  .copy-dialog { width: calc(100% - 18px); padding: 34px 19px 25px; box-shadow: 7px 7px 0 var(--lime); }
  .copy-dialog__field { grid-template-columns: 1fr; }
  .copy-dialog__field button { margin: -2px 0 0; }
  .copy-dialog > .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .cursor-orb { display: none; }
}

@media (prefers-contrast: more) {
  :root { --line: rgba(17,19,24,.75); }
  .paper-noise { display: none; }
}

/* Live party game */

.live-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.live-link i,
.live-connection i,
.controller-topbar > span i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #14b86a;
  box-shadow: 0 0 0 5px rgba(20,184,106,.15);
  animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {
  50% { opacity: .45; transform: scale(.78); }
}

.live-promo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  min-height: 760px;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  background:
    linear-gradient(rgba(17,19,24,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,19,24,.11) 1px, transparent 1px),
    var(--lime);
  background-size: 34px 34px;
}

.live-promo::before {
  content: "LIVE";
  position: absolute;
  right: -2vw;
  bottom: -8vw;
  color: rgba(17,19,24,.07);
  font-family: var(--display);
  font-size: clamp(230px, 34vw, 560px);
  line-height: .7;
  letter-spacing: -.12em;
  pointer-events: none;
}

.live-promo__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 142px) clamp(28px, 7vw, 108px);
  border-right: 3px solid var(--ink);
}

.live-promo__copy h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6.3vw, 104px);
  line-height: .84;
  text-transform: uppercase;
  letter-spacing: -.075em;
}

.live-promo__copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 38px 0 0;
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 600;
  line-height: 1.45;
}

.live-promo__actions {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 45px;
}

.live-promo__actions .button { text-decoration: none; }

.resume-controller {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  flex: 1 0 100%;
  gap: 7px 24px;
  max-width: 670px;
  padding: 16px 18px;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--blue);
  text-decoration: none;
  transform: rotate(-.5deg);
  transition: transform .18s ease, box-shadow .18s ease;
}

.resume-controller[hidden] { display: none; }
.resume-controller:hover { box-shadow: 10px 10px 0 var(--blue); transform: translate(-2px, -2px) rotate(-.5deg); }
.resume-controller > span { grid-column: 1 / -1; font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: .09em; }
.resume-controller > span i { display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 50%; background: #14b86a; box-shadow: 0 0 0 4px rgba(20,184,106,.16); }
.resume-controller strong { font-family: var(--display); font-size: clamp(16px, 1.5vw, 22px); text-transform: uppercase; }
.resume-controller strong b { color: var(--blue); }
.resume-controller em { padding: 9px 11px; color: var(--paper); background: var(--ink); font-family: var(--mono); font-size: 8px; font-style: normal; font-weight: 600; white-space: nowrap; }

.join-code-form label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.join-code-form > div { display: flex; }

.join-code-form input {
  width: 144px;
  min-height: 52px;
  padding: 0 16px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  font-family: var(--display);
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.join-code-form button {
  min-height: 52px;
  margin-left: -2px;
  padding: 0 17px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
}

.live-promo__diagram {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 680px;
  padding: 70px 40px;
  background: var(--blue);
}

.promo-screen {
  position: relative;
  width: min(90%, 620px);
  aspect-ratio: 16 / 10;
  border: 11px solid var(--ink);
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255,255,255,.8) 49.7% 50.3%, transparent 50.3%),
    repeating-linear-gradient(90deg, #17835b 0 12.5%, #12734f 12.5% 25%);
  box-shadow: 18px 22px 0 rgba(17,19,24,.38);
  transform: rotate(2deg);
}

.promo-screen::before {
  content: "";
  position: absolute;
  inset: 12% 5%;
  border: 3px solid rgba(255,255,255,.8);
}

.promo-screen::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 38%;
  width: 24%;
  height: 54px;
  border: 8px solid var(--ink);
  border-top: 0;
  background: #252b35;
}

.promo-score {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 50%;
  padding: 7px 15px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--display);
  font-size: clamp(18px, 2.3vw, 34px);
  transform: translateX(-50%);
}

.promo-player {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 5px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 15px;
  box-shadow: 5px 6px 0 rgba(17,19,24,.42);
}

.promo-player--one { top: 42%; left: 24%; background: #75aadb; }
.promo-player--two { right: 25%; bottom: 25%; background: #ef3340; }
.promo-player--three { top: 27%; right: 18%; background: var(--lime); }

.promo-ball {
  position: absolute;
  z-index: 3;
  top: 56%;
  left: 49%;
  width: 28px;
  height: 28px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 7px 6px 0 var(--ink), 4px 4px 0 rgba(17,19,24,.3);
}

.promo-phone {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 150px;
  height: 280px;
  padding: 22px 14px;
  border: 8px solid var(--ink);
  border-radius: 27px;
  background: var(--paper);
  box-shadow: 12px 14px 0 rgba(17,19,24,.4);
}

.promo-phone--one { bottom: 45px; left: 5%; transform: rotate(-9deg); }
.promo-phone--two { right: 4%; bottom: 28px; transform: rotate(10deg); }

.promo-phone span {
  width: 50px;
  height: 50px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: radial-gradient(circle, var(--ink) 0 17%, transparent 18%), rgba(25,73,255,.12);
}

.promo-phone b {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
  font-family: var(--display);
  font-size: 8px;
}

.live-promo__stamp {
  position: absolute;
  z-index: 6;
  top: 25px;
  right: calc(50% - 80px);
  display: flex;
  align-items: stretch;
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-4deg);
}

.live-promo__stamp span {
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--paper);
  background: var(--red);
  font-family: var(--display);
  font-size: 17px;
}

.live-promo__stamp b {
  padding: 9px 13px;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.25;
}

body.is-live-host,
body.is-controller {
  min-height: 100svh;
  overflow: hidden;
}

body.is-live-host .paper-noise,
body.is-controller .paper-noise { z-index: 500; opacity: .08; }
body.is-live-host .cursor-orb,
body.is-controller .cursor-orb,
body.is-live-host > .site-header,
body.is-controller > .site-header,
body.is-live-host > .site-footer,
body.is-controller > .site-footer { display: none !important; }

.live-host-view {
  --pitch: #177d55;
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-width: 720px;
  min-height: 520px;
  background: #0b201a;
  color: var(--paper);
}

.live-topbar {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 10px clamp(20px, 3vw, 52px);
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
}

.live-mark {
  display: flex;
  width: fit-content;
  color: var(--ink);
  font-family: var(--display);
  font-size: 12px;
  text-decoration: none;
}

.live-mark span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-right: -2px;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.live-mark span:nth-child(2) { color: var(--paper); background: var(--ink); }
.live-mark span:nth-child(3) { background: var(--lime); }

.live-room-pill {
  display: flex;
  align-items: center;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
}

.live-room-pill span,
.live-room-pill button {
  padding: 10px 12px;
  border: 0;
  background: transparent;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
}

.live-room-pill strong {
  padding: 5px 14px 4px;
  border-inline: 2px solid var(--ink);
  color: var(--blue);
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: .13em;
}

.live-room-pill button:hover { color: var(--paper); background: var(--ink); }

.live-connection {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 11px;
  margin: 0;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .05em;
}

.live-connection.is-offline i,
.controller-topbar > span.is-offline i { background: var(--red); box-shadow: 0 0 0 5px rgba(255,77,49,.14); }

.arena-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(223,255,0,.15), transparent 34%),
    #071813;
}

.game-canvas {
  display: block;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #126a49;
  filter: saturate(1.06) contrast(1.02);
}

.arena-overlay {
  position: absolute;
  z-index: 10;
  inset: 0;
}

.host-lobby {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(250px, .72fr) minmax(300px, .88fr);
  align-items: center;
  gap: clamp(24px, 4vw, 68px);
  padding: clamp(34px, 5vw, 82px);
  background:
    linear-gradient(90deg, rgba(7,24,19,.94), rgba(7,24,19,.8)),
    repeating-linear-gradient(90deg, #177d55 0 10%, #126a49 10% 20%);
}

.host-lobby::before {
  content: "";
  position: absolute;
  inset: 4%;
  border: 2px solid rgba(244,239,223,.16);
  pointer-events: none;
}

.host-lobby__copy,
.room-ticket,
.lobby-squad { position: relative; z-index: 2; }

.live-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.live-kicker span { width: 25px; height: 2px; background: var(--lime); }

.host-lobby__copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(53px, 6.1vw, 104px);
  line-height: .78;
  letter-spacing: -.075em;
}

.host-lobby__copy h1 em { color: var(--lime); font-style: normal; }
.host-lobby__copy > p:not(.live-kicker) { max-width: 560px; margin: 30px 0; font-size: clamp(14px, 1.2vw, 19px); font-weight: 600; }
.host-lobby__copy ol { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; font-family: var(--mono); font-size: 9px; }
.host-lobby__copy li { display: flex; align-items: center; gap: 10px; }
.host-lobby__copy li b { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid var(--lime); color: var(--lime); }

.room-ticket {
  justify-self: center;
  width: min(100%, 330px);
  padding: 20px 20px 24px;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 12px 14px 0 var(--lime);
  text-align: center;
  transform: rotate(-2deg);
}

.room-ticket::before,
.room-ticket::after {
  content: "";
  position: absolute;
  top: 55%;
  width: 22px;
  height: 22px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #0a1c17;
}

.room-ticket::before { left: -14px; }
.room-ticket::after { right: -14px; }
.room-ticket p { margin: 0 0 14px; font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: .08em; }
.room-ticket strong { display: block; margin: 17px 0 8px; color: var(--blue); font-family: var(--display); font-size: clamp(38px, 4vw, 64px); line-height: 1; letter-spacing: .12em; }
.room-ticket small { display: block; overflow: hidden; font-family: var(--mono); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }

.room-qr-wrap {
  display: grid;
  place-items: center;
  width: min(100%, 248px);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 2px solid var(--ink);
  background: var(--white);
}

.room-qr-wrap canvas { width: 92%; height: 92%; }

.lobby-squad {
  padding: 24px;
  border: 2px solid rgba(244,239,223,.45);
  background: rgba(4,15,12,.56);
  backdrop-filter: blur(14px);
}

.lobby-squad__head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(244,239,223,.25);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .07em;
}

.lobby-roster { display: grid; gap: 7px; min-height: 190px; padding: 14px 0; }
.lobby-empty { align-self: center; margin: 0; color: rgba(244,239,223,.55); font-family: var(--mono); font-size: 9px; text-align: center; }

.lobby-player {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 47px;
  padding: 5px 9px;
  border: 1px solid rgba(244,239,223,.25);
  background: rgba(244,239,223,.07);
}

.lobby-player__mono {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--player-color, var(--lime));
  font-family: var(--display);
  font-size: 9px;
}

.lobby-player strong { display: block; overflow: hidden; font-family: var(--display); font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.lobby-player small { font-family: var(--mono); font-size: 7px; opacity: .64; }
.lobby-player__team { padding: 4px 6px; background: var(--team-color); font-family: var(--mono); font-size: 7px; font-weight: 600; }
.lobby-start { width: 100%; }
.lobby-start:disabled { opacity: .32; cursor: not-allowed; }
.lobby-note { margin: 13px 0 0; color: rgba(244,239,223,.58); font-family: var(--mono); font-size: 7px; text-align: center; }

.arena-hud {
  position: absolute;
  z-index: 8;
  top: 22px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-width: 510px;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 8px 9px 0 rgba(17,19,24,.38);
  transform: translateX(-50%);
}

.hud-team,
.hud-clock { display: flex; align-items: center; justify-content: center; }
.hud-team { gap: 14px; padding: 8px 18px; font-family: var(--display); }
.hud-team--red { color: var(--white); background: var(--red); }
.hud-team--blue { color: var(--white); background: var(--blue); }
.hud-team b { font-size: 29px; line-height: 1; }
.hud-team span { font-size: 9px; }
.hud-clock { flex-direction: column; min-width: 160px; padding: 6px 18px; }
.hud-clock span { font-family: var(--mono); font-size: 6px; font-weight: 600; letter-spacing: .08em; }
.hud-clock b { font-family: var(--display); font-size: 24px; line-height: 1.05; }

.match-countdown,
.goal-flash {
  position: absolute;
  z-index: 16;
  inset: 0;
  display: grid;
  place-content: center;
  color: var(--paper);
  background: rgba(7,24,19,.48);
  text-align: center;
  backdrop-filter: blur(3px);
}

.match-countdown span,
.goal-flash b { font-family: var(--mono); font-size: 13px; letter-spacing: .16em; }
.match-countdown b { color: var(--lime); font-family: var(--display); font-size: clamp(180px, 28vw, 420px); line-height: .8; text-shadow: 14px 17px 0 var(--ink); }

.goal-flash { background: rgba(223,255,0,.88); color: var(--ink); transform: skewY(-2deg); }
.goal-flash span { font-family: var(--display); font-size: clamp(90px, 17vw, 280px); line-height: .75; letter-spacing: -.09em; }
.goal-flash b { margin-top: 25px; }

.match-finish {
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--paper);
  background: rgba(7,24,19,.92);
  text-align: center;
}

.match-finish h2 { margin: 0; color: var(--lime); font-family: var(--display); font-size: clamp(90px, 14vw, 220px); line-height: .78; letter-spacing: -.08em; }
.match-finish > p:not(.live-kicker) { margin: 25px 0 30px; font-family: var(--display); font-size: clamp(42px, 6vw, 90px); }
.match-finish .text-button { margin-top: 24px; color: var(--paper); }

.arena-announcer {
  position: absolute;
  z-index: 7;
  bottom: 19px;
  left: 50%;
  margin: 0;
  padding: 7px 15px;
  color: var(--paper);
  background: rgba(17,19,24,.8);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .05em;
  transform: translateX(-50%);
}

.live-host-footer {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 38px;
  padding: 7px clamp(20px, 3vw, 52px);
  border-top: 2px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .06em;
}

.live-host-footer p { margin: 0; }
.live-host-footer span:last-child { justify-self: end; }

/* Phone controller */

.controller-view {
  --controller-team: var(--red);
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 100svh;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 4%, rgba(223,255,0,.8), transparent 17rem),
    var(--paper);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  overscroll-behavior: none;
}

.controller-view[data-team="blue"] { --controller-team: var(--blue); }

.controller-topbar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 54px;
  padding: max(8px, env(safe-area-inset-top)) 15px 8px;
  border-bottom: 2px solid var(--ink);
  background: rgba(244,239,223,.94);
}

.controller-mark {
  width: fit-content;
  padding: 6px 8px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 10px;
  text-decoration: none;
  transform: rotate(-2deg);
}

.controller-topbar > strong { font-family: var(--display); font-size: 11px; letter-spacing: -.02em; }
.controller-topbar > span { display: flex; align-items: center; justify-self: end; gap: 8px; font-family: var(--mono); font-size: 7px; font-weight: 600; }
.controller-topbar > span i { width: 7px; height: 7px; box-shadow: 0 0 0 3px rgba(20,184,106,.15); }

.controller-join {
  min-height: 0;
  overflow-y: auto;
  padding: 25px 18px max(36px, env(safe-area-inset-bottom));
  touch-action: pan-y;
}

.controller-join__ticket { margin: 0 auto 26px; text-align: center; }
.controller-join__ticket p { margin: 0 0 2px; font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: .12em; }
.controller-join__ticket strong { display: block; color: var(--blue); font-family: var(--display); font-size: clamp(46px, 16vw, 76px); line-height: 1; letter-spacing: .13em; }
.controller-join__ticket span { display: block; margin-top: 7px; font-family: var(--mono); font-size: 8px; }

.controller-join form {
  width: min(100%, 600px);
  margin: 0 auto;
  padding: 22px;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 9px 0 var(--ink);
}

.controller-join form > label,
.character-pick-heading label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .08em;
}

.controller-join input[type="text"],
.controller-join input:not([type]) {
  width: 100%;
}

#controller-name {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
}

.character-pick-heading { display: flex; align-items: end; justify-content: space-between; margin: 24px 0 9px; }
.character-pick-heading label { margin: 0; }
.character-pick-heading span { color: var(--blue); font-family: var(--mono); font-size: 7px; font-weight: 600; }

.controller-characters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.controller-character {
  position: relative;
  min-height: 68px;
  padding: 8px 4px;
  border: 2px solid var(--ink);
  background: var(--character-color, var(--paper));
  text-align: center;
}

.controller-character.is-selected { color: var(--paper); background: var(--ink); box-shadow: 4px 4px 0 var(--character-color); transform: translate(-2px, -2px); }
.controller-character b { display: block; font-family: var(--display); font-size: 17px; }
.controller-character span { display: block; margin-top: 4px; overflow: hidden; font-family: var(--mono); font-size: 6px; text-overflow: ellipsis; white-space: nowrap; }

.controller-join-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 62px;
  margin-top: 19px;
  padding: 0 18px;
  border: 3px solid var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 13px;
  box-shadow: 5px 5px 0 var(--ink);
}

.controller-join-button:disabled { opacity: .45; }
.controller-error { margin: 16px 0 0; padding: 10px; color: var(--paper); background: var(--red); font-family: var(--mono); font-size: 8px; text-align: center; }

.controller-pad {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  min-height: 0;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  background:
    linear-gradient(rgba(17,19,24,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,19,24,.08) 1px, transparent 1px),
    var(--paper);
  background-size: 24px 24px;
}

.controller-scorebar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border-bottom: 2px solid var(--ink);
  background: var(--white);
}

.controller-scorebar > div { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 44px; color: var(--paper); font-family: var(--display); }
.controller-scorebar > div:first-child { background: var(--red); }
.controller-scorebar > div:last-child { background: var(--blue); }
.controller-scorebar > div b { font-size: 23px; }
.controller-scorebar > div span { font-size: 8px; }
.controller-scorebar p { display: flex; flex-direction: column; justify-content: center; min-width: 94px; margin: 0; text-align: center; }
.controller-scorebar p span { font-family: var(--mono); font-size: 6px; font-weight: 600; }
.controller-scorebar p b { font-family: var(--display); font-size: 17px; }

.controller-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 45px;
  padding: 6px 13px;
  border-bottom: 2px solid var(--ink);
  background: var(--white);
}

.controller-team { padding: 5px 7px; color: var(--paper); background: var(--controller-team); font-family: var(--mono); font-size: 6px; font-weight: 600; }
.controller-identity strong { font-family: var(--display); font-size: 13px; }
.controller-identity > span:last-child { margin-left: auto; color: var(--blue); font-family: var(--mono); font-size: 6px; font-weight: 600; }

.controller-field {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(200px, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 0;
  padding: 13px 20px;
}

.joystick-zone {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(44vw, 280px);
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 25%, rgba(25,73,255,.08) 25.5% 48%, transparent 48.5%),
    var(--white);
  box-shadow: 7px 8px 0 var(--ink);
  touch-action: none;
}

.joystick-zone::before,
.joystick-zone::after { content: ""; position: absolute; background: rgba(17,19,24,.17); }
.joystick-zone::before { width: 1px; height: 80%; }
.joystick-zone::after { width: 80%; height: 1px; }

.joystick-knob {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 43%;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 5px 6px 0 var(--ink);
  will-change: transform;
}

.joystick-knob i { width: 26%; height: 26%; border: 2px solid var(--paper); border-radius: 50%; }
.joystick-zone small { position: absolute; bottom: -19px; font-family: var(--mono); font-size: 7px; font-weight: 600; }
.joystick-arrows span { position: absolute; z-index: 2; font-family: var(--mono); font-size: 9px; opacity: .4; }
.joystick-arrows span:nth-child(1) { top: 8px; left: 50%; }
.joystick-arrows span:nth-child(2) { top: 50%; left: 10px; }
.joystick-arrows span:nth-child(3) { top: 50%; right: 10px; }
.joystick-arrows span:nth-child(4) { bottom: 8px; left: 50%; }

.action-zone {
  position: relative;
  justify-self: center;
  width: min(44vw, 300px);
  aspect-ratio: 1.08;
}

.action-button {
  position: absolute;
  display: grid;
  place-content: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  box-shadow: 6px 7px 0 var(--ink);
  text-align: center;
  touch-action: none;
  transition: transform 80ms ease, box-shadow 80ms ease;
  overflow: hidden;
}

.action-button.is-pressed { box-shadow: 1px 2px 0 var(--ink); transform: translate(5px, 5px) scale(.97); }
.action-button span { position: relative; z-index: 2; font-family: var(--display); }
.action-button small { position: relative; z-index: 2; margin-top: 2px; font-family: var(--mono); font-size: 6px; font-weight: 600; }
.action-button--shoot { right: 0; bottom: 7%; width: 58%; aspect-ratio: 1; background: var(--red); }
.action-button--shoot span { font-size: clamp(18px, 5vw, 34px); }
.action-button--dash { top: 4%; left: 2%; width: 43%; aspect-ratio: 1; background: var(--blue); color: var(--paper); }
.action-button--dash span { font-size: clamp(13px, 3.8vw, 24px); }
.action-button--aura { top: 0; right: 1%; width: 36%; aspect-ratio: 1; background: var(--lime); }
.action-button--aura span { font-size: clamp(11px, 3.2vw, 20px); }
.action-button--aura i { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; height: 0; background: rgba(17,19,24,.24); transition: height linear; }
.action-button--aura.is-cooling i { height: 100%; transition-duration: 9s; }

.controller-message {
  align-self: end;
  justify-self: center;
  min-width: min(88%, 500px);
  padding: 8px 12px;
  border: 2px solid var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 10px;
  text-align: center;
  box-shadow: 4px 4px 0 var(--ink);
}

.controller-message.is-live { color: var(--paper); background: #14a866; }
.controller-message.is-goal { background: var(--red); animation: controller-bump 400ms ease 2 alternate; }
@keyframes controller-bump { to { transform: scale(1.05) rotate(-1deg); } }
.controller-tip { margin: 9px 12px 0; font-family: var(--mono); font-size: 6px; text-align: center; opacity: .62; }

@media (max-width: 1050px) {
  .live-promo { grid-template-columns: 1fr; }
  .live-promo__copy { border-right: 0; border-bottom: 3px solid var(--ink); }
  .live-promo__diagram { min-height: 620px; }
  .live-promo__stamp { right: 28px; }
  .host-lobby { grid-template-columns: 1fr .74fr; }
  .host-lobby__copy { display: none; }
}

@media (max-width: 700px) {
  .live-link { justify-content: center; }
  .live-promo { min-height: auto; }
  .live-promo__copy { padding: 72px 20px 64px; }
  .live-promo__copy h2 { font-size: clamp(46px, 13vw, 72px); }
  .live-promo__copy > p:not(.eyebrow) { margin-top: 28px; font-size: 15px; }
  .live-promo__actions { align-items: stretch; flex-direction: column; margin-top: 32px; }
  .join-code-form > div { width: 100%; }
  .join-code-form input { flex: 1; width: 0; }
  .live-promo__diagram { min-height: 470px; padding: 45px 16px 90px; }
  .promo-screen { width: 96%; border-width: 8px; }
  .promo-phone { width: 105px; height: 192px; border-width: 6px; border-radius: 20px; }
  .promo-phone span,
  .promo-phone b { width: 36px; height: 36px; font-size: 5px; }
  .promo-phone--one { left: 2%; bottom: 24px; }
  .promo-phone--two { right: 2%; bottom: 12px; }
  .promo-player { width: 38px; height: 38px; border-width: 3px; font-size: 9px; }
  .live-promo__stamp { top: 20px; right: 15px; transform: rotate(3deg) scale(.8); transform-origin: top right; }
  .controller-characters { grid-template-columns: repeat(3, 1fr); }
}

@media (orientation: portrait) and (max-width: 700px) {
  .controller-field { grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px 12px; }
  .joystick-zone { width: min(43vw, 240px); }
  .action-zone { width: min(44vw, 245px); }
  .controller-tip { padding-bottom: 2px; }
}

@media (orientation: landscape) and (max-height: 620px) {
  .controller-topbar { min-height: 42px; padding-top: max(5px, env(safe-area-inset-top)); padding-bottom: 5px; }
  .controller-pad { grid-template-rows: auto minmax(0, 1fr) auto; }
  .controller-scorebar { position: absolute; z-index: 3; top: 49px; left: 50%; width: 270px; border: 2px solid var(--ink); transform: translateX(-50%); }
  .controller-identity { display: none; }
  .controller-field { grid-row: 2; grid-template-columns: 1fr 1fr; padding: 8px 5vw; }
  .joystick-zone { width: min(36vh, 250px); }
  .action-zone { width: min(41vh, 270px); }
  .controller-message { grid-row: 3; margin-bottom: 4px; }
  .controller-tip { display: none; }
  .controller-scorebar > div { min-height: 36px; }
}

/* --------------------------------------------------------------------------
   PLAY THIRSTY HUB
   -------------------------------------------------------------------------- */

body.play-hub-page {
  --hub-yellow: #ffd84a;
  --hub-green: #00a86b;
  min-height: 100svh;
  background:
    radial-gradient(circle at 6% 2%, rgba(255, 255, 255, .95), transparent 27rem),
    linear-gradient(135deg, rgba(25, 73, 255, .045) 25%, transparent 25%) 0 0 / 32px 32px,
    var(--paper);
}

.hub-grain {
  position: fixed;
  z-index: 80;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}

.hub-nav {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 13px clamp(20px, 4vw, 64px);
  border-bottom: 3px solid var(--ink);
  background: rgba(244, 239, 223, .93);
  backdrop-filter: blur(16px);
}

.hub-brand {
  display: flex;
  align-items: center;
  width: fit-content;
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -.055em;
  transform: rotate(-1deg);
}

.hub-brand span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 0 13px;
  border: 3px solid var(--ink);
}

.hub-brand__play {
  color: var(--paper);
  background: var(--ink);
}

.hub-brand__thirsty {
  margin-left: -3px;
  color: var(--paper);
  background: var(--blue);
}

.hub-nav__signal {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
}

.hub-nav__signal i,
.featured-game__status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hub-green);
  box-shadow: 0 0 0 5px rgba(0, 168, 107, .12);
  animation: hub-live-pulse 1.8s ease-in-out infinite;
}

@keyframes hub-live-pulse {
  50% { box-shadow: 0 0 0 9px rgba(0, 168, 107, 0); }
}

.hub-nav__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 24px;
}

.hub-share-button,
.hub-nav__host,
.hub-footer button {
  border: 0;
  border-bottom: 2px solid currentColor;
  color: var(--ink);
  background: transparent;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hub-nav__host {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 17px;
  border: 3px solid var(--ink);
  background: var(--lime);
  font-family: var(--display);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.hub-nav__host:hover,
.hub-action:hover {
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(3px, 3px);
}

.hub-ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .04em;
}

.hub-ticker > div {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.hub-ticker span,
.hub-ticker b {
  padding: 12px 16px 11px;
}

.hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, .94fr);
  min-height: calc(100svh - 128px);
  border-bottom: 3px solid var(--ink);
}

.hub-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 7vw, 112px) clamp(24px, 6vw, 92px);
  border-right: 3px solid var(--ink);
}

.hub-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.hub-kicker > span {
  padding: 5px 8px;
  color: var(--paper);
  background: var(--ink);
}

.hub-hero h1 {
  margin: 30px 0 0;
  font-family: var(--display);
  font-size: clamp(58px, 7.5vw, 133px);
  font-style: normal;
  font-weight: 900;
  line-height: .81;
  letter-spacing: -.075em;
}

.hub-hero h1 span,
.hub-hero h1 em {
  display: block;
}

.hub-hero h1 em {
  width: fit-content;
  margin-top: 16px;
  padding: .12em .16em .16em;
  color: var(--paper);
  background: var(--blue);
  font-family: var(--display);
  font-size: .53em;
  font-style: normal;
  line-height: .95;
  letter-spacing: -.04em;
  transform: rotate(-1deg);
  box-shadow: 8px 8px 0 var(--ink);
}

.hub-hero__lede {
  max-width: 660px;
  margin: 42px 0 0;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.55;
}

.hub-hero__actions,
.featured-game__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}

.hub-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 59px;
  padding: 0 20px;
  border: 3px solid var(--ink);
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.hub-action--primary { background: var(--lime); }
.hub-action--secondary { background: var(--white); }

.hub-join {
  max-width: 620px;
  margin-top: 40px;
  padding-top: 23px;
  border-top: 2px solid var(--ink);
}

.hub-join label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.hub-join > div {
  display: flex;
}

.hub-join input {
  min-width: 0;
  flex: 1;
  height: 56px;
  padding: 0 16px;
  border: 3px solid var(--ink);
  border-right: 0;
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--mono);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  outline: none;
}

.hub-join input:focus {
  box-shadow: inset 0 0 0 3px var(--blue);
}

.hub-join input::placeholder {
  color: rgba(17, 19, 24, .42);
  font-size: 12px;
  letter-spacing: .06em;
}

.hub-join button {
  min-width: 145px;
  padding: 0 17px;
  border: 3px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  font-family: var(--display);
  font-size: 11px;
  text-transform: uppercase;
}

.hub-resume-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 18px;
}

.hub-resume {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 92px;
  padding: 13px 14px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
}

.hub-resume--host { background: var(--hub-yellow); }
.hub-resume--controller { background: #b9ece0; }
.hub-resume > span { font-family: var(--mono); font-size: 7px; font-weight: 600; letter-spacing: .08em; }
.hub-resume strong { align-self: center; font-family: var(--display); font-size: 11px; }
.hub-resume em { font-family: var(--mono); font-size: 7px; font-style: normal; font-weight: 600; }

.hub-hero__machine {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(17, 19, 24, .095) 2px, transparent 2px),
    linear-gradient(90deg, rgba(17, 19, 24, .095) 2px, transparent 2px),
    var(--hub-yellow);
  background-size: 44px 44px;
}

.hub-burst {
  position: absolute;
  z-index: -1;
  width: min(90%, 720px);
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: repeating-conic-gradient(var(--blue) 0 7deg, transparent 7deg 15deg);
  opacity: .18;
  animation: hub-spin 45s linear infinite;
}

@keyframes hub-spin { to { transform: rotate(1turn); } }

.hub-tv {
  position: relative;
  z-index: 2;
  width: min(80%, 650px);
  border: 12px solid var(--ink);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 17px 19px 0 rgba(17, 19, 24, .22);
  transform: translateY(-30px) rotate(-1deg);
}

.hub-tv::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -74px;
  width: 42%;
  height: 62px;
  border-right: 15px solid var(--ink);
  border-left: 15px solid var(--ink);
  transform: translateX(-50%);
}

.hub-tv__bar,
.hub-tv__score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 39px;
  padding: 0 14px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .08em;
}

.hub-tv__field {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 68px, transparent 68px 136px),
    var(--blue);
}

.hub-tv__field::before,
.hub-tv__field::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 86px;
  height: 142px;
  border: 3px solid rgba(255, 255, 255, .82);
  transform: translateY(-50%);
}

.hub-tv__field::before { left: -3px; }
.hub-tv__field::after { right: -3px; }
.hub-field-line { position: absolute; display: block; }
.hub-field-line--half { top: 0; bottom: 0; left: 50%; width: 3px; background: rgba(255, 255, 255, .82); }
.hub-field-line--circle { top: 50%; left: 50%; width: 100px; height: 100px; border: 3px solid rgba(255, 255, 255, .82); border-radius: 50%; transform: translate(-50%, -50%); }

.hub-token {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 12px;
  box-shadow: 5px 5px 0 rgba(17, 19, 24, .65);
}

.hub-token--one { top: 21%; left: 21%; background: var(--lime); }
.hub-token--two { right: 22%; bottom: 21%; color: var(--paper); background: var(--red); }
.hub-token--three { bottom: 12%; left: 37%; background: var(--white); }
.hub-ball { position: absolute; top: 46%; left: 55%; width: 24px; height: 24px; border: 4px solid var(--ink); border-radius: 50%; background: var(--white); box-shadow: 3px 3px 0 rgba(17, 19, 24, .6); }

.hub-phone {
  position: absolute;
  z-index: 4;
  width: 128px;
  height: 232px;
  padding: 24px 10px 12px;
  border: 8px solid var(--ink);
  border-radius: 27px;
  background: var(--white);
  box-shadow: 9px 11px 0 rgba(17, 19, 24, .3);
}

.hub-phone--left { bottom: 51px; left: 7%; transform: rotate(-8deg); }
.hub-phone--right { right: 7%; bottom: 37px; transform: rotate(7deg); }
.hub-phone__notch { position: absolute; top: 7px; left: 50%; width: 45px; height: 7px; border-radius: 20px; background: var(--ink); transform: translateX(-50%); }
.hub-phone > b { position: absolute; right: 0; bottom: 12px; left: 0; font-family: var(--display); font-size: 10px; text-align: center; }

.hub-phone__stick {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  margin: 25px auto;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: rgba(25, 73, 255, .14);
}

.hub-phone__stick i { width: 45px; height: 45px; border: 3px solid var(--ink); border-radius: 50%; background: var(--blue); }
.hub-phone__buttons { position: relative; height: 150px; }
.hub-phone__buttons i { position: absolute; display: grid; place-items: center; border: 3px solid var(--ink); border-radius: 50%; font-family: var(--display); font-size: 9px; font-style: normal; }
.hub-phone__buttons i:first-child { top: 25px; left: 4px; width: 50px; height: 50px; background: var(--lime); }
.hub-phone__buttons i:last-child { right: 0; bottom: 22px; width: 68px; height: 68px; background: var(--red); }

.hub-machine-note {
  position: absolute;
  z-index: 5;
  margin: 0;
  padding: 9px 12px;
  border: 3px solid var(--ink);
  background: var(--paper);
  font-family: var(--display);
  font-size: 11px;
  box-shadow: 4px 4px 0 var(--ink);
}

.hub-machine-note--one { top: 8%; right: 7%; transform: rotate(5deg); }
.hub-machine-note--two { bottom: 7%; left: 34%; transform: rotate(-3deg); }

.hub-feature,
.hub-games,
.hub-how {
  padding: clamp(70px, 8vw, 128px) clamp(20px, 5vw, 78px);
  border-bottom: 3px solid var(--ink);
}

.hub-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
}

.hub-section-label b { font-family: var(--display); font-size: 15px; }

.featured-game {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  max-width: 1440px;
  margin: 0 auto;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 13px 14px 0 var(--ink);
}

.featured-game__poster {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 640px;
  overflow: hidden;
  padding: 42px;
  border-right: 3px solid var(--ink);
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, .1) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, .1) 2px, transparent 2px),
    var(--blue);
  background-size: 42px 42px;
}

.featured-game__poster::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -130px;
  width: 440px;
  height: 440px;
  border: 58px solid var(--lime);
  border-radius: 50%;
  opacity: .94;
}

.featured-game__poster p,
.featured-game__poster strong,
.featured-game__poster > span {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--display);
  line-height: .82;
  letter-spacing: -.07em;
}

.featured-game__poster p { font-size: clamp(48px, 5vw, 88px); }
.featured-game__poster strong { color: var(--lime); font-size: clamp(72px, 8vw, 148px); }
.featured-game__poster > span { width: fit-content; margin-top: 34px; padding: 11px 13px; color: var(--ink); background: var(--paper); font-family: var(--mono); font-size: 10px; letter-spacing: .05em; }

.featured-ball {
  position: absolute;
  z-index: 3;
  right: 10%;
  bottom: 13%;
  width: 150px;
  height: 150px;
  border: 8px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  transform: rotate(9deg);
  box-shadow: 12px 13px 0 var(--ink);
}

.featured-ball i { position: absolute; width: 42px; height: 42px; background: var(--ink); clip-path: polygon(50% 0, 98% 35%, 80% 100%, 20% 100%, 2% 35%); }
.featured-ball i:nth-child(1) { top: 47px; left: 49px; }
.featured-ball i:nth-child(2) { top: 3px; left: 8px; transform: scale(.72) rotate(-20deg); }
.featured-ball i:nth-child(3) { right: 3px; bottom: 5px; transform: scale(.72) rotate(30deg); }

.featured-game__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 96px);
}

.featured-game__status {
  display: flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  margin-bottom: 34px;
  padding: 9px 12px;
  border: 2px solid var(--ink);
  background: #b9ece0;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
}

.featured-game__copy h2,
.hub-games__heading h2,
.hub-how h2 {
  margin: 27px 0 0;
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 116px);
  line-height: .83;
  letter-spacing: -.075em;
}

.featured-game__copy > p:not(.hub-kicker) {
  max-width: 700px;
  margin: 34px 0 0;
  font-size: 17px;
  line-height: 1.6;
}

.featured-game__copy ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 37px 0 0;
  padding: 0;
  border: 2px solid var(--ink);
  list-style: none;
}

.featured-game__copy li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 82px;
  padding: 10px 16px;
}

.featured-game__copy li + li { border-left: 2px solid var(--ink); }
.featured-game__copy li b { font-family: var(--display); font-size: 27px; line-height: 1; }
.featured-game__copy li span { margin-top: 5px; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.featured-quiz-link { color: var(--ink); font-family: var(--mono); font-size: 10px; font-weight: 600; text-transform: uppercase; }

.hub-games {
  color: var(--paper);
  background: var(--ink);
}

.hub-games__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  align-items: end;
  gap: 50px;
  max-width: 1440px;
  margin: 0 auto 58px;
}

.hub-games__heading .hub-kicker > span { color: var(--ink); background: var(--lime); }
.hub-games__heading > p { max-width: 520px; margin: 0 0 4px; font-size: 16px; line-height: 1.65; opacity: .78; }

.game-shelf {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1440px;
  margin: 0 auto;
}

.game-card {
  display: grid;
  grid-template-rows: auto 290px 1fr auto;
  min-height: 580px;
  border: 3px solid var(--paper);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 10px 11px 0 var(--blue);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.game-card:nth-child(even) { box-shadow: 10px 11px 0 var(--red); }
.game-card:hover { box-shadow: 4px 5px 0 var(--lime); transform: translate(6px, 6px); }
.game-card__top { display: flex; align-items: center; justify-content: space-between; min-height: 48px; padding: 0 15px; border-bottom: 3px solid var(--ink); font-family: var(--mono); font-size: 9px; font-weight: 600; }
.game-card__top b { font-family: var(--display); font-size: 14px; }
.game-card__art { position: relative; display: grid; place-items: center; overflow: hidden; border-bottom: 3px solid var(--ink); }
.game-card__copy { padding: 26px 27px 30px; }
.game-card__copy p { margin: 0 0 8px; font-family: var(--mono); font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.game-card__copy h3 { margin: 0; font-family: var(--display); font-size: clamp(38px, 4.2vw, 72px); line-height: .9; letter-spacing: -.06em; }
.game-card__copy span { display: block; max-width: 520px; margin-top: 18px; font-size: 14px; line-height: 1.5; }
.game-card footer { display: flex; align-items: center; justify-content: space-between; min-height: 47px; padding: 0 15px; border-top: 3px solid var(--ink); font-family: var(--mono); font-size: 8px; }
.game-card footer em { padding: 5px 7px; color: var(--paper); background: var(--ink); font-style: normal; }

.game-card__art--freeze {
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  padding: 40px 8%;
  background: var(--red);
}

.game-card__art--freeze::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 10%, rgba(255,255,255,.12) 10% 10.5%); }
.game-card__art--freeze i { position: relative; width: 56px; height: 120px; border: 4px solid var(--ink); border-radius: 50px 50px 12px 12px; background: var(--paper); }
.game-card__art--freeze i::before { content: ""; position: absolute; top: -34px; left: 7px; width: 34px; height: 34px; border: 4px solid var(--ink); border-radius: 50%; background: var(--hub-yellow); }
.game-card__art--freeze i:nth-child(2) { height: 155px; background: var(--lime); }
.game-card__art--freeze i:nth-child(3) { height: 100px; background: var(--blue); }
.game-card__art--freeze strong { position: absolute; top: 18px; right: 18px; padding: 8px 10px; border: 3px solid var(--ink); background: var(--white); font-family: var(--display); font-size: 21px; transform: rotate(5deg); box-shadow: 4px 4px 0 var(--ink); }

.game-card__art--fake { grid-template-columns: 1fr auto 1fr; background: var(--hub-yellow); font-family: var(--display); }
.game-card__art--fake::before { content: "?"; position: absolute; color: rgba(17,19,24,.09); font-size: 310px; line-height: 1; }
.game-card__art--fake span { position: relative; z-index: 2; display: grid; place-items: center; width: 130px; height: 130px; border: 5px solid var(--ink); border-radius: 50%; background: var(--white); font-size: 28px; box-shadow: 8px 8px 0 var(--ink); }
.game-card__art--fake span:last-child { color: var(--paper); background: var(--blue); }
.game-card__art--fake b { position: relative; z-index: 2; margin: 0 22px; font-size: 20px; }

.game-card__art--trials { background: var(--blue); }
.trial-ring { position: absolute; width: 235px; height: 235px; border: 22px solid var(--lime); border-radius: 50%; box-shadow: inset 0 0 0 4px var(--ink), 0 0 0 4px var(--ink); }
.trial-phone { position: relative; z-index: 2; display: grid; place-items: center; width: 92px; height: 165px; border: 7px solid var(--ink); border-radius: 19px; color: var(--ink); background: var(--paper); font-size: 55px; transform: rotate(-7deg); box-shadow: 8px 9px 0 var(--ink); }
.game-card__art--trials strong { position: absolute; right: 22px; bottom: 18px; padding: 8px 12px; border: 3px solid var(--ink); background: var(--red); font-family: var(--display); font-size: 22px; transform: rotate(4deg); }

.game-card__art--vault { background: var(--hub-green); }
.game-card__art--vault::before { content: ""; position: absolute; width: 245px; height: 245px; border: 13px solid var(--ink); border-radius: 50%; background: var(--paper); box-shadow: 11px 12px 0 rgba(17,19,24,.45); }
.vault-dial { position: relative; z-index: 2; display: grid; place-items: center; width: 118px; height: 118px; border: 8px solid var(--ink); border-radius: 50%; color: var(--paper); background: var(--red); font-family: var(--display); font-size: 42px; }
.game-card__art--vault i { position: absolute; z-index: 3; width: 19px; height: 19px; border: 3px solid var(--ink); border-radius: 50%; background: var(--hub-yellow); }
.game-card__art--vault i:nth-of-type(1) { top: 28px; left: 50%; }
.game-card__art--vault i:nth-of-type(2) { right: 31%; bottom: 37px; }
.game-card__art--vault i:nth-of-type(3) { bottom: 37px; left: 31%; }
.game-card__art--vault i:nth-of-type(4) { top: 49%; left: 27%; }

.hub-how {
  background: var(--red);
}

.hub-how h2 { max-width: 1040px; font-size: clamp(66px, 9vw, 150px); }
.hub-how ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 1440px; margin: 66px 0 0; padding: 0; border: 3px solid var(--ink); background: var(--paper); list-style: none; box-shadow: 12px 13px 0 var(--ink); }
.hub-how li { display: grid; grid-template-columns: auto 1fr; gap: 10px 17px; align-content: start; min-height: 215px; padding: 29px; }
.hub-how li + li { border-left: 3px solid var(--ink); }
.hub-how li b { grid-row: 1 / 3; display: grid; place-items: center; align-self: start; width: 48px; height: 48px; color: var(--paper); background: var(--blue); font-family: var(--display); font-size: 15px; }
.hub-how li strong { align-self: center; font-family: var(--display); font-size: 20px; }
.hub-how li span { grid-column: 2; font-size: 14px; line-height: 1.55; }

.hub-footer {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 45px;
  min-height: 155px;
  padding: 30px clamp(20px, 5vw, 78px);
  color: var(--paper);
  background: var(--blue);
}

.hub-footer .hub-brand__play { color: var(--ink); background: var(--lime); }
.hub-footer .hub-brand__thirsty { color: var(--ink); background: var(--paper); }
.hub-footer p { max-width: 620px; margin: 0; font-size: 13px; line-height: 1.5; }
.hub-footer button { justify-self: end; color: var(--paper); }

.hub-toast {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 22px;
  margin: 0;
  padding: 13px 17px;
  border: 3px solid var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  box-shadow: 5px 5px 0 var(--ink);
}

@media (max-width: 1120px) {
  .hub-hero { grid-template-columns: 1fr; }
  .hub-hero__copy { border-right: 0; border-bottom: 3px solid var(--ink); }
  .hub-hero h1 { font-size: clamp(68px, 12vw, 122px); }
  .hub-hero__machine { min-height: 680px; }
  .featured-game { grid-template-columns: 1fr; }
  .featured-game__poster { min-height: 520px; border-right: 0; border-bottom: 3px solid var(--ink); }
  .featured-game__poster strong { font-size: clamp(90px, 15vw, 165px); }
}

@media (max-width: 820px) {
  .hub-nav { grid-template-columns: 1fr auto; min-height: 78px; }
  .hub-nav__signal { display: none; }
  .hub-nav__actions { gap: 13px; }
  .hub-share-button { display: none; }
  .hub-brand { font-size: 14px; }
  .hub-brand span { min-height: 42px; padding: 0 10px; }
  .hub-nav__host { min-height: 48px; padding: 0 12px; font-size: 9px; }
  .hub-games__heading { grid-template-columns: 1fr; align-items: start; gap: 27px; }
  .game-shelf { grid-template-columns: 1fr; }
  .hub-how ol { grid-template-columns: 1fr; }
  .hub-how li { min-height: 160px; }
  .hub-how li + li { border-top: 3px solid var(--ink); border-left: 0; }
  .hub-footer { grid-template-columns: 1fr auto; gap: 24px; }
  .hub-footer p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 600px) {
  .hub-nav { padding: 11px 14px; }
  .hub-nav__host span { display: none; }
  .hub-ticker { font-size: 10px; }
  .hub-hero__copy { padding: 54px 18px 65px; }
  .hub-hero h1 { margin-top: 23px; font-size: clamp(53px, 16vw, 88px); }
  .hub-hero h1 em { margin-top: 12px; font-size: .48em; box-shadow: 6px 6px 0 var(--ink); }
  .hub-hero__lede { margin-top: 31px; font-size: 15px; }
  .hub-hero__actions { align-items: stretch; flex-direction: column; margin-top: 31px; }
  .hub-action { width: 100%; min-height: 57px; }
  .hub-join { margin-top: 34px; }
  .hub-join > div { display: grid; grid-template-columns: 1fr 115px; }
  .hub-join input { width: 100%; border-right: 0; font-size: 16px; }
  .hub-join button { min-width: 0; padding: 0 9px; font-size: 9px; }
  .hub-resume-grid { grid-template-columns: 1fr; }
  .hub-hero__machine { min-height: 505px; }
  .hub-tv { width: 87%; border-width: 8px; border-radius: 14px; transform: translateY(-40px) rotate(-1deg); }
  .hub-tv__field { min-height: 215px; }
  .hub-tv__field::before,
  .hub-tv__field::after { width: 54px; height: 92px; }
  .hub-tv::after { bottom: -52px; height: 44px; border-width: 10px; }
  .hub-token { width: 39px; height: 39px; border-width: 3px; font-size: 8px; box-shadow: 3px 3px 0 rgba(17, 19, 24, .65); }
  .hub-field-line--circle { width: 65px; height: 65px; }
  .hub-phone { width: 86px; height: 158px; padding: 18px 6px 8px; border-width: 6px; border-radius: 19px; }
  .hub-phone--left { bottom: 27px; left: 5%; }
  .hub-phone--right { right: 5%; bottom: 20px; }
  .hub-phone__notch { width: 31px; height: 5px; }
  .hub-phone__stick { width: 62px; height: 62px; margin: 16px auto; border-width: 2px; }
  .hub-phone__stick i { width: 31px; height: 31px; border-width: 2px; }
  .hub-phone__buttons { height: 100px; }
  .hub-phone__buttons i { border-width: 2px; font-size: 6px; }
  .hub-phone__buttons i:first-child { top: 14px; width: 35px; height: 35px; }
  .hub-phone__buttons i:last-child { width: 47px; height: 47px; }
  .hub-phone > b { bottom: 7px; font-size: 7px; }
  .hub-machine-note { display: none; }
  .hub-feature,
  .hub-games,
  .hub-how { padding: 64px 16px; }
  .featured-game { box-shadow: 7px 8px 0 var(--ink); }
  .featured-game__poster { min-height: 395px; padding: 27px 20px; }
  .featured-game__poster p { font-size: 44px; }
  .featured-game__poster strong { font-size: 78px; }
  .featured-game__poster > span { margin-top: 23px; font-size: 7px; }
  .featured-ball { right: 7%; bottom: 10%; width: 108px; height: 108px; border-width: 6px; }
  .featured-ball i { width: 29px; height: 29px; }
  .featured-ball i:nth-child(1) { top: 34px; left: 35px; }
  .featured-game__copy { padding: 40px 20px 45px; }
  .featured-game__copy h2 { font-size: 52px; }
  .featured-game__copy > p:not(.hub-kicker) { margin-top: 25px; font-size: 15px; }
  .featured-game__copy li { min-height: 70px; padding: 8px; text-align: center; }
  .featured-game__copy li b { font-size: 22px; }
  .featured-game__actions { flex-direction: column; align-items: stretch; }
  .featured-quiz-link { padding: 10px 2px; text-align: center; }
  .hub-games__heading h2 { font-size: 56px; }
  .game-card { grid-template-rows: auto 245px 1fr auto; min-height: 535px; box-shadow: 6px 7px 0 var(--blue); }
  .game-card:nth-child(even) { box-shadow: 6px 7px 0 var(--red); }
  .game-card__copy { padding: 23px 20px 28px; }
  .game-card__copy h3 { font-size: 42px; }
  .game-card__art--freeze { padding-inline: 5%; }
  .game-card__art--freeze i { width: 39px; height: 88px; }
  .game-card__art--freeze i::before { top: -26px; left: 4px; width: 27px; height: 27px; }
  .game-card__art--freeze i:nth-child(2) { height: 118px; }
  .game-card__art--fake span { width: 92px; height: 92px; font-size: 19px; }
  .game-card__art--fake b { margin: 0 8px; font-size: 15px; }
  .hub-how h2 { font-size: 58px; }
  .hub-how ol { margin-top: 45px; box-shadow: 7px 8px 0 var(--ink); }
  .hub-how li { padding: 23px 18px; }
  .hub-footer { grid-template-columns: 1fr; padding: 38px 20px; }
  .hub-footer button { justify-self: start; }
  .hub-toast { right: 14px; bottom: 14px; left: 14px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hub-ticker > div,
  .hub-burst,
  .hub-nav__signal i,
  .featured-game__status i { animation: none; }
}
