:root {
  --ink: #071712;
  --forest: #0b2d22;
  --forest-2: #123d30;
  --forest-3: #1b5844;
  --paper: #f4f0df;
  --paper-2: #e8e1cc;
  --orange: #ff5a36;
  --acid: #d8ff4f;
  --white: #fffdf5;
  --muted: #aebdb4;
  --line: rgba(244, 240, 223, 0.18);
  --shadow: 0 28px 80px rgba(2, 12, 8, 0.32);
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "DM Sans", sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 10%, rgba(56, 126, 98, 0.18), transparent 25rem),
    var(--forest);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' 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='.9'/%3E%3C/svg%3E");
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--acid);
  border-radius: 0.25rem;
  font-weight: 700;
  transform: translateY(-200%);
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: grid;
  width: min(100% - 3rem, 1380px);
  min-height: 86px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transform: translateX(-50%);
}

.wordmark {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.65rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.07em;
  line-height: 1;
  text-decoration: none;
}

.wordmark-ball {
  position: relative;
  display: inline-block;
  width: 1.45rem;
  height: 1.45rem;
  background:
    linear-gradient(45deg, transparent 43%, var(--forest) 44% 56%, transparent 57%),
    var(--paper);
  border: 2px solid var(--paper);
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.site-nav a {
  position: relative;
  color: rgba(244, 240, 223, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 1rem;
}

.language-switcher {
  display: inline-flex;
  padding: 2px;
  background: rgba(244, 240, 223, 0.045);
  border: 1px solid rgba(244, 240, 223, 0.22);
  border-radius: 999px;
}

.language-switcher a {
  display: grid;
  min-width: 34px;
  height: 28px;
  padding: 0 0.45rem;
  border-radius: 999px;
  place-items: center;
  color: rgba(244, 240, 223, 0.62);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
}

.language-switcher a[aria-current="page"] {
  color: var(--forest);
  background: var(--paper);
}

.header-cta span {
  display: inline-block;
  margin-left: 0.45rem;
  color: var(--orange);
  transition: transform 180ms ease;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 920px;
  padding: 160px max(1.5rem, calc((100vw - 1380px) / 2)) 120px;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.8fr);
  align-items: center;
  gap: 5rem;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(244, 240, 223, 0.06) 50%, transparent 50.1%),
    linear-gradient(rgba(244, 240, 223, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 86px;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: -20rem;
  bottom: -33rem;
  width: 75rem;
  height: 75rem;
  content: "";
  border: 1px solid rgba(244, 240, 223, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 7rem rgba(244, 240, 223, 0.018),
    0 0 0 14rem rgba(244, 240, 223, 0.012);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.kicker,
.eyebrow,
.step-label {
  margin: 0 0 1.2rem;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.live-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.6rem;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 90, 54, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(255, 90, 54, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 54, 0);
  }
}

.hero h1 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(5.7rem, 9vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 600px;
  margin: 2.4rem 0 0;
  color: rgba(244, 240, 223, 0.76);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-top: 2.3rem;
  align-items: center;
  gap: 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 58px;
  padding: 0.85rem 1.2rem 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 3px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 8px 8px 0 rgba(255, 90, 54, 0.16);
}

.button-primary:hover {
  background: #ff6c4b;
  box-shadow: 10px 10px 0 rgba(255, 90, 54, 0.12);
}

.button-icon {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(7, 23, 18, 0.35);
  border-radius: 50%;
  place-items: center;
}

.button-secondary {
  color: var(--paper);
  background: transparent;
  border-color: rgba(244, 240, 223, 0.28);
}

.button-secondary:hover {
  background: rgba(244, 240, 223, 0.08);
}

.button-light {
  color: var(--forest);
  background: var(--paper);
}

.button-full {
  width: 100%;
}

.no-friction {
  max-width: 190px;
  color: rgba(244, 240, 223, 0.48);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 610px;
  place-items: center;
  perspective: 1200px;
}

.player-card {
  position: relative;
  z-index: 3;
  width: min(380px, 82vw);
  min-height: 550px;
  padding: 1.4rem;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), transparent 40%),
    var(--paper);
  border-radius: 9px;
  box-shadow:
    25px 34px 80px rgba(0, 0, 0, 0.4),
    10px 11px 0 var(--orange);
  transform: rotate(4.5deg);
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-art:hover .player-card {
  transform: rotate(1deg) translateY(-8px);
}

.player-card::before {
  position: absolute;
  inset: 12px;
  content: "";
  border: 2px solid var(--forest);
  border-radius: 4px;
  pointer-events: none;
}

.player-card::after {
  position: absolute;
  top: 58px;
  right: 20px;
  bottom: 122px;
  left: 20px;
  content: "";
  background:
    radial-gradient(circle at center, transparent 0 58px, rgba(11, 45, 34, 0.09) 59px 60px, transparent 61px),
    linear-gradient(90deg, transparent 49.7%, rgba(11, 45, 34, 0.08) 50%, transparent 50.3%);
  border: 1px solid rgba(11, 45, 34, 0.13);
  pointer-events: none;
}

.card-topline {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 0.1rem 0.2rem;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.card-flag {
  font-size: 1.15rem;
}

.card-rating {
  position: absolute;
  z-index: 2;
  top: 4.2rem;
  left: 2.2rem;
  display: flex;
  flex-direction: column;
}

.card-rating strong {
  color: var(--orange);
  font-family: var(--display);
  font-size: 6.5rem;
  font-weight: 400;
  line-height: 0.9;
}

.card-rating span {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.card-silhouette {
  position: relative;
  z-index: 2;
  height: 315px;
  margin: 2.3rem 0 0;
  overflow: hidden;
}

.silhouette-head {
  position: absolute;
  top: 45px;
  left: 57%;
  width: 70px;
  height: 80px;
  background: var(--forest);
  border-radius: 46% 46% 43% 43%;
  transform: translateX(-50%);
}

.silhouette-body {
  position: absolute;
  bottom: -40px;
  left: 57%;
  width: 260px;
  height: 245px;
  background: var(--forest);
  border-radius: 46% 46% 10px 10px;
  clip-path: polygon(26% 10%, 74% 10%, 100% 33%, 86% 100%, 14% 100%, 0 33%);
  transform: translateX(-50%);
}

.shirt-number {
  position: absolute;
  z-index: 2;
  top: 190px;
  left: 57%;
  color: var(--paper);
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
  transform: translateX(-50%);
}

.card-name {
  position: relative;
  z-index: 2;
  margin-top: -0.3rem;
  font-family: var(--display);
  font-size: 3.35rem;
  letter-spacing: 0.015em;
  line-height: 0.9;
  text-align: center;
}

.card-position {
  position: relative;
  z-index: 2;
  margin-top: 0.6rem;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-align: center;
}

.card-stats {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
  font-family: var(--mono);
  font-size: 0.57rem;
  text-align: center;
}

.card-stats span:not(:last-child) {
  border-right: 1px solid rgba(11, 45, 34, 0.2);
}

.card-stats b {
  display: block;
  font-size: 1rem;
}

.pitch-orbit {
  position: absolute;
  border: 1px solid rgba(244, 240, 223, 0.13);
  border-radius: 50%;
}

.pitch-orbit-one {
  width: 550px;
  height: 550px;
}

.pitch-orbit-two {
  width: 720px;
  height: 720px;
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 80px;
  display: grid;
  width: 140px;
  height: 140px;
  color: var(--forest);
  background: var(--acid);
  border-radius: 50%;
  place-content: center;
  text-align: center;
  transform: rotate(-11deg);
}

.hero-stamp span {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-stamp strong {
  font-family: var(--display);
  font-size: 2.05rem;
  font-weight: 400;
  line-height: 0.95;
}

.score-ticker {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.7rem 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--orange);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2rem;
  animation: marquee 24s linear infinite;
}

.ticker-track i {
  font-style: normal;
}

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

.reveal {
  animation: reveal-up 800ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-delay-1 {
  animation-delay: 100ms;
}

.reveal-delay-2 {
  animation-delay: 220ms;
}

.reveal-delay-3 {
  animation-delay: 360ms;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
}

.game-section,
.editorial-section,
.tips-section {
  position: relative;
  padding: 8rem max(1.5rem, calc((100vw - 1240px) / 2));
}

.game-section {
  color: var(--ink);
  background: var(--paper);
}

.section-number {
  position: absolute;
  top: 7.2rem;
  left: max(1.5rem, calc((100vw - 1380px) / 2));
  color: rgba(11, 45, 34, 0.12);
  font-family: var(--display);
  font-size: 9rem;
  line-height: 1;
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 3.8rem;
  text-align: center;
}

.section-heading h2,
.article-lead h2,
.faq-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.9;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  max-width: 640px;
  margin: 1.4rem auto 0;
  color: rgba(7, 23, 18, 0.62);
  font-size: 1.05rem;
}

.game-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 1040px);
  margin: 0 auto;
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 35%),
    var(--forest);
  border: 1px solid rgba(7, 23, 18, 0.25);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.game-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 49.85%, rgba(244, 240, 223, 0.035) 50%, transparent 50.15%),
    radial-gradient(circle at 50% 50%, transparent 0 75px, rgba(244, 240, 223, 0.03) 76px 78px, transparent 79px);
  pointer-events: none;
}

.game-shell-top,
.game-shell-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 48px;
  padding: 0 1.35rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.game-shell-bottom {
  min-height: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: rgba(244, 240, 223, 0.4);
  font-size: 0.54rem;
}

.game-brand,
.game-status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.game-shell-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.game-brand span,
.game-status i {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--orange);
  border-radius: 50%;
}

.game-status {
  color: var(--acid);
}

.game-status i {
  background: var(--acid);
  box-shadow: 0 0 8px rgba(216, 255, 79, 0.5);
}

