/* AF5 League — design tokens from live Astra theme */
:root {
  --lime: #b6e925;
  --bg: #0f0f0f;
  --bg-deep: #080808;
  --text: #d8d8d8;
  --white: #ffffff;
  --nav-muted: rgba(255, 255, 255, 0.75);
  --stream-red: #8f0000;
  --discord: #5865f2;
  --font-body: "Roboto", sans-serif;
  --font-display: "Oswald", sans-serif;
  --max: 1200px;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--lime);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--lime);
  color: #000;
  padding: 0.5rem 1rem;
}

.skip-link:focus {
  left: 0;
}

/* ——— Header ——— */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-h);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-link img {
  width: 75px;
  height: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-desktop a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--nav-muted);
  text-transform: none;
  letter-spacing: 0;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--white);
}

.nav-desktop a[aria-current="page"] {
  border-bottom-color: var(--lime);
}

.btn-stream {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white) !important;
  background: transparent;
  border: 2px solid var(--stream-red);
  padding: 12px 24px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-stream:hover {
  background: var(--stream-red);
  color: var(--bg-deep) !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--lime);
  cursor: pointer;
  padding: 8px;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.nav-mobile {
  display: none;
  background: #fff;
  padding: 1rem 1.25rem 1.5rem;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  color: #2e2e2e;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.nav-mobile a[aria-current="page"] {
  color: #0f0f0f;
  font-weight: 700;
}

@media (max-width: 921px) {
  .nav-desktop,
  .btn-stream {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

/* ——— Shared page chrome ——— */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  padding-top: var(--header-h);
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 0.35rem;
}

.headline {
  font-size: clamp(32px, 5vw, 47px);
  margin: 0 0 1rem;
}

.headline-lg {
  font-size: clamp(40px, 8vw, 80px);
}

.body-lg {
  font-size: 21px;
  line-height: 1.55;
  color: var(--text);
  max-width: 34em;
}

.body-lg + .body-lg {
  margin-top: 1em;
}

.accent-rule {
  width: 48px;
  height: 4px;
  background: var(--lime);
  margin: 0.75rem 0 2rem;
  border: none;
}

.discord-link {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--discord) !important;
  margin-top: 1.5rem;
  padding: 0.9rem 0;
}

.discord-link:hover {
  color: #7289da !important;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--bg-deep) !important;
  background: var(--lime);
  border: 2px solid var(--lime);
  padding: 14px 38px;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

button.btn-primary {
  appearance: none;
  -webkit-appearance: none;
}

.btn-primary:hover {
  background: var(--lime);
  border-color: var(--lime);
  filter: brightness(1.05);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime) !important;
  background: transparent;
  border: 1px solid var(--lime);
  border-radius: 5px;
  padding: 12px 28px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--lime);
  color: var(--bg-deep) !important;
}

.icon-list {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 6px;
}

.icon-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: var(--lime);
  clip-path: polygon(0 0, 70% 50%, 0 100%);
}

/* ——— Home sections ——— */
.section {
  position: relative;
  overflow: hidden;
  padding: 104px 40px;
}

.section-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
}

.section--hero {
  min-height: 469px;
  padding-top: 103px;
  padding-bottom: 104px;
  background-image: url("../assets/shapes/custom-bike-builder-story-section-bg.svg");
  background-repeat: no-repeat;
  background-position: 63vw 26vh;
  background-size: 51%;
  background-attachment: fixed;
}

.section--hero .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 105px;
  align-items: stretch;
}

.section--intro {
  padding: 104px 40px;
  position: relative;
  overflow: visible;
}

/* Left SVG cropped at x=360 — removes far-left diagonal only */
.section--intro::after {
  content: "";
  position: absolute;
  left: 18.75%;
  bottom: 0;
  width: 31.25%;
  height: 100%;
  background-image: url("../assets/shapes/custom-bike-builder-service-section-bg-l-cropped.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.section--intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/shapes/custom-bike-builder-service-section-bg-r.svg");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 20%;
  pointer-events: none;
  z-index: 0;
}

.section--intro .section-inner--intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 105px;
  max-width: var(--max);
}

.section--intro .intro-copy {
  grid-column: 2;
  max-width: 34em;
}

