/* Mali fudbal Srbije — redizajn 2026 */

:root {
  --navy-900: #06122b;
  --navy-800: #0a1a3a;
  --navy-700: #112a5a;
  --blue: #1f55e0;
  --blue-soft: #e8eefc;
  --red: #e0283a;
  --red-dark: #b91d2d;
  --pitch: #178044;
  --pitch-2: #1c9150;
  --gold: #f5b82e;
  --bronze: #d08a4f;
  --ink: #0e1726;
  --muted: #5a6577;
  --line: #e2e7f0;
  --paper: #ffffff;
  --tint: #f3f6fb;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(10, 26, 58, 0.06), 0 8px 28px rgba(10, 26, 58, 0.08);
  --shadow-lg: 0 2px 4px rgba(10, 26, 58, 0.08), 0 22px 50px rgba(10, 26, 58, 0.18);
  --gutter: clamp(16px, 4vw, 40px);
  --topbar-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.narrow {
  max-width: 860px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--gold);
  color: var(--navy-900);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.skip:focus {
  top: 12px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: none;
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 26px rgba(224, 40, 58, 0.4);
}

.btn--primary:hover {
  background: var(--red-dark);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: #fff;
  color: var(--navy-800);
}

.btn--outline {
  border-color: var(--navy-800);
  color: var(--navy-800);
  background: transparent;
}

.btn--outline:hover {
  background: var(--navy-800);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--red-dark);
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
}

.btn--light:hover {
  box-shadow: 0 12px 28px rgba(6, 18, 43, 0.3);
  transform: translateY(-2px);
}

/* ---------- Top bar ---------- */

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--topbar-h);
  color: #fff;
  isolation: isolate;
}

/* Blur lives on a pseudo-element: backdrop-filter on .topbar itself would
   trap the fixed mobile menu inside the bar's 64px box. */
.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: rgba(6, 18, 43, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(6, 18, 43, 0.25);
  transition: opacity 0.3s ease;
}

.topbar.is-solid::before {
  opacity: 1;
}

.topbar__row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: none;
}

.brand img {
  width: 40px;
  height: auto;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand__name b {
  color: var(--red);
  font-weight: 700;
}

.topbar.is-solid .brand__name b,
.footer .brand__name b {
  color: #ff5a67;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav > a {
  position: relative;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.nav > a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav > a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--red);
}

.nav .nav__cta {
  margin-left: 8px;
  background: var(--red);
}

.nav .nav__cta:hover {
  background: var(--red-dark);
}

.nav__social {
  display: flex;
  gap: 4px;
  margin-left: 10px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.nav__social a,
.footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.nav__social a:hover,
.footer__social a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.nav__social svg,
.footer__social svg {
  width: 20px;
  height: 20px;
}

.burger {
  display: none;
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}

.burger span:nth-child(1) {
  top: 16px;
}
.burger span:nth-child(2) {
  top: 22px;
}
.burger span:nth-child(3) {
  top: 28px;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Pitch markings (decor) ---------- */

.pitch-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  color: #fff;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-900) url("../images/promo-poster.jpg") center / cover no-repeat;
  isolation: isolate;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* The promo clip is letterboxed — scale past the black bars. */
  transform: scale(1.3);
  z-index: -2;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(6, 18, 43, 0.94) 0%, rgba(6, 18, 43, 0.78) 42%, rgba(10, 26, 58, 0.25) 100%),
    linear-gradient(0deg, rgba(6, 18, 43, 0.85) 0%, rgba(6, 18, 43, 0) 35%);
}

.hero .pitch-lines {
  z-index: -1;
  opacity: 0.12;
}

.hero__content {
  padding-top: calc(var(--topbar-h) + 48px);
  padding-bottom: 150px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(224, 40, 58, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(224, 40, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(224, 40, 58, 0);
  }
}

.hero__title {
  font-size: clamp(3.4rem, 11vw, 7.5rem);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.005em;
  max-width: 12ch;
}

.hero__title span {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  position: relative;
}

.hero__title span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.12em;
  background: var(--red);
  z-index: -1;
}

.hero__lead {
  max-width: 560px;
  margin: 26px 0 34px;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 96px;
  width: 44px;
  margin-left: -22px;
  color: var(--navy-800);
  animation: bounce 2.4s ease-in-out infinite;
}

.hero__scroll .ball {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4));
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(14px) rotate(180deg);
  }
}

/* ---------- Scoreboard ---------- */

.scoreboard {
  position: relative;
  z-index: 2;
  margin-top: -70px;
}

.scoreboard__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  position: relative;
  padding: 26px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.stat dt {
  order: 0;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.stat dd {
  margin: 6px 0 2px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3.3rem);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  /* LED scoreboard glow */
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
}

.stat dd small {
  font-size: 0.5em;
  margin-left: 2px;
}

.stat p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.stat--gold dd {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(245, 184, 46, 0.45);
}

.stat--bronze dd {
  color: var(--bronze);
  text-shadow: 0 0 20px rgba(208, 138, 79, 0.4);
}

/* ---------- Sections ---------- */

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section--tint {
  background: var(--tint);
}

.section__head {
  max-width: 680px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section__head h2 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  text-transform: uppercase;
  color: var(--navy-800);
}

.section__head p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section__head--light h2 {
  color: #fff;
}

.section__head--light p {
  color: rgba(255, 255, 255, 0.78);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

/* Jersey-number badge */
.kicker__num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px 10px 14px 14px;
  background: var(--navy-800);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0;
  clip-path: polygon(22% 0, 78% 0, 100% 18%, 88% 34%, 88% 100%, 12% 100%, 12% 34%, 0 18%);
}

.section__head--light .kicker {
  color: var(--gold);
}

.section__head--light .kicker__num {
  background: #fff;
  color: var(--pitch);
}

/* ---------- News ---------- */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-card.is-hidden {
  display: none;
}

.news-card__hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
}

.news-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-800);
}

.news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card__img {
  transform: scale(1.05);
}

.news-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
}

.news-card__title {
  font-size: 1.28rem;
  line-height: 1.2;
  color: var(--navy-800);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__excerpt {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--red);
}

.news-card__more svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.news-card:hover .news-card__more svg {
  transform: translateX(4px);
}

/* Featured: the newest story spans the full row */
.news-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  min-height: 380px;
}

.news-card--featured .news-card__media {
  flex: 1.25;
  aspect-ratio: auto;
}

.news-card--featured .news-card__body {
  flex: 1;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px);
  background:
    radial-gradient(circle at 100% 0%, rgba(31, 85, 224, 0.08), transparent 55%), var(--paper);
}

.news-card--featured .news-card__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  -webkit-line-clamp: 4;
}

.news-card--featured .news-card__excerpt {
  font-size: 1.05rem;
  -webkit-line-clamp: 4;
}

.news-card--featured .news-card__more {
  margin-top: 0;
}

.news-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.news-more[hidden] {
  display: none;
}

/* ---------- Trophies (grass band) ---------- */

.trophies {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 112px) 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(6, 18, 43, 0.35), rgba(6, 18, 43, 0.55)),
    repeating-linear-gradient(90deg, var(--pitch) 0 90px, var(--pitch-2) 90px 180px);
  isolation: isolate;
}

.trophies .pitch-lines {
  z-index: -1;
  opacity: 0.35;
}

.trophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trophy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(6, 18, 43, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.trophy:hover {
  transform: translateY(-4px);
  background: rgba(6, 18, 43, 0.78);
}

.trophy__medal {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 14px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-900);
  box-shadow:
    inset 0 -4px 0 rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.3);
}

.trophy--gold .trophy__medal {
  background: radial-gradient(circle at 30% 30%, #ffe28a, var(--gold) 60%, #c98d10);
}

.trophy--bronze .trophy__medal {
  background: radial-gradient(circle at 30% 30%, #f3c49a, var(--bronze) 60%, #9c5c2b);
}

.trophy__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.trophy__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.trophy__text {
  color: rgba(255, 255, 255, 0.82);
  max-width: 42ch;
}

.trophy__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-weight: 700;
  color: var(--gold);
}

.trophy__more svg {
  width: 18px;
  height: 18px;
}

/* ---------- Partners ---------- */

.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}

.partner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.partner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.partner__logo {
  display: grid;
  place-items: center;
  height: 120px;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  background: var(--tint);
  overflow: hidden;
}

.partner__logo img {
  max-height: 100px;
  width: auto;
  border-radius: 8px;
}

.partner__name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-800);
}

.partner__name svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--muted);
}

.partner__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- About ---------- */

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.prose p {
  margin: 0 0 1.1em;
  color: #2c3647;
  font-size: 1.04rem;
}

.prose > p:first-child {
  font-size: 1.14rem;
  color: var(--ink);
  font-weight: 500;
}

.more summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 16px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--navy-800);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-800);
  cursor: pointer;
  list-style: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

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

.more summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.more[open] summary::after {
  transform: translateY(2px) rotate(-135deg);
}

.more summary:hover {
  background: var(--navy-800);
  color: #fff;
}

.more__close,
.more[open] .more__open {
  display: none;
}

.more[open] .more__close {
  display: inline;
}

.more[open] summary {
  order: 2;
}

.more[open] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about__card {
  position: sticky;
  top: calc(var(--topbar-h) + 24px);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-800);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.about__pitch {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 12 / 7;
  background: repeating-linear-gradient(90deg, var(--pitch) 0 40px, var(--pitch-2) 40px 80px);
}

.about__pitch .pitch-lines {
  opacity: 0.8;
}

.about__pitch img {
  position: relative;
  width: 84px;
  padding: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.facts {
  list-style: none;
  margin: 0;
  padding: 8px 24px 16px;
}

.facts li {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.facts li:last-child {
  border-bottom: 0;
}

.facts strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.facts span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- CTA ---------- */

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 80px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.14), transparent 40%),
    linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
}

.cta__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
}

.cta .ball {
  width: 84px;
  height: 84px;
  color: var(--navy-800);
  animation: spin 14s linear infinite;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.3));
}

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

.cta h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  text-transform: uppercase;
}

.cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.btn svg[viewBox] {
  flex: none;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 calc(24px + env(safe-area-inset-bottom));
  font-size: 0.95rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand--footer {
  color: #fff;
}

.footer__text {
  max-width: 36ch;
  margin: 16px 0 0;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 32px;
  align-content: start;
}

.footer__nav a,
.footer__contact > a,
.footer__bottom a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__nav a:hover,
.footer__contact > a:hover,
.footer__bottom a:hover {
  color: #fff;
}

.footer__contact > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #fff;
  word-break: break-all;
}

.footer__contact > a svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.footer__social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  color: #fff;
}

.footer__social a {
  background: rgba(255, 255, 255, 0.08);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Reader (news dialog) ---------- */

.reader {
  width: min(880px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.reader[open] {
  display: flex;
  flex-direction: column;
  animation: reader-in 0.3s ease;
}

.reader::backdrop {
  background: rgba(6, 18, 43, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

@keyframes reader-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
}

.reader__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 20px;
  background: var(--navy-800);
  color: #fff;
  flex: none;
}

.reader__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reader__brand img {
  width: 28px;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
}

.reader__close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.reader__close:hover {
  background: var(--red);
}

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

.reader__scroll {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.reader__figure {
  margin: 0;
  background: var(--navy-900);
}

.reader__figure img {
  width: 100%;
  max-height: 62vh;
  object-fit: contain;
  margin: 0 auto;
}

.reader__body {
  padding: clamp(22px, 4vw, 44px);
}

.reader__body h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--navy-800);
  margin-bottom: 20px;
}

.reader__body .prose > p:first-child {
  font-size: 1.04rem;
  font-weight: 400;
}

/* ---------- Reveal on scroll ---------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stat:nth-child(3) {
    border-left: 0;
  }

  .stat:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .about__card {
    position: static;
    max-width: 560px;
  }

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

  .footer__grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --topbar-h: 64px;
  }

  .burger {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    padding: 90px 24px calc(32px + env(safe-area-inset-bottom));
    background:
      linear-gradient(180deg, rgba(6, 18, 43, 0.97), rgba(10, 26, 58, 0.98)),
      repeating-linear-gradient(90deg, var(--pitch) 0 60px, var(--pitch-2) 60px 120px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav > a {
    padding: 14px 8px;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav > a.is-active::after {
    display: none;
  }

  .nav .nav__cta {
    margin: 18px 0 0;
    text-align: center;
    border-bottom: 0;
    border-radius: 999px;
    font-size: 1.3rem;
  }

  .nav__social {
    justify-content: center;
    margin: 18px 0 0;
    padding: 0;
    border: 0;
  }

  .nav__social a {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
  }

  .brand {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 0.98rem;
  }

  .brand__name {
    font-size: 1.1rem;
  }

  .brand img {
    width: 36px;
  }

  .hero {
    align-items: flex-end;
    background-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(6, 18, 43, 0.98) 0%, rgba(6, 18, 43, 0.82) 45%, rgba(6, 18, 43, 0.35) 100%);
  }

  .hero__content {
    padding-bottom: 120px;
  }

  .hero__title span {
    -webkit-text-stroke-width: 1.5px;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    padding: 7px 12px;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
  }

  .hero__scroll {
    display: none;
  }

  .scoreboard {
    margin-top: -64px;
  }

  .stat {
    padding: 18px 16px;
  }

  .stat p {
    font-size: 0.82rem;
  }

  .stat dt {
    font-size: 0.66rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-card--featured {
    flex-direction: column;
    min-height: 0;
  }

  .news-card--featured .news-card__media {
    aspect-ratio: 16 / 10;
    flex: none;
  }

  .news-card--featured .news-card__body {
    padding: 22px;
  }

  .news-more .btn {
    width: 100%;
  }

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

  .trophy {
    padding: 24px;
  }

  .partners {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .partner {
    padding: 14px;
  }

  .partner__logo {
    height: 96px;
  }

  .partner__logo img {
    max-height: 80px;
  }

  .partner__name {
    font-size: 1rem;
  }

  .partner__text {
    font-size: 0.84rem;
  }

  .cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .cta .ball {
    width: 64px;
    height: 64px;
  }

  .cta .btn {
    width: 100%;
  }

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

  .footer__bottom {
    flex-direction: column;
  }

  /* Reader becomes a full-screen sheet on phones */
  .reader {
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    max-height: 100%;
    margin: 0;
    border-radius: 0;
  }

  .reader__bar {
    padding-top: calc(12px + env(safe-area-inset-top));
  }

  .reader__scroll {
    flex: 1;
    padding-bottom: env(safe-area-inset-bottom);
  }
}

@media (max-width: 380px) {
  .partners {
    grid-template-columns: 1fr;
  }

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

@media (hover: none) {
  .news-card:hover,
  .partner:hover,
  .trophy:hover {
    transform: none;
  }
}

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

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

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