/* BLACK LIGHTNING — REDESIGN 2026: PREMIUM / ELECTRIC */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #07080f;
  --dark:    #0c0e1a;
  --surface: #0c0e1a;
  --card:    #101220;
  --blue:    #00aaff;
  --blue2:   #0077ee;
  --blue-glow: rgba(0, 170, 255, 0.12);
  --blue-border: rgba(0, 170, 255, 0.2);
  --white:   #ffffff;
  --text-light: #8899aa;
  --text-muted: #6b7899;
  --gray: #6b7899;
  --border: rgba(255, 255, 255, 0.07);
  --head: 'Barlow Condensed', sans-serif;
  --body: 'Inter', sans-serif;
  /* aliases */
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  /* legacy alias so var(--yellow) references render blue */
  --yellow: #00aaff;
  --yellow2: #0077ee;
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--body); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 220;
  padding: 10px 14px;
  background: var(--blue);
  color: var(--black);
  font-family: var(--head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transform: translateY(-160%);
  opacity: 0;
  pointer-events: none;
  transition: transform .18s ease, opacity .18s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 8, 15, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .35s, backdrop-filter .35s, border-color .35s, box-shadow .35s;
}

.nav.scrolled {
  background: rgba(7, 8, 15, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.65);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
}

.nav-logo {
  font-family: var(--head);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
}

.nav-logo span { color: var(--yellow); }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color .2s;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .2s;
}

.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-menu a.active,
.nav-mobile a.active {
  color: var(--white);
}

.nav-menu a.active::after { transform: scaleX(1); }

.nav-btn {
  background: var(--blue) !important;
  color: var(--black) !important;
  padding: 9px 20px !important;
  border-radius: 2px;
  font-family: var(--head) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
}

.nav-btn::after { display: none !important; }
.nav-btn:hover { background: var(--blue2) !important; }
.nav-btn.active { color: var(--black) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--white);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(7, 8, 15, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 16px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.active { color: var(--blue); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 32px;
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all .2s;
  font-weight: 600;
}

.btn-primary {
  background: var(--blue);
  color: var(--black);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue2);
  border-color: var(--blue2);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

/* HERO — FULL SCREEN VIDEO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 32px 96px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 24%;
}

/* fallback image hero */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(7, 8, 15, 0.18) 0%,
      rgba(7, 8, 15, 0.12) 36%,
      rgba(7, 8, 15, 0.56) 72%,
      rgba(7, 8, 15, 0.97) 100%),
    linear-gradient(90deg,
      rgba(7, 8, 15, 0.82) 0%,
      rgba(7, 8, 15, 0.48) 44%,
      rgba(7, 8, 15, 0.12) 72%,
      transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 640px) auto;
  align-items: end;
  gap: 48px;
}

.hero-inner > * {
  min-width: 0;
}

.hero-copy {
  max-width: 620px;
  padding-bottom: 10px;
}

.hero-deck {
  max-width: 480px;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.hero-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0, 170, 255, 0.82);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--head);
  font-size: clamp(56px, 9vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
  max-width: 620px;
}

.hero-side-badge {
  position: static;
  justify-self: end;
  align-self: end;
  background: rgba(7, 8, 15, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--blue-border);
  padding: 18px 24px 16px;
  text-align: right;
}

.badge-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.badge-value {
  font-family: var(--head);
  font-size: 28px;
  line-height: 1;
  color: var(--yellow);
  font-weight: 700;
  margin-top: 8px;
}

.hero-tagline {
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.54);
  max-width: 520px;
  margin-bottom: 24px;
}

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

/* STATS */
.stats {
  background: var(--surface);
  padding: 42px 32px 46px;
  border-bottom: 1px solid var(--blue-border);
}

.stats-row {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}

.stat { display: flex; flex-direction: column; gap: 8px; }

.stat-value {
  font-family: var(--head);
  font-size: 54px;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

/* ABOUT */
.about {
  background: var(--black);
  padding: 82px 32px 88px;
  border-bottom: 1px solid var(--border);
}

.about-container { max-width: 1280px; margin: 0 auto; }

.about-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 36px;
  font-weight: 600;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img { width: 100%; height: auto; display: block; }

.about-content { grid-column: 2; }

.about-title {
  font-family: var(--head);
  font-size: 52px;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.about-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--head);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  transition: opacity .2s;
}

.read-more:hover { opacity: 0.8; }