.section--quote {
  min-height: 393px;
  padding: 40px;
  /* SVG only — includes lime quotes + shapes with transparent bg.
     The JPEG had a solid black square that clipped the green design. */
  background-image: url("../assets/shapes/custom-bike-builder-testimonial-section-bg.svg");
  background-repeat: no-repeat;
  background-position: 50vw 6vh;
  background-size: auto;
}

.section--quote .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-end;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  max-width: 16ch;
  margin-bottom: 1.25rem;
}

.quote-attr {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--lime);
  text-align: right;
}

.section--tournaments {
  padding: 66px 40px 80px;
}

.section--tournaments .section-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.section--tournaments .tournaments-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 280px;
}

.player-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 118px);
  column-gap: 2.85rem;
  row-gap: 2rem;
}

.player-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* Haxball avatar socket + red disc (matches reference layout) */
.player-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #262626;
  border: 1px solid #333;
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.55),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.player-avatar__disc {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 38%, #f03e3e 0%, #e0242b 52%, #c81e1e 100%);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    inset 0 -2px 4px rgba(0, 0, 0, 0.28);
}

@keyframes avatar-glow-flicker {
  0%,
  100% {
    text-shadow:
      0 0 2px rgba(255, 255, 255, 1),
      0 0 6px rgba(255, 255, 255, 0.9),
      0 0 12px rgba(255, 255, 255, 0.55),
      0 0 20px rgba(255, 255, 255, 0.28);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 1))
      drop-shadow(0 0 8px rgba(255, 255, 255, 0.45));
  }

  42%,
  58% {
    text-shadow:
      0 0 1px rgba(255, 255, 255, 0.75),
      0 0 4px rgba(255, 255, 255, 0.45),
      0 0 10px rgba(255, 255, 255, 0.2),
      0 0 16px rgba(255, 255, 255, 0.08);
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.55))
      drop-shadow(0 0 5px rgba(255, 255, 255, 0.18));
  }

  50% {
    text-shadow:
      0 0 1px rgba(255, 255, 255, 0.6),
      0 0 3px rgba(255, 255, 255, 0.35),
      0 0 8px rgba(255, 255, 255, 0.12),
      0 0 14px rgba(255, 255, 255, 0.04);
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.4))
      drop-shadow(0 0 4px rgba(255, 255, 255, 0.1));
  }
}

.player-avatar__mark {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 1),
    0 0 6px rgba(255, 255, 255, 0.85),
    0 0 12px rgba(255, 255, 255, 0.45),
    0 0 20px rgba(255, 255, 255, 0.2);
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
  animation: avatar-glow-flicker 4.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .player-avatar__mark {
    animation: none;
  }
}

.player-avatar__mark--tw {
  font-size: 20px;
  letter-spacing: -0.06em;
}

.player-avatar__mark--heart {
  display: grid;
  place-items: center;
  color: #fff;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 1))
    drop-shadow(0 0 7px rgba(255, 255, 255, 0.7))
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.35));
  animation: avatar-glow-flicker 4.5s ease-in-out infinite;
  animation-delay: 0.35s;
}

.player-avatar__mark--heart svg {
  display: block;
}

.player-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #3a4d5c;
  line-height: 1.2;
}

.section--tournaments .copy {
  text-align: right;
  margin-left: auto;
}

.section--tournaments .eyebrow,
.section--tournaments .headline,
.section--tournaments .body-lg {
  text-align: right;
  margin-left: auto;
}

.section--tournaments .btn-outline {
  margin-top: 1.5rem;
}

@media (max-width: 976px) {
  .section {
    padding: 80px 40px;
  }

  .section--hero {
    background-attachment: scroll;
    background-size: contain;
  }

  .section--hero .section-inner,
  .section--quote .section-inner,
  .section--tournaments .section-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section--tournaments .copy,
  .section--tournaments .eyebrow,
  .section--tournaments .headline,
  .section--tournaments .body-lg,
  .quote-attr {
    text-align: left;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .section,
  .section--hero,
  .section--intro {
    padding: 64px 24px;
  }

  .body-lg {
    font-size: 18px;
  }

  .section--hero {
    background-position: 24vw 0;
  }
}

/* ——— Inner pages ——— */
.page-hero {
  padding: 3.5rem 40px 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(40px, 7vw, 80px);
}

.page-body {
  padding: 0 40px 4rem;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.teams-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3.5rem;
  padding: 2rem 0 4rem;
}

.teams-row img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.page-body--schedule {
  position: relative;
  max-width: 720px;
}

.page-body--schedule::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 45%;
  height: 280px;
  background-image: url("../assets/shapes/custom-bike-builder-service-section-bg-r.svg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  opacity: 0.35;
  pointer-events: none;
}

.schedule-intro {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 3rem;
}

.schedule-intro .eyebrow {
  margin-bottom: 0.75rem;
}

.schedule-intro__lead {
  color: var(--text);
  margin: 0 auto;
  max-width: 32em;
  font-size: 17px;
  line-height: 1.65;
}

.schedule-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
}

