:root {
  --bnya-indigo: #2c2760;
  --bnya-indigo-dark: #151236;
  --bnya-indigo-deep: #0d0b1e;
  --bnya-turquoise: #2fb6bc;
  --bnya-turquoise-soft: rgba(47, 182, 188, 0.16);
  --bnya-orange: #e08d3c;
  --bnya-orange-soft: rgba(224, 141, 60, 0.16);
  --bnya-violet: #6050dc;
  --bnya-olive: #4a5d23;
  --bnya-navy: #0d1b2a;
  --bnya-cream: #f5efe0;
  --bnya-soft: #eef6fb;
  --bnya-dark: #0d0b1e;
  --bnya-dark-2: #151236;
  --bnya-dark-3: #211d4d;
  --bnya-white: #ffffff;
  --bnya-off-white: #f4f4fb;
  --bnya-muted: #b8b8d4;
  --bnya-muted-2: #8383aa;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.22);
  --shadow-glow: 0 0 42px rgba(47, 182, 188, 0.2);
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
}

html[dir="rtl"] body,
html[dir="rtl"] .nav-shell,
html[dir="rtl"] .powered-inner,
html[dir="rtl"] .hero-grid,
html[dir="rtl"] .academy-grid,
html[dir="rtl"] .media-layout,
html[dir="rtl"] .footer-grid {
  direction: rtl;
}

html[dir="rtl"] .identity-quote {
  border-right: 4px solid var(--bnya-orange);
  border-left: 0;
  padding-right: 22px;
  padding-left: 0;
}

html[dir="rtl"] .identity-chain span:not(:last-child)::after {
  right: auto;
  left: -12px;
  background: linear-gradient(270deg, var(--bnya-turquoise), transparent);
}

body {
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 10%, rgba(47, 182, 188, 0.18), transparent 30rem),
    radial-gradient(circle at 82% 0%, rgba(224, 141, 60, 0.11), transparent 28rem),
    linear-gradient(180deg, var(--bnya-indigo-deep), var(--bnya-dark-2) 44%, var(--bnya-indigo-deep));
  color: var(--bnya-white);
  font-family: Barlow, Gotham, Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(47, 182, 188, 0.055) 48%, transparent 54% 100%),
    radial-gradient(circle at 50% 0%, rgba(96, 80, 220, 0.16), transparent 34rem);
  mix-blend-mode: screen;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--bnya-turquoise);
  outline-offset: 4px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(72px, 8vw, 112px) 0;
  z-index: 1;
  overflow: hidden;
}

.section.band {
  background:
    linear-gradient(135deg, rgba(47, 182, 188, 0.08), transparent 36%),
    rgba(13, 11, 30, 0.48);
  border-block: 1px solid rgba(47, 182, 188, 0.12);
}

.section.cyan-band {
  background:
    radial-gradient(circle at 8% 0%, rgba(47, 182, 188, 0.24), transparent 26rem),
    linear-gradient(135deg, rgba(47, 182, 188, 0.16), transparent 38%),
    rgba(13, 11, 30, 0.66);
  border-block: 1px solid rgba(47, 182, 188, 0.24);
  box-shadow: inset 0 1px 0 rgba(47, 182, 188, 0.12), inset 0 -1px 0 rgba(47, 182, 188, 0.08);
}

.section.cyan-band .section-title {
  text-shadow: 0 0 34px rgba(47, 182, 188, 0.14);
}

.section.cyan-band::before {
  opacity: 0.3;
  background:
    linear-gradient(30deg, transparent 0 46%, rgba(47, 182, 188, 0.24) 47% 48%, transparent 49% 100%),
    linear-gradient(150deg, transparent 0 46%, rgba(47, 182, 188, 0.1) 47% 48%, transparent 49% 100%);
  background-size: 72px 72px;
}

.section.cream {
  background:
    linear-gradient(135deg, rgba(47, 182, 188, 0.1), transparent 34%),
    var(--bnya-cream);
  color: #17172b;
}

.section.cream .section-title,
.section.cream h3 {
  color: var(--bnya-indigo);
}

.section.cream .section-lead,
.section.cream p {
  color: #526172;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(30deg, transparent 0 46%, rgba(47, 182, 188, 0.18) 47% 48%, transparent 49% 100%),
    linear-gradient(150deg, transparent 0 46%, rgba(255, 255, 255, 0.06) 47% 48%, transparent 49% 100%);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 20% 10%, black, transparent 58%);
}

