@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

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

html,
body {
  height: 100%;
}

html {
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 3px solid rgba(69, 182, 244, 0.7);
  outline-offset: 2px;
}

.scroll-fx {
  will-change: transform, opacity;
  transform-origin: center center;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:root {
  --nav-max: 1500px;

  --blue: #1f7ae7;
  --blueA: #1b6fe3;
  --blueB: #45b6f4;

  --hero-ink: #071b36;

  --about-bg: #ffffff;
  --about-ink: #121826;
  --about-muted: #6b7688;
  --about-muted2: #7b8698;

  --card-bg: #f5f6f8;
  --card-icon: #1f7ae7;

  --values-bg: #f4f6f8;
  --values-card: #ffffff;

  --match-bg: #f4f6f8;
  --match-card: #ffffff;

  --squad-bg: #ffffff;

  --high-bg: #f4f6f8;

  --footer-bg: #141a22;
  --footer-ink: rgba(255, 255, 255, 0.92);
  --footer-muted: rgba(255, 255, 255, 0.62);
  --footer-muted2: rgba(255, 255, 255, 0.68);
  --footer-rule: rgba(255, 255, 255, 0.10);
}

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background 220ms ease, backdrop-filter 220ms ease, -webkit-backdrop-filter 220ms ease;
}

.nav-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px 44px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: transparent;
}

.site-header--scrolled {
  background: rgba(7, 27, 54, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #fff;
}

.brand__mark {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
  flex: 0 0 72px;
  filter: brightness(0) invert(1);
}

.brand__name {
  font-weight: 600;
  letter-spacing: 0.6px;
  font-size: 18px;
  color: #ffffff;
  line-height: 1;
}

/* Nav links */
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-left: auto;
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(12, 33, 65, 0.45);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.nav__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  opacity: 0.86;
}

.nav__link.is-active {
  opacity: 1;
}

/* Right-side drawer menu (no top navbar) */
.side-toggle {
  display: inline-flex !important;
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 12px);
  right: max(14px, env(safe-area-inset-right, 0px));
  z-index: 120;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  gap: 8px;
}

.side-toggle span {
  width: 52px;
  height: 8px;
  border-radius: 999px;
  background: #061a34;
}

.side-toggle.side-toggle--inverse span {
  background: #ffffff;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100vw, 460px);
  padding: 34px 42px 44px;
  display: grid;
  align-content: start;
  justify-items: stretch;
  gap: 22px;
  background: #f2f2f4;
  border-left: 0;
  box-shadow: -16px 0 34px rgba(0, 0, 0, 0.16);
  transform: translateX(104%);
  opacity: 0;
  pointer-events: none;
  z-index: 110;
  overflow-y: auto;
  transition: transform 260ms cubic-bezier(0.2, 0.72, 0.2, 1), opacity 220ms ease;
}

.side-menu.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.side-menu .nav__link {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: #071c36;
  font-size: clamp(24px, 6.4vw, 50px);
  font-weight: 900;
  letter-spacing: 0.2px;
  line-height: 1.08;
  text-transform: uppercase;
}

.side-menu .nav__link:hover,
.side-menu .nav__link.is-active {
  color: #0d2f58;
}

.side-menu__close {
  justify-self: start;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #061a34;
  font-size: 48px;
  line-height: 0.5;
  font-weight: 700;
  padding: 0;
  margin: 0 0 24px;
  cursor: pointer;
}

.side-menu__copy {
  margin-top: auto;
  padding-top: 30px;
  color: #17263c;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.side-menu__admin {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 26px;
  height: 26px;
  color: rgba(22, 33, 51, 0.28);
  display: inline-grid;
  place-items: center;
  transition: color 180ms ease, transform 180ms ease;
}

.side-menu__admin:hover {
  color: rgba(22, 33, 51, 0.48);
  transform: scale(1.06);
}

.side-menu__admin svg {
  width: 22px;
  height: 22px;
}

body.side-menu-open {
  overflow: clip;
}