.schedule-meta span {
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(182, 233, 37, 0.35);
  background: rgba(182, 233, 37, 0.06);
}

/* Vertical timeline */
.schedule-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 2rem;
  position: relative;
  z-index: 1;
}

.timeline-week {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 1.25rem;
  margin-bottom: 0;
  padding-bottom: 2.5rem;
}

.timeline-week:last-child {
  padding-bottom: 0;
}

.timeline-week__rail {
  position: relative;
  display: flex;
  justify-content: center;
}

.timeline-week__rail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -2.5rem;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--lime) 0%, rgba(182, 233, 37, 0.15) 100%);
}

.timeline-week:last-child .timeline-week__rail::before {
  bottom: 0;
  background: linear-gradient(180deg, var(--lime) 0%, transparent 100%);
}

.timeline-week__dot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--bg);
  background: var(--lime);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.timeline-week__dot--finals {
  font-size: 18px;
  color: var(--lime);
  background: var(--bg);
  border: 2px solid var(--lime);
  clip-path: none;
  border-radius: 0;
  box-shadow: 0 0 18px rgba(182, 233, 37, 0.35);
}

.timeline-week__panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-left: 3px solid rgba(182, 233, 37, 0.5);
}

.timeline-week__panel--finals {
  border-color: rgba(182, 233, 37, 0.45);
  border-left-color: var(--lime);
  background: linear-gradient(135deg, rgba(182, 233, 37, 0.08) 0%, rgba(0, 0, 0, 0.35) 100%);
  box-shadow: 0 0 40px rgba(182, 233, 37, 0.08);
}

.timeline-week__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.timeline-week__round {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
}

.timeline-week__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.timeline-week__date {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--nav-muted);
  white-space: nowrap;
}

.timeline-week__note {
  margin: 0;
  padding: 0.85rem 1.25rem 0;
  font-size: 13px;
  color: var(--nav-muted);
  font-style: italic;
}

.timeline-matches {
  list-style: none;
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.timeline-match {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 1rem 0.85rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline-match--featured {
  border-color: rgba(182, 233, 37, 0.35);
  padding-top: 2rem;
}

.timeline-match__badge {
  position: absolute;
  top: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--lime);
  padding: 0.2rem 0.65rem;
}

.match-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  min-width: 0;
}

.match-side--right {
  grid-column: auto;
}

.match-side__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
  transition: transform 0.25s ease;
}

.timeline-match:hover .match-side__logo {
  transform: scale(1.05);
}

.match-side__name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.25;
  max-width: 9em;
}

.match-side--seed {
  padding: 0.5rem 0;
}

.match-side__seed {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--lime);
  border: 2px solid rgba(182, 233, 37, 0.45);
  background: rgba(182, 233, 37, 0.06);
}

.match-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.25rem;
}

.match-divider__vs {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--lime);
}

.match-divider__time {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--nav-muted);
  white-space: nowrap;
}

.match-contenders {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0.65rem 0 0;
  border-top: 1px dashed rgba(182, 233, 37, 0.2);
}

.match-contenders img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(0.2);
}

