:root {
  --kf-blue: #243090;
  --kf-blue-deep: #18235f;
  --kf-red: #e12727;
  --kf-bg: #f6f8fb;
  --kf-bg-soft: #eef3f8;
  --kf-surface: #ffffff;
  --kf-surface-soft: #f9fbfd;
  --kf-text: #172033;
  --kf-text-soft: #5c6678;
  --kf-heading: #0f172a;
  --kf-border: #e5ebf2;
  --kf-border-strong: #d8e0eb;
  --kf-max: 1280px;
  --kf-radius: 30px;
  --kf-radius-sm: 20px;
  --kf-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  --kf-shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: var(--kf-bg);
  color: var(--kf-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  width: min(100% - 40px, var(--kf-max));
  margin-inline: auto;
}

.site-main {
  min-height: 100vh;
}

/* HERO */
.hero-cinematic {
  position: relative;
  overflow: hidden;
  padding: 138px 0 108px;
  background:
    linear-gradient(112deg, rgba(16,27,74,.92) 0%, rgba(16,27,74,.72) 34%, rgba(15,23,42,.48) 58%, rgba(225,39,39,.50) 100%),
    linear-gradient(180deg, rgba(8,15,35,.22), rgba(8,15,35,.34));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 24%);
  pointer-events: none;
}

.hero-cinematic .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: end;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-title {
  margin: 0;
  max-width: 920px;
  font-size: clamp(46px, 8vw, 96px);
  line-height: .92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: #ffffff;
  text-wrap: balance;
}

.hero-description {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn-primary {
  background: var(--kf-red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(225,39,39,0.30);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  max-width: 980px;
}

.hero-stat {
  padding: 24px 26px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.hero-stat strong {
  display: block;
  font-size: 40px;
  line-height: 1;
  color: #fff;
}

.hero-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}

.hero-aside {
  display: grid;
  gap: 18px;
  align-self: center;
}

.hero-info-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  color: #fff;
}

.hero-card-label {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-info-card h3 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: .98;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero-info-card p,
.hero-info-card small {
  display: block;
  margin: 0;
  color: rgba(255,255,255,0.86);
}

.hero-info-card small {
  margin-top: 6px;
  font-size: 14px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
}

.hero-chip.is-home {
  background: var(--kf-red);
}

.hero-chip.is-away {
  background: var(--kf-blue);
}

.hero-result-score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
}

.hero-result-score span {
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
}

.hero-result-score em {
  font-style: normal;
  font-size: 22px;
  font-weight: 800;
  color: rgba(255,255,255,0.78);
}


.fc-section--matches-top {
  margin-top: -34px;
  padding: 0 0 48px;
  position: relative;
  z-index: 3;
}

.fc-match-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.fc-match-pair__item {
  display: flex;
}

.fc-match-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  min-height: 290px;
  width: 100%;
  padding: 40px 34px;
  /* border: 1px solid rgba(255, 255, 255, 0.16); */
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}

.fc-match-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 28%);
  pointer-events: none;
}

.fc-match-showcase > * {
  position: relative;
  z-index: 1;
}

.fc-match-showcase--result {
  box-shadow: 0 24px 60px rgba(225, 39, 39, 0.14);
}

.fc-match-showcase--upcoming {
  box-shadow: 0 24px 60px rgba(36, 48, 144, 0.16);
}

.fc-match-showcase--result .fc-eyebrow {
  color: var(--kf-red);
}

.fc-match-showcase--upcoming .fc-eyebrow {
  color: #7f93ff;
}

.fc-match-showcase h2 {
  margin: 8px 0 10px;
  max-width: 14ch;
  font-size: clamp(28px, 3vw, 42px);
  line-height: .96;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.fc-match-showcase p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.84);
  font-size: 17px;
  font-weight: 600;
}

.fc-match-showcase small {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}

.fc-match-showcase .fc-scoreline {
  margin-top: 4px;
}

.fc-match-showcase__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-width: 96px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

/* SECTIONS */
.section-block {
  padding: 112px 0;
}

.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.section-news {
  background: #ffffff;
}