body.side-menu-open .side-toggle {
  opacity: 0;
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 1px;
  border: 0;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.btn--pill {
  border-radius: 999px;
}

.btn--nav {
  min-width: 120px;
  height: 44px;
  padding: 0 22px;
  background: var(--blue);
  font-size: 12px;
  color: #fff;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100svh;
  height: 100svh;
  height: 100dvh;
  position: relative;
  overflow: hidden;
  background-image: url("../images/hero-bg.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: var(--hero-ink);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 520px at 50% 36%, rgba(12, 66, 138, 0.10) 0%, rgba(7, 27, 54, 0.52) 62%, rgba(7, 27, 54, 0.60) 100%),
    linear-gradient(180deg, rgba(7, 34, 70, 0.40) 0%, rgba(6, 28, 57, 0.36) 30%, rgba(6, 24, 50, 0.48) 68%, rgba(6, 24, 50, 0.56) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 220px 44px 0;
  text-align: center;
  color: #fff;
  transition: transform 260ms ease-out;
  will-change: transform;
}

.hero__kicker {
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4.4px;
  opacity: 0.85;
  transition: transform 260ms ease-out, opacity 260ms ease-out;
  will-change: transform, opacity;
}

.hero__title {
  margin: 0;
  line-height: 0.96;
}

.hero__titleLine {
  display: block;
  font-weight: 900;
  letter-spacing: 1px;
  transition: transform 260ms ease-out, opacity 260ms ease-out;
  will-change: transform, opacity;
}

.hero__titleLine--white {
  font-size: clamp(44px, 5.2vw, 84px);
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero__titleLine--blue {
  margin-top: 8px;
  font-size: clamp(46px, 5.5vw, 88px);
  background: linear-gradient(90deg, var(--blueA) 0%, var(--blueB) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
}

.hero__sub {
  margin: 26px auto 0;
  max-width: 820px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  opacity: 0.88;
}

.btn--cta {
  margin-top: 32px;
  height: 56px;
  padding: 0 44px;
  background: var(--blue);
  font-size: 14px;
  letter-spacing: 1.4px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.7;
  animation: scrollFloat 1.8s ease-in-out infinite;
  transition: transform 260ms ease-out, opacity 260ms ease-out;
  will-change: transform, opacity;
}

.mouse {
  width: 22px;
  height: 34px;
  border-radius: 12px;
  border: 2px solid #ffffff;
  position: relative;
}

.mouse__wheel {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
}

@keyframes scrollFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* ===================== ABOUT ===================== */
.about {
  background: #ffffff;
  color: var(--about-ink);
  padding: 96px 0 110px;
}

.about__wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 44px;
}

.about__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.about__title {
  margin: 0;
  font-size: clamp(52px, 5.2vw, 78px);
  font-weight: 900;
  letter-spacing: 0.6px;
  line-height: 0.96;
  text-transform: uppercase;
}

.about__titleBlack {
  color: #121826;
  margin-right: 12px;
}

.about__titleBlue {
  color: #2f77d8;
}

.about__subtitle {
  margin: 16px 0 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #6a7892;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
  padding: 0 72px;
}

.about__copy {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about__copy p {
  margin: 0 0 22px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
  color: #000000;
}

.about__copy p:first-child {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
  color: #000000;
}

.about__copyMuted {
  color: #000000 !important;
}

.about__showcase {
  display: grid;
  gap: 16px;
}

.about__showcaseCard {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px 280px at 88% -12%, rgba(76, 164, 255, 0.36) 0%, rgba(76, 164, 255, 0) 68%),
    linear-gradient(155deg, #0f2240 0%, #16345f 44%, #1f5bb3 100%);
  border-radius: 24px;
  padding: 30px 30px 28px;
  box-shadow: 0 22px 52px rgba(12, 34, 68, 0.26);
  border: 0;
}

.about__showcaseCard::after {
  content: "";
  position: absolute;
  inset: auto -40% -76% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.19) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.about__kickerMini {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.about__showcaseTitle {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.08;
  letter-spacing: 0.5px;
}

.about__points {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.about__points li {
  position: relative;
  padding-left: 18px;
  color: rgba(237, 245, 255, 0.93);
  font-size: 14px;
  line-height: 1.45;
}

.about__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ea6ff;
  box-shadow: 0 0 0 5px rgba(78, 166, 255, 0.19);
}

.about__tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about__tags span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.10);
}

.about__portrait {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #102343;
  border: 0;
  box-shadow: 0 18px 42px rgba(18, 41, 77, 0.16);
}

.about__portrait img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.about__portrait figcaption {
  padding: 12px 14px;
  color: #d7e6ff;
  font-size: 11px;
  letter-spacing: 1.1px;
  font-weight: 700;
}

/* ===================== VALUES / MISSION-VISION ===================== */
.values {
  background: #eef2f7;
  padding: 104px 0 132px;
}

.values__wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 44px;
}

.values__header {
  text-align: center;
  margin-bottom: 58px;
}

.values__title {
  margin: 0;
  font-size: clamp(50px, 5vw, 74px);
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 0.96;
  text-transform: uppercase;
}

.values__titleBlack {
  color: #121826;
  margin-right: 12px;
}

.values__titleBlue {
  color: #2f77d8;
}

.values__subtitle {
  margin: 16px 0 0;
  font-size: 17px;
  font-weight: 600;
  color: #60708a;
}

.values__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 120px;
}

.mv {
  background: linear-gradient(180deg, #102441 0%, #173b66 100%);
  border-radius: 20px;
  position: relative;
  padding: 34px 36px 38px;
  box-shadow: 0 20px 42px rgba(10, 28, 56, 0.22);
  border: 1px solid rgba(113, 171, 255, 0.26);
  overflow: hidden;
}

.mv__topline {
  display: none;
}

.mv__topline--strong {
  display: none;
}

.mv__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: #83c7ff;
  margin-top: 6px;
}

.mv__icon svg {
  width: 22px;
  height: 22px;
}

.mv__title {
  margin: 22px 0 14px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.4px;
  color: #ffffff;
}

.mv__p {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.72;
  color: rgba(234, 243, 255, 0.92);
}

.mv__p--muted {
  margin-top: 6px;
  color: rgba(214, 229, 250, 0.86);
}

/* ===================== MATCH CENTER ===================== */
.match {
  background:
    radial-gradient(1200px 220px at 30% -20%, rgba(72, 157, 255, 0.34), rgba(72, 157, 255, 0)),
    linear-gradient(90deg, #0b1730 0%, #102447 54%, #0b1730 100%);
  padding: 44px 0 48px;
}

.match__wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 44px;
  display: block;
}

.match__header {
  text-align: left;
  margin: 0;
}

.match__title {
  margin: 0;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1;
}

.match__titleBlack {
  color: #ffffff;
  margin-right: 10px;
}

.match__titleBlue {
  background: linear-gradient(90deg, var(--blueA) 0%, var(--blueB) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.match__subtitle {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(224, 236, 255, 0.78);
  max-width: 300px;
}

.match__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0;
  max-width: 980px;
  margin: 0 auto;
}

.matchCard {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 14px 16px 14px;
  box-shadow: 0 14px 26px rgba(4, 10, 22, 0.22);
  border: 1px solid rgba(125, 177, 243, 0.28);
}

.matchCard__head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.8px;
  font-size: 11px;
  padding: 0 0 10px;
}

.matchCard__headIcon {
  width: 15px;
  height: 15px;
  display: inline-grid;
  place-items: center;
}

.matchCard__headIcon svg {
  width: 15px;
  height: 15px;
}

.matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  text-align: center;
  padding: 2px 4px 8px;
}

.team {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.team--tight {
  gap: 6px;
}

.team__badge {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.4px;
  font-size: 17px;
}

.team__badge--blue {
  background: rgba(31, 122, 231, 0.10);
  color: var(--blue);
}

.team__badge--gray {
  background: rgba(17, 24, 39, 0.06);
  color: #6c778a;
}

.team__name {
  font-size: 13px;
  font-weight: 800;
  color: #121826;
  text-align: center;
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.matchup__vs {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.6px;
  color: #667284;
  transform: translateY(-2px);
}

.matchMeta {
  margin-top: 2px;
  display: grid;
  gap: 6px;
  padding-left: 2px;
}

.matchMeta__row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5e6a7f;
  font-size: 12px;
  font-weight: 600;
}

.matchMeta__icon {
  width: 14px;
  height: 14px;
  color: #6f7a8c;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.matchMeta__icon svg {
  width: 14px;
  height: 14px;
}

.resultRow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  text-align: center;
  padding: 2px 4px 6px;
}

.score {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.6px;
  color: #121826;
  line-height: 1;
}

.score__dash {
  color: #667284;
  font-weight: 900;
  margin: 0 5px;
}

.scorers {
  margin-top: 8px;
  background: rgba(31, 122, 231, 0.06);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6f7a8c;
  font-weight: 600;
  font-size: 12px;
}

.scorers__icon {
  font-size: 13px;
  transform: translateY(1px);
}

/* ===================== SQUAD ===================== */
.squad {
  background:
    radial-gradient(1200px 500px at 50% -5%, rgba(85, 166, 255, 0.22), rgba(85, 166, 255, 0)),
    linear-gradient(180deg, #0a1428 0%, #0d1d3a 100%);
  padding: 102px 0 124px;
  color: #ffffff;
}

.squad__wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 44px;
}

.squad__header {
  text-align: center;
  margin-bottom: 66px;
}

.squad__title {
  margin: 0;
  font-size: 62px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
}

.squad__titleBlack {
  color: #ffffff;
  margin-right: 12px;
}

.squad__titleBlue {
  color: #2f77d8;
}

.squad__subtitle {
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(221, 234, 255, 0.78);
}

.squad__stage {
  margin-top: 20px;
  position: relative;
  min-height: 386px;
  display: grid;
  place-items: center;
  outline: none;
}

.squad__track {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.squad__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(146, 195, 255, 0.48);
  background: rgba(11, 31, 61, 0.82);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 12;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.squad__nav:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.06);
  background: rgba(20, 56, 106, 0.94);
  border-color: rgba(137, 194, 255, 0.8);
}

.squad__nav:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.squad__nav--prev {
  left: 14px;
}

.squad__nav--next {
  right: 14px;
}

.squad__empty {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(224, 238, 255, 0.84);
}

.player {
  position: relative;
  perspective: 1200px;
  -webkit-perspective: 1200px;
  border-radius: 22px;
  height: 292px;
  width: min(21vw, 300px);
  cursor: pointer;
  transition: transform 480ms cubic-bezier(0.2, 0.72, 0.2, 1), opacity 360ms ease, filter 360ms ease;
  will-change: transform;
}

.player--carousel {
  position: absolute;
  left: 50%;
  top: 50%;
  --player-step: 260px;
  --player-scale: 0.86;
  --player-opacity: 0;
  --player-y: 0px;
  transform: translate(-50%, -50%)
    translateX(calc(var(--player-offset, 0) * var(--player-step)))
    translateY(var(--player-y))
    scale(var(--player-scale));
  opacity: var(--player-opacity);
  pointer-events: none;
}

.player--center {
  z-index: 4;
  --player-scale: 1.32;
  --player-opacity: 1;
  --player-y: -2px;
  pointer-events: auto;
}

.player--near {
  z-index: 3;
  --player-scale: 0.87;
  --player-opacity: 0.9;
  pointer-events: auto;
}