.about-mgmt { font-size: 14px; color: var(--yellow); margin-top: 4px; }
.about-mgmt strong { color: var(--yellow); }

.about-media { grid-column: 3; }

.media-placeholder {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.media-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }

.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 8, 15, 0.55);
  font-size: 48px;
  color: var(--blue);
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s;
}

.media-placeholder:hover .play-icon { opacity: 1; }

/* STORY */
.story-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--black);
}

.story-image { position: relative; overflow: hidden; }

.story-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.story-content {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 72px 56px;
  color: var(--white);
}

.journey-content {
  justify-content: center;
}

.story-title {
  font-family: var(--head);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.record-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--blue-border);
}

.record-stat { display: flex; flex-direction: column; }

.record-num {
  font-family: var(--head);
  font-size: 42px;
  line-height: 1;
  color: var(--yellow);
  font-weight: 700;
}

.record-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 8px;
}

.story-copy {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.64);
  margin-bottom: 18px;
}

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

.journey-point {
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.journey-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.journey-point strong {
  display: block;
  font-family: var(--head);
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.journey-point p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.56);
}

/* SHOWCASE */
.showcase {
  background: var(--black);
  padding: 84px 32px;
  border-bottom: 1px solid var(--border);
}

.showcase-container { max-width: 1280px; margin: 0 auto; }

.showcase-intro {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}

.showcase-heading {
  font-family: var(--head);
  font-size: 32px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
  color: var(--white);
}

.showcase-deck {
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2px;
}

.showcase-item {
  position: relative;
  overflow: hidden;
  height: 360px;
  background: var(--card);
  cursor: pointer;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform .5s ease;
}

.showcase-item:hover img { transform: scale(1.08); }

.showcase-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 8, 15, 0.95) 100%);
  padding: 32px;
  font-family: var(--head);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

.showcase-item a {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  opacity: 0;
  transition: opacity .3s;
}

.showcase-item:hover a { opacity: 1; }

/* SCHEDULE */
.schedule {
  background: var(--surface);
  padding: 76px 32px;
  border-bottom: 1px solid var(--border);
}

.schedule-container { max-width: 1280px; margin: 0 auto; }

.schedule-intro {
  margin-bottom: 28px;
}

.fight-status-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--blue-border);
  overflow: hidden;
}

.fight-status-card > * {
  min-width: 0;
}

.fight-status-copy {
  padding: 38px 40px 40px;
}

.fight-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-bottom: 18px;
  border: 1px solid var(--blue-border);
  background: rgba(0, 170, 255, 0.08);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
}

.fight-status-copy h3 {
  font-family: var(--head);
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 16px;
}