.game-stage {
  position: relative;
  z-index: 2;
  min-height: 650px;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.setup-intro {
  margin-bottom: 2.5rem;
}

.setup-intro h3,
.decision-card h3,
.result-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.setup-intro > p:last-child,
.result-head > p:last-child {
  margin: 0.65rem 0 0;
  color: rgba(244, 240, 223, 0.58);
}

.career-form {
  display: grid;
  gap: 1.6rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field-grid-identity {
  grid-template-columns: 2fr 1fr;
}

.field,
.choice-fieldset {
  display: grid;
  margin: 0;
  padding: 0;
  border: 0;
  gap: 0.55rem;
}

.field > span,
.choice-fieldset legend {
  margin-bottom: 0.55rem;
  color: rgba(244, 240, 223, 0.58);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  height: 58px;
  padding: 0 1rem;
  color: var(--paper);
  background: rgba(244, 240, 223, 0.055);
  border: 1px solid rgba(244, 240, 223, 0.18);
  border-radius: 3px;
  outline: 0;
  transition:
    border 180ms ease,
    background 180ms ease;
}

.field input:focus,
.field select:focus {
  background: rgba(244, 240, 223, 0.08);
  border-color: var(--orange);
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--paper) 50%),
    linear-gradient(135deg, var(--paper) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 25px,
    calc(100% - 13px) 25px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.segmented-control,
.position-grid,
.pace-grid {
  display: grid;
  gap: 0.55rem;
}

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

.position-grid {
  grid-template-columns: repeat(5, 1fr);
}

.pace-grid {
  grid-template-columns: repeat(3, 1fr);
}

.segmented-control input,
.position-option input,
.pace-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented-control label span,
.position-option span,
.pace-option span {
  display: grid;
  min-height: 52px;
  padding: 0.75rem;
  border: 1px solid rgba(244, 240, 223, 0.15);
  border-radius: 3px;
  place-items: center;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    background 160ms ease,
    border 160ms ease;
}

.segmented-control input:checked + span,
.position-option input:checked + span,
.pace-option input:checked + span {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.position-option input:focus-visible + span,
.pace-option input:focus-visible + span,
.segmented-control input:focus-visible + span {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.pace-option span {
  min-height: 76px;
  align-content: center;
  justify-items: start;
}

.pace-option b {
  font-size: 0.72rem;
}

.pace-option small {
  margin-top: 0.2rem;
  opacity: 0.52;
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.form-note {
  margin: -0.5rem 0 0;
  color: rgba(244, 240, 223, 0.38);
  font-size: 0.72rem;
  text-align: center;
}

.career-hud {
  display: flex;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.career-player {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mini-shirt {
  display: grid;
  width: 54px;
  height: 54px;
  color: var(--ink);
  background: var(--orange);
  clip-path: polygon(22% 0, 37% 10%, 63% 10%, 78% 0, 100% 20%, 88% 43%, 77% 34%, 77% 100%, 23% 100%, 23% 34%, 12% 43%, 0 20%);
  place-items: center;
  font-family: var(--display);
  font-size: 1.45rem;
}

.career-player span {
  display: block;
  color: rgba(244, 240, 223, 0.48);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
}

.career-player strong {
  display: block;
  margin-top: 0.1rem;
  font-size: 1.02rem;
}

.hud-metrics {
  display: flex;
  gap: 2.2rem;
}

.hud-metrics div {
  text-align: right;
}

.hud-metrics span {
  display: block;
  color: rgba(244, 240, 223, 0.38);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.hud-metrics strong {
  display: block;
  margin-top: 0.1rem;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
}

.career-progress {
  position: relative;
  height: 5px;
  margin-top: 2rem;
  background: rgba(244, 240, 223, 0.1);
  overflow: hidden;
}

.career-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
  transition: width 500ms ease;
}

.career-years {
  display: flex;
  margin-top: 0.55rem;
  color: rgba(244, 240, 223, 0.34);
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.career-years strong {
  color: var(--paper);
  font-weight: 600;
}

.block-recap {
  display: grid;
  margin: 2rem 0;
  gap: 0.5rem;
}

.season-row {
  display: grid;
  min-height: 46px;
  padding: 0.65rem 0.8rem;
  background: rgba(244, 240, 223, 0.045);
  grid-template-columns: 62px minmax(130px, 1fr) repeat(4, auto);
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.61rem;
}

.season-row strong {
  color: var(--orange);
  font-size: 0.7rem;
}

.season-row span {
  color: rgba(244, 240, 223, 0.6);
}

.season-row .season-club {
  overflow: hidden;
  color: var(--paper);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.season-honour {
  color: var(--acid) !important;
}

.decision-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--ink);
  background: var(--paper);
  border-radius: 5px;
  overflow: hidden;
}

.decision-card::after {
  position: absolute;
  top: -2.2rem;
  right: -2rem;
  width: 10rem;
  height: 10rem;
  content: "";
  border: 2rem solid rgba(11, 45, 34, 0.055);
  border-radius: 50%;
}

.decision-eyebrow {
  position: relative;
  z-index: 2;
  margin: 0 0 0.8rem;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.decision-card h3 {
  position: relative;
  z-index: 2;
  max-width: 680px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.decision-card > p:not(.decision-eyebrow) {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0.8rem 0 1.5rem;
  color: rgba(7, 23, 18, 0.64);
}

.decision-options {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.decision-choice {
  display: flex;
  min-height: 86px;
  padding: 1rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(7, 23, 18, 0.2);
  border-radius: 3px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.decision-choice:hover {
  color: var(--paper);
  background: var(--forest);
  transform: translateY(-2px);
}

.decision-choice strong {
  display: block;
  font-size: 0.88rem;
}

.decision-choice small {
  display: block;
  margin-top: 0.22rem;
  opacity: 0.58;
  font-size: 0.7rem;
}

.decision-choice > span:last-child {
  font-size: 1.2rem;
}

.result-stage {
  min-height: 720px;
}

.result-head {
  margin-bottom: 2rem;
  text-align: center;
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(280px, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}

.result-card-wrap {
  perspective: 1000px;
}

.result-card {
  position: relative;
  min-height: 520px;
  padding: 1.25rem;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.38), transparent 42%),
    var(--paper);
  border-radius: 7px;
  box-shadow: 13px 14px 0 var(--orange);
  transform: rotate(-1.2deg);
}

.result-card::before {
  position: absolute;
  inset: 10px;
  content: "";
  border: 2px solid var(--forest);
  border-radius: 3px;
  pointer-events: none;
}

.result-card-top,
.result-player-row,
.result-club-line,
.result-stat-grid,
.result-score,
.result-verdict-line {
  position: relative;
  z-index: 2;
}

.result-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.result-player-row {
  display: grid;
  margin-top: 2.2rem;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
}

.result-rating {
  display: flex;
  flex-direction: column;
}

.result-rating strong {
  color: var(--orange);
  font-family: var(--display);
  font-size: 5.7rem;
  font-weight: 400;
  line-height: 0.78;
}

.result-rating span {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
}

.result-player-row h4 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  font-weight: 400;
  line-height: 0.9;
}

.result-player-row p {
  margin: 0.35rem 0 0;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.result-club-line {
  margin: 1.6rem 0;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(7, 23, 18, 0.18);
  border-bottom: 1px solid rgba(7, 23, 18, 0.18);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
}

.result-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
}

.result-stat-grid div {
  padding: 0.65rem;
  background: rgba(11, 45, 34, 0.075);
}

.result-stat-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.result-stat-grid span,
.result-score span {
  font-family: var(--mono);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.result-score {
  display: flex;
  margin-top: 0.5rem;
  padding: 0.75rem;
  color: var(--paper);
  background: var(--forest);
  align-items: center;
  justify-content: space-between;
}

.result-score strong {
  color: var(--acid);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.result-verdict-line {
  margin-top: 0.9rem;
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  text-align: center;
}

.result-details {
  display: grid;
  gap: 1.4rem;
}

.result-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.result-detail-grid div {
  padding: 1rem;
  background: rgba(244, 240, 223, 0.055);
  border: 1px solid rgba(244, 240, 223, 0.1);
}

.result-detail-grid span {
  display: block;
  color: rgba(244, 240, 223, 0.38);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.result-detail-grid strong {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
}

.honours-list {
  padding: 1.2rem;
  border: 1px solid rgba(244, 240, 223, 0.1);
}

.honours-list h4 {
  margin: 0 0 0.8rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#honours-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.honour-chip {
  padding: 0.35rem 0.55rem;
  color: var(--acid);
  background: rgba(216, 255, 79, 0.07);
  border: 1px solid rgba(216, 255, 79, 0.2);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 0.52rem;
}

.result-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.result-actions .button {
  min-width: 0;
}

.result-socials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.social-result-button {
  display: flex;
  min-height: 3.4rem;
  padding: 0.65rem 0.45rem;
  color: var(--paper);
  background: rgba(244, 240, 223, 0.06);
  border: 1px solid rgba(244, 240, 223, 0.18);
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.social-result-button:hover {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  transform: translateY(-2px);
}

.social-result-button span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.social-result-button strong {
  font: inherit;
  font-weight: 700;
}

.text-button {
  padding: 0.7rem 0;
  color: rgba(244, 240, 223, 0.56);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

.share-feedback {
  min-height: 1.2em;
  margin: -0.7rem 0 0;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 0.6rem;
}

.proof-strip {
  display: grid;
  padding: 0 max(1.5rem, calc((100vw - 1240px) / 2));
  color: var(--ink);
  background: var(--orange);
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip div {
  display: flex;
  min-height: 150px;
  padding: 1.5rem;
  border-right: 1px solid rgba(7, 23, 18, 0.18);
  flex-direction: column;
  justify-content: center;
}

.proof-strip div:first-child {
  border-left: 1px solid rgba(7, 23, 18, 0.18);
}

.proof-strip strong {
  font-family: var(--display);
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 0.8;
}

.proof-strip span {
  margin-top: 0.6rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.editorial-section {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(244, 240, 223, 0.05) 50%, transparent 50.1%),
    var(--forest);
}

.editorial-section .section-number {
  color: rgba(244, 240, 223, 0.07);
}

.editorial-section .section-heading {
  max-width: 900px;
}

.story-layout {
  display: grid;
  margin-top: 5rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.story-steps {
  display: grid;
}

.story-steps article {
  display: grid;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 70px 1fr;
  gap: 1.2rem;
}

.story-steps article > span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 1;
}

.story-steps h3,
.tip-grid h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.story-steps p,
.tip-grid p {
  margin: 0.7rem 0 0;
  color: rgba(244, 240, 223, 0.58);
}

.quote-card {
  position: sticky;
  top: 2rem;
  padding: 3rem;
  color: var(--ink);
  background: var(--acid);
  transform: rotate(2deg);
}

.quote-mark {
  display: block;
  height: 4rem;
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 0.9;
}

.quote-card blockquote {
  margin: 1.2rem 0 2.2rem;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.quote-card p {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.article-section {
  padding: 8rem max(1.5rem, calc((100vw - 1240px) / 2));
  color: var(--ink);
  background: var(--paper);
}

.article-lead {
  display: grid;
  padding-bottom: 2.5rem;
  border-bottom: 2px solid var(--forest);
  grid-template-columns: 0.75fr 1.25fr;
  align-items: end;
}

.article-lead h2 {
  text-align: right;
}

.article-columns {
  display: grid;
  margin-top: 3rem;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
}

.article-columns p {
  margin: 0 0 1.4rem;
  color: rgba(7, 23, 18, 0.72);
  font-size: 1.02rem;
  line-height: 1.8;
}

.article-columns > div:first-child p:first-child::first-letter {
  float: left;
  margin: 0.05rem 0.65rem 0 0;
  color: var(--orange);
  font-family: var(--display);
  font-size: 6.5rem;
  line-height: 0.72;
}

.tips-section {
  background: var(--forest-2);
}

.tips-section .section-number {
  color: rgba(244, 240, 223, 0.06);
}

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

.tip-grid article {
  min-height: 290px;
  padding: 1.5rem;
  background: rgba(244, 240, 223, 0.045);
  border: 1px solid rgba(244, 240, 223, 0.08);
}

.tip-grid article:nth-child(1),
.tip-grid article:nth-child(2),
.tip-grid article:nth-child(3) {
  grid-column: span 2;
}

.tip-grid article:nth-child(4),
.tip-grid article:nth-child(5) {
  grid-column: span 3;
}

.tip-grid article > span {
  display: block;
  margin-bottom: 3rem;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tip-grid article:nth-child(5) {
  color: var(--ink);
  background: var(--acid);
}

.tip-grid article:nth-child(5) p {
  color: rgba(7, 23, 18, 0.68);
}

.faq-section {
  display: grid;
  padding: 8rem max(1.5rem, calc((100vw - 1240px) / 2));
  color: var(--ink);
  background: var(--paper);
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-heading {
  position: sticky;
  top: 2rem;
}

.faq-heading h2 {
  font-size: clamp(3.8rem, 6vw, 6rem);
}

.faq-list {
  border-top: 2px solid var(--forest);
}

.faq-list details {
  border-bottom: 1px solid rgba(7, 23, 18, 0.18);
}

.faq-list summary {
  position: relative;
  padding: 1.6rem 3rem 1.6rem 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1.25rem;
  right: 0;
  color: var(--orange);
  content: "+";
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 720px;
  margin: -0.5rem 0 1.8rem;
  color: rgba(7, 23, 18, 0.65);
}

.final-cta {
  display: flex;
  min-height: 460px;
  padding: 6rem max(1.5rem, calc((100vw - 1240px) / 2));
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 45%, transparent 0 100px, rgba(244, 240, 223, 0.08) 101px 103px, transparent 104px),
    radial-gradient(circle at 78% 45%, transparent 0 190px, rgba(244, 240, 223, 0.05) 191px 193px, transparent 194px),
    var(--orange);
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.final-cta .eyebrow {
  color: var(--forest);
}

.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.82;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  padding: 3.5rem max(1.5rem, calc((100vw - 1240px) / 2));
  background: var(--ink);
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 1.5rem 3rem;
}

.footer-wordmark {
  font-size: 2.7rem;
}

.site-footer p {
  max-width: 500px;
  margin: 0;
  color: rgba(244, 240, 223, 0.58);
  justify-self: end;
  text-align: right;
}

.site-footer .footer-note {
  color: rgba(244, 240, 223, 0.3);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.04em;
  justify-self: start;
  text-align: left;
  text-transform: uppercase;
}

.site-footer > span {
  color: rgba(244, 240, 223, 0.28);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.07em;
  justify-self: end;
}

/* Launch experience: the game is the hero. */
.game-first-fold {
  min-height: 100svh;
  padding: 8.25rem max(1.25rem, calc((100vw - 1380px) / 2)) 5rem;
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 8%, rgba(216, 255, 79, 0.1), transparent 24rem),
    linear-gradient(rgba(244, 240, 223, 0.035) 1px, transparent 1px),
    var(--forest);
  background-size: auto, 100% 86px, auto;
}

.game-masthead {
  display: grid;
  width: min(100%, 1380px);
  margin: 0 auto 2.25rem;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.33fr);
  align-items: end;
  gap: 3rem;
}

.game-masthead .kicker {
  margin-bottom: 0.9rem;
}

.game-masthead h1 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.1rem, 6.4vw, 7.1rem);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 0.82;
  text-transform: uppercase;
}

.game-masthead h1 em {
  color: var(--orange);
  font-style: normal;
}

.masthead-promise {
  display: grid;
  padding: 1.35rem 0 0.25rem 1.5rem;
  border-left: 1px solid rgba(244, 240, 223, 0.22);
  gap: 0.35rem;
}

.masthead-promise strong {
  color: var(--acid);
  font-family: var(--display);
  font-size: 3.7rem;
  font-weight: 400;
  line-height: 0.8;
}

.masthead-promise span {
  max-width: 300px;
  color: rgba(244, 240, 223, 0.8);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.masthead-promise small {
  color: rgba(244, 240, 223, 0.42);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.game-first-fold .game-shell {
  width: min(100%, 1380px);
  margin: 0 auto;
  border-color: rgba(244, 240, 223, 0.2);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.32);
}

.setup-stage {
  min-height: 710px;
  padding: clamp(1rem, 2.7vw, 2.25rem);
}

.setup-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.45fr);
  align-items: start;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.setup-preview-panel {
  position: sticky;
  top: 1.5rem;
  min-height: 625px;
  padding: 1.25rem;
  color: var(--forest);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), transparent 36%),
    var(--paper);
  border: 1px solid rgba(244, 240, 223, 0.5);
  border-radius: 6px;
  box-shadow: 11px 12px 0 var(--orange);
  overflow: hidden;
}

.setup-preview-panel::after {
  position: absolute;
  right: -6rem;
  bottom: -6rem;
  width: 16rem;
  height: 16rem;
  content: "";
  border: 2.5rem solid rgba(11, 45, 34, 0.06);
  border-radius: 50%;
}

.preview-topline {
  position: relative;
  z-index: 2;
  display: flex;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(11, 45, 34, 0.2);
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.preview-topline span:last-child {
  font-size: 1.35rem;
}

.preview-shirt {
  position: relative;
  display: grid;
  width: min(86%, 310px);
  min-height: 310px;
  margin: 2rem auto 1.2rem;
  color: var(--ink);
  background: var(
    --kit-background,
    repeating-linear-gradient(90deg, #f7f4e7 0 18%, #74b5df 18% 35%, #f7f4e7 35% 52%)
  );
  clip-path: polygon(14% 0, 33% 8%, 42% 4%, 58% 4%, 67% 8%, 86% 0, 100% 24%, 85% 39%, 76% 30%, 76% 100%, 24% 100%, 24% 30%, 15% 39%, 0 24%);
  place-items: center;
  filter: drop-shadow(0 20px 20px rgba(7, 23, 18, 0.2));
  transition: background 220ms ease;
}

.preview-shirt::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 36%, rgba(255, 255, 255, 0.55) 47%, transparent 57%);
  transform: translateX(-130%);
  animation: shirt-shine 4s 1s infinite;
}

@keyframes shirt-shine {
  55%,
  100% {
    transform: translateX(130%);
  }
}

.preview-shirt-name {
  position: absolute;
  z-index: 2;
  top: 27%;
  width: 58%;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-shirt strong {
  position: relative;
  z-index: 2;
  margin-top: 1.6rem;
  font-family: var(--display);
  font-size: 7rem;
  font-weight: 400;
  line-height: 1;
}

.preview-identity {
  position: relative;
  z-index: 2;
  display: grid;
  text-align: center;
}

.preview-identity span {
  color: rgba(11, 45, 34, 0.56);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-identity strong {
  margin-top: 0.2rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.preview-stats {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 1.15rem;
  border-top: 1px solid rgba(11, 45, 34, 0.16);
  grid-template-columns: repeat(3, 1fr);
}

.preview-stats div {
  display: grid;
  min-height: 70px;
  padding-top: 0.75rem;
  border-right: 1px solid rgba(11, 45, 34, 0.14);
  text-align: center;
}

.preview-stats div:last-child {
  border: 0;
}

.preview-stats strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.preview-stats span {
  color: rgba(11, 45, 34, 0.48);
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.06em;
}

.setup-config {
  min-width: 0;
  padding: 0.4rem 0.25rem 1rem;
}

.setup-config .setup-intro {
  margin-bottom: 1.4rem;
}

.setup-config .setup-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.setup-controls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.quick-start {
  width: 100%;
  min-height: 66px;
  justify-content: space-between;
  background: var(--acid);
}

.quick-start:hover {
  background: var(--paper);
}

.customize-divider {
  display: flex;
  color: rgba(244, 240, 223, 0.3);
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.customize-divider::before,
.customize-divider::after {
  height: 1px;
  content: "";
  background: rgba(244, 240, 223, 0.1);
  flex: 1;
}

.country-quick {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.45rem;
}

.country-chip {
  display: grid;
  min-height: 70px;
  padding: 0.55rem 0.25rem;
  color: var(--paper);
  background: rgba(244, 240, 223, 0.045);
  border: 1px solid rgba(244, 240, 223, 0.15);
  border-radius: 3px;
  place-items: center;
  gap: 0.15rem;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.country-chip span {
  font-size: 1.35rem;
}

.country-chip strong {
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.country-chip[aria-pressed="true"] {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  transform: translateY(-2px);
}

.position-pitch {
  position: relative;
  height: 340px;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(244, 240, 223, 0.45) 49.8% 50.2%, transparent 50.3%),
    repeating-linear-gradient(0deg, rgba(244, 240, 223, 0.025) 0 56px, rgba(244, 240, 223, 0.075) 56px 112px),
    #10513d;
  border: 2px solid rgba(244, 240, 223, 0.65);
  border-radius: 5px;
  overflow: hidden;
}

.position-pitch::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(244, 240, 223, 0.6);
}

.pitch-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(244, 240, 223, 0.62);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.pitch-box {
  position: absolute;
  left: 50%;
  width: 150px;
  height: 48px;
  border: 1px solid rgba(244, 240, 223, 0.62);
  transform: translateX(-50%);
}

.pitch-box-top {
  top: -1px;
}

.pitch-box-bottom {
  bottom: -1px;
}

.position-pitch .position-grid {
  position: absolute;
  inset: 0;
  display: block;
}

.position-option {
  position: absolute;
  z-index: 2;
  width: 66px;
  transform: translate(-50%, -50%);
}

.position-option[data-position="LW"] { top: 13%; left: 17%; }
.position-option[data-position="ST"] { top: 10%; left: 50%; }
.position-option[data-position="RW"] { top: 13%; left: 83%; }
.position-option[data-position="CAM"] { top: 31%; left: 50%; }
.position-option[data-position="CM"] { top: 49%; left: 50%; }
.position-option[data-position="CDM"] { top: 65%; left: 50%; }
.position-option[data-position="LB"] { top: 70%; left: 16%; }
.position-option[data-position="RB"] { top: 70%; left: 84%; }
.position-option[data-position="CB"] { top: 82%; left: 50%; }
.position-option[data-position="GK"] { top: 94%; left: 50%; }

.position-pitch .position-option span {
  min-height: 38px;
  padding: 0.35rem;
  background: rgba(7, 23, 18, 0.86);
  border-color: rgba(216, 255, 79, 0.28);
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.16);
  font-size: 0.63rem;
}

.position-pitch .position-option input:checked + span {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  box-shadow: 0 0 0 5px rgba(216, 255, 79, 0.13);
}

.career-rating-badge {
  display: grid;
  width: 94px;
  min-width: 94px;
  height: 105px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 4px 4px 24px 4px;
  place-content: center;
  text-align: center;
}

.career-rating-badge strong {
  font-family: var(--display);
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 0.8;
}

.career-rating-badge span {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.game-first-fold .career-hud {
  padding: 0 0 1.5rem;
  justify-content: flex-start;
}

.game-first-fold .career-player {
  min-width: 240px;
}

.game-first-fold .hud-metrics {
  margin-left: auto;
}

/* Dense game console, modelled on the original three-column flow. */
.game-first-fold {
  padding-top: 5.6rem;
  padding-bottom: 1rem;
}

.game-masthead {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.game-masthead h1 {
  font-size: clamp(3rem, 4.35vw, 5rem);
  line-height: 0.84;
}

.masthead-promise {
  max-width: 360px;
  padding: 0.7rem 0 0.25rem 1.25rem;
}

.masthead-promise strong {
  font-size: 2.8rem;
}

.setup-stage {
  min-height: 0;
  padding: 0;
}

.setup-titlebar {
  display: flex;
  min-height: 88px;
  margin: 0;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.setup-titlebar .step-label {
  margin: 0 0 0.25rem;
  font-size: 0.64rem;
}

.setup-titlebar h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.setup-titlebar > p {
  max-width: 380px;
  margin: 0;
  color: rgba(244, 240, 223, 0.62);
  font-size: 0.9rem;
  text-align: right;
}

.setup-console {
  display: grid;
  min-height: 520px;
  padding: 1.1rem;
  grid-template-columns: minmax(270px, 0.82fr) minmax(300px, 1fr) minmax(330px, 1.08fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.setup-console-panel {
  min-width: 0;
  padding: 1rem;
  background: rgba(244, 240, 223, 0.035);
  border: 1px solid rgba(244, 240, 223, 0.12);
  border-radius: 4px;
}

.console-panel-title {
  display: flex;
  min-height: 35px;
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(244, 240, 223, 0.12);
  align-items: center;
  gap: 0.6rem;
}

.console-panel-title span {
  display: grid;
  width: 25px;
  height: 25px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 700;
}

.console-panel-title h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1;
}

.identity-preview {
  display: grid;
  height: 255px;
  align-content: start;
  overflow: hidden;
}

.identity-preview .preview-topline {
  padding-bottom: 0.4rem;
}

.identity-preview .preview-shirt {
  width: min(72%, 230px);
  min-height: 175px;
  margin: 0.65rem auto 0.2rem;
}

.identity-preview .preview-shirt-name {
  font-size: 0.64rem;
}

.identity-preview .preview-shirt strong {
  margin-top: 1.1rem;
  font-size: 4.5rem;
}

.identity-preview .preview-identity strong {
  font-size: 1.55rem;
}

.setup-console .field > span,
.setup-console .choice-fieldset legend {
  margin-bottom: 0.35rem;
  font-size: 0.7rem;
}

.setup-console .field input,
.setup-console .field select {
  height: 50px;
  font-size: 1rem;
}

.setup-console .field-grid-identity {
  margin-top: 0.55rem;
}

.setup-console .segmented-control label span {
  min-height: 46px;
  font-size: 0.72rem;
}

.compact-control {
  margin-top: 0.7rem;
}

.country-search {
  margin-bottom: 0.75rem;
}

.nationality-console .country-quick {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.country-scroll-hint {
  display: none;
}

.nationality-console .country-chip {
  display: flex;
  min-height: 62px;
  padding: 0.65rem 0.75rem;
  justify-content: flex-start;
  gap: 0.65rem;
}

.nationality-console .country-chip span {
  font-size: 1.65rem;
}

.nationality-console .country-chip strong {
  font-size: 0.64rem;
}

.nationality-note {
  display: grid;
  margin-top: 0.85rem;
  padding: 0.8rem;
  color: rgba(244, 240, 223, 0.62);
  background: rgba(216, 255, 79, 0.06);
  border-left: 3px solid var(--acid);
  gap: 0.15rem;
  font-size: 0.77rem;
}

.nationality-note strong {
  color: var(--paper);
  font-size: 0.8rem;
}

.position-console .position-fieldset {
  height: calc(100% - 44px);
}

.position-console .position-pitch {
  height: calc(100% - 26px);
  min-height: 365px;
}

.setup-console-actions {
  display: grid;
  padding: 0.85rem 1rem;
  background: rgba(244, 240, 223, 0.035);
  border: 1px solid rgba(244, 240, 223, 0.12);
  border-radius: 4px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  align-items: end;
  gap: 1rem;
}

.setup-console-actions .pace-grid {
  grid-template-columns: repeat(3, 1fr);
}

.setup-console-actions .pace-option span {
  min-height: 58px;
  padding: 0.55rem 0.7rem;
}

.setup-console-actions .pace-option b {
  font-size: 0.75rem;
}

.setup-console-actions .pace-option small {
  font-size: 0.65rem;
}

.confirm-wrap {
  display: grid;
  gap: 0.35rem;
}

.confirm-wrap > span {
  color: rgba(244, 240, 223, 0.46);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  text-align: right;
  text-transform: uppercase;
}

.confirm-career {
  width: 100%;
  min-height: 58px;
  justify-content: space-between;
}

body[data-game-stage="career"],
body[data-game-stage="result"] {
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

body[data-game-stage="career"] .site-header,
body[data-game-stage="career"] .game-masthead,
body[data-game-stage="result"] .site-header,
body[data-game-stage="result"] .game-masthead {
  display: none;
}

body[data-game-stage="career"] .game-first-fold,
body[data-game-stage="result"] .game-first-fold {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  padding: 0;
}

body[data-game-stage="career"] .game-shell,
body[data-game-stage="result"] .game-shell {
  width: 100%;
  height: 100svh;
  border: 0;
  border-radius: 0;
}

body[data-game-stage="career"] .game-stage,
body[data-game-stage="result"] .game-stage {
  height: calc(100svh - 86px);
  min-height: 0;
}

body[data-game-stage="career"] .career-stage {
  display: flex;
  padding: clamp(0.8rem, 1.8vw, 1.4rem) clamp(0.9rem, 3vw, 2.5rem);
  flex-direction: column;
  overflow: hidden;
}

body[data-game-stage="career"] .career-hud {
  min-height: 92px;
  padding-bottom: 0.65rem;
}

body[data-game-stage="career"] .career-rating-badge {
  width: 78px;
  min-width: 78px;
  height: 84px;
}

body[data-game-stage="career"] .career-rating-badge strong {
  font-size: 3rem;
}

body[data-game-stage="career"] .career-progress {
  margin-top: 0.7rem;
}

body[data-game-stage="career"] .career-years {
  margin-top: 0.3rem;
  font-size: 0.61rem;
}

body[data-game-stage="career"] .block-recap {
  margin: 0.7rem 0;
  gap: 0.35rem;
}

body[data-game-stage="career"] .season-row {
  min-height: 43px;
  padding: 0.5rem 0.7rem;
  font-size: 0.72rem;
}

body[data-game-stage="career"] .season-row:nth-last-child(n + 3) {
  display: none;
}

body[data-game-stage="career"] .decision-card {
  display: flex;
  min-height: min(45svh, 410px);
  padding: clamp(1rem, 2vw, 1.5rem);
  flex: 1;
  flex-direction: column;
}

body[data-game-stage="career"] .decision-card h3 {
  font-size: clamp(2.2rem, 3.7vw, 3.25rem);
}

body[data-game-stage="career"] .decision-card > p:not(.decision-eyebrow) {
  margin: 0.55rem 0 0.9rem;
  font-size: 0.96rem;
  line-height: 1.45;
}

body[data-game-stage="career"] .decision-choice {
  min-height: 68px;
  padding: 0.75rem 0.9rem;
}

body[data-game-stage="career"] .decision-choice strong {
  font-size: 0.96rem;
}

body[data-game-stage="career"] .decision-choice small {
  font-size: 0.76rem;
}

body[data-game-stage="career"] .decision-options {
  margin-top: auto;
}

body[data-game-stage="result"] .result-stage {
  padding-top: 1.2rem;
  overflow: auto;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .game-masthead {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .masthead-promise {
    display: flex;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(244, 240, 223, 0.18);
    border-left: 0;
    align-items: center;
    gap: 1rem;
  }

  .masthead-promise strong {
    min-width: max-content;
  }

  .masthead-promise small {
    margin-left: auto;
  }

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

  .setup-config {
    order: 1;
  }

  .setup-preview-panel {
    position: relative;
    top: auto;
    order: 2;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-art {
    min-height: 640px;
  }

  .section-number {
    display: none;
  }

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

  .quote-card {
    position: relative;
    top: auto;
    max-width: 600px;
  }

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

  .result-card {
    max-width: 460px;
    margin: 0 auto;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 2rem, 1380px);
    min-height: 70px;
  }

  .wordmark {
    font-size: 1.65rem;
  }

  .header-cta {
    font-size: 0.61rem;
  }

  .header-actions {
    gap: 0.55rem;
  }

  .language-switcher a {
    min-width: 30px;
    height: 26px;
    padding: 0 0.35rem;
    font-size: 0.56rem;
  }

  .game-first-fold {
    padding: 6.2rem 0.75rem 3.5rem;
    background-size: auto, 100% 70px, auto;
  }

  .game-masthead {
    margin-bottom: 1.25rem;
    gap: 0.9rem;
  }

  .game-masthead h1 {
    font-size: clamp(3.35rem, 14.8vw, 5.2rem);
    line-height: 0.85;
  }

  .game-masthead .kicker {
    margin-bottom: 0.6rem;
    font-size: 0.61rem;
  }

  .masthead-promise {
    display: grid;
    padding-top: 0.75rem;
    grid-template-columns: auto 1fr;
    gap: 0.15rem 0.75rem;
  }

  .masthead-promise strong {
    grid-row: 1 / 3;
    font-size: 2.7rem;
  }

  .masthead-promise span {
    font-size: 0.75rem;
  }

  .masthead-promise small {
    margin: 0;
    font-size: 0.45rem;
  }

  .game-first-fold .game-shell {
    border-radius: 5px;
  }

  .hero {
    padding: 125px 1.2rem 100px;
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 21vw, 7rem);
  }

  .hero-lead {
    margin-top: 1.6rem;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .no-friction {
    max-width: none;
  }

  .hero-art {
    min-height: 520px;
  }

  .player-card {
    width: min(310px, 79vw);
    min-height: 465px;
    padding: 1.1rem;
  }

  .card-silhouette {
    height: 260px;
  }

  .silhouette-head {
    top: 35px;
    width: 60px;
    height: 66px;
  }

  .silhouette-body {
    width: 215px;
    height: 205px;
  }

  .shirt-number {
    top: 155px;
    font-size: 4.2rem;
  }

  .card-name {
    font-size: 2.65rem;
  }

  .card-rating {
    top: 3.8rem;
    left: 1.8rem;
  }

  .card-rating strong {
    font-size: 5rem;
  }

  .hero-stamp {
    right: 1rem;
    bottom: 40px;
    width: 110px;
    height: 110px;
  }

  .hero-stamp strong {
    font-size: 1.55rem;
  }

  .game-section,
  .editorial-section,
  .article-section,
  .tips-section,
  .faq-section {
    padding: 5.5rem 1rem;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .section-heading h2,
  .article-lead h2,
  .faq-heading h2 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .game-stage {
    min-height: 580px;
    padding: 1.4rem 1rem 2rem;
  }

  .setup-stage {
    min-height: 0;
    padding: 1rem 0.75rem 1.5rem;
  }

  .setup-layout {
    gap: 1.5rem;
  }

  .setup-config {
    padding: 0;
  }

  .setup-config .setup-intro {
    margin-bottom: 1rem;
  }

  .setup-config .setup-intro h2 {
    font-size: 3rem;
  }

  .setup-config .setup-intro > p:last-child {
    font-size: 0.78rem;
  }

  .career-form {
    gap: 1rem;
  }

  .quick-start {
    min-height: 60px;
    padding: 0.85rem;
    font-size: 0.68rem;
  }

  .setup-controls-grid {
    grid-template-columns: 1fr;
  }

  .country-quick {
    grid-template-columns: repeat(3, 1fr);
  }

  .country-chip {
    min-height: 62px;
  }

  .position-pitch {
    height: 310px;
  }

  .position-option {
    width: 56px;
  }

  .position-pitch .position-option span {
    min-height: 34px;
    font-size: 0.56rem;
  }

  .setup-preview-panel {
    min-height: 530px;
    box-shadow: 7px 8px 0 var(--orange);
  }

  .preview-shirt {
    min-height: 275px;
  }

  .preview-shirt strong {
    font-size: 6rem;
  }

  .game-shell-top {
    padding: 0 0.8rem;
  }

  .game-status {
    display: none;
  }

  .field-grid-identity {
    grid-template-columns: 1.6fr 0.7fr;
  }

  .position-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .position-option span {
    min-height: 46px;
    padding: 0.5rem 0.2rem;
    font-size: 0.58rem;
  }

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

  .pace-option span {
    min-height: 62px;
  }

  .career-hud {
    align-items: flex-start;
    flex-direction: column;
  }

  .career-rating-badge {
    width: 80px;
    min-width: 80px;
    height: 88px;
  }

  .career-rating-badge strong {
    font-size: 3rem;
  }

  .game-first-fold .career-player {
    min-width: 0;
  }

  .game-first-fold .hud-metrics {
    display: grid;
    width: 100%;
    margin-left: 0;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.45rem;
  }

  .game-first-fold .hud-metrics strong {
    font-size: 1.35rem;
  }

  .game-section.game-first-fold {
    min-height: 100svh;
    padding: 4.8rem 0.45rem 0.6rem;
  }

  .game-first-fold .game-masthead {
    margin-bottom: 0.6rem;
    gap: 0;
  }

  .game-first-fold .game-masthead h1 {
    font-size: clamp(2.25rem, 10.8vw, 3.2rem);
    line-height: 0.88;
  }

  .game-first-fold .game-masthead h1 br {
    display: none;
  }

  .game-first-fold .game-masthead h1 em {
    margin-left: 0.2em;
  }

  .game-first-fold .game-masthead .kicker {
    margin-bottom: 0.35rem;
    font-size: 0.55rem;
  }

  .game-first-fold .masthead-promise {
    display: none;
  }

  body[data-game-stage="setup"] .game-shell-bottom {
    display: none;
  }

  .setup-titlebar {
    min-height: 58px;
    padding: 0.65rem 0.75rem;
  }

  .setup-titlebar .step-label {
    margin-bottom: 0.15rem;
    font-size: 0.52rem;
  }

  .setup-titlebar h2 {
    font-size: 1.95rem;
  }

  .setup-titlebar > p {
    display: none;
  }

  .setup-console {
    display: grid;
    min-height: 0;
    padding: 0.5rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0.4rem;
  }

  .setup-console-panel {
    padding: 0.55rem;
  }

  .setup-console .console-panel-title {
    display: none;
  }

  .identity-console .identity-preview {
    display: none;
  }

  .setup-console .field-grid-identity {
    margin: 0;
    grid-template-columns: 1.65fr 0.7fr;
    gap: 0.5rem;
  }

  .setup-console .field > span,
  .setup-console .choice-fieldset legend {
    margin-bottom: 0.15rem;
    font-size: 0.61rem;
  }

  .setup-console .field input,
  .setup-console .field select {
    height: 44px;
    padding: 0 0.7rem;
    font-size: 0.95rem;
  }

  .identity-console {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(120px, 0.7fr);
    align-items: end;
    gap: 0.5rem;
  }

  .identity-console .compact-control {
    margin: 0;
    min-width: 0;
  }

  .identity-console .segmented-control {
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem;
  }

  .setup-console .segmented-control label span {
    min-height: 44px;
    padding: 0.4rem;
    font-size: 0.66rem;
  }

  html[lang="es"] .identity-console .segmented-control label span {
    padding: 0.3rem 0.1rem;
    font-size: 0.55rem;
    letter-spacing: 0;
  }

  .nationality-console {
    overflow: hidden;
  }

  .nationality-console .country-search,
  .nationality-console .nationality-note {
    display: none;
  }

  .nationality-console .country-quick {
    display: flex;
    padding: 0.05rem 0 0.15rem;
    gap: 0.4rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nationality-console .country-quick::-webkit-scrollbar {
    display: none;
  }

  .nationality-console .country-chip {
    min-width: 95px;
    min-height: 46px;
    padding: 0.35rem 0.55rem;
    gap: 0.4rem;
  }

  .nationality-console .country-chip span {
    font-size: 1.25rem;
  }

  .nationality-console .country-chip strong {
    font-size: 0.59rem;
  }

  .position-console {
    height: 226px;
  }

  .position-console .position-fieldset {
    height: 100%;
  }

  .position-console .position-fieldset legend {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .position-console .position-pitch {
    height: 100%;
    min-height: 0;
  }

  .position-console .position-option {
    width: 52px;
  }

  .position-console .position-option span {
    min-height: 30px;
    padding: 0.2rem;
    font-size: 0.58rem;
  }

  .setup-console-actions {
    padding: 0.5rem;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .setup-console-actions .pace-fieldset legend {
    display: none;
  }

  .setup-console-actions .pace-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }

  .setup-console-actions .pace-option span {
    min-height: 37px;
    padding: 0.3rem 0.5rem;
    justify-items: center;
  }

  .setup-console-actions .pace-option small {
    display: none;
  }

  .confirm-wrap {
    gap: 0;
  }

  .confirm-wrap > span {
    display: none;
  }

  .confirm-career {
    min-height: 50px;
    padding: 0.65rem 0.8rem;
    font-size: 0.7rem;
  }

  body[data-game-stage="career"] .game-shell-top,
  body[data-game-stage="result"] .game-shell-top {
    min-height: 42px;
  }

  body[data-game-stage="career"] .game-shell-bottom,
  body[data-game-stage="result"] .game-shell-bottom {
    min-height: 28px;
  }

  body[data-game-stage="career"] .game-stage,
  body[data-game-stage="result"] .game-stage {
    height: calc(100svh - 70px);
  }

  body[data-game-stage="career"] .career-stage {
    padding: 0.65rem 0.75rem;
  }

  body[data-game-stage="career"] .career-hud {
    display: grid;
    min-height: 120px;
    padding-bottom: 0.5rem;
    grid-template-columns: 70px minmax(0, 1fr);
    align-items: center;
    gap: 0.5rem 0.7rem;
  }

  body[data-game-stage="career"] .career-rating-badge {
    width: 70px;
    min-width: 70px;
    height: 72px;
  }

  body[data-game-stage="career"] .career-rating-badge strong {
    font-size: 2.7rem;
  }

  body[data-game-stage="career"] .career-player {
    min-width: 0;
  }

  body[data-game-stage="career"] .mini-shirt {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  body[data-game-stage="career"] .career-player strong {
    overflow: hidden;
    font-size: 0.95rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body[data-game-stage="career"] .hud-metrics {
    display: grid;
    width: 100%;
    margin: 0;
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.35rem;
  }

  body[data-game-stage="career"] .hud-metrics strong {
    font-size: 1.3rem;
  }

  body[data-game-stage="career"] .career-progress {
    margin-top: 0.45rem;
  }

  body[data-game-stage="career"] .career-years {
    font-size: 0.5rem;
  }

  body[data-game-stage="career"] .block-recap {
    margin: 0.45rem 0;
  }

  body[data-game-stage="career"] .season-row:nth-last-child(n + 2) {
    display: none;
  }

  body[data-game-stage="career"] .season-row {
    min-height: 39px;
    padding: 0.35rem 0.5rem;
    font-size: 0.68rem;
  }

  body[data-game-stage="career"] .decision-card {
    min-height: 0;
    padding: 0.85rem;
  }

  body[data-game-stage="career"] .decision-eyebrow {
    margin-bottom: 0.4rem;
    font-size: 0.59rem;
  }

  body[data-game-stage="career"] .decision-card h3 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
    line-height: 0.95;
  }

  body[data-game-stage="career"] .decision-card > p:not(.decision-eyebrow) {
    margin: 0.45rem 0 0.65rem;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  body[data-game-stage="career"] .decision-options {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  body[data-game-stage="career"] .decision-choice {
    min-height: 60px;
    padding: 0.55rem 0.7rem;
  }

  body[data-game-stage="career"] .decision-choice strong {
    font-size: 0.92rem;
  }

  body[data-game-stage="career"] .decision-choice small {
    font-size: 0.72rem;
  }

  body[data-game-stage="result"] .result-stage {
    padding: 0.65rem 0.75rem calc(5rem + env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    scroll-padding-bottom: calc(4rem + env(safe-area-inset-bottom));
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  body[data-game-stage="result"] .result-head {
    margin-bottom: 0.55rem;
  }

  body[data-game-stage="result"] .result-head .step-label {
    margin: 0 0 0.15rem;
    font-size: 0.52rem;
  }

  body[data-game-stage="result"] .result-head h3 {
    font-size: 2.45rem;
  }

  body[data-game-stage="result"] .result-head > p:last-child {
    display: none;
  }

  body[data-game-stage="result"] .result-grid {
    display: block;
  }

  body[data-game-stage="result"] .result-card {
    height: 465px;
    min-height: 0;
    padding: 1rem;
    box-shadow: 7px 8px 0 var(--orange);
    transform: none;
  }

  body[data-game-stage="result"] .result-player-row {
    margin-top: 1.1rem;
  }

  body[data-game-stage="result"] .result-rating strong {
    font-size: 4.5rem;
  }

  body[data-game-stage="result"] .result-player-row h4 {
    font-size: 2.6rem;
  }

  body[data-game-stage="result"] .result-club-line {
    margin: 0.8rem 0;
    padding: 0.5rem 0;
    font-size: 0.66rem;
  }

  body[data-game-stage="result"] .result-stat-grid div {
    padding: 0.45rem 0.6rem;
  }

  body[data-game-stage="result"] .result-stat-grid strong {
    font-size: 1.7rem;
  }

  body[data-game-stage="result"] .result-score {
    margin-top: 0.4rem;
    padding: 0.55rem 0.65rem;
  }

  body[data-game-stage="result"] .result-score strong {
    font-size: 1.65rem;
  }

  body[data-game-stage="result"] .result-verdict-line {
    margin-top: 0.5rem;
    font-size: 1.45rem;
  }

  body[data-game-stage="result"] .result-details {
    margin-top: 0.65rem;
    gap: 0.4rem;
  }

  body[data-game-stage="result"] .result-detail-grid,
  body[data-game-stage="result"] .honours-list,
  body[data-game-stage="result"] .share-feedback {
    display: none;
  }

  body[data-game-stage="result"] .result-actions {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  body[data-game-stage="result"] .result-actions .button {
    min-height: 42px;
    padding: 0.55rem 0.65rem;
    gap: 0.35rem;
    font-size: 0.7rem;
  }

  body[data-game-stage="result"] .result-socials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.3rem;
  }

  body[data-game-stage="result"] .social-result-button {
    min-width: 0;
    min-height: 44px;
    padding: 0.4rem 0.45rem;
    gap: 0.25rem;
    font-size: 0.58rem;
    letter-spacing: 0;
  }

  body[data-game-stage="result"] .social-result-button strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  body[data-game-stage="result"] .social-result-button span {
    font-size: 1.1rem;
  }

  body[data-game-stage="result"] .text-button {
    padding: 0.25rem 0;
    font-size: 0.68rem;
    text-align: center;
  }

  .hud-metrics {
    width: 100%;
    justify-content: space-between;
  }

  .hud-metrics div {
    text-align: left;
  }

  .season-row {
    grid-template-columns: 50px 1fr repeat(2, auto);
    gap: 0.45rem;
  }

  .season-row span:nth-of-type(2),
  .season-row span:nth-of-type(3) {
    display: none;
  }

  .decision-options {
    grid-template-columns: 1fr;
  }

  .result-actions {
    grid-template-columns: 1fr;
  }

  .text-button {
    grid-column: auto;
  }

  .proof-strip {
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip div {
    min-height: 120px;
    border-bottom: 1px solid rgba(7, 23, 18, 0.18);
  }

  .proof-strip strong {
    font-size: 3.3rem;
  }

  .story-layout {
    margin-top: 3rem;
  }

  .story-steps article {
    grid-template-columns: 48px 1fr;
  }

  .quote-card {
    padding: 2rem;
  }

  .article-lead {
    grid-template-columns: 1fr;
  }

  .article-lead h2 {
    text-align: left;
  }

  .article-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .tip-grid article:nth-child(n) {
    min-height: auto;
    grid-column: 1;
  }

  .tip-grid article > span {
    margin-bottom: 2rem;
  }

  .final-cta {
    min-height: 430px;
    padding: 4.5rem 1.2rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .final-cta h2 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .site-footer {
    padding: 3rem 1.2rem;
    grid-template-columns: 1fr;
  }

  .site-footer p,
  .site-footer .footer-note,
  .site-footer > span {
    justify-self: start;
    text-align: left;
  }
}

/* Career simulator: club-offer loop and persistent full-career timeline */
body[data-game-stage="career"] .career-stage {
  padding: clamp(0.65rem, 1.4vw, 1.15rem);
}

body[data-game-stage="career"] .game-first-fold,
body[data-game-stage="career"] .game-shell,
body[data-game-stage="result"] .game-first-fold,
body[data-game-stage="result"] .game-shell {
  height: 100dvh;
  min-height: 100dvh;
}

body[data-game-stage="career"] .game-stage,
body[data-game-stage="result"] .game-stage {
  height: calc(100dvh - 86px);
}

.career-layout {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  grid-template-columns: minmax(0, 1.04fr) minmax(500px, 0.96fr);
  gap: clamp(0.65rem, 1.4vw, 1.2rem);
}

.career-main {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
}

body[data-game-stage="career"] .career-hud {
  min-height: 88px;
  padding-bottom: 0.55rem;
  gap: 0.8rem;
}

body[data-game-stage="career"] .career-rating-badge {
  width: 72px;
  min-width: 72px;
  height: 78px;
}

body[data-game-stage="career"] .career-rating-badge strong {
  font-size: 2.8rem;
}

.mini-shirt {
  background: var(--kit-background, var(--orange));
  text-shadow: 0 1px 2px rgba(7, 23, 18, 0.55);
}

body[data-game-stage="career"] .hud-metrics {
  gap: clamp(0.65rem, 1.45vw, 1.65rem);
}

body[data-game-stage="career"] .hud-metrics strong {
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

body[data-game-stage="career"] .career-progress {
  margin-top: 0.55rem;
}

body[data-game-stage="career"] .career-years {
  margin-top: 0.25rem;
}

body[data-game-stage="career"] .decision-card {
  display: flex;
  min-height: 0;
  margin-top: 0.65rem;
  padding: clamp(0.9rem, 1.6vw, 1.35rem);
  color: var(--paper);
  background:
    radial-gradient(circle at 94% 0%, rgba(216, 255, 79, 0.08), transparent 32%),
    rgba(244, 240, 223, 0.045);
  border: 1px solid rgba(244, 240, 223, 0.11);
  border-radius: 12px;
  flex: 1;
  flex-direction: column;
}

body[data-game-stage="career"] .decision-card::after {
  display: none;
}

body[data-game-stage="career"] .decision-eyebrow {
  margin-bottom: 0.35rem;
  color: var(--acid);
  font-size: 0.58rem;
}

body[data-game-stage="career"] .decision-card h3 {
  max-width: none;
  font-size: clamp(1.85rem, 3.1vw, 2.85rem);
  line-height: 0.95;
}

body[data-game-stage="career"] .decision-card > p:not(.decision-eyebrow) {
  max-width: 660px;
  margin: 0.4rem 0 0.75rem;
  color: rgba(244, 240, 223, 0.58);
  font-size: 0.86rem;
  line-height: 1.35;
}

body[data-game-stage="career"] .decision-options {
  display: grid;
  margin-top: 0.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.season-transition {
  position: absolute;
  z-index: 6;
  inset: 0;
  display: grid;
  padding: clamp(1rem, 4vw, 2.5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(216, 255, 79, 0.16), transparent 34%),
    rgba(7, 23, 18, 0.98);
  align-content: center;
  gap: 0.65rem;
}

.season-transition[hidden] {
  display: none;
}

.season-transition::before {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 11.8%,
    rgba(244, 240, 223, 0.035) 12%,
    transparent 12.2%
  );
  pointer-events: none;
}

.season-transition-kicker,
.season-transition strong,
.season-transition-track {
  position: relative;
  z-index: 1;
}

.season-transition-kicker {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.season-transition strong {
  max-width: 560px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}

.season-transition-track {
  display: block;
  width: min(100%, 560px);
  height: 6px;
  margin-top: 0.35rem;
  overflow: hidden;
  background: rgba(244, 240, 223, 0.12);
}

.season-transition-track i {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--acid);
  animation: season-progress 760ms ease-in-out infinite;
}

@keyframes season-progress {
  from {
    transform: translateX(-105%);
  }
  to {
    transform: translateX(345%);
  }
}

body[data-game-stage="career"] .is-club-offer .decision-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-game-stage="career"] .decision-choice {
  min-height: 72px;
  color: var(--paper);
  border-color: rgba(244, 240, 223, 0.17);
  border-radius: 9px;
}

body[data-game-stage="career"] .decision-choice:hover {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

body[data-game-stage="career"] .decision-choice:disabled {
  cursor: wait;
  opacity: 0.55;
}

body[data-game-stage="career"] .club-choice {
  display: grid;
  min-height: clamp(150px, 23svh, 205px);
  padding: 0.65rem;
  grid-template-rows: auto 1fr auto auto;
  justify-items: center;
  gap: 0.3rem;
  text-align: center;
}

body[data-game-stage="career"] .club-choice-action {
  margin: 0;
  color: var(--orange);
  opacity: 1;
  font-family: var(--mono);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

body[data-game-stage="career"] .club-choice:hover .club-choice-action {
  color: var(--ink);
}

.club-crest {
  position: relative;
  display: grid;
  width: clamp(48px, 5vw, 68px);
  height: clamp(56px, 5.8vw, 78px);
  color: var(--club-secondary);
  place-items: center;
  align-self: center;
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  letter-spacing: 0.03em;
}

.club-crest img,
.timeline-crest img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 7px rgba(0, 0, 0, 0.28));
}

.club-crest-fallback {
  display: grid;
  width: 88%;
  height: 88%;
  color: var(--club-secondary);
  background:
    linear-gradient(145deg, transparent 0 44%, rgba(255, 255, 255, 0.22) 45% 53%, transparent 54%),
    var(--club-primary);
  border: 2px solid currentColor;
  border-radius: 50% 50% 44% 44% / 38% 38% 62% 62%;
  place-items: center;
}

.has-crest-image > .club-crest-fallback {
  display: none;
}

body[data-game-stage="career"] .club-choice strong {
  overflow: hidden;
  max-width: 100%;
  font-size: clamp(0.78rem, 1.15vw, 1rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-game-stage="career"] .club-choice-detail {
  overflow: hidden;
  max-width: 100%;
  margin: 0;
  color: rgba(244, 240, 223, 0.5);
  font-family: var(--mono);
  font-size: 0.53rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-game-stage="career"] .club-choice:hover .club-choice-detail {
  color: rgba(7, 23, 18, 0.65);
}

.retire-choice .retirement-crest {
  color: var(--paper);
}

.retire-choice .retirement-crest .club-crest-fallback {
  background: rgba(244, 240, 223, 0.08);
  border-style: dashed;
}

.career-timeline-panel {
  display: flex;
  min-width: 0;
  min-height: 0;
  padding: 0.65rem;
  background: rgba(244, 240, 223, 0.025);
  border: 1px solid rgba(244, 240, 223, 0.09);
  border-radius: 12px;
  flex-direction: column;
}

.timeline-heading,
.timeline-row {
  display: grid;
  grid-template-columns: 52px minmax(140px, 1fr) repeat(4, minmax(42px, 0.36fr));
  align-items: center;
  gap: 0.5rem;
}

.timeline-heading {
  min-height: 28px;
  padding: 0 0.55rem;
  color: rgba(244, 240, 223, 0.3);
  font-family: var(--mono);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.timeline-heading span:not(:nth-child(2)) {
  text-align: center;
}

body[data-game-stage="career"] .career-timeline {
  display: grid;
  min-height: 0;
  margin: 0;
  flex: 1;
  grid-auto-rows: minmax(0, 1fr);
  gap: 0.28rem;
}

body[data-game-stage="career"] .timeline-row {
  min-height: 0;
  padding: 0.3rem 0.55rem;
  color: rgba(244, 240, 223, 0.58);
  background: rgba(244, 240, 223, 0.025);
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.63rem;
}

body[data-game-stage="career"] .timeline-row:nth-last-child(n + 2),
body[data-game-stage="career"] .timeline-row:nth-last-child(n + 3) {
  display: grid;
}

body[data-game-stage="career"] .timeline-row > span:not(.season-club) {
  display: block;
  text-align: center;
}

body[data-game-stage="career"] .timeline-age {
  display: grid;
  width: 36px;
  height: 30px;
  color: rgba(244, 240, 223, 0.72);
  background: rgba(244, 240, 223, 0.07);
  border-radius: 7px;
  place-items: center;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 400;
}

body[data-game-stage="career"] .timeline-row .season-club {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
}

body[data-game-stage="career"] .timeline-row .season-club > span:last-child {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.timeline-crest {
  position: relative;
  display: grid;
  width: 26px;
  min-width: 26px;
  height: 30px;
  color: var(--club-secondary, rgba(244, 240, 223, 0.5));
  place-items: center;
  font-family: var(--mono);
  font-size: 0.42rem;
  font-weight: 800;
}

.timeline-crest .club-crest-fallback {
  border-width: 1px;
}

body[data-game-stage="career"] .timeline-row.is-current {
  color: var(--paper);
  background: rgba(244, 240, 223, 0.08);
  border-color: rgba(216, 255, 79, 0.35);
}

body[data-game-stage="career"] .timeline-row.is-current .timeline-age {
  color: var(--ink);
  background: var(--acid);
}

body[data-game-stage="career"] .timeline-row.is-future {
  opacity: 0.23;
}

body[data-game-stage="career"] .timeline-row.has-honour {
  box-shadow: inset 3px 0 0 var(--orange);
}

@media (max-width: 1100px) and (min-width: 721px) {
  .career-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  }

  body[data-game-stage="career"] .career-hud {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
  }

  body[data-game-stage="career"] .hud-metrics {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, 1fr);
  }

  .timeline-heading,
  .timeline-row {
    grid-template-columns: 40px minmax(90px, 1fr) repeat(4, minmax(30px, 0.3fr));
    gap: 0.28rem;
  }

  body[data-game-stage="career"] .timeline-row {
    padding-inline: 0.35rem;
  }
}

@media (max-width: 720px) {
  body[data-game-stage="career"] .game-stage,
  body[data-game-stage="result"] .game-stage {
    height: calc(100dvh - 70px);
  }

  body[data-game-stage="career"] .career-stage {
    padding: 0.45rem 0.5rem;
  }

  .career-layout {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .career-main {
    flex: 0 0 auto;
  }

  body[data-game-stage="career"] .career-hud {
    display: grid;
    min-height: 100px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 0.25rem 0.55rem;
  }

  body[data-game-stage="career"] .career-rating-badge {
    width: 58px;
    min-width: 58px;
    height: 60px;
  }

  body[data-game-stage="career"] .career-rating-badge strong {
    font-size: 2.25rem;
  }

  body[data-game-stage="career"] .mini-shirt {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  body[data-game-stage="career"] .career-player {
    gap: 0.45rem;
  }

  body[data-game-stage="career"] .career-player strong {
    font-size: 0.8rem;
  }

  body[data-game-stage="career"] .hud-metrics {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.2rem;
  }

  body[data-game-stage="career"] .hud-metrics div {
    text-align: center;
  }

  body[data-game-stage="career"] .hud-metrics strong {
    font-size: 1.1rem;
  }

  body[data-game-stage="career"] .career-years {
    font-size: 0.46rem;
  }

  body[data-game-stage="career"] .decision-card {
    min-height: 222px;
    margin-top: 0.35rem;
    padding: 0.62rem;
    flex: none;
  }

  body[data-game-stage="career"] .decision-card h3 {
    font-size: clamp(1.55rem, 7.2vw, 2rem);
  }

  body[data-game-stage="career"] .decision-card > p:not(.decision-eyebrow) {
    margin: 0.25rem 0 0.42rem;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  body[data-game-stage="career"] .decision-options,
  body[data-game-stage="career"] .is-club-offer .decision-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.3rem;
  }

  body[data-game-stage="career"] .decision-card:not(.is-club-offer) .decision-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-game-stage="career"] .club-choice {
    min-height: 126px;
    padding: 0.4rem 0.25rem;
    gap: 0.18rem;
  }

  body[data-game-stage="career"] .club-choice-action {
    font-size: 0.43rem;
  }

  .club-crest {
    width: 38px;
    height: 44px;
    border-width: 2px;
    font-size: 0.82rem;
  }

  body[data-game-stage="career"] .club-choice strong {
    font-size: 0.64rem;
  }

  body[data-game-stage="career"] .club-choice-detail {
    font-size: 0.42rem;
  }

  body[data-game-stage="career"] .decision-card:not(.is-club-offer) .decision-choice {
    min-height: 58px;
    padding: 0.45rem;
  }

  body[data-game-stage="career"] .decision-card:not(.is-club-offer) .decision-choice strong {
    font-size: 0.72rem;
  }

  body[data-game-stage="career"] .decision-card:not(.is-club-offer) .decision-choice small {
    font-size: 0.56rem;
  }

  .career-timeline-panel {
    height: auto;
    min-height: 0;
    padding: 0.28rem;
    flex: 1;
  }

  .timeline-heading {
    display: none;
  }

  body[data-game-stage="career"] .career-timeline {
    display: grid;
    overflow: hidden;
    grid-auto-rows: 49px;
    gap: 0.28rem;
    scrollbar-width: none;
  }

  body[data-game-stage="career"] .career-timeline::-webkit-scrollbar {
    display: none;
  }

  body[data-game-stage="career"] .timeline-row {
    display: grid;
    width: 100%;
    min-width: 0;
    height: 49px;
    min-height: 49px;
    padding: 0.3rem;
    grid-template-columns: 38px minmax(100px, 1fr) 35px;
    gap: 0.3rem;
  }

  body[data-game-stage="career"] .timeline-row > span:nth-last-child(-n + 3) {
    display: none;
  }

  body[data-game-stage="career"] .timeline-row .season-club {
    display: flex;
    font-size: 0.7rem;
  }

  body[data-game-stage="career"] .timeline-age {
    display: grid;
  }
}

/* Keep the site frame visible while the simulator occupies the viewport. */
body[data-game-stage="career"] .site-header,
body[data-game-stage="result"] .site-header {
  position: fixed;
  top: 0;
  display: grid;
  width: 100%;
  min-height: 56px;
  padding: 0 max(1rem, calc((100vw - 1380px) / 2));
  background: rgba(7, 23, 18, 0.98);
  border-bottom-color: rgba(244, 240, 223, 0.16);
}

body[data-game-stage="career"] .site-header .wordmark,
body[data-game-stage="result"] .site-header .wordmark {
  font-size: 1.55rem;
}

body[data-game-stage="career"] .site-header .wordmark-ball,
body[data-game-stage="result"] .site-header .wordmark-ball {
  width: 1.1rem;
  height: 1.1rem;
}

body[data-game-stage="career"] .game-first-fold,
body[data-game-stage="result"] .game-first-fold {
  position: fixed;
  z-index: 5;
  inset: 56px 0 34px;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: hidden;
}

body[data-game-stage="career"] .game-shell,
body[data-game-stage="result"] .game-shell {
  height: 100%;
  min-height: 0;
}

body[data-game-stage="career"] .game-stage,
body[data-game-stage="result"] .game-stage {
  height: calc(100% - 86px);
}

body[data-game-stage="career"] .site-footer,
body[data-game-stage="result"] .site-footer {
  position: fixed;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 34px;
  padding: 0 max(1rem, calc((100vw - 1380px) / 2));
  border-top: 1px solid rgba(244, 240, 223, 0.14);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body[data-game-stage="career"] .site-footer p,
body[data-game-stage="result"] .site-footer p {
  display: none;
}

body[data-game-stage="career"] .site-footer .footer-wordmark,
body[data-game-stage="result"] .site-footer .footer-wordmark {
  font-size: 1.05rem;
}

body[data-game-stage="career"] .site-footer .wordmark-ball,
body[data-game-stage="result"] .site-footer .wordmark-ball {
  width: 0.75rem;
  height: 0.75rem;
  border-width: 1px;
}

body[data-game-stage="career"] .site-footer > span,
body[data-game-stage="result"] .site-footer > span {
  color: rgba(244, 240, 223, 0.54);
  font-size: 0.65rem;
}

/* Readability pass: mono is reserved for short interface labels, not body copy. */
.button {
  font-size: 0.82rem;
}

.site-nav a,
.header-cta {
  font-size: 0.82rem;
}

.language-switcher a {
  font-size: 0.8rem;
}

.game-shell-top,
.game-shell-bottom {
  font-size: 0.75rem;
}

.game-shell-bottom {
  font-size: 0.7rem;
}

.field > span,
.choice-fieldset legend {
  font-size: 0.8rem;
}

.pace-option small,
.decision-choice small {
  font-family: var(--body);
  font-size: 0.8rem;
  line-height: 1.35;
}

.country-chip strong,
.position-option span,
.pace-option b {
  font-size: 0.8rem;
}

.career-player span,
.hud-metrics span {
  font-size: 0.74rem;
}

body[data-game-stage="career"] .decision-eyebrow,
.result-head .step-label {
  font-size: 0.76rem;
}

body[data-game-stage="career"] .decision-card > p:not(.decision-eyebrow) {
  color: rgba(244, 240, 223, 0.72);
  font-family: var(--body);
  font-size: 0.98rem;
  line-height: 1.4;
}

body[data-game-stage="career"] .club-choice-action {
  font-size: 0.76rem;
}

body[data-game-stage="career"] .club-choice-detail {
  color: rgba(244, 240, 223, 0.68);
  font-family: var(--body);
  font-size: 0.78rem;
}

.timeline-heading {
  font-size: 0.76rem;
}

body[data-game-stage="career"] .timeline-row {
  font-size: 0.77rem;
}

body[data-game-stage="career"] .timeline-row .season-club {
  font-size: 0.8rem;
}

.result-detail-grid span,
.result-stat-grid span,
.result-score span,
.honour-chip {
  font-size: 0.74rem;
}

.result-card-top,
.result-rating span,
.result-player-row p {
  font-size: 0.76rem;
}

.result-club-line {
  font-size: 0.78rem;
}

.text-button,
.share-feedback {
  font-size: 0.76rem;
}

@media (max-width: 720px) {
  body[data-game-stage="career"] .site-header,
  body[data-game-stage="result"] .site-header {
    min-height: 48px;
    padding-inline: 0.75rem;
  }

  body[data-game-stage="career"] .site-header .wordmark,
  body[data-game-stage="result"] .site-header .wordmark {
    font-size: 1.35rem;
  }

  body[data-game-stage="career"] .site-header .header-cta,
  body[data-game-stage="result"] .site-header .header-cta {
    font-size: 0.78rem;
  }

  body[data-game-stage="career"] .game-first-fold,
  body[data-game-stage="result"] .game-first-fold {
    inset: 48px 0 30px;
  }

  body[data-game-stage="career"] .site-footer,
  body[data-game-stage="result"] .site-footer {
    height: 30px;
    padding-inline: 0.75rem;
  }

  body[data-game-stage="career"] .site-footer .footer-wordmark,
  body[data-game-stage="result"] .site-footer .footer-wordmark {
    font-size: 0.95rem;
  }

  body[data-game-stage="career"] .site-footer > span,
  body[data-game-stage="result"] .site-footer > span {
    display: inline;
    font-size: 0.68rem;
  }

  body[data-game-stage="career"] .game-shell-top,
  body[data-game-stage="result"] .game-shell-top {
    min-height: 38px;
    font-size: 0.72rem;
  }

  body[data-game-stage="career"] .game-shell-bottom,
  body[data-game-stage="result"] .game-shell-bottom {
    min-height: 24px;
    font-size: 0.7rem;
  }

  body[data-game-stage="career"] .game-stage,
  body[data-game-stage="result"] .game-stage {
    height: calc(100% - 62px);
  }

  .setup-titlebar .step-label,
  .setup-console .field > span,
  .setup-console .choice-fieldset legend {
    font-size: 0.78rem;
  }

  .setup-console .segmented-control label span,
  html[lang="es"] .identity-console .segmented-control label span,
  .nationality-console .country-chip strong,
  .position-console .position-option span {
    font-size: 0.78rem;
  }

  .country-scroll-hint {
    display: block;
    margin: 0.15rem 0 0;
    color: rgba(244, 240, 223, 0.62);
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: right;
    text-transform: uppercase;
  }

  body[data-game-stage="career"] .career-years {
    font-size: 0.74rem;
  }

  body[data-game-stage="career"] .decision-eyebrow {
    font-size: 0.75rem;
  }

  body[data-game-stage="career"] .decision-card > p:not(.decision-eyebrow) {
    font-size: 0.88rem;
    line-height: 1.36;
  }

  body[data-game-stage="career"] .club-choice-action {
    font-size: 0.72rem;
  }

  body[data-game-stage="career"] .club-choice strong {
    font-size: 0.88rem;
  }

  body[data-game-stage="career"] .club-choice-detail {
    font-size: 0.76rem;
  }

  body[data-game-stage="career"] .decision-card:not(.is-club-offer) .decision-choice strong {
    font-size: 0.82rem;
  }

  body[data-game-stage="career"] .decision-card:not(.is-club-offer) .decision-choice small {
    font-size: 0.78rem;
  }

  body[data-game-stage="result"] .social-result-button {
    font-size: 0.76rem;
  }

  body[data-game-stage="result"] .social-result-button span {
    font-size: 1.18rem;
  }
}

@media (max-width: 720px) and (max-height: 740px) {
  body[data-game-stage="setup"] .setup-console {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  }

  body[data-game-stage="setup"] .confirm-wrap {
    position: fixed;
    z-index: 40;
    right: 0.5rem;
    bottom: max(0.45rem, env(safe-area-inset-bottom));
    left: 0.5rem;
    padding: 0.38rem;
    background: rgba(7, 23, 18, 0.96);
    border: 1px solid rgba(216, 255, 79, 0.32);
    box-shadow: 0 -10px 28px rgba(7, 23, 18, 0.42);
    backdrop-filter: blur(12px);
  }

  body[data-game-stage="setup"] .confirm-career {
    min-height: 52px;
    font-size: 0.82rem;
  }
}

@media (min-width: 1001px) and (max-height: 950px) {
  body[data-game-stage="result"] .result-stage {
    padding: 0.7rem clamp(1rem, 3vw, 2.5rem) 1.2rem;
  }

  body[data-game-stage="result"] .result-head {
    margin-bottom: 0.65rem;
  }

  body[data-game-stage="result"] .result-head h3 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
  }

  body[data-game-stage="result"] .result-head > p:last-child {
    margin-top: 0.25rem;
    font-size: 0.9rem;
  }

  body[data-game-stage="result"] .result-grid {
    gap: clamp(1.25rem, 3vw, 2.5rem);
  }

  body[data-game-stage="result"] .result-card {
    min-height: 0;
    padding: 1rem;
    box-shadow: 9px 10px 0 var(--orange);
  }

  body[data-game-stage="result"] .result-player-row {
    margin-top: 1rem;
  }

  body[data-game-stage="result"] .result-rating strong {
    font-size: 4.5rem;
  }

  body[data-game-stage="result"] .result-player-row h4 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
  }

  body[data-game-stage="result"] .result-club-line {
    margin: 0.8rem 0;
    padding: 0.55rem 0;
  }

  body[data-game-stage="result"] .result-stat-grid div {
    padding: 0.48rem 0.65rem;
  }

  body[data-game-stage="result"] .result-stat-grid strong,
  body[data-game-stage="result"] .result-score strong {
    font-size: 1.7rem;
  }

  body[data-game-stage="result"] .result-score {
    padding: 0.55rem 0.7rem;
  }

  body[data-game-stage="result"] .result-verdict-line {
    margin-top: 0.55rem;
    font-size: 1.55rem;
  }

  body[data-game-stage="result"] .result-details {
    gap: 0.65rem;
  }

  body[data-game-stage="result"] .result-detail-grid div,
  body[data-game-stage="result"] .honours-list {
    padding: 0.7rem;
  }

  body[data-game-stage="result"] .result-detail-grid strong {
    font-size: 1.55rem;
  }

  body[data-game-stage="result"] .honours-list h4 {
    margin-bottom: 0.5rem;
  }

  body[data-game-stage="result"] .result-actions {
    gap: 0.4rem;
  }

  body[data-game-stage="result"] .social-result-button {
    min-height: 3rem;
  }
}

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