.section-header {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--bnya-turquoise);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.centered .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.warm {
  color: var(--bnya-orange);
}

h1,
h2,
h3,
h4 {
  font-family: Barlow, Gotham, Arial, sans-serif;
  line-height: 1.06;
  letter-spacing: 0;
}

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

.section-title {
  margin-bottom: 16px;
  color: var(--bnya-white);
  font-size: clamp(1.75rem, 3.2vw, 2.85rem);
  text-shadow: 0 0 24px rgba(47, 182, 188, 0.12);
}

.section-lead {
  margin: 0;
  color: var(--bnya-muted);
  font-size: clamp(0.97rem, 1.15vw, 1.08rem);
}

.pixel-wind,
.pixel-wind-hero {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0.34;
}

.pixel-wind-hero {
  position: absolute;
  z-index: -1;
  opacity: 0.5;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(47, 182, 188, 0.12);
  background: rgba(13, 11, 30, 0.78);
  backdrop-filter: blur(18px);
}

.top-powered {
  border-bottom: 1px solid rgba(47, 182, 188, 0.14);
  background: rgba(244, 244, 251, 0.98);
  color: var(--bnya-indigo);
}

.powered-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.powered-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.powered-inner img {
  display: block;
  width: auto;
  object-fit: contain;
}

.powered-inner img[alt="Keybox"] {
  height: 18px;
}

.powered-inner img[alt="Young Creators"] {
  height: 28px;
}

.powered-separator {
  color: currentColor;
}

.language-switch {
  position: absolute;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language-switch button {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  background: rgba(44, 39, 96, 0.1);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.language-switch button:hover,
.language-switch button.is-active {
  transform: translateY(-2px);
  background: rgba(47, 182, 188, 0.17);
  box-shadow: 0 0 18px rgba(47, 182, 188, 0.24);
}

.patronage-bar {
  display: none;
}

.patronage-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding-block: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.patronage-inner::-webkit-scrollbar {
  display: none;
}

.patronage-label {
  color: var(--bnya-muted-2);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ministry-chip {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: none;
  min-width: 0;
}

.ministry-chip img,
.ministry-logo {
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  min-width: 42px;
  border-radius: 9px;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.ministry-chip span {
  color: #deddf2;
  font-size: clamp(0.62rem, 0.72vw, 0.72rem);
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header.is-scrolled {
  background: rgba(13, 11, 30, 0.94);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.22);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 54px;
}

.site-logo {
  display: block;
  height: 54px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(47, 182, 188, 0.24));
}

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

.nav-links a {
  border-radius: 999px;
  padding: 8px 9px;
  color: var(--bnya-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: var(--bnya-turquoise-soft);
  color: var(--bnya-white);
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--bnya-turquoise);
  color: var(--bnya-indigo-deep);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 0 26px rgba(47, 182, 188, 0.3);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--bnya-white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 136px 0 72px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 10%, rgba(47, 182, 188, 0.22), transparent 30rem),
    radial-gradient(circle at 76% 32%, rgba(224, 141, 60, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(13, 11, 30, 0.52), rgba(13, 11, 30, 0.96));
  transform: translateY(var(--hero-shift, 0));
  animation: heroBreath 26s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(47, 182, 188, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 182, 188, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 88%);
  pointer-events: none;
}

@keyframes heroBreath {
  from { transform: scale(1) translateY(var(--hero-shift, 0)); }
  to { transform: scale(1.012) translateY(var(--hero-shift, 0)); }
}

.background-animation {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.floating-pixel {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--bnya-turquoise);
  opacity: 0.48;
  box-shadow: 0 0 18px rgba(47, 182, 188, 0.5);
  animation: floatPixel 8s ease-in-out infinite, pixelBlink 2.7s ease-in-out infinite;
}

.floating-pixel:nth-child(1) { top: 20%; left: 10%; }
.floating-pixel:nth-child(2) { top: 32%; left: 86%; background: var(--bnya-orange); animation-delay: -2s; }
.floating-pixel:nth-child(3) { top: 74%; left: 16%; width: 13px; height: 13px; background: var(--bnya-violet); animation-delay: -4s; }
.floating-pixel:nth-child(4) { top: 66%; left: 78%; animation-delay: -1s; }

@keyframes floatPixel {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(14px, -20px, 0) rotate(16deg); }
}

@keyframes pixelBlink {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.72; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.hero-brandline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(47, 182, 188, 0.28);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(13, 11, 30, 0.62);
  color: var(--bnya-white);
  box-shadow: 0 0 38px rgba(47, 182, 188, 0.16);
}

.hero-brandline span {
  color: var(--bnya-turquoise);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-brandline strong {
  color: var(--bnya-muted);
  font-size: 0.8rem;
  line-height: 1.2;
}

.hero h1 {
  margin-bottom: 8px;
  max-width: 760px;
  font-size: clamp(2.45rem, 5.3vw, 4.45rem);
  font-weight: 900;
  text-shadow: 0 0 40px rgba(47, 182, 188, 0.2), 0 12px 48px rgba(0, 0, 0, 0.5);
}

.hero-ar {
  margin-bottom: 22px;
  color: var(--bnya-turquoise);
  font-family: Tajawal, Arial, sans-serif;
  font-size: clamp(1.3rem, 2.3vw, 1.9rem);
  font-weight: 700;
  direction: rtl;
}

.hero-baseline {
  display: grid;
  gap: 2px;
  margin-bottom: 24px;
  font-weight: 900;
  font-size: clamp(1.22rem, 2.45vw, 2.05rem);
  line-height: 1.12;
}

.hero-baseline .intent { color: #c9c4ff; }
.hero-baseline .identity { color: var(--bnya-turquoise); }
.hero-baseline .africa { color: var(--bnya-orange); }

.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: #c7c7df;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: var(--bnya-turquoise);
  color: var(--bnya-indigo-deep);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 0 30px rgba(47, 182, 188, 0.34);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: var(--bnya-white);
}

.btn-warm {
  background: var(--bnya-orange);
  color: #16111e;
  box-shadow: 0 0 26px rgba(224, 141, 60, 0.3);
}

.hero-visual {
  position: relative;
  margin: 0;
  border: 1px solid rgba(47, 182, 188, 0.24);
  border-radius: clamp(18px, 3vw, 28px);
  overflow: hidden;
  background: rgba(13, 11, 30, 0.74);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), 0 0 56px rgba(47, 182, 188, 0.16);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 11, 30, 0.32), transparent 28%, transparent 72%, rgba(13, 11, 30, 0.32)),
    linear-gradient(180deg, transparent 62%, rgba(13, 11, 30, 0.72));
}

.hero-visual::after,
.media-frame::after,
.track-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.14) 48%, transparent 54% 100%);
  translate: -120% 0;
  opacity: 0.45;
  animation: cinematicSweep 12s ease-in-out infinite;
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9.6;
  object-fit: cover;
  object-position: center 30%;
}

@keyframes cinematicSweep {
  0%, 52% { translate: -120% 0; }
  72%, 100% { translate: 120% 0; }
}

.stat-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-jingle {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-top: 0;
}

.hero-jingle::before {
  content: "";
  position: absolute;
  inset: auto 8% -22px;
  height: 74px;
  border-radius: 999px;
  background: rgba(47, 182, 188, 0.18);
  filter: blur(28px);
  pointer-events: none;
}

.hero-jingle-video {
  position: relative;
  display: block;
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(47, 182, 188, 0.34);
  border-radius: clamp(18px, 3vw, 28px);
  background: rgba(13, 11, 30, 0.8);
  object-fit: cover;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 58px rgba(47, 182, 188, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.jingle-section {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 5vw, 68px) 0 clamp(54px, 7vw, 88px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 182, 188, 0.18), transparent 30rem),
    linear-gradient(180deg, rgba(13, 11, 30, 0.84), rgba(21, 18, 54, 0.74));
  border-block: 1px solid rgba(47, 182, 188, 0.14);
}

.stat-card,
.card,
.system-step,
.track-card,
.cert-card,
.sponsor-card,
.about-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(47, 182, 188, 0.14);
  border-radius: var(--radius-md);
  background: rgba(21, 18, 54, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.stat-card,
.card,
.system-step,
.cert-card,
.sponsor-card,
.about-card {
  padding: 22px;
}

.stat-card:hover,
.card:hover,
.system-step:hover,
.track-card:hover,
.cert-card:hover,
.sponsor-card:hover,
.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 182, 188, 0.36);
  background: rgba(33, 29, 77, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24), 0 0 28px rgba(47, 182, 188, 0.14);
}

.stat-card.accent-card {
  border-color: rgba(224, 141, 60, 0.28);
  background: linear-gradient(145deg, rgba(224, 141, 60, 0.13), rgba(21, 18, 54, 0.68));
}

.stat-value {
  display: block;
  color: var(--bnya-turquoise);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1;
}

.accent-card .stat-value {
  color: var(--bnya-orange);
}

.stat-label {
  display: block;
  margin-top: 10px;
  color: var(--bnya-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.identity-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 1.06fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}

.identity-chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.identity-chain span {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(47, 182, 188, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.05);
  color: #d8d8ec;
  font-size: 0.82rem;
  font-weight: 900;
}

.identity-chain span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 12px;
  height: 1px;
  background: linear-gradient(90deg, var(--bnya-turquoise), transparent);
}

.identity-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(224, 141, 60, 0.26);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(224, 141, 60, 0.16), transparent 36%),
    radial-gradient(circle at 88% 12%, rgba(47, 182, 188, 0.18), transparent 16rem),
    rgba(21, 18, 54, 0.78);
  box-shadow: var(--shadow-soft), 0 0 46px rgba(47, 182, 188, 0.11);
}

.identity-panel::before {
  content: "";
  position: absolute;
  inset: -40px;
  opacity: 0.2;
  background:
    linear-gradient(45deg, transparent 0 44%, rgba(47, 182, 188, 0.42) 45% 46%, transparent 47% 100%),
    linear-gradient(135deg, transparent 0 44%, rgba(224, 141, 60, 0.28) 45% 46%, transparent 47% 100%);
  background-size: 58px 58px;
  animation: identityMesh 18s linear infinite;
}

.identity-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(47, 182, 188, 0.15);
  border-radius: 18px;
  pointer-events: none;
}

.identity-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  border-left: 4px solid var(--bnya-orange);
  padding-left: 22px;
  color: var(--bnya-white);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.16;
}

@keyframes identityMesh {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(58px, 58px, 0); }
}

.grid-4,
.kits-grid,
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.icon-mark,
.kit-card span,
.system-step span,
.cert-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--bnya-turquoise-soft);
  color: var(--bnya-turquoise);
  font-weight: 900;
}

.card h3,
.system-step h3,
.kit-card h3,
.cert-card h3,
.sponsor-card h3,
.about-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.card p,
.system-step p,
.cert-card p,
.sponsor-card p,
.about-card p {
  margin-bottom: 0;
  color: var(--bnya-muted);
  font-size: 0.94rem;
}

.pixel-card-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent, rgba(47, 182, 188, 0.72), transparent) 0 0 / 180% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(47, 182, 188, 0.48), transparent) 100% 0 / 1px 180% no-repeat,
    radial-gradient(circle at 20% 20%, rgba(47, 182, 188, 0.2), transparent 18px);
  transition: opacity 220ms ease;
}

.pixel-card-hover:hover::before {
  opacity: 1;
  animation: pixelBorder 1.1s ease-out;
}

@keyframes pixelBorder {
  from { background-position: -80% 0, 100% -80%, 20% 20%; }
  to { background-position: 120% 0, 100% 120%, 82% 80%; }
}

.system-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.compare-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  border: 1px solid rgba(47, 182, 188, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 30px);
  background:
    radial-gradient(circle at 0% 0%, rgba(47, 182, 188, 0.13), transparent 20rem),
    rgba(13, 11, 30, 0.66);
}

.compare-panel h3 {
  margin: 14px 0 8px;
}

.compare-panel p {
  margin: 0;
  color: var(--bnya-muted);
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  padding: 6px 11px;
  background: var(--bnya-orange-soft);
  color: var(--bnya-orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.highlight-pill.turquoise {
  background: var(--bnya-turquoise-soft);
  color: var(--bnya-turquoise);
}

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

.track-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: rgba(13, 11, 30, 0.65);
}

.track-card figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.track-card:hover figure img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.track-body {
  padding: 24px;
}

.track-num,
.sponsor-card span {
  display: block;
  color: var(--bnya-orange);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.track-body h3 {
  margin: 8px 0 10px;
  font-size: 1.22rem;
}

.track-body p {
  color: var(--bnya-muted);
}

.track-body strong {
  display: inline-flex;
  margin-top: 4px;
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--bnya-turquoise);
  font-size: 0.78rem;
}

.track-card.adult {
  border-color: rgba(224, 141, 60, 0.24);
}

.support-spots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.support-spots span {
  margin-right: 4px;
  color: var(--bnya-muted-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-spots b {
  display: inline-flex;
  border: 1px solid rgba(47, 182, 188, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #d8d8ec;
  font-size: 0.86rem;
}

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

.nation-card,
.program-day,
.league-step,
.ecosystem-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(47, 182, 188, 0.16);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 0% 0%, rgba(47, 182, 188, 0.1), transparent 14rem),
    rgba(21, 18, 54, 0.74);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.nation-card {
  min-height: 160px;
  padding: 20px;
}

.flag,
.flag-img {
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
}

.flag {
  font-size: 2.4rem;
}

.flag-img {
  width: 74px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.nation-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.nation-card p {
  margin: 10px 0 0;
  color: var(--bnya-muted);
  font-size: 0.9rem;
}

.nation-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.nation-metrics span {
  display: grid;
  gap: 2px;
  border: 1px solid rgba(47, 182, 188, 0.14);
  border-radius: 12px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.045);
}

.nation-metrics strong {
  color: var(--bnya-turquoise);
  font-size: 1rem;
  line-height: 1;
}

.nation-metrics small {
  color: var(--bnya-muted-2);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--bnya-muted);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
}

.badge.host {
  background: var(--bnya-turquoise-soft);
  color: var(--bnya-turquoise);
}

.badge.diaspora {
  background: var(--bnya-orange-soft);
  color: var(--bnya-orange);
}

.participation-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
  margin-top: 22px;
  border: 1px solid rgba(224, 141, 60, 0.22);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 0% 0%, rgba(224, 141, 60, 0.13), transparent 20rem),
    radial-gradient(circle at 100% 0%, rgba(47, 182, 188, 0.12), transparent 18rem),
    rgba(13, 11, 30, 0.7);
  box-shadow: var(--shadow-soft), 0 0 36px rgba(47, 182, 188, 0.1);
}

.participation-panel h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.participation-panel p:last-child {
  margin: 0;
  color: var(--bnya-muted);
}

.participation-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.participation-kpis article {
  min-height: 116px;
  border: 1px solid rgba(47, 182, 188, 0.16);
  border-radius: var(--radius-md);
  padding: 18px;
  background: rgba(21, 18, 54, 0.64);
}

.participation-kpis strong {
  display: block;
  margin-bottom: 10px;
  color: var(--bnya-orange);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1;
}

.participation-kpis span {
  color: #d8d8ec;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

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

.program-day {
  padding: 22px;
}

.program-day.highlight {
  border-color: rgba(224, 141, 60, 0.34);
  background:
    radial-gradient(circle at 10% 0%, rgba(224, 141, 60, 0.14), transparent 13rem),
    rgba(21, 18, 54, 0.78);
}

.day-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--bnya-turquoise);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-day h3 {
  min-height: 4.8em;
  margin-bottom: 10px;
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
  line-height: 1.25;
}

.program-day p {
  margin: 0 0 16px;
  color: var(--bnya-muted);
  font-size: 0.92rem;
}

.agenda-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agenda-list li {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.agenda-list strong {
  color: var(--bnya-orange);
  font-size: 0.78rem;
  line-height: 1.1;
}

.agenda-list span {
  color: #d8d8ec;
  font-size: 0.9rem;
  line-height: 1.42;
}

.league-layout {
  display: grid;
  gap: 30px;
}

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

.league-step {
  padding: 22px;
}

.league-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--bnya-turquoise);
  color: var(--bnya-indigo-deep);
  font-weight: 900;
}

.league-step h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.league-step p {
  margin: 0;
  color: var(--bnya-muted);
  font-size: 0.92rem;
}

.league-final {
  border-color: rgba(224, 141, 60, 0.32);
  background:
    linear-gradient(145deg, rgba(224, 141, 60, 0.12), transparent),
    rgba(21, 18, 54, 0.78);
}

.league-final span {
  background: var(--bnya-orange-soft);
  color: var(--bnya-orange);
}

.league-announcement {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) 1fr;
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
  border: 1px solid rgba(47, 182, 188, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 0% 0%, rgba(47, 182, 188, 0.15), transparent 20rem),
    rgba(13, 11, 30, 0.68);
  box-shadow: var(--shadow-soft), 0 0 42px rgba(47, 182, 188, 0.12);
}

.league-announcement h3 {
  margin: 18px 0 0;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.league-announcement ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--bnya-muted);
}

.kit-card {
  border: 1px solid rgba(44, 39, 96, 0.14);
  border-radius: var(--radius-md);
  padding: 24px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.kit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(44, 39, 96, 0.12);
}

.kit-card span {
  background: var(--bnya-orange-soft);
  color: var(--bnya-orange);
}

#mallettes {
  background:
    linear-gradient(135deg, rgba(224, 141, 60, 0.2), transparent 34%),
    linear-gradient(180deg, #fff7ea, var(--bnya-cream));
}

#mallettes .eyebrow {
  color: var(--bnya-orange);
}

#mallettes .kit-card {
  border-color: rgba(224, 141, 60, 0.22);
}

#mallettes .kit-card:hover {
  box-shadow: 0 18px 40px rgba(224, 141, 60, 0.16);
}

.academy-grid,
.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.callout {
  margin-top: 22px;
  border: 1px solid rgba(47, 182, 188, 0.2);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  background: rgba(21, 18, 54, 0.7);
  color: #cfcfe6;
}

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

.cert-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.cert-card span {
  width: 54px;
  height: 54px;
  margin-bottom: 0;
}

.media-frame {
  position: relative;
  margin: 0;
  border: 1px solid rgba(47, 182, 188, 0.22);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4);
}

.media-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center 70%;
}

.media-frame figcaption {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(224, 141, 60, 0.92);
  color: #1a1a1a;
  font-weight: 900;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #cfcfe6;
}

.check-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--bnya-turquoise);
  font-weight: 900;
}

.sponsor-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sponsor-card {
  min-height: 178px;
}

.partner-callout {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  border: 1px solid rgba(47, 182, 188, 0.18);
  border-radius: 20px;
  padding: 24px 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(47, 182, 188, 0.14), transparent 22rem),
    rgba(13, 11, 30, 0.66);
}

.partner-callout h3 {
  margin-bottom: 6px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.partner-callout p {
  margin: 0;
  color: var(--bnya-muted);
}

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

.about-card {
  padding: 30px;
}

.about-card img {
  display: block;
  width: 184px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: #fff;
  padding: 8px 12px;
  object-fit: contain;
}

.ecosystem-panel {
  margin-top: 22px;
  border: 1px solid rgba(47, 182, 188, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 0% 0%, rgba(224, 141, 60, 0.11), transparent 20rem),
    rgba(13, 11, 30, 0.58);
}

.section-header.mini {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-header.mini h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.section-header.mini p:last-child {
  margin: 0;
  color: var(--bnya-muted);
}

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

.ecosystem-card {
  padding: 22px;
}

.ecosystem-card img {
  display: block;
  width: 100%;
  height: 76px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 22px rgba(47, 182, 188, 0.16));
}

.ecosystem-card h4 {
  margin: 0 0 8px;
  color: var(--bnya-white);
  font-size: 1rem;
}

.ecosystem-card p {
  margin: 0;
  color: var(--bnya-muted);
  font-size: 0.9rem;
}

.partners-section {
  background:
    linear-gradient(135deg, rgba(96, 80, 220, 0.08), transparent 36%),
    rgba(13, 11, 30, 0.46);
  border-block: 1px solid rgba(47, 182, 188, 0.12);
}

.official-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  overflow: visible;
}

.official-grid article {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(47, 182, 188, 0.18);
  border-radius: var(--radius-md);
  padding: 18px;
  background: rgba(21, 18, 54, 0.72);
}

.official-grid img,
.official-logo {
  width: 78px !important;
  height: 78px !important;
  max-width: 78px !important;
  max-height: 78px !important;
  min-width: 78px;
  border-radius: 12px;
  object-fit: cover;
}

.official-grid p {
  margin: 0;
  color: #deddf2;
  font-size: clamp(0.7rem, 0.85vw, 0.86rem);
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 52px 0 42px;
  border-top: 1px solid rgba(47, 182, 188, 0.12);
  background: rgba(13, 11, 30, 0.94);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.footer-brand {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 16px;
}

.footer-brand-transparent {
  background: transparent;
  padding: 0;
}

.footer-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.footer-tagline {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--bnya-off-white);
  font-weight: 900;
}

.footer-powered {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--bnya-muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-powered img {
  display: block;
  width: 156px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--bnya-off-white);
  padding: 6px;
}

.footer-copy {
  color: var(--bnya-muted-2);
  font-size: 0.9rem;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.pixel-reveal {
  --pixel-clear: 0;
}

.pixel-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: calc(0.13 - (var(--pixel-clear) * 0.1));
  background:
    linear-gradient(110deg, transparent 0 38%, rgba(47, 182, 188, 0.16) 44%, transparent 52% 100%),
    radial-gradient(circle at 22% 24%, rgba(224, 141, 60, 0.12), transparent 16rem);
  transform: translateX(calc((1 - var(--pixel-clear)) * -18px));
  transition: opacity 700ms ease, transform 700ms ease;
}

.pixel-reveal.pixel-cleared {
  --pixel-clear: 1;
}

@media (max-width: 1120px) {
  .nav-cta {
    display: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 106px;
    right: 16px;
    left: 16px;
    display: grid;
    max-height: calc(100svh - 124px);
    overflow-y: auto;
    padding: 18px;
    border: 1px solid rgba(47, 182, 188, 0.18);
    border-radius: var(--radius-lg);
    background: rgba(13, 11, 30, 0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-grid,
  .academy-grid,
  .media-layout,
  .identity-layout {
    grid-template-columns: 1fr;
  }

  .stat-strip,
  .grid-4,
  .kits-grid,
  .sponsor-grid,
  .system-rail,
  .track-grid,
  .nations-grid,
  .program-grid,
  .league-grid,
  .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .track-grid {
    align-items: stretch;
  }

  .about-grid,
  .compare-panel,
  .participation-panel,
  .league-announcement {
    grid-template-columns: 1fr;
  }

  .program-day h3 {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .powered-inner {
    min-height: 36px;
    padding-block: 3px;
    justify-content: center;
  }

  .powered-branding {
    gap: 6px;
    transform: scale(0.82);
    transform-origin: center;
  }

  .powered-inner img[alt="Keybox"] {
    height: 15px;
  }

  .powered-inner img[alt="Young Creators"] {
    height: 21px;
  }

  .language-switch {
    position: absolute;
    right: 0;
    gap: 5px;
  }

  .language-switch button {
    width: 24px;
    height: 24px;
    font-size: 0.76rem;
  }

  .site-logo {
    height: 44px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .hero-brandline {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
  }

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

  .hero-jingle-video {
    border-radius: 18px;
    width: min(100%, 520px);
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding-inline: 14px;
    font-size: 0.9rem;
  }

  .stat-strip,
  .grid-4,
  .kits-grid,
  .sponsor-grid,
  .system-rail,
  .track-grid,
  .nations-grid,
  .program-grid,
  .league-grid,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .nation-card {
    text-align: center;
    display: grid;
    justify-items: center;
  }

  .flag,
  .flag-img {
    margin-inline: auto;
  }

  .nation-metrics,
  .participation-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-spots {
    justify-content: center;
    text-align: center;
  }

  .support-spots span {
    width: 100%;
    margin: 0 0 4px;
  }

  .cert-card {
    grid-template-columns: 1fr;
  }

  .partner-callout {
    text-align: center;
    justify-content: center;
  }

  .about-card img {
    margin-inline: auto;
  }

  .about-card {
    text-align: center;
  }

  .ecosystem-card img {
    object-position: center;
  }

  .participation-panel {
    text-align: center;
  }

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

  .official-grid article {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 14px;
    gap: 14px;
  }

  .official-grid img,
  .official-logo {
    width: 58px !important;
    height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
    min-width: 58px;
  }

  .official-grid p {
    font-size: 0.68rem;
  }

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

  .footer-copy {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-jingle {
    display: none;
  }
}