.fight-status-copy p {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.fight-status-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.fight-status-meta {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255, 255, 255, 0.02);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.fight-meta-item {
  padding: 28px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fight-meta-item:last-child {
  border-bottom: none;
}

.fight-meta-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

.fight-meta-value {
  display: block;
  margin-top: 10px;
  font-family: var(--head);
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--white);
}

.fight-meta-detail {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
}

/* CONNECT */
.connect {
  background: var(--card);
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}

.connect-heading {
  font-family: var(--head);
  font-size: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 36px;
  color: var(--white);
}

.social-feeds {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.social-feed {
  background: rgba(0, 170, 255, 0.04);
  border: 1px solid var(--blue-border);
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.platform {
  font-family: var(--head);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  font-weight: 600;
}

.feed-text {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1 1 auto;
}

.follow-btn {
  display: inline-block;
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  transition: color .2s;
}

.follow-btn:hover { color: var(--blue); }

/* SPONSORS */
.sponsors {
  background: var(--black);
  padding: 88px 32px 72px;
  border-bottom: 1px solid var(--border);
}

.sponsors-container { max-width: 1280px; margin: 0 auto; }

.sponsors-heading {
  font-family: var(--head);
  font-size: 32px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
  color: var(--white);
}

.sponsors-intro {
  margin-bottom: 32px;
}

.sponsors-stats {
  margin-bottom: 16px;
}

.sponsors-stats .metric-card strong {
  font-size: clamp(28px, 4vw, 38px);
}

.sponsors-offers {
  margin-bottom: 24px;
}

.booking-strip {
  margin-top: 28px;
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 24px 28px;
  border: 1px solid var(--blue-border);
  background:
    linear-gradient(135deg, rgba(0, 170, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%),
    var(--surface);
}

.booking-strip > * {
  min-width: 0;
}

.booking-strip__lead > p:last-child {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.64);
}

.booking-strip__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-self: start;
}

.booking-strip__grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.booking-strip__item {
  padding: 24px;
  background: rgba(7, 8, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.booking-strip__label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.booking-strip__item strong {
  display: block;
  font-family: var(--head);
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.booking-strip__item p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

.sponsors-cta {
  margin-top: 0;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.sponsor-logo {
  background: rgba(0, 170, 255, 0.04);
  padding: 40px;
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  text-align: center;
}

.sponsor-logo span { color: var(--text-light); font-size: 14px; }

/* FOOTER */
.footer {
  background: linear-gradient(180deg, var(--surface) 0%, var(--black) 100%);
  color: var(--white);
  border-top: 1px solid var(--blue-border);
}

.footer-inner {
  width: 100%;
  padding: 20px 48px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-family: var(--head);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}

.footer-logo span { color: var(--blue); }

.footer-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  transition: color .2s, transform .2s;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s;
}

.footer-nav a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.footer-nav a:hover::after { transform: scaleX(1); }

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  transition: color .2s, border-color .2s, background .2s, transform .2s;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  min-height: 34px;
  padding: 0 12px;
}

.footer-social a:hover {
  color: var(--white);
  border-color: var(--blue-border);
  background: var(--blue-glow);
  transform: translateY(-1px);
}

.footer-meta {
  width: 100%;
  padding: 12px 48px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-location,
.footer-copy {
  font-size: 10px;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.26);
}

.footer-location {
  text-transform: uppercase;
}

.footer-location span {
  color: rgba(255, 255, 255, 0.18);
  margin: 0 4px;
}

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

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 24px 24px 14px;
    gap: 20px;
  }

  .footer-nav {
    gap: 14px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-social {
    gap: 10px;
    justify-content: flex-start;
  }

  .footer-meta {
    padding: 10px 24px 14px;
    align-items: flex-start;
    flex-direction: column;
  }

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




/* RESPONSIVE — TABLET */
@media (max-width: 1024px) {
  .hero-side-badge { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .about-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-media { grid-column: auto; }
  .about-content { grid-column: auto; }
  .stats-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .record-stats { gap: 24px; }
  .journey-grid { grid-template-columns: 1fr; }
  .section-intro { grid-template-columns: 1fr; gap: 16px; }
  .feature-band { grid-template-columns: 1fr; min-height: auto; }
  .feature-band__content,
  .feature-band__surface { padding: 42px 32px; }
  .feature-band__surface { justify-content: flex-start; }
  .table-card--wide { width: 100%; margin-left: 0; }
  .chapter-layout { grid-template-columns: 1fr; }
  .fight-status-card { grid-template-columns: 1fr; }
  .fight-status-meta { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.06); }
  .fight-status-copy { padding: 34px 34px 28px; }
  .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .result-run { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-proof-list { grid-template-columns: 1fr; }
  .social-feeds { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-layout { gap: 32px; }
}

/* RESPONSIVE — MOBILE */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .about-row { grid-template-columns: 1fr; gap: 32px; }
  .about-content, .about-media { grid-column: auto; }
  .story-section { grid-template-columns: 1fr; min-height: auto; }
  .story-content { padding: 60px 32px; }
  .hero { min-height: 100svh; padding: 0 24px 48px; }
  .hero-inner { gap: 20px; }
  .hero-video { object-position: 54% 20%; }
  .hero-title {
    font-size: clamp(38px, 13vw, 56px);
    max-width: none;
    line-height: 0.92;
  }
  .hero-deck { max-width: 360px; font-size: 15px; }
  .hero-tagline { max-width: 360px; line-height: 1.6; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .fight-status-copy { padding: 28px 24px 24px; }
  .fight-status-copy h3 { font-size: clamp(28px, 9vw, 36px); }
  .fight-status-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .fight-status-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .fight-meta-item { padding: 22px 24px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-heading {
    font-size: 28px;
    letter-spacing: 3px;
  }
  .showcase-item { height: 280px; }
  .showcase-label {
    padding: 24px 20px 56px;
    font-size: 16px;
    letter-spacing: 2px;
  }
  .showcase-item a {
    opacity: 1;
    right: 20px;
    bottom: 20px;
  }
  .showcase-deck { font-size: 15px; }
  .schedule-grid { grid-template-columns: 1fr; }
  .social-feeds { grid-template-columns: 1fr; gap: 1px; }
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .booking-strip { grid-template-columns: 1fr; padding: 32px 24px; }
  .booking-strip__actions { justify-content: flex-start; }
  .booking-strip__grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .sponsor-visual { min-height: 420px; }
}

/* ==============================================
   SUBPAGE SHARED STYLES
   ============================================== */

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.text-link {
  color: var(--blue);
  transition: opacity .2s;
}

.text-link:hover {
  opacity: 0.75;
}

/* Active nav link */
.nav-menu a.active { color: var(--white); }
.nav-menu a.active::after { transform: scaleX(1); }
.nav-mobile a.active { color: var(--blue); }

/* Section heading (gallery, videos) */
.section-heading {
  font-family: var(--head);
  font-size: 32px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
  color: var(--white);
}

/* Subpage hero */
.preview-hero {
  background: linear-gradient(160deg, var(--surface) 0%, var(--black) 100%);
  padding: 140px 32px 80px;
  border-bottom: 1px solid var(--blue-border);
}

.preview-hero--gallery {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 170, 255, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.06) 0%, transparent 22%),
    linear-gradient(160deg, var(--surface) 0%, var(--black) 100%);
}

.preview-hero--videos {
  background:
    radial-gradient(circle at 76% 20%, rgba(0, 170, 255, 0.18) 0%, transparent 30%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 74px),
    linear-gradient(160deg, var(--surface) 0%, var(--black) 100%);
}

.preview-hero--about {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 170, 255, 0.16) 0%, transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.05) 0%, transparent 22%),
    linear-gradient(160deg, var(--surface) 0%, var(--black) 100%);
}

.preview-hero--record {
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 170, 255, 0.14) 0%, transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 72px),
    linear-gradient(160deg, var(--surface) 0%, var(--black) 100%);
}