@media (max-width: 767px) {
  .page-body--schedule::before {
    display: none;
  }

  .timeline-week {
    grid-template-columns: 40px 1fr;
    gap: 0 0.85rem;
  }

  .timeline-week__dot {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .timeline-match {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1rem 0.75rem;
  }

  .timeline-match--featured {
    padding-top: 2.25rem;
  }

  .match-divider {
    flex-direction: row;
    gap: 0.75rem;
  }

  .match-divider__vs::before,
  .match-divider__vs::after {
    display: none;
  }

  .match-side--right {
    order: 3;
  }

  .match-divider {
    order: 2;
  }
}

.section--stats-hero {
  padding: 3rem 40px 2rem;
  background-image: url("../assets/shapes/custom-bike-builder-service-section-bg-l.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 38%;
  position: relative;
  overflow: hidden;
}

.section--stats-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22%;
  height: 55%;
  background-image: url("../assets/shapes/custom-bike-builder-service-section-bg-r.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.stats-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.stats-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 2rem;
}

.stats-links li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.stats-links li::before {
  content: "→";
  color: var(--lime);
  flex-shrink: 0;
}

/* Stats page */
.page-hero--stats {
  position: relative;
  overflow: hidden;
}

.page-hero--stats::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 50%;
  width: 42%;
  height: 120%;
  transform: translateY(-50%);
  background-image: url("../assets/shapes/custom-bike-builder-service-section-bg-l.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.page-hero--stats::after {
  content: "";
  position: absolute;
  right: -6%;
  bottom: -20%;
  width: 28%;
  height: 90%;
  background-image: url("../assets/shapes/custom-bike-builder-service-section-bg-r.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.page-hero--stats > * {
  position: relative;
  z-index: 1;
}

.page-hero--stats .accent-rule {
  margin-left: 0;
}

.page-body--stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding-bottom: 5rem;
}

.page-body--stats::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: -12%;
  width: 38%;
  height: 220px;
  background-image: url("../assets/shapes/custom-bike-builder-service-section-bg-r.svg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.page-body--stats > * {
  position: relative;
  z-index: 1;
}

.stats-intro {
  max-width: 520px;
}

.stats-counters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(216, 216, 216, 0.14);
  border-bottom: 1px solid rgba(216, 216, 216, 0.14);
  text-align: center;
}

.stats-counter {
  min-width: 0;
}

.stats-players__head {
  max-width: 640px;
}

.stats-players__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin: 0.35rem 0 0.75rem;
  line-height: 1.1;
}

.stats-players__lead {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}

.player-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

/* Haxball player rating card — duplicate per player */
.player-card {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding: 1.35rem;
  border: 1px solid rgba(216, 216, 216, 0.28);
  background: rgba(255, 255, 255, 0.02);
}

.player-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.player-card__identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.player-card__avatar {
  flex-shrink: 0;
}

.player-card__meta {
  min-width: 0;
}

.player-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
}

.player-card__team {
  margin: 0.2rem 0 0;
  font-size: 14px;
  color: var(--text);
}

.player-card__position {
  margin: 0.35rem 0 0;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lime);
}

.player-card__overall {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(216, 216, 216, 0.28);
  background: rgba(182, 233, 37, 0.06);
}

.player-card__overall-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--lime);
}

.player-card__overall-label {
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}

.player-card__attrs {
  display: grid;
  gap: 0.65rem;
}

.player-card__attr {
  display: grid;
  grid-template-columns: 92px 1fr 34px;
  align-items: center;
  gap: 0.65rem;
}

.player-card__attr-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
}

.player-card__attr-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.player-card__attr-track span {
  display: block;
  height: 100%;
  width: calc(var(--val, 0) * 1%);
  background: linear-gradient(90deg, rgba(182, 233, 37, 0.55), var(--lime));
}

.player-card__attr-val {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-align: right;
}

.player-card__quick {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(216, 216, 216, 0.14);
}

.player-card__quick-item {
  min-width: 0;
  text-align: center;
}

.player-card__quick-item dt {
  margin: 0;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(216, 216, 216, 0.65);
}

.player-card__quick-item dd {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.player-card-grid--solo {
  max-width: 380px;
}

.player-card--placeholder {
  border-style: dashed;
  opacity: 0.92;
}

.player-card--placeholder .player-card__overall {
  background: rgba(255, 255, 255, 0.03);
}

.player-card--placeholder .player-card__overall-num {
  color: rgba(216, 216, 216, 0.45);
  font-size: 30px;
}

.player-card--placeholder .player-card__attr-val,
.player-card--placeholder .player-card__quick-item dd {
  color: rgba(216, 216, 216, 0.45);
}

.player-avatar__mark--muted {
  animation: none;
  text-shadow: none;
  filter: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 26px;
}

.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max);
  margin: 3rem auto 5rem;
  padding: 0 40px;
  text-align: center;
}

.counter-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.counter-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 0.5rem;
}

/* Awards */
.page-body--awards {
  position: relative;
  max-width: var(--max);
}

.page-body--awards::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 40%;
  height: 200px;
  background-image: url("../assets/shapes/custom-bike-builder-service-section-bg-r.svg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  opacity: 0.14;
  pointer-events: none;
}

.page-hero--awards {
  text-align: center;
  max-width: var(--max);
}

.page-hero--awards .accent-rule {
  margin-left: auto;
  margin-right: auto;
}

.award-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.award-card::after {
  content: "";
  position: absolute;
  left: min(220px, 28%);
  top: 2rem;
  bottom: 2rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(182, 233, 37, 0.35) 30%, rgba(182, 233, 37, 0.35) 70%, transparent);
  pointer-events: none;
}

.award-card:last-of-type {
  border-bottom: none;
  padding-bottom: 1rem;
}

.award-card:nth-child(1) .award-meta__index {
  color: rgba(182, 233, 37, 0.22);
}

.award-card:nth-child(2) .award-meta__index {
  color: rgba(182, 233, 37, 0.18);
}

.award-card:nth-child(3) .award-meta__index {
  color: rgba(182, 233, 37, 0.24);
}

.award-meta {
  position: relative;
  padding-left: 0.25rem;
}

.award-meta__index {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  color: rgba(182, 233, 37, 0.2);
  background: none;
  min-width: 0;
  height: auto;
  padding: 0;
}

.award-meta h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin: 0 0 0.5rem;
  line-height: 1.05;
}

.award-tag {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  padding: 0;
  border: none;
  background: none;
}

.award-tag::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  margin-bottom: 0.65rem;
  background: var(--lime);
}

.award-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--nav-muted);
}

.award-list li {
  margin-bottom: 0.35rem;
  padding-left: 0;
  position: static;
  line-height: 1.45;
}

.award-list li::before {
  content: none;
}

.award-card__copy {
  padding: 0.15rem 0 0;
}

.award-body {
  font-size: 14px;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  margin: 0;
}

.award-date {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime);
  margin-top: 1.25rem;
  padding: 0;
  border: none;
  background: none;
}

.award-date::before {
  content: "— ";
  color: rgba(182, 233, 37, 0.45);
}

.awards-outro {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  max-width: 40em;
  padding: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--nav-muted);
  border: none;
  background: none;
}

@media (max-width: 921px) {
  .award-card::after {
    display: none;
  }
}

/* About */
.page-body--about {
  position: relative;
  max-width: var(--max);
}

.page-hero--about {
  max-width: var(--max);
  padding-top: clamp(4rem, 10vw, 9rem);
  padding-bottom: 0.5rem;
}

.page-hero--about .headline-lg {
  margin-bottom: 0;
}

.page-hero--about .accent-rule {
  margin-bottom: 0;
}

.about-owner-band {
  position: relative;
  margin-bottom: 2.5rem;
}

.about-owner-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.5rem 40px 2rem;
}

.about-owner-band__visual {
  min-height: clamp(320px, 42vw, 520px);
  margin-left: calc(-1 * (max(0px, (100vw - var(--max)) / 2) + 40px));
  background-image: url("../assets/shapes/custom-bike-builder-owner-section-bg.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
  pointer-events: none;
}

.about-owner-band__content {
  position: relative;
  z-index: 1;
  max-width: 34em;
}

.about-owner-band__label {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
}

.about-owner-band__name {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
}

.about-owner-band__content .body-lg {
  margin: 0;
}

.about-owner-band__content .body-lg + .body-lg {
  margin-top: 1rem;
}

.about-owner-band__signature {
  margin-top: 1.5rem;
}

.about-story-section {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.about-story-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
}

.about-story-section .accent-rule {
  margin: 0.65rem 0 2rem;
}

.about-story-section__mission {
  margin: 0 0 1.5rem;
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--white);
}

.about-story-section__quote {
  margin: 0;
  padding: 0;
  border: none;
}

.about-story-section__quote p {
  margin: 0;
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--lime);
}

.about-rules-panel {
  position: relative;
  z-index: 1;
}

.about-rules-panel__head {
  margin-bottom: 1.25rem;
}

.about-rules-panel__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
}