.player--far {
  z-index: 2;
  --player-scale: 0.82;
  --player-opacity: 0.64;
  filter: saturate(0.82);
}

.player--hidden {
  --player-scale: 0.78;
  --player-opacity: 0;
  visibility: hidden;
  z-index: 1;
  pointer-events: none;
  transition: none;
}

.player__inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(13, 38, 76, 0.06);
  border: 0;
  overflow: hidden;
}

.player__main {
  position: absolute;
  inset: 0;
  padding: 22px 18px 18px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  justify-items: start;
  align-content: stretch;
  text-align: center;
  gap: 10px;
  background: #ffffff;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform-origin: center center;
  -webkit-transform-origin: center center;
  border-radius: 22px;
  transition: transform 560ms cubic-bezier(0.2, 0.72, 0.2, 1);
  z-index: 2;
}

.player__num {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #dce3ef;
  color: var(--blue);
  font-weight: 900;
  font-size: 26px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.player__avatar {
  width: 100%;
  height: 100%;
  min-height: 132px;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  display: grid;
  place-items: center;
}

.player__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player__name {
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: 20px;
  color: #121826;
  line-height: 1;
  overflow-wrap: anywhere;
  text-align: left;
  text-transform: uppercase;
}

.player__role {
  margin-top: 0;
  font-weight: 900;
  letter-spacing: 1.8px;
  font-size: 13px;
  color: var(--blue);
  line-height: 1;
  text-align: left;
}

.player__stats {
  position: absolute;
  inset: 0;
  background-color: #2f77d8;
  background: linear-gradient(145deg, #2f77d8 0%, #2a70cf 100%);
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 30px;
  padding: 50px 24px 24px;
  color: #ffffff;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform-origin: center center;
  -webkit-transform-origin: center center;
  border-radius: 22px;
  transition: transform 560ms cubic-bezier(0.2, 0.72, 0.2, 1);
  z-index: 1;
}

.player--center:hover .player__main,
.player.is-flipped .player__main {
  transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
}

.player--center:hover .player__stats,
.player.is-flipped .player__stats {
  transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
}

.player__backName {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-align: center;
  color: #ffffff;
  line-height: 1;
  overflow-wrap: anywhere;
}

.player__metrics {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}

.playerMetric b {
  display: block;
  font-size: 56px;
  line-height: 0.95;
  font-weight: 900;
  color: #ffffff;
}

.playerMetric span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.88);
}


/* ===================== HIGHLIGHTS / GALLERY ===================== */
.high {
  background: #ffffff;
  padding: 0;
}

.high__wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 44px;
}

.high__header {
  text-align: center;
  margin-bottom: 64px;
}

.high__title {
  margin: 0;
  font-size: 62px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
}

.high__titleBlack {
  color: #121826;
  margin-right: 12px;
}

.high__titleBlue {
  background: linear-gradient(90deg, var(--blueA) 0%, var(--blueB) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.high__subtitle {
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 600;
  color: #7a8598;
}

.high__rail {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}

.high__empty {
  margin: 0;
  padding: 24px 0 6px;
  text-align: center;
  color: #64738d;
  font-size: 14px;
  font-weight: 600;
}

.high__marquee {
  display: block;
}

.high__lane {
  overflow: hidden;
}

.high__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  will-change: transform;
  --loop-distance: 0px;
}

.high__segment {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
}

.shot {
  margin: 0;
  height: 235px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  position: relative;
  transition: none;
  background: transparent;
}

.shot--ribbon {
  flex: 0 0 auto;
  min-width: 220px;
}

.shot--ribbonWide {
  width: min(35vw, 500px);
}

.shot--ribbonBase {
  width: min(28vw, 420px);
}

.shot--ribbonNarrow {
  width: min(22vw, 330px);
}

.shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 460ms ease, filter 320ms ease;
}

.shot:hover img {
  transform: scale(1.1);
  filter: saturate(1.06) contrast(1.02);
}


/* ===================== FOOTER ===================== */
.footer {
  background:
    radial-gradient(1200px 500px at 50% -5%, rgba(85, 166, 255, 0.22), rgba(85, 166, 255, 0)),
    linear-gradient(180deg, #0a1428 0%, #0d1d3a 100%);
  color: var(--footer-ink);
  padding: 78px 0 46px;
}

.footer__wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 44px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
  padding: 0 150px;
  align-items: start;
}

.footer__logo {
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: 34px;
  margin-bottom: 18px;
}

.footer__desc {
  margin: 0;
  color: var(--footer-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.footer__heading {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.8px;
  margin: 8px 0 18px;
}

.footer__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  color: var(--footer-muted2);
  font-size: 14px;
  font-weight: 400;
}

.footer__icon {
  width: 20px;
  height: 20px;
  color: var(--blue);
  display: inline-grid;
  place-items: center;
  flex: 0 0 20px;
}

.footer__icon svg {
  width: 20px;
  height: 20px;
}

.footer__desc2 {
  margin: 0 0 18px;
  color: var(--footer-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.footer__mailLink {
  color: #7fc2ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__mailLink:hover {
  color: #a9d7ff;
}

.footer__sponsors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 64px;
  gap: 10px;
}

.footer__sponsorTile {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.footer__sponsorLogo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(8%);
}

.footer__form {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.footer__input {
  width: 340px;
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 600;
  outline: none;
}

.footer__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

.footer__btn {
  height: 54px;
  padding: 0 28px;
  border-radius: 14px;
  border: 0;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  letter-spacing: 1.1px;
  font-size: 16px;
  cursor: pointer;
}

.footer__formMsg {
  min-height: 22px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 600;
}

.footer__formMsg.is-error {
  color: #ffb6b6;
}

.footer__formMsg.is-success {
  color: #8df2b3;
}

.footer__rule {
  height: 1px;
  background: var(--footer-rule);
  margin: 52px 150px 26px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 150px;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.40);
  font-size: 14px;
  font-weight: 400;
}

.footer__devLink {
  color: #7fc2ff;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 160ms ease;
}

.footer__devLink:hover {
  color: #a9d7ff;
}


.footer__legalLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  visibility: visible;
  opacity: 1;
  color: #7fc2ff;
  text-decoration: none;
  border: 1px solid rgba(127, 194, 255, 0.45);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.footer__legalLink:hover {
  color: #a9d7ff;
  border-color: rgba(169, 215, 255, 0.72);
  background: rgba(127, 194, 255, 0.12);
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.social {
  width: 22px;
  height: 22px;
  color: #7fc2ff;
  display: inline-grid;
  place-items: center;
}

.social:hover {
  color: #a9d7ff;
}

.social svg {
  width: 22px;
  height: 22px;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .nav-wrap,
  .about__wrap,
  .values__wrap,
  .match__wrap,
  .squad__wrap,
  .high__wrap,
  .footer__wrap {
    padding-left: 28px;
    padding-right: 28px;
  }

  .about__grid,
  .values__cards,
  .match__cards,
  .squad__track,
  .footer__top,
  .footer__bottom {
    padding-left: 0;
    padding-right: 0;
  }

  .about__grid {
    gap: 36px;
  }
  .values__cards,
  .match__cards {
    gap: 24px;
  }
  .squad__track {
    gap: 12px;
  }
  .footer__rule {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    position: relative;
    padding-top: 16px;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav:not(.side-menu) {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    justify-items: start;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(6, 24, 50, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }
  .nav:not(.side-menu).is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
  }

  .hero {
    height: 100dvh;
    min-height: 80vh;
    background-position: center 14%;
  }
  .hero__content {
    padding: 160px 24px 74px;
  }
  .hero__kicker {
    letter-spacing: 2.4px;
    font-size: 11px;
  }
  .hero__titleLine--white {
    font-size: clamp(36px, 9vw, 56px);
  }
  .hero__titleLine--blue {
    font-size: clamp(38px, 9.5vw, 60px);
    margin-top: 4px;
  }
  .hero__scroll {
    bottom: 16px;
  }

  .about,
  .values,
  .squad {
    padding-top: 74px;
    padding-bottom: 84px;
  }
  .match {
    padding-top: 28px;
    padding-bottom: 34px;
  }
  .about__title,
  .values__title,
  .match__title,
  .squad__title,
  .high__title {
    font-size: 44px;
  }
  .about__subtitle,
  .values__subtitle,
  .match__subtitle,
  .squad__subtitle,
  .high__subtitle {
    font-size: 15px;
    margin-top: 12px;
  }

  .about__grid,
  .values__cards,
  .match__cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .match__wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .match__header {
    text-align: center;
  }
  .match__subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 420px;
  }
  .match__cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .about__showcase {
    gap: 12px;
  }
  .about__portrait img {
    height: 260px;
  }
  .about__copy p {
    font-size: 15px;
    margin-bottom: 18px;
  }
  .about__copy p:first-child {
    font-size: 17px;
  }

  .mv {
    padding: 26px 24px 28px;
  }
  .mv__title {
    font-size: 22px;
    margin-top: 16px;
  }
  .mv__p {
    font-size: 15px;
    line-height: 1.6;
  }

  .matchCard {
    padding: 14px 14px 14px;
  }
  .team__badge {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .team__name {
    font-size: 12px;
  }
  .score {
    font-size: 30px;
  }
  .matchMeta__row {
    font-size: 11px;
  }

  .squad__stage {
    min-height: 352px;
  }
  .squad__track {
    padding: 0;
  }
  .squad__nav {
    width: 46px;
    height: 46px;
    font-size: 29px;
  }
  .player {
    width: min(32vw, 252px);
    height: 244px;
  }
  .player--carousel {
    --player-step: 188px;
  }
  .player--center {
    --player-y: -1px;
    --player-scale: 1.24;
  }
  .player--near {
    --player-scale: 0.84;
  }
  .player--far {
    --player-scale: 0.76;
  }
  .player__num {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
  .player__avatar {
    width: 100%;
    height: 100%;
    min-height: 112px;
  }
  .player__name,
  .player__backName {
    font-size: 18px;
  }
  .playerMetric b {
    font-size: 44px;
  }
  .playerMetric span {
    font-size: 12px;
  }

  .high__rail {
    padding: 0;
  }
  .high__track {
    gap: 0;
  }
  .shot {
    height: 198px;
  }
  .shot--ribbonWide {
    width: min(56vw, 460px);
  }
  .shot--ribbonBase {
    width: min(50vw, 400px);
  }
  .shot--ribbonNarrow {
    width: min(40vw, 320px);
  }

  .footer {
    padding: 58px 0 30px;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__heading {
    margin: 0 0 10px;
    font-size: 16px;
  }
  .footer__sponsors {
    grid-auto-rows: 56px;
  }
  .footer__form {
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer__input {
    width: 100%;
    font-size: 16px;
  }
  .footer__btn {
    width: 100%;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 760px) {
  .nav-wrap,
  .about__wrap,
  .values__wrap,
  .match__wrap,
  .squad__wrap,
  .high__wrap,
  .footer__wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }
  .brand__name {
    font-size: 15px;
  }
  .brand__mark {
    width: 60px;
    height: 60px;
  }

  .side-toggle {
    top: calc(env(safe-area-inset-top, 0px) + 10px);
    right: max(10px, env(safe-area-inset-right, 0px));
    width: 52px;
    height: 52px;
    gap: 7px;
  }
  .side-toggle span {
    width: 38px;
    height: 6px;
  }
  .side-menu {
    width: 100vw;
    padding: 22px 20px 32px;
    gap: 16px;
  }
  .side-menu .nav__link {
    font-size: clamp(20px, 8.4vw, 40px);
    line-height: 1.12;
  }
  .side-menu__close {
    width: 30px;
    height: 30px;
    font-size: 38px;
    margin-bottom: 16px;
  }
  .side-menu__copy {
    font-size: 10px;
    letter-spacing: 0.55px;
  }

  .hero__content {
    padding-top: 140px;
  }
  .hero {
    min-height: 100dvh;
    height: 100dvh;
    background-image: url("../images/hero-bg-mobile.webp");
    background-position: center 16%;
  }
  .hero__scroll {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  }
  .hero__kicker {
    letter-spacing: 1.8px;
    line-height: 1.5;
  }
  .hero__titleLine--white {
    font-size: clamp(32px, 10.5vw, 44px);
  }
  .hero__titleLine--blue {
    font-size: clamp(34px, 11vw, 48px);
  }

  .about__title,
  .values__title,
  .squad__title,
  .high__title {
    font-size: 34px;
  }
  .match__title {
    font-size: 32px;
  }
  .match {
    padding-top: 26px;
    padding-bottom: 30px;
  }
  .match__cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .match__subtitle {
    font-size: 13px;
    margin-top: 8px;
  }
  .score {
    font-size: 28px;
  }
  .about__subtitle {
    letter-spacing: 0;
    padding: 0;
  }
  .about__showcaseCard {
    padding: 22px 18px 20px;
    border-radius: 18px;
  }
  .about__showcaseTitle {
    font-size: 24px;
  }
  .about__points li {
    font-size: 13px;
  }
  .about__portrait img {
    height: 214px;
  }

  .squad__stage {
    min-height: 308px;
  }
  .squad__track {
    padding: 0;
  }
  .squad__nav {
    width: 40px;
    height: 40px;
    font-size: 25px;
  }
  .squad__nav--prev {
    left: 0;
  }
  .squad__nav--next {
    right: 0;
  }
  .player {
    width: min(56vw, 232px);
    height: 228px;
  }
  .player--carousel {
    --player-step: 128px;
  }
  .player--center {
    --player-scale: 1.14;
    --player-y: 0px;
  }
  .player--near {
    --player-scale: 0.8;
  }
  .player--far {
    display: none;
  }

  .high__rail {
    padding: 0;
  }
  .high__marquee {
    gap: 0;
  }
  .high__track {
    gap: 0;
  }
  .shot {
    height: 168px;
    border-radius: 0;
  }
  .shot--ribbonWide {
    width: min(74vw, 420px);
  }
  .shot--ribbonBase {
    width: min(66vw, 360px);
  }
  .shot--ribbonNarrow {
    width: min(56vw, 300px);
  }

  .footer__logo {
    font-size: 28px;
  }
  .footer__item {
    font-size: 13px;
  }
  .footer__copy {
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .side-toggle {
    width: 48px;
    height: 48px;
    gap: 6px;
  }
  .side-toggle span {
    width: 34px;
    height: 5px;
  }
  .hero {
    min-height: 100dvh;
    height: 100dvh;
    background-image: url("../images/hero-bg-mobile.webp");
    background-position: center 18%;
  }
  .hero__content {
    padding-top: 128px;
  }
  .hero__titleLine--white {
    font-size: clamp(30px, 11.5vw, 40px);
  }
  .hero__titleLine--blue {
    font-size: clamp(32px, 12vw, 44px);
  }
  .hero__kicker {
    font-size: 10px;
  }

  .about,
  .values,
  .squad {
    padding-top: 62px;
    padding-bottom: 72px;
  }
  .match {
    padding-top: 22px;
    padding-bottom: 24px;
  }
  .about__title,
  .values__title,
  .squad__title,
  .high__title {
    font-size: 30px;
  }
  .squad__subtitle {
    font-size: 13px;
    margin-top: 10px;
  }
  .squad__track {
    padding: 0;
  }
  .player {
    width: min(68vw, 224px);
    height: 220px;
  }
  .player--carousel {
    --player-step: 114px;
  }
  .player__num {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .player__avatar {
    width: 100%;
    height: 100%;
    min-height: 98px;
  }
  .player__name,
  .player__backName {
    font-size: 16px;
  }
  .player__role {
    font-size: 11px;
  }
  .playerMetric b {
    font-size: 34px;
  }
  .playerMetric span {
    font-size: 11px;
  }
  .match__title {
    font-size: 28px;
  }
  .about__copy {
    padding: 18px 14px;
  }
  .about__copy p:first-child {
    font-size: 16px;
  }
  .matchup__vs {
    font-size: 18px;
  }
  .score {
    font-size: 26px;
  }
  .high__rail {
    padding: 0;
  }
  .shot {
    height: 148px;
    border-radius: 0;
  }
  .shot--ribbonWide {
    width: min(82vw, 360px);
  }
  .shot--ribbonBase {
    width: min(74vw, 320px);
  }
  .shot--ribbonNarrow {
    width: min(66vw, 280px);
  }
}