.preview-hero--sponsorship {
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 170, 255, 0.16) 0%, transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.05) 0%, transparent 24%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 68px),
    linear-gradient(160deg, var(--surface) 0%, var(--black) 100%);
}

.preview-hero--contact {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 170, 255, 0.16) 0%, transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 24%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 74px),
    linear-gradient(160deg, var(--surface) 0%, var(--black) 100%);
}

.preview-hero .hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.preview-hero .hero-split > * {
  min-width: 0;
}

.hero-copy .eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-family: var(--head);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

/* Subpage aside panels */
.hero-panel,
.gallery-intro,
.video-tip {
  background: rgba(0, 170, 255, 0.05);
  border: 1px solid var(--blue-border);
  border-left: 2px solid var(--blue);
  padding: 32px;
}

.hero-panel .route-card__tag,
.gallery-intro .route-card__tag,
.video-tip .route-card__tag {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 20px;
}

.gallery-intro p,
.video-tip p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
  font-weight: 600;
}

.metric-list { display: flex; flex-direction: column; gap: 16px; }

.metric-item strong {
  display: block;
  font-family: var(--head);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}

.metric-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.sponsor-panel {
  background: linear-gradient(180deg, rgba(0, 170, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.sponsor-proof {
  align-items: stretch;
}

.sponsor-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--blue-border);
  background: var(--card);
}

.sponsor-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 6, 12, 0.02) 0%, rgba(3, 6, 12, 0.22) 100%);
  pointer-events: none;
}

.sponsor-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sponsor-proof-card {
  height: 100%;
  border-color: var(--blue-border);
}

.sponsor-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  margin-top: 24px;
}

.sponsor-proof-item {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.sponsor-proof-item strong {
  display: block;
  font-family: var(--head);
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.sponsor-proof-item span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.58);
}

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

.package-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(0,170,255,0.06) 100%);
  border: 1px solid var(--blue-border);
}

.package-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}

.package-card h3 {
  font-family: var(--head);
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.package-card > p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
}

.package-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 4px 0 2px;
}

.package-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.64);
}

.package-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.package-fit {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.sponsor-strip {
  border-color: rgba(0, 170, 255, 0.22);
}

.bio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: start;
}

.bio-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bio-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.66);
}

.bio-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 28px;
}

.bio-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bio-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.58);
}

.bio-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.chapter-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
}

.chapter-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chapter-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.66);
}

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

.chapter-card {
  padding: 24px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(180deg, rgba(0,170,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--blue-border);
}

.chapter-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

.chapter-card strong {
  display: block;
  font-family: var(--head);
  font-size: 30px;
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.chapter-card span:last-child {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.58);
}

.focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
  gap: 32px;
  align-items: start;
}

