:root {
  --radius: 0.5rem;
  --background: oklch(0.18 0.04 160);
  --foreground: oklch(0.98 0.005 160);
  --card: oklch(0.22 0.04 160 / 0.85);
  --primary: oklch(0.82 0.22 145);
  --primary-foreground: oklch(0.15 0.04 160);
  --secondary: oklch(0.28 0.04 160);
  --muted-foreground: oklch(0.72 0.02 160);
  --border: oklch(0.35 0.04 160 / 0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  line-height: 1.5;
  max-width: 100%;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
img, video { max-width: 100%; }
img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}
body.nav-open { overflow: hidden; }
body.nav-open .storage-consent { display: none; }

.bg-fixed {
  position: fixed; inset: 0; z-index: -10;
  background-image:
    linear-gradient(to bottom, oklch(0.18 0.04 160 / 0.85), oklch(0.18 0.04 160 / 0.95)),
    url('../assets/stadium-bg.jpg');
  background-size: cover; background-position: center;
}

header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--border);
  background: oklch(0.18 0.04 160 / 0.8);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem;
  height: 4.5rem;
}
.logo { transition: opacity 0.2s; flex-shrink: 0; }
.logo:hover { opacity: 0.8; }
.logo img { height: 3.5rem; width: auto; }

nav {
  display: flex; align-items: center; gap: 1.5rem;
  flex: 1; flex-wrap: wrap;
}
nav a {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 0.4rem;
  color: var(--foreground); transition: color 0.2s; white-space: nowrap;
}
nav a:hover { color: var(--primary); }
nav a.active,
.nav-dropdown-toggle.active { color: var(--primary); }
.is-hidden { display: none !important; }
.grid-span-all { grid-column: 1 / -1; }
.footer-link { text-decoration: underline; }
.text-primary { color: var(--primary); }
nav a svg { width: 1rem; height: 1rem; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.social-links { display: flex; align-items: center; gap: 0.5rem; }
.social-btn {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: oklch(0.28 0.04 160 / 0.6);
  display: flex; align-items: center; justify-content: center;
  border: none; color: var(--foreground); transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--primary); color: var(--primary-foreground); }
.social-btn svg { width: 1rem; height: 1rem; }
.divider { width: 1px; height: 1.5rem; background: var(--border); margin: 0 0.25rem; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

.hero { padding: 1.5rem 1.5rem 4rem; max-width: 1280px; margin: 0 auto; }
@media (min-width: 768px) {
  .hero { padding: 2rem 1.5rem 5rem; }
}
.hero-inner { max-width: 48rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  border: 1px solid oklch(0.82 0.22 145 / 0.4);
  background: oklch(0.82 0.22 145 / 0.1);
  color: var(--primary); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-dot {
  width: 0.375rem; height: 0.375rem; border-radius: 50%;
  background: var(--primary); animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  margin-top: 1.5rem; font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1.05;
}
.hero h1 span { color: var(--primary); }
.hero p { margin-top: 1.5rem; font-size: 1.125rem; color: var(--muted-foreground); max-width: 42rem; line-height: 1.7; }
@media (min-width: 768px) {
  .hero h1 { font-size: clamp(2.75rem, 4.5vw, 3.5rem); }
  .hero p { font-size: 1rem; }
}

.video-section { padding-bottom: 5rem; }
.video-wrapper {
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  border: 1px solid var(--border);
  background: oklch(0.14 0.04 160);
  aspect-ratio: 16 / 9;
  position: relative;
  isolation: isolate;
}
.video-wrapper iframe,
.video-wrapper video {
  width: 100%; height: 100%; display: block; border: none;
}
.video-wrapper video { cursor: pointer; }
.video-wrapper::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, oklch(0 0 0 / 0.78), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.video-wrapper:hover::after,
.video-wrapper.controls-visible::after,
.video-wrapper.is-paused::after { opacity: 1; }
.video-center-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid oklch(0.82 0.22 145 / 0.7);
  border-radius: 50%;
  background: oklch(0.14 0.04 160 / 0.78);
  color: var(--primary);
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px oklch(0 0 0 / 0.38);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.video-center-play svg { width: 1.7rem; height: 1.7rem; margin-left: 0.18rem; }
.video-center-play:hover { background: var(--primary); color: var(--primary-foreground); }
.video-wrapper.is-paused .video-center-play {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.video-controls {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.75rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  opacity: 0;
  transform: translateY(0.5rem);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.video-wrapper:hover .video-controls,
.video-wrapper.controls-visible .video-controls,
.video-wrapper.is-paused .video-controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.video-controls-row {
  min-height: 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.video-control-btn {
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 2.25rem;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--foreground);
  transition: color 0.18s ease, background 0.18s ease;
}
.video-control-btn:hover { color: var(--primary); background: oklch(1 0 0 / 0.08); }
.video-control-btn svg { width: 1.15rem; height: 1.15rem; grid-area: 1 / 1; }
.video-wrapper:not(.is-paused) .icon-play,
.video-wrapper.is-paused .icon-pause,
.video-wrapper:not(.is-muted) .icon-muted,
.video-wrapper.is-muted .icon-volume,
.video-wrapper:not(.is-fullscreen) .icon-collapse,
.video-wrapper.is-fullscreen .icon-expand { display: none; }
.video-progress,
.video-volume {
  --range-progress: 0%;
  appearance: none;
  border: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--primary) var(--range-progress), oklch(1 0 0 / 0.28) var(--range-progress));
  cursor: pointer;
}
.video-progress { width: 100%; }
.video-volume { width: 5rem; --range-progress: 100%; }
.video-progress::-webkit-slider-thumb,
.video-volume::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px oklch(0.82 0.22 145 / 0.2);
}
.video-progress::-moz-range-thumb,
.video-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
}
.video-time {
  color: oklch(0.92 0.01 160);
  font-size: 0.72rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.video-fullscreen-btn { margin-left: auto; }
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.25rem; background: oklch(0.14 0.04 160);
}
.video-play-icon {
  width: 5rem; height: 5rem; border-radius: 50%;
  background: oklch(0.82 0.22 145 / 0.15);
  border: 2px solid oklch(0.82 0.22 145 / 0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.video-play-icon svg { width: 2rem; height: 2rem; margin-left: 4px; }
.video-placeholder-text {
  font-size: 0.875rem; color: var(--muted-foreground);
  letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600;
}

.about { padding-bottom: 5rem; }
.about-grid { display: grid; gap: 2rem; }
.card {
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--card); backdrop-filter: blur(12px); padding: 2rem;
}
.card h2 { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.01em; margin-bottom: 1.25rem; }
.card p { color: var(--muted-foreground); line-height: 1.7; }
.card p + p { margin-top: 0.85rem; }

/* Who We Are card */
.who-subtitle {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.5rem; margin-top: 0;
}
.who-subtitle + p { margin-top: 0; }
.who-card p + .who-subtitle { margin-top: 1.5rem; }
.who-card p strong { color: var(--foreground); font-weight: 700; }

.stats { padding-bottom: 5rem; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-card {
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--card); backdrop-filter: blur(12px);
  min-height: 8.25rem;
  padding: 1.5rem 1rem 1.6rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.stat-card .value {
  font-size: clamp(2.35rem, 4.5vw, 3rem);
  font-weight: 900; color: var(--primary); line-height: 1;
}
.stat-card .label {
  max-width: 16rem;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted-foreground); margin-top: 0.6rem; line-height: 1.35;
}
.stat-card .label-sub { margin-top: 0.35rem; }
.stat-card .note {
  max-width: 18rem;
  margin-top: 0.45rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  opacity: 0.78;
  line-height: 1.55;
}
.stat-card--wide .value { font-size: clamp(1.55rem, 2.75vw, 2.15rem); }
.stat-card .value-inline { font-size: clamp(1.8rem, 3.4vw, 2.45rem); }


footer {
  border-top: 1px solid var(--border); margin-top: 2rem;
  padding: 2rem; text-align: center;
  font-size: 0.75rem; color: var(--muted-foreground);
}

.storage-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: oklch(0.13 0.035 160 / 0.96);
  color: var(--foreground);
  box-shadow: 0 18px 48px oklch(0 0 0 / 0.42);
  backdrop-filter: blur(16px);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.storage-consent p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.82rem;
  line-height: 1.55;
}
.storage-consent strong {
  color: var(--foreground);
}
.storage-consent a {
  color: var(--primary);
  text-decoration: underline;
}
.storage-consent button {
  flex-shrink: 0;
  border: 1px solid var(--primary);
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.55rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ── Hamburger button ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 2.2rem; height: 2.2rem; background: transparent; border: none;
  cursor: pointer; padding: 0.3rem; margin-left: auto; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--foreground); border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .header-actions { display: none; }
  .hamburger {
    display: flex !important;
    position: relative;
    z-index: 52;
  }

  nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 49;
    width: 100%;
    max-height: calc(100dvh - 4.5rem);
    flex-direction: column; align-items: flex-start;
    gap: 0; padding: 1rem 0;
    background: oklch(0.14 0.03 160 / 0.94);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 36px oklch(0 0 0 / 0.32);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transform-origin: top center;
    transition:
      opacity 0.24s ease,
      transform 0.28s ease,
      visibility 0s linear 0.28s;
  }
  nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.24s ease,
      transform 0.28s ease,
      visibility 0s linear 0s;
  }
  nav a {
    width: 100%; padding: 0.85rem 1.5rem;
    font-size: 1rem; border-bottom: 1px solid var(--border);
  }
  nav a:last-child { border-bottom: none; }

  .header-inner {
    width: 100%;
    padding: 0 1rem;
    gap: 1rem;
    justify-content: space-between;
  }
  .logo img { height: 2.8rem; }

  .container,
  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero { padding-bottom: 2.75rem; }
  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    overflow-wrap: anywhere;
  }
  .hero p { font-size: 0.95rem; line-height: 1.6; }
  .video-section,
  .about,
  .stats { padding-bottom: 3rem; }
  .video-center-play { width: 3.75rem; height: 3.75rem; }
  .video-controls { left: 0.55rem; right: 0.55rem; bottom: 0.45rem; }
  .video-controls-row { gap: 0.25rem; }
  .video-control-btn {
    width: 2rem;
    height: 2rem;
    flex-basis: 2rem;
  }
  .video-volume { display: none; }
  .video-time { font-size: 0.62rem; }
  .card { padding: 1.25rem; }
  .stats-grid { gap: 0.75rem; }
  .stat-card {
    min-width: 0;
    min-height: 7.5rem;
    padding: 1.15rem 0.65rem;
  }
  .stat-card .value { font-size: clamp(1.85rem, 9vw, 2.5rem); }
  .stat-card .value-inline { font-size: clamp(1.45rem, 7vw, 2.1rem); }
  .stat-card--wide { grid-column: 1 / -1; }
  .stat-card--wide .value { font-size: clamp(1.45rem, 7vw, 2rem); }
  .stat-card .label { font-size: 0.62rem; }
  .stat-card .note { font-size: 0.58rem; }

  .storage-consent {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.8rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }
  .storage-consent p { font-size: 0.72rem; line-height: 1.45; }
  .storage-consent button {
    align-self: flex-end;
    padding: 0.45rem 0.9rem;
  }

  footer {
    padding: 1.5rem 1rem;
    font-size: 0.68rem;
    overflow-wrap: anywhere;
  }
  .scroll-top {
    width: 2.65rem;
    height: 2.65rem;
    right: 1rem;
    bottom: 1rem;
  }
}

.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 100;
  width: 3rem; height: 3rem; border-radius: 50%;
  border: 1px solid var(--border);
  background: oklch(0.22 0.04 160 / 0.9);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px); cursor: pointer;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--primary); color: var(--primary-foreground); }
.scroll-top svg { width: 1.25rem; height: 1.25rem; }

@media (min-width: 768px) {
  nav { display: flex !important; position: static; background: transparent; padding: 0; border: none; flex-direction: row; flex-wrap: wrap; }
  nav a { width: auto; padding: 0; border-bottom: none; font-size: 0.8rem; }
  .hamburger { display: none !important; }
}

/* ── Nav dropdown ── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
/* Invisible hover bridge so mouse doesn't lose focus crossing the gap */
.nav-dropdown::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 0.5rem;
}
.nav-dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: oklch(0.18 0.04 160 / 0.97);
  border: 1px solid var(--border); border-radius: 0.6rem;
  padding: 0.35rem 0; min-width: 160px;
  backdrop-filter: blur(16px); z-index: 100;
  box-shadow: 0 8px 24px oklch(0 0 0 / 0.4);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover { display: block; }
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1rem; font-size: 0.78rem; font-weight: 700;
  color: var(--muted-foreground); white-space: nowrap;
  border-bottom: none !important; width: auto !important;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown-menu a:hover { color: var(--primary); background: oklch(0.82 0.22 145 / 0.08); }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 0.4rem; cursor: pointer;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--foreground); transition: color 0.2s;
  white-space: nowrap;
  /* match nav a baseline alignment */
  line-height: 1;
}
.nav-dropdown-toggle:hover { color: var(--primary); }
.nav-dropdown-toggle > svg:not(.chevron) {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.nav-dropdown-toggle svg.chevron { width: 0.7rem; height: 0.7rem; transition: transform 0.2s; }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

/* Mobile: dropdown becomes flat list */
@media (max-width: 767px) {
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-dropdown-menu {
    display: block; position: static;
    width: 100%;
    background: transparent; border: none; box-shadow: none;
    padding: 0; backdrop-filter: none; border-radius: 0;
  }
  .nav-dropdown-menu a {
    padding: 0.85rem 1.5rem 0.85rem 2.5rem !important;
    border-bottom: 1px solid var(--border) !important;
    width: 100% !important; font-size: 0.9rem;
  }
  .nav-dropdown-toggle { padding: 0.85rem 1.5rem; width: 100%; border-bottom: 1px solid var(--border); }
  .chevron { display: none; }
}