.about-rules-panel__intro {
  margin: 0;
  max-width: 42em;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

.about-rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about-rules-card {
  padding: 1.25rem 1.35rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

.about-rules-card__label {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
}

.about-rules-card__sub {
  margin: 0 0 0.85rem;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lime);
}

.about-rules-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-rules-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
}

.about-rules-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}

@media (max-width: 921px) {
  .about-owner-band__inner {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }

  .about-owner-band__visual {
    min-height: 220px;
    margin-left: -24px;
    margin-bottom: 1.5rem;
    background-size: auto 100%;
  }

  .about-rules-grid {
    grid-template-columns: 1fr;
  }
}

/* Signup */
.page-body--signup {
  position: relative;
  max-width: var(--max);
}

.page-body--signup::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: -8%;
  width: 38%;
  height: 220px;
  background-image: url("../assets/shapes/custom-bike-builder-service-section-bg-l-cropped.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  opacity: 0.22;
  pointer-events: none;
}

.page-hero--signup {
  text-align: center;
  max-width: var(--max);
}

.page-hero--signup .accent-rule {
  margin-left: auto;
  margin-right: auto;
}

.signup-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.15fr);
  gap: 2.5rem;
  align-items: start;
}

.signup-aside {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.signup-aside__lead {
  margin: 0;
}

.signup-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.signup-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 15px;
  color: var(--text);
  line-height: 1.45;
}

.signup-perks__mark {
  flex-shrink: 0;
  font-family: var(--font-display);
  color: var(--lime);
  font-weight: 700;
}

.signup-callouts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.signup-callout {
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(182, 233, 37, 0.25);
}

.signup-callout--open {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--lime);
}

.signup-callout--cta {
  color: var(--lime);
  background: rgba(182, 233, 37, 0.06);
}

.signup-teams {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.signup-teams img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.signup-teams img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.signup-form-panel {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(182, 233, 37, 0.22);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.35) 100%);
  border-left: 3px solid var(--lime);
}

.signup-form__head {
  padding: 1.35rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(182, 233, 37, 0.04);
}

.signup-form__eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
}

.signup-form__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}

.signup-form__hint {
  margin: 0.55rem 0 0;
  font-size: 14px;
  color: var(--nav-muted);
}

.signup-form {
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group--fieldset {
  border: none;
  margin: 0 0 1.35rem;
  padding: 0;
}

.form-group--fieldset legend {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.65rem;
  padding: 0;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(216, 216, 216, 0.45);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 1px rgba(182, 233, 37, 0.25);
}

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

.position-chip {
  position: relative;
  cursor: pointer;
}

.position-chip--wide {
  grid-column: 1 / -1;
}

.position-chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.position-chip__label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.position-chip input:checked + .position-chip__label {
  color: var(--bg);
  background: var(--lime);
  border-color: var(--lime);
}

.position-chip input:focus-visible + .position-chip__label {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.position-chip:hover .position-chip__label {
  border-color: rgba(182, 233, 37, 0.45);
}

.btn-primary--block {
  width: 100%;
  margin-top: 0.25rem;
  position: relative;
  z-index: 1;
}

.btn-primary--block:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-banner {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.5rem;
}

.form-success-message {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-size: 14px;
  background: rgba(182, 233, 37, 0.15);
  color: var(--lime);
}

.form-success-message.is-visible {
  display: block;
}

.form-success-message p {
  margin: 0;
}

.form-success-message p + p {
  margin-top: 0.5rem;
}

@media (max-width: 921px) {
  .stats-layout,
  .stats-links,
  .stats-counters,
  .player-card__quick,
  .signup-shell,
  .award-card {
    grid-template-columns: 1fr;
  }

  .player-card__attr {
    grid-template-columns: 84px 1fr 30px;
    gap: 0.5rem;
  }

  .counters {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .page-hero,
  .page-body,
  .section--stats-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-hero--stats::before,
  .page-hero--stats::after,
  .page-body--stats::before {
    opacity: 0.08;
  }
}

/* ——— Footer ——— */
.site-footer {
  padding: 3rem 20px 2rem;
  text-align: center;
  margin-top: auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  width: 90px;
  height: auto;
}

.footer-brand a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
}

.footer-copy {
  font-size: 13px;
  color: var(--text);
  margin: 0;
}