.focus-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.focus-copy p {
  font-size: 16px;
  line-height: 1.82;
  color: rgba(255,255,255,0.66);
}

.focus-panel {
  background: linear-gradient(180deg, rgba(0, 170, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--blue-border);
  padding: 30px;
}

.goal-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.goal-item {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.goal-item:first-child {
  border-top: none;
  padding-top: 0;
}

.goal-item strong {
  display: block;
  font-family: var(--head);
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.goal-item span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
}

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

.result-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(0,170,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--blue-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.16);
}

.result-card__meta {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

.result-card h3 {
  font-family: var(--head);
  font-size: 32px;
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.result-card__result {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  font-weight: 700;
}

.result-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  min-height: 620px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-band > * {
  min-width: 0;
}

.feature-band--reverse .feature-band__media,
.feature-band--reverse .feature-band__surface {
  order: 2;
}

.feature-band--reverse .feature-band__content {
  order: 1;
}

.feature-band__media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--card);
}

.feature-band__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 15, 0.08) 0%, rgba(7, 8, 15, 0.3) 100%),
    linear-gradient(90deg, rgba(7, 8, 15, 0.05) 0%, rgba(7, 8, 15, 0.28) 100%);
  pointer-events: none;
}

.feature-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.84) saturate(0.95);
}

.feature-band__media--portrait img {
  object-position: center 22%;
}

.feature-band--record-run .feature-band__media img {
  object-position: center 26%;
}

.feature-band__content,
.feature-band__surface {
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vw, 72px);
}

.feature-band__content {
  background: linear-gradient(180deg, rgba(12, 14, 26, 1) 0%, rgba(7, 8, 15, 1) 100%);
}

.feature-band__content--soft {
  background: linear-gradient(180deg, rgba(0, 170, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.feature-band__surface {
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 170, 255, 0.05) 100%);
}

.feature-band__inner {
  width: min(620px, 100%);
}

.feature-band--record-run .feature-band__inner {
  width: min(700px, 100%);
}

.feature-band__deck {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.64);
}

.feature-band__copy {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-band__copy p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.66);
}

.feature-band__panel {
  margin-top: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.feature-band__panel--soft {
  background: rgba(7, 8, 15, 0.58);
  border-color: var(--blue-border);
  backdrop-filter: blur(8px);
}

.feature-band__panel .route-card__tag {
  display: block;
  margin-bottom: 18px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

.feature-band__quote-grid {
  margin-top: 28px;
}

.result-run--stack {
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 28px;
}

.result-run--stack .result-card {
  min-height: auto;
  box-shadow: none;
}

.table-card--wide {
  width: min(760px, 100%);
  margin-left: auto;
}

/* Content sections */
.preview-section { padding: 80px 24px; }
.preview-section:nth-child(odd)  { background: var(--black); }
.preview-section:nth-child(even) { background: var(--surface); }

/* Section intro */
.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 44px;
}

.section-intro > * {
  min-width: 0;
}

.section-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--head);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin: 0;
}

.section-title span { color: var(--blue); }

.section-intro > p {
  align-self: end;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

/* Quote / card grids */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }

.quote-card {
  background: var(--surface);
  border-top: 2px solid var(--blue);
  padding: 32px;
}

.quote-card h3 {
  font-family: var(--head);
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.quote-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.quote-grid--single {
  grid-template-columns: 1fr;
}

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

.timeline-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  padding-top: 44px;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
}

.timeline-card__meta {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.timeline-card h3 {
  font-family: var(--head);
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.timeline-card p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.6); }

/* CTA Banner */
.cta-banner {
  background: rgba(0, 170, 255, 0.06);
  border: 1px solid var(--blue-border);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-banner .section-title { margin-bottom: 8px; }

.cta-banner > div > p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}

.cta-actions { display: flex; gap: 12px; flex-direction: column; }

/* Stats grid (record page) */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }

.metric-card {
  background: var(--surface);
  padding: 32px 24px;
  text-align: center;
}

.metric-card .metric-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.metric-card strong {
  display: block;
  font-family: var(--head);
  font-size: 48px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}

.metric-card span { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.4; }

.contact-channels .metric-card strong {
  font-size: 24px;
}

.audience-grid .metric-card strong {
  font-size: 20px;
}

.metric-link {
  color: var(--yellow);
  font-size: 14px;
}