.section-academy {
  background: linear-gradient(180deg, #f8fbfd 0%, #f1f5fa 100%);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--kf-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(36px, 4vw, 60px);
  line-height: .94;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  color: var(--kf-heading);
  text-wrap: balance;
}

.section-intro {
  max-width: 760px;
  margin: 0 0 34px;
  color: var(--kf-text-soft);
  font-size: 18px;
  line-height: 1.85;
}

/* PROGRAMS */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.program-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--kf-border);
  border-radius: var(--kf-radius);
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  box-shadow: var(--kf-shadow);
}

.program-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f2f6fb;
  color: var(--kf-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.program-card h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--kf-heading);
}

.program-card p {
  margin: 0;
  color: var(--kf-text-soft);
  font-size: 16px;
  line-height: 1.8;
}

/* MATCH CENTER */
.match-center-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.match-panel {
  padding: 30px;
  border: 1px solid var(--kf-border);
  border-radius: 32px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--kf-shadow-lg);
}

.panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--kf-border);
}

.panel-head h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--kf-heading);
}

.panel-head span {
  color: #7d8797;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.match-list {
  display: grid;
  gap: 14px;
}

.match-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--kf-border);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.match-row:hover {
  transform: translateY(-2px);
  border-color: var(--kf-border-strong);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.match-meta {
  color: var(--kf-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.match-main h4 {
  margin: 8px 0 8px;
  font-size: 26px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--kf-heading);
}

.match-main p {
  margin: 0;
  color: var(--kf-text-soft);
  font-size: 15px;
}

.match-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
}

.match-chip.is-home {
  background: var(--kf-red);
  box-shadow: 0 8px 18px rgba(225,39,39,0.22);
}

.match-chip.is-away {
  background: var(--kf-blue);
  box-shadow: 0 8px 18px rgba(36,48,144,0.18);
}

.result-score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 18px;
  background: #fff5f5;
  border: 1px solid #ffe2e2;
}

.result-score span {
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  color: var(--kf-red);
  letter-spacing: -0.04em;
}

.result-score em {
  font-style: normal;
  font-size: 24px;
  font-weight: 800;
  color: #a5afbf;
}

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

.news-card {
  overflow: hidden;
  border: 1px solid var(--kf-border);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--kf-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.news-thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.news-content {
  padding: 28px;
}

.news-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--kf-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.news-content h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--kf-heading);
}

.news-content p {
  margin: 0 0 18px;
  color: var(--kf-text-soft);
  font-size: 16px;
  line-height: 1.8;
}

.news-link {
  color: var(--kf-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ACADEMY */
.academy-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
}

.academy-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--kf-text-soft);
  font-size: 18px;
  line-height: 1.9;
}

.academy-card {
  padding: 34px;
  border: 1px solid var(--kf-border);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: var(--kf-shadow-lg);
}

.academy-form-shell {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--kf-heading);
  font-size: 13px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--kf-border-strong);
  border-radius: 16px;
  background: #fff;
  color: var(--kf-text);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #96a1b1;
}

button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--kf-red);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(225,39,39,0.18);
}

/* SPONSORS */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sponsor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 164px;
  padding: 24px;
  border: 1px solid var(--kf-border);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  box-shadow: var(--kf-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.sponsor-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--kf-shadow-lg);
}

.sponsor-card img {
  max-height: 74px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .9;
  transition: filter .2s ease, opacity .2s ease;
}

.sponsor-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.sponsor-card h3 {
  margin: 0;
  text-align: center;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--kf-heading);
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .hero-grid,
  .academy-grid,
  .match-center-grid,
  .programs-grid,
  .news-grid,
  .sponsors-grid {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    max-width: 560px;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 24px, var(--kf-max));
  }

  .hero-cinematic {
    padding: 108px 0 80px;
  }

  .section-block {
    padding: 82px 0;
  }

  .section-title {
    font-size: 40px;
  }

  .hero-description,
  .section-intro,
  .academy-copy p {
    font-size: 16px;
  }

  .panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .match-row {
    grid-template-columns: 1fr;
  }

  .match-main h4,
  .news-content h3,
  .program-card h3 {
    font-size: 22px;
  }

  .result-score {
    justify-content: flex-start;
  }

  .result-score span {
    font-size: 34px;
  }

  .hero-info-card h3 {
    font-size: 24px;
  }
}
/* HEADER / FOOTER */
.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}

.site-topbar {
  background: rgba(9, 16, 35, 0.92);
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
}

.site-topbar-contact,
.site-topbar-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-topbar a {
  font-size: 13px;
}

.site-navbar-wrap {
  background: rgba(10, 16, 32, 0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
}

.site-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-logo img,
.custom-logo-link img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--kf-blue-deep), var(--kf-red));
  color: #fff;
  font-weight: 900;
  font-size: 26px;
}

.site-brand-copy {
  display: grid;
  gap: 2px;
}

.site-brand-copy strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.site-brand-copy small {
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.primary-navigation {
  justify-self: center;
}

.primary-navigation .menu,
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation .menu-item a,
.footer-menu .menu-item a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}

.primary-navigation .menu-item a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.current-menu-item > a,
.current_page_item > a {
  background: rgba(255,255,255,0.10);
  color: #fff !important;
}

.mobile-nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  box-shadow: none;
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: #fff;
}

.site-footer {
  background: #09101f;
  color: rgba(255,255,255,0.72);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, .9fr));
  gap: 32px;
  padding: 72px 0 34px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 16px;
  color: #fff;
}

.site-footer h3 {
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.9;
}

.site-footer ul,
.site-footer .footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .footer-menu {
  display: grid;
  gap: 6px;
}

.site-footer .footer-menu a {
  min-height: auto;
  padding: 0;
  border-radius: 0;
}

.site-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer-bottom .container {
  padding: 18px 0 28px;
}

.site-footer-bottom p {
  margin: 0;
  font-size: 13px;
}

.section-gallery-preview {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

@media (max-width: 1080px) {
  .site-navbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-navigation {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-bottom: 18px;
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .primary-navigation .menu-item a {
    width: 100%;
    justify-content: center;
  }

  .site-header-cta {
    display: none;
  }

  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .site-topbar {
    display: none;
  }

  .site-navbar {
    min-height: 78px;
  }

  .site-brand-copy strong {
    font-size: 15px;
  }

  .site-brand-copy small {
    display: none;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }
}

/* ==========================================================
   Homepage concept styles - scoped to .fc-homepage only
   ========================================================== */
.fc-homepage {
  background: #070b16;
  color: #ffffff;
}

.fc-homepage .container {
  width: min(100% - 40px, 1280px);
}

.fc-homepage .fc-section {
  padding: 88px 0;
}

.fc-homepage .fc-section--dark {
  background: #09101f;
}

.fc-homepage .fc-section--soft {
  background: rgba(255,255,255,0.03);
}

.fc-homepage .fc-badge,
.fc-homepage .fc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .24em;
}

.fc-homepage .fc-eyebrow {
  color: rgba(255,255,255,0.52);
}

.fc-home-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7,11,22,0.88) 0%, rgba(12,20,46,0.86) 38%, rgba(48,52,147,0.88) 72%, rgba(241,40,36,0.82) 100%),
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 22%);
  background-size: cover;
  background-position: center;
  padding: 88px 0 72px;
}

/* .fc-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
} */

.fc-home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
  gap: 42px;
  align-items: center;
}

.fc-home-hero__content,
.fc-home-hero__panel {
  position: relative;
  z-index: 2;
}

.fc-homepage .fc-badge {
  margin-bottom: 22px;
  padding: 10px 16px;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(10px);
}

.fc-home-hero__title {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .92;
  letter-spacing: -.06em;
  text-transform: uppercase;
  text-wrap: balance;
}

.fc-home-hero__title span {
  color: #f12824;
}

.fc-home-hero__text {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
}

.fc-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.fc-homepage .fc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.fc-homepage .fc-btn:hover {
  transform: translateY(-2px);
}

.fc-homepage .fc-btn--primary {
  background: #f12824;
  color: #fff;
  box-shadow: 0 14px 30px rgba(241,40,36,0.25);
}

.fc-homepage .fc-btn--ghost {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}

.fc-homepage .fc-btn--light {
  background: #fff;
  color: #101427;
}

.fc-homepage .fc-btn--outline-dark {
  background: transparent;
  border-color: rgba(255,255,255,0.14);
  color: #fff;
}

.fc-home-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  margin-top: 38px;
}

.fc-home-stat {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.fc-home-stat strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: #f12824;
}

.fc-home-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}

.fc-home-hero__panel {
  display: grid;
  gap: 18px;
}

.fc-match-card {
  padding: 28px;
  border-radius: 34px;
  /* border: 1px solid rgba(255,255,255,0.1); */
  box-shadow: 0 28px 70px rgba(0,0,0,0.25);
}

.fc-match-card--glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  backdrop-filter: blur(14px);
}

.fc-match-card--cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #f12824 0%, #d51f1b 50%, #b41715 100%);
}

.fc-match-card__label {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.fc-match-card h3 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: -.04em;
}

.fc-match-card p,
.fc-match-card small {
  display: block;
  margin: 10px 0 0;
  color: rgba(255,255,255,0.78);
}

.fc-scoreline {
  margin-top: 16px;
  font-size: clamp(46px, 7vw, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.06em;
}

.fc-scoreline--small { font-size: 42px; }
.fc-scoreline--compact { font-size: 36px; }

.fc-split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.fc-section-title {
  margin: 10px 0 0;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: .95;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.fc-section-intro {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.8;
}

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

.fc-info-card,
.fc-inline-cta,
.fc-surface-card,
.fc-testimonial-card,
.fc-contact-cta-card,
.fc-sponsor-card,
.fc-program-card,
.fc-coach-card,
.fc-news-side-item,
.fc-news-featured,
.fc-player-card {
  /* border: 1px solid rgba(255,255,255,0.1); */
  border-radius: 32px;
}

.fc-info-card,
.fc-inline-cta,
.fc-surface-card,
.fc-news-side-item,
.fc-player-card,
.fc-coach-card,
.fc-sponsor-card,
.fc-testimonial-card {
  background: rgba(255,255,255,0.04);
}

.fc-info-card {
  padding: 30px;
}

.fc-info-card h3 {
  margin: 14px 0 10px;
  font-size: 28px;
  text-transform: uppercase;
}

.fc-info-card p { margin: 0; color: rgba(255,255,255,0.7); }

.fc-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
}

.fc-program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
}

.fc-program-card {
  overflow: hidden;
  background: #0c1120;
}

.fc-program-card__visual {
  height: 180px;
  background: linear-gradient(135deg, #1c2760 0%, #111827 50%, #f12824 100%);
}

.fc-program-card:nth-child(even) .fc-program-card__visual {
  background: linear-gradient(135deg, #0f172a 0%, #303493 55%, #7d87ff 100%);
}

.fc-program-card__body { padding: 24px; }
.fc-program-card__meta {
  color: #f12824;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.fc-program-card h3 {
  margin: 12px 0 10px;
  font-size: 28px;
  text-transform: uppercase;
}
.fc-program-card p { margin: 0; color: rgba(255,255,255,0.66); }
.fc-center-action { margin-top: 28px; text-align: center; }

.fc-match-media-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(0,.92fr);
  gap: 24px;
}

.fc-surface-card { padding: 34px; }
.fc-surface-card--dark { background: linear-gradient(145deg,#091123 0%,#111b36 50%,#1b2156 100%); }
.fc-surface-card--soft { background: rgba(255,255,255,0.04); }

.fc-mini-match-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 28px;
}

.fc-mini-match-card {
  padding: 22px;
  border-radius: 24px;
  /* border: 1px solid rgba(255,255,255,0.1); */
  background: rgba(255,255,255,0.05);
}

.fc-mini-match-card__label,
.fc-sponsor-card__tier,
.fc-player-card__position {
  color: #f12824;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.fc-mini-match-card h3 { margin: 12px 0 0; font-size: 24px; text-transform: uppercase; }
.fc-mini-match-card p { margin: 10px 0 0; color: rgba(255,255,255,0.78); }
.fc-mini-match-card small { display: block; margin-top: 8px; color: rgba(255,255,255,0.45); }


.fc-home-stats--panel {
  margin-top: 0;
}

.fc-home-hero__panel .fc-home-stat {
  text-align: center;
}

.fc-home-hero__panel .fc-home-stat strong,
.fc-home-hero__panel .fc-home-stat span {
  text-align: center;
}

.fc-split-head--compact {
  align-items: center;
  margin-bottom: 22px;
}

.fc-stack-slider {
  position: relative;
  min-height: 360px;
  margin-top: 10px;
}

.fc-stack-slider__viewport {
  position: relative;
  min-height: 360px;
}

.fc-stack-slider__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fc-mini-match-card--stack {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  transform-origin: center center;
  transition: transform .42s ease, opacity .42s ease, filter .42s ease;
  will-change: transform, opacity;
}

.fc-mini-match-card--stack::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 58%);
  pointer-events: none;
}

.fc-mini-match-card--stack > * {
  position: relative;
  z-index: 1;
}

.fc-mini-match-card--stack.is-active {
  z-index: 5;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

.fc-mini-match-card--stack.is-stack-1 {
  z-index: 4;
  opacity: .74;
  transform: translate3d(0, 16px, 0) scale(.975);
  filter: saturate(.88);
}

.fc-mini-match-card--stack.is-stack-2 {
  z-index: 3;
  opacity: .50;
  transform: translate3d(0, 32px, 0) scale(.95);
  filter: saturate(.72);
}

.fc-mini-match-card--stack.is-stack-3 {
  z-index: 2;
  opacity: .32;
  transform: translate3d(0, 48px, 0) scale(.925);
  filter: saturate(.58);
}

.fc-mini-match-card--stack.is-hidden {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 64px, 0) scale(.9);
}

.fc-mini-match-card--stack h3 {
  max-width: 420px;
}

@media (max-width: 991px) {
  .fc-stack-slider,
  .fc-stack-slider__viewport,
  .fc-mini-match-card--stack {
    min-height: 320px;
  }

  .fc-mini-match-card--stack {
    padding: 24px;
  }

  .fc-mini-match-card--stack.is-stack-1 {
    transform: translate3d(0, 12px, 0) scale(.98);
  }

  .fc-mini-match-card--stack.is-stack-2 {
    transform: translate3d(0, 24px, 0) scale(.96);
  }

  .fc-mini-match-card--stack.is-stack-3 {
    transform: translate3d(0, 36px, 0) scale(.94);
  }
}

@media (max-width: 767px) {
  .fc-home-hero__panel {
    margin-top: 8px;
  }

  .fc-home-stats--panel {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .fc-split-head--compact {
    align-items: flex-start;
  }

  .fc-stack-slider__controls {
    margin-top: 6px;
  }

  .fc-stack-slider,
  .fc-stack-slider__viewport,
  .fc-mini-match-card--stack {
    min-height: 300px;
  }

  .fc-mini-match-card--stack.is-prev,
  .fc-mini-match-card--stack.is-next {
    opacity: .22;
  }
}

.fc-media-list { display: grid; gap: 16px; margin-top: 28px; }
.fc-media-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
}
.fc-media-item span { color: rgba(255,255,255,0.82); }
.fc-media-item strong { font-size: 13px; }
.fc-card-action { margin-top: 24px; }

.fc-roster-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fc-scroll-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.fc-roster-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.fc-roster-track::-webkit-scrollbar { display: none; }

.fc-player-card {
  min-width: 310px;
  max-width: 310px;
  overflow: hidden;
  background: #0b1020;
}

.fc-player-card__image {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #202c70 0%, #0b1020 50%, #f12824 100%);
}

.fc-player-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-player-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,0.14);
}

.fc-player-card__body { padding: 22px; }
.fc-player-card__body h3 { margin: 8px 0 10px; font-size: 26px; text-transform: uppercase; }
.fc-player-card__body h3 a { color: #fff; }
.fc-player-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255,255,255,0.64);
}

.fc-news-grid {
  display: grid;
  grid-template-columns: minmax(0,1.12fr) minmax(0,.88fr);
  gap: 24px;
}

.fc-news-featured {
  overflow: hidden;
  background: linear-gradient(145deg,#0a1328 0%,#131c3c 55%,#222d71 100%);
}

.fc-news-featured__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.fc-news-featured__body { padding: 28px; }
.fc-news-featured h3 { margin: 16px 0 12px; font-size: clamp(28px,3vw,42px); line-height: .98; text-transform: uppercase; }
.fc-news-featured p { margin: 0; color: rgba(255,255,255,0.72); }

.fc-news-side-list { display: grid; gap: 18px; }
.fc-news-side-item { padding: 24px; }
.fc-news-side-item span { color: rgba(255,255,255,0.45); font-size: 13px; }
.fc-news-side-item h4 { margin: 12px 0 10px; font-size: 22px; text-transform: uppercase; }
.fc-news-side-item p { margin: 0; color: rgba(255,255,255,0.68); }

.fc-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.fc-sponsor-card { padding: 24px; }
.fc-sponsor-card h3 { margin: 12px 0 0; font-size: 28px; text-transform: uppercase; }
.fc-sponsor-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  margin-top: 22px;
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
}
.fc-sponsor-card__logo img { max-width: 180px; max-height: 90px; width: auto; height: auto; }
.fc-sponsor-card__link { display: inline-flex; margin-top: 18px; color: rgba(255,255,255,0.82); font-weight: 700; }

.fc-coach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 22px;
}
.fc-coach-card {
  overflow: hidden;
  background: #0b1020;
}
.fc-coach-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #1f275f, #0f172a, #f12824);
}
.fc-coach-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fc-coach-card__image span {
  font-size: 72px;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
}
.fc-coach-card__body { padding: 22px; }
.fc-coach-card__body h3 { margin: 0; font-size: 24px; text-transform: uppercase; }
.fc-coach-card__body p { margin: 8px 0 0; color: rgba(255,255,255,0.62); }

.fc-testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
  gap: 24px;
}
.fc-testimonial-card,
.fc-contact-cta-card { padding: 34px; }
.fc-testimonial-card blockquote {
  margin: 20px 0 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -.04em;
}
.fc-testimonial-card p { margin: 20px 0 0; color: rgba(255,255,255,0.58); }
.fc-contact-cta-card {
  background: linear-gradient(135deg,#f12824 0%, #d51f1b 42%, #303493 100%);
}
.fc-contact-cta-card h2 {
  margin: 14px 0 12px;
  font-size: clamp(32px,4vw,54px);
  line-height: .96;
  text-transform: uppercase;
}
.fc-contact-cta-card p,
.fc-contact-cta-card li { color: rgba(255,255,255,0.86); }
.fc-contact-cta-card ul { margin: 20px 0 26px; padding: 0; list-style: none; display: grid; gap: 8px; }

.fc-empty-state {
  padding: 34px;
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: 28px;
  color: rgba(255,255,255,0.62);
  text-align: center;
}

@media (max-width: 1100px) {
  .fc-home-hero__grid,
  .fc-match-media-grid,
  .fc-news-grid,
  .fc-testimonial-grid,
  .fc-program-grid,
  .fc-sponsor-grid,
  .fc-coach-grid,
  .fc-home-stats,
  .fc-mini-match-grid,
  .fc-info-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .fc-home-hero__grid,
  .fc-match-media-grid,
  .fc-news-grid,
  .fc-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .fc-program-grid,
  .fc-coach-grid,
  .fc-sponsor-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .fc-home-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .fc-homepage .fc-section { padding: 64px 0; }
  .fc-home-hero { padding: 70px 0 56px; }
  .fc-split-head,
  .fc-inline-cta,
  .fc-roster-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .fc-home-stats,
  .fc-program-grid,
  .fc-sponsor-grid,
  .fc-coach-grid,
  .fc-info-grid,
  .fc-mini-match-grid {
    grid-template-columns: 1fr;
  }
  .fc-player-card { min-width: 84vw; max-width: 84vw; }
  .fc-section-title,
  .fc-home-hero__title { word-break: break-word; }
}


@media (max-width: 860px) {
  .fc-match-pair {
    grid-template-columns: 1fr;
  }

  .fc-section--matches-top {
    margin-top: -10px;
    padding-bottom: 36px;
  }
}
