@font-face {
  font-family: "Questrial";
  src: url("assets/fonts/questrial.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #06141f;
  --ink-soft: #1f3441;
  --court: #0d3156;
  --teal: #05a7ad;
  --teal-dark: #04777d;
  --coral: #f16b4f;
  --clay: #d76046;
  --lime: #c9dc45;
  --sand: #ece7d6;
  --paper: #f7f9f7;
  --white: #ffffff;
  --line: rgba(6, 20, 31, 0.14);
  --shadow: 0 22px 60px rgba(6, 20, 31, 0.18);
  --max: 1180px;
  --cursor-default: url("assets/tennis-cursor.png") 5 5, auto;
  --cursor-pointer: url("assets/tennis-pointer.png") 4 4, pointer;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  cursor: var(--cursor-default);
}

body {
  margin: 0;
  font-family: "Questrial", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(247, 249, 247, 0.96), rgba(236, 231, 214, 0.34) 48%, rgba(247, 249, 247, 1)),
    var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
  cursor: var(--cursor-default);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 3px;
  pointer-events: none;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--teal), var(--coral));
  transition: width 120ms linear;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 18px;
  height: 18px;
  pointer-events: none;
  background: var(--lime);
  border: 2px solid rgba(6, 20, 31, 0.74);
  border-radius: 999px;
  opacity: 0;
  transform: translate3d(-50px, -50px, 0) scale(0.85);
  transition: opacity 160ms ease, transform 80ms linear;
  mix-blend-mode: screen;
}

.cursor-follower::before,
.cursor-follower::after {
  position: absolute;
  top: 2px;
  bottom: 2px;
  width: 7px;
  content: "";
  border: 1px solid rgba(6, 20, 31, 0.55);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.cursor-follower::before {
  left: 1px;
}

.cursor-follower::after {
  right: 1px;
}

body::selection {
  color: var(--ink);
  background: var(--lime);
}

a {
  color: inherit;
  text-decoration: none;
  cursor: var(--cursor-pointer);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 32px;
  color: var(--white);
  background: rgba(6, 20, 31, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: min-height 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(6, 20, 31, 0.96);
  box-shadow: 0 14px 38px rgba(6, 20, 31, 0.24);
}

.brand,
.main-nav,
.language-switch {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  font-size: 1rem;
  text-transform: uppercase;
}

.brand span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  font-size: 0.95rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  animation: logo-bounce 2.8s ease-in-out infinite;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.language-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 88px;
  min-width: 88px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.language-button {
  min-height: 34px;
  padding: 0;
  font: inherit;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  cursor: var(--cursor-pointer);
  background: transparent;
  border: 0;
  border-radius: 6px;
}

.language-button.is-active {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  --hero-x: 0px;
  --hero-y: 0px;
}

.hero-bg {
  position: absolute;
  inset: -28px;
  background:
    linear-gradient(90deg, rgba(6, 20, 31, 0.98) 0%, rgba(6, 20, 31, 0.76) 42%, rgba(6, 20, 31, 0.22) 100%),
    url("assets/fond-hero.png") center / cover no-repeat;
  transform: translate3d(calc(var(--hero-x) * -0.28), calc(var(--hero-y) * -0.22), 0) scale(1.04);
  transition: transform 300ms ease-out;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(110deg, transparent 0 38%, rgba(201, 220, 69, 0.12) 38.2% 38.45%, transparent 38.8%),
    linear-gradient(155deg, transparent 0 52%, rgba(5, 167, 173, 0.18) 52.15% 52.35%, transparent 52.6%);
  opacity: 0.9;
  animation: court-lines 9s ease-in-out infinite alternate;
}

.hero::after {
  background: linear-gradient(180deg, transparent 0%, rgba(6, 20, 31, 0.06) 72%, rgba(6, 20, 31, 0.72) 100%);
}

.hero-energy {
  position: absolute;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.speed-line {
  position: absolute;
  left: -34vw;
  width: 34vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 220, 69, 0.94), transparent);
  transform: rotate(-16deg);
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(201, 220, 69, 0.56));
  animation: speed-serve 3.8s cubic-bezier(0.18, 0.82, 0.26, 1) infinite;
}

.speed-line-one {
  top: 24%;
}

.speed-line-two {
  top: 46%;
  animation-delay: 900ms;
  background: linear-gradient(90deg, transparent, rgba(5, 167, 173, 0.88), transparent);
}

.speed-line-three {
  top: 68%;
  animation-delay: 1.8s;
  background: linear-gradient(90deg, transparent, rgba(241, 107, 79, 0.86), transparent);
}

.hero-game-ball {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--lime);
  border: 2px solid rgba(6, 20, 31, 0.78);
  border-radius: 999px;
  box-shadow:
    0 0 18px rgba(201, 220, 69, 0.68),
    0 0 42px rgba(5, 167, 173, 0.28);
  opacity: 0.96;
  transform: translate3d(45vw, 22vh, 0);
  will-change: transform;
}

.hero-game-ball::before,
.hero-game-ball::after {
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: 10px;
  content: "";
  border: 2px solid rgba(6, 20, 31, 0.42);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.hero-game-ball::before {
  left: 2px;
}

.hero-game-ball::after {
  right: 2px;
}

.hero-game-score {
  position: absolute;
  top: 92px;
  right: max(24px, calc((100vw - var(--max)) / 2));
  min-width: 42px;
  padding: 6px 12px;
  font-size: 0.82rem;
  line-height: 1.2;
  color: var(--ink);
  text-align: center;
  background: var(--lime);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(6, 20, 31, 0.22);
  opacity: 0;
  transform: translateY(10px) scale(0.88);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero.is-playing .hero-game-score {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero.is-hit .hero-game-ball {
  box-shadow:
    0 0 0 14px rgba(201, 220, 69, 0.12),
    0 0 24px rgba(201, 220, 69, 0.92),
    0 0 52px rgba(5, 167, 173, 0.34);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: end;
  gap: 48px;
  width: min(calc(100% - 48px), var(--max));
  min-height: 82svh;
  margin: 0 auto;
  padding: 72px 0 0;
}

.hero-copy {
  align-self: center;
  max-width: 680px;
  min-width: 0;
  padding-bottom: 54px;
  animation: hero-copy-in 700ms ease-out both;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.86rem;
  color: var(--teal);
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 5rem;
  line-height: 0.98;
  font-weight: 400;
}

h1 span {
  display: block;
  transform-origin: left center;
  animation: headline-snap 780ms cubic-bezier(0.2, 0.84, 0.22, 1) both;
}

h1 span:nth-child(2) {
  animation-delay: 120ms;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.8rem;
  line-height: 1.08;
  font-weight: 400;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 400;
}

.hero-subtitle {
  max-width: 580px;
  margin-bottom: 16px;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-location {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.66);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin-bottom: 30px;
}

.hero-metrics div {
  min-height: 86px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  animation: metric-pop 700ms cubic-bezier(0.18, 0.88, 0.22, 1) both;
}

.hero-metrics div:nth-child(1) {
  animation-delay: 180ms;
}

.hero-metrics div:nth-child(2) {
  animation-delay: 270ms;
}

.hero-metrics div:nth-child(3) {
  animation-delay: 360ms;
}

.hero-metrics span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  color: var(--lime);
  text-transform: uppercase;
}

.hero-metrics strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.18;
  font-weight: 400;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  --magnet-x: 0px;
  --magnet-y: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.92rem;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: var(--cursor-pointer);
  box-shadow: 0 10px 24px rgba(6, 20, 31, 0.16);
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  inset: -120% auto -120% -40%;
  width: 34%;
  content: "";
  background: rgba(255, 255, 255, 0.34);
  transform: rotate(18deg) translateX(-140%);
  transition: transform 380ms ease;
}

button {
  cursor: var(--cursor-pointer);
}

.button:hover,
.button:focus-visible {
  transform: translate3d(var(--magnet-x), calc(var(--magnet-y) - 3px), 0);
  box-shadow: 0 18px 32px rgba(6, 20, 31, 0.24);
}

.button:hover::before,
.button:focus-visible::before {
  transform: rotate(18deg) translateX(520%);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-secondary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), #0f9c93);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.hero-portrait {
  align-self: end;
  justify-self: center;
  width: min(100%, 470px);
  max-height: 760px;
  overflow: hidden;
  transform: translate3d(calc(var(--hero-x) * 0.35), calc(var(--hero-y) * 0.28), 0);
  animation: portrait-in 800ms ease-out 120ms both;
  transition: transform 300ms ease-out;
}

.hero-portrait img {
  width: 100%;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.42));
}

.rally-strip {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  color: var(--ink);
  background: var(--lime);
  border-block: 1px solid rgba(6, 20, 31, 0.12);
}

.rally-track {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: rally-move 28s linear infinite;
}

.rally-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  font-size: 0.82rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.rally-track span::after {
  width: 7px;
  height: 7px;
  margin-left: 34px;
  content: "";
  background: var(--clay);
  border-radius: 999px;
}

.section {
  padding: 88px 24px;
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 42px;
}

.section-heading p:not(.eyebrow) {
  max-width: 660px;
  color: var(--ink-soft);
}

.section-heading.compact {
  margin-bottom: 32px;
}

.facts-grid,
.values-grid {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  gap: 16px;
}

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

.fact-card,
.value-card {
  min-height: 134px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(6, 20, 31, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.fact-card:hover,
.value-card:hover,
.timeline-item:hover,
.partner-logo:hover {
  transform: translateY(-5px);
  border-color: rgba(5, 167, 173, 0.34);
  box-shadow: 0 22px 46px rgba(6, 20, 31, 0.14);
}

.fact-card span,
.timeline-item span,
.value-number {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  color: var(--teal-dark);
  text-transform: uppercase;
}

.fact-card strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 400;
}

.story-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 20, 31, 1), rgba(7, 43, 53, 0.96) 58%, rgba(31, 52, 65, 0.94)),
    var(--ink);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 56px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.story-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  min-height: 132px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.timeline-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 400;
}

.timeline-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.performance-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0 48%, rgba(236, 231, 214, 0.42) 48% 100%),
    var(--white);
}

.performance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 44px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.performance-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.performance-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(6, 20, 31, 0.08), transparent 48%, rgba(201, 220, 69, 0.18));
}

.performance-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 600ms ease;
}

.performance-photo:hover img {
  transform: scale(1.07);
}

.performance-copy p:not(.eyebrow) {
  color: var(--ink-soft);
}

.values-section {
  background:
    linear-gradient(180deg, rgba(236, 231, 214, 0.82), rgba(247, 249, 247, 0.96)),
    url("assets/fond-bord.png") center / cover no-repeat;
}

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

.value-card {
  min-height: 214px;
}

.value-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.partners-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 42px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.partners-copy {
  max-width: 620px;
}

.partners-copy p:not(.eyebrow) {
  color: var(--ink-soft);
}

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

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 150px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.partner-logo img {
  width: 300px;
  height: auto;
  transition: transform 200ms ease;
}

.partner-logo:hover img {
  transform: scale(1.04);
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 20, 31, 0.9), rgba(6, 20, 31, 0.72)),
    url("assets/fond-bord.png") center / cover no-repeat;
}

.contact-panel {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.contact-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.contact-panel .eyebrow {
  color: var(--lime);
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 32px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer span {
  color: var(--white);
}

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

[data-reveal] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(42px) scale(0.98);
  transition: opacity 680ms ease, filter 680ms ease, transform 680ms cubic-bezier(0.18, 0.84, 0.22, 1);
}

[data-reveal].is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@keyframes logo-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  44% {
    transform: translateY(-2px) rotate(-2deg);
  }

  52% {
    transform: translateY(1px) rotate(2deg);
  }
}

@keyframes headline-snap {
  from {
    opacity: 0;
    transform: translateX(-34px) skewX(-8deg);
  }

  to {
    opacity: 1;
    transform: translateX(0) skewX(0);
  }
}

@keyframes metric-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes speed-serve {
  0% {
    opacity: 0;
    transform: translateX(0) rotate(-16deg);
  }

  12% {
    opacity: 0.9;
  }

  56%,
  100% {
    opacity: 0;
    transform: translateX(152vw) rotate(-16deg);
  }
}

@keyframes ball-rally {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.72);
  }

  8% {
    opacity: 1;
  }

  38% {
    transform: translate3d(48vw, 42vh, 0) rotate(560deg) scale(1);
  }

  70% {
    opacity: 1;
    transform: translate3d(86vw, 14vh, 0) rotate(1040deg) scale(0.86);
  }

  100% {
    opacity: 0;
    transform: translate3d(118vw, 58vh, 0) rotate(1480deg) scale(0.58);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes portrait-in {
  from {
    opacity: 0;
    transform: translate3d(36px, 16px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(calc(var(--hero-x) * 0.35), calc(var(--hero-y) * 0.28), 0);
  }
}

@keyframes court-lines {
  from {
    transform: translateX(-18px);
  }

  to {
    transform: translateX(18px);
  }
}

@keyframes rally-move {
  from {
    transform: translateX(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .cursor-follower {
    display: none;
  }

  .hero-game-ball,
  .hero-game-score {
    display: none;
  }
}

@media (pointer: coarse) {
  .cursor-follower {
    display: none;
  }

  .hero-game-ball,
  .hero-game-score {
    display: none;
  }
}

@media (max-width: 980px) {
  .cursor-follower {
    display: none;
  }

  .hero-game-ball,
  .hero-game-score {
    display: none;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .brand {
    min-width: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding-top: 70px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .hero-portrait {
    width: min(100%, 420px);
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .facts-grid,
  .values-grid,
  .story-layout,
  .performance-layout,
  .partners-section {
    grid-template-columns: 1fr;
  }

  .partners-section {
    width: min(calc(100% - 48px), var(--max));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    font-size: 0.88rem;
  }

  .language-switch {
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(calc(100% - 32px), var(--max));
    padding-top: 48px;
  }

  .hero-copy,
  .hero-subtitle,
  .hero-location {
    max-width: 100%;
  }

  .hero-subtitle,
  .hero-location {
    overflow-wrap: break-word;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.14rem;
  }

  .hero-metrics {
    gap: 8px;
  }

  .hero-metrics div {
    min-height: auto;
    padding: 12px;
  }

  .rally-strip {
    padding: 11px 0;
  }

  .rally-track {
    gap: 24px;
    animation-duration: 22s;
  }

  .rally-track span::after {
    margin-left: 24px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 18px;
  }

  .fact-card,
  .value-card,
  .timeline-item {
    min-height: auto;
  }

  .partners-section {
    width: min(calc(100% - 36px), var(--max));
  }

  .partner-logo {
    width: 100%;
  }

  .partners-logos {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 18px;
  }
}