.metric-link:hover {
  opacity: 0.8;
}

/* Table card */
.table-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
}

.table-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 8px;
}

.table-card h3 {
  font-family: var(--head);
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.table-card > p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  line-height: 1.5;
}

.table-scroll { overflow-x: auto; }

.preview-table { width: 100%; border-collapse: collapse; font-size: 14px; }

.preview-table th {
  text-align: left;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.preview-table td {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

.preview-table tbody tr:hover { background: rgba(0, 170, 255, 0.04); }

.badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: var(--head);
  font-size: 14px;
  font-weight: 700;
}

.badge-pill.win  { background: rgba(50,205,100,0.12); color: #50e87a; border: 1px solid rgba(50,205,100,0.25); }
.badge-pill.loss { background: rgba(220,50,50,0.12);  color: #ef5555; border: 1px solid rgba(220,50,50,0.25); }
.badge-pill.draw { background: rgba(200,200,200,0.08); color: #b0b0b0; border: 1px solid rgba(200,200,200,0.15); }

.split-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 32px; align-items: start; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 4px; }

.gallery-grid a { display: block; overflow: hidden; aspect-ratio: 1; }

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s, filter 0.4s;
  filter: brightness(0.8) saturate(0.9);
}

.gallery-grid a:hover img { transform: scale(1.05); filter: brightness(1) saturate(1); }

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

.media-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border);
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.media-card__frame {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
}

.media-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.95);
  transition: transform .4s ease, filter .4s ease;
}

.media-card:hover .media-card__frame img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}

.media-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-border);
  background: linear-gradient(180deg, rgba(0,170,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  box-shadow: 0 22px 40px rgba(0,0,0,0.2);
}

.media-card__caption {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.58);
}

/* Videos */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 2px; }

.video-grid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #000;
}

.video-cta {
  text-align: center;
  margin-top: 40px;
}

.feature-video {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 1px;
  align-items: stretch;
  background: rgba(0, 170, 255, 0.08);
  border: 1px solid var(--blue-border);
  box-shadow: 0 24px 50px rgba(0,0,0,0.24);
}

.feature-video > * {
  min-width: 0;
}

.feature-video__media,
.feature-video__copy,
.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
}

.feature-video__media video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #000;
}

.feature-video__media {
  overflow: hidden;
}

.feature-video__copy {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(12,14,26,1) 0%, rgba(7,8,15,1) 100%);
}

.feature-video__copy h3 {
  font-family: var(--head);
  font-size: 34px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.feature-video__copy p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  margin-bottom: 20px;
}

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

.video-library > * {
  min-width: 0;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #000;
}

.video-card {
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.24);
}

.video-card__body {
  padding: 22px 22px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.video-card__eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.video-card h3 {
  font-family: var(--head);
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.video-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.58);
}

.not-found-main {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
}

.not-found-title {
  font-family: var(--head);
  font-size: clamp(64px,10vw,128px);
  letter-spacing: 4px;
  color: var(--blue);
  margin-bottom: 16px;
}

.not-found-message {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

/* Subpage responsive */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .preview-hero { padding: 118px 0 56px; }
  .preview-section { padding: 64px 0; }
  .preview-hero .hero-split { grid-template-columns: 1fr; gap: 32px; }
  .feature-band { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel,
  .gallery-intro,
  .video-tip { padding: 28px 24px; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; }
  .feature-band__media { min-height: 300px; }
  .feature-band__content,
  .feature-band__surface { padding: 32px 24px; }
  .feature-band__inner { width: 100%; }
  .feature-band__panel { padding: 24px; }
  .bio-layout { grid-template-columns: 1fr; }
  .chapter-layout { grid-template-columns: 1fr; }
  .chapter-grid { grid-template-columns: 1fr; }
  .chapter-card { min-height: auto; }
  .focus-layout { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .result-run { grid-template-columns: 1fr; }
  .result-card { min-height: auto; }
  .cta-banner { grid-template-columns: 1fr; padding: 32px; }
  .booking-strip__actions,
  .cta-actions,
  .fight-status-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .booking-strip__actions .btn,
  .cta-actions .btn,
  .fight-status-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-card { padding: 28px 20px; }
  .metric-card strong { font-size: clamp(30px, 8vw, 42px); }
  .contact-channels .metric-card strong { font-size: 22px; }
  .split-layout { grid-template-columns: 1fr; }
  .sponsor-proof-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: 1fr; }
  .feature-video { grid-template-columns: 1fr; }
  .feature-video__media video { min-height: 240px; }
  .feature-video__copy { padding: 28px 24px; }
  .feature-video__copy h3 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 0.98;
  }
  .video-card__body { padding: 20px 20px 22px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-library { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .nav-container { padding: 18px 20px; }
  .nav-mobile a { padding: 14px 20px; }
  .preview-hero { padding: 106px 0 48px; }
  .preview-section { padding: 56px 0; }
  .hero { padding: 0 20px 40px; }
  .hero-label {
    margin-bottom: 12px;
    letter-spacing: 3px;
  }
  .hero-title {
    font-size: clamp(34px, 11vw, 46px);
    margin-bottom: 16px;
  }
  .hero-deck {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.55;
  }
  .hero-tagline {
    max-width: 320px;
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }
  .hero-copy h1 {
    font-size: clamp(24px, 8.6vw, 34px);
    line-height: 0.96;
    letter-spacing: 0.5px;
  }
  .hero-chip-row {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: flex-start;
  }
  .hero-copy p,
  .section-intro > p,
  .feature-band__deck,
  .feature-band__copy p {
    font-size: 15px;
    line-height: 1.65;
  }
  .hero-panel,
  .gallery-intro,
  .video-tip { padding: 24px 20px; }
  .hero-chip {
    min-height: 28px;
    padding: 0 10px;
    font-size: 9px;
    letter-spacing: 1.5px;
  }
  .section-intro {
    gap: 18px;
    margin-bottom: 32px;
  }
  .quote-card,
  .timeline-card,
  .package-card,
  .result-card,
  .metric-card,
  .table-card {
    padding: 24px 20px;
  }
  .table-scroll {
    margin: 0 -20px;
    padding: 0 20px 8px;
    scrollbar-width: thin;
  }
  .preview-table,
  .preview-table thead,
  .preview-table tbody,
  .preview-table tr,
  .preview-table td {
    display: block;
    width: 100%;
  }
  .preview-table {
    font-size: 13px;
  }
  .preview-table thead {
    display: none;
  }
  .preview-table tbody {
    display: grid;
    gap: 14px;
  }
  .preview-table tr {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .preview-table tbody tr:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .preview-table td {
    padding: 0;
    border-bottom: none;
  }
  .preview-table td + td {
    margin-top: 10px;
  }
  .preview-table td::before {
    display: block;
    margin-bottom: 4px;
    font-size: 9px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
  }
  .preview-table td:nth-child(1)::before { content: 'Result'; }
  .preview-table td:nth-child(2)::before { content: 'Opponent'; }
  .preview-table td:nth-child(3)::before { content: 'Method'; }
  .preview-table td:nth-child(4)::before { content: 'Event'; }
  .preview-table td:nth-child(5)::before { content: 'Date'; }
  .preview-table td:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .preview-table td:first-child::before {
    margin-bottom: 0;
  }
  .feature-band__media { min-height: 220px; }
  .feature-band__content,
  .feature-band__surface { padding: 28px 20px; }
  .feature-band__panel { padding: 20px; }
  .booking-strip {
    padding: 24px 20px;
    gap: 20px;
  }
  .showcase { padding: 64px 20px; }
  .showcase-intro { margin-bottom: 28px; }
  .showcase-heading {
    font-size: 24px;
    letter-spacing: 2px;
  }
  .showcase-item { height: 260px; }
  .schedule,
  .connect,
  .sponsors { padding: 60px 20px; }
  .cta-banner {
    padding: 24px 20px;
    gap: 20px;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .metric-card strong { font-size: clamp(28px, 10vw, 36px); }
  .contact-channels .metric-card strong { font-size: 20px; }
  .feature-video__media video { min-height: 220px; }
  .feature-video__copy { padding: 24px 20px; }
  .feature-video__copy h3 {
    font-size: clamp(24px, 8vw, 30px);
    line-height: 1;
  }
  .feature-video__copy p,
  .video-card p {
    font-size: 14px;
    line-height: 1.6;
  }
  .video-card__body { padding: 18px 18px 20px; }
  .video-card h3 { font-size: 21px; }
  .not-found-main { padding: 120px 20px 64px; }
  .not-found-message { font-size: 16px; }
  .footer-inner { padding: 20px 20px 14px; }
  .footer-meta { padding: 10px 20px 16px; }
}