:root {
  --red: #c8102e;
  --red-bright: #f0183d;
  --red-deep: #8a0a1f;
  --gold: #e8b11e;
  --gold-soft: #ffd866;
  --ink: #080808;
  --ink-2: #111111;
  --ink-3: #191919;
  --paper: #ffffff;
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.14);
  --line-strong: rgba(255,255,255,.24);
  --glass: rgba(255,255,255,.08);
  --glass-strong: rgba(255,255,255,.13);
  --shadow-deep: 0 28px 80px rgba(0,0,0,.42);
  --shadow-glow: 0 0 0 1px rgba(255,255,255,.04), 0 24px 60px rgba(200,16,46,.18);
  --display: "Montserrat","Helvetica Neue",Helvetica,Arial,sans-serif;
  --body: "Inter",Arial,sans-serif;
  --mono: "JetBrains Mono",monospace;
  --maxw: 1320px;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(900px 520px at 12% -8%, rgba(232,177,30,.16), transparent 58%),
    radial-gradient(920px 620px at 88% 6%, rgba(200,16,46,.28), transparent 58%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 38%, #070707 100%);
  color: var(--paper);
  font-family: var(--body);
  line-height: 1.58;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(255,255,255,.025) 28.3%, transparent 28.7%),
    linear-gradient(115deg, transparent 0 62%, rgba(232,177,30,.06) 62.2%, transparent 62.6%);
  opacity: .85;
}
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(232,177,30,.36); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow-wrap { max-width: 520px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9,9,9,.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(120%);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  overflow: visible;
}
.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.site-header::before {
  padding: 1px;
  background:
    linear-gradient(90deg,
      rgba(232,177,30,0) 0%,
      rgba(232,177,30,.18) 18%,
      rgba(255,224,122,.96) 48%,
      rgba(232,177,30,.18) 78%,
      rgba(232,177,30,0) 100%);
  background-size: 34% 100%;
  background-repeat: no-repeat;
  background-position: -40% 0;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: header-neon-trace 4.8s linear infinite;
  opacity: .96;
}
.site-header::after {
  border: 1px solid rgba(255,213,94,.16);
  box-shadow:
    inset 0 0 18px rgba(255,213,94,.12),
    0 0 18px rgba(255,213,94,.16);
}
.header-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 14px;
  min-height: 88px;
}
@keyframes header-neon-trace {
  0% { background-position: -40% 0; }
  100% { background-position: 140% 0; }
}
.menu-toggle {
  display: none;
  position: relative;
  z-index: 3;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,226,132,.36);
  border-radius: 8px;
  background: rgba(11,11,11,.82);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 0 1px rgba(255,213,94,.08),
    0 16px 34px rgba(0,0,0,.34);
  cursor: pointer;
  place-items: center;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #fff5cf, var(--gold-soft));
  box-shadow: 0 0 10px rgba(255,220,120,.46);
  transition: transform .22s ease, opacity .22s ease;
}
.menu-toggle span + span { margin-top: 4px; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.theme-toggle {
  position: relative;
  width: 64px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255,226,132,.28);
  border-radius: 999px;
  background: rgba(12,12,12,.78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 16px 34px rgba(0,0,0,.24);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255,226,132,.48);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 20px 38px rgba(0,0,0,.3);
}
.theme-toggle-track {
  position: absolute;
  inset: 4px;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 50%, rgba(255,220,120,.3), transparent 30%),
    linear-gradient(135deg, rgba(232,177,30,.16), rgba(255,255,255,.04));
}
.theme-toggle-sun,
.theme-toggle-moon,
.theme-toggle-thumb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.theme-toggle-sun {
  left: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow:
    0 0 0 4px rgba(255,220,120,.14),
    0 0 14px rgba(255,220,120,.54);
}
.theme-toggle-moon {
  right: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  box-shadow: inset -4px -1px 0 rgba(12,12,12,.72);
}
.theme-toggle-thumb {
  left: 35px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f8f8, #dadada);
  box-shadow:
    0 8px 18px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.86);
  transition: left .24s ease, background .24s ease, box-shadow .24s ease;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 68px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.34));
}
.brand-logo-full {
  padding: 6px;
  border-radius: 8px;

  box-shadow: 0 16px 34px rgba(0,0,0,.28);
}
.brand-name {
  font: 800 20px/.94 var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0,0,0,.36);
}
.brand-name span {
  display: block;
  color: var(--gold);
}
.nav {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
}
.nav a, .admin-link {
  position: relative;
  color: rgba(255,255,255,.9);
  font: 600 11px/1.05 var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .18s ease, transform .18s ease;
}
.nav a::after, .admin-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--red-bright));
  transition: transform .18s ease;
}
.nav a:hover, .admin-link:hover {
  color: var(--gold-soft);
  transform: translateY(-1px);
}
.nav a:hover::after, .admin-link:hover::after { transform: scaleX(1); }
.nav-admin-mobile { display: none; }
.header-socials,
.nav-socials-mobile {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-socials a,
.nav-socials-mobile a {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255,255,255,.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 12px 24px rgba(0,0,0,.16);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.header-socials a:hover,
.nav-socials-mobile a:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(232,177,30,.34);
  background: rgba(232,177,30,.12);
}
.header-socials svg,
.nav-socials-mobile svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.nav-socials-mobile { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(960px 580px at 74% 34%, rgba(200,16,46,.62), transparent 64%),
    radial-gradient(1100px 760px at 18% 102%, rgba(94,6,24,.82), transparent 62%),
    linear-gradient(180deg, #050505 0%, #170409 58%, #080808 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255,255,255,.028) 18px 20px),
    linear-gradient(115deg, transparent 38%, rgba(232,177,30,.14) 39%, transparent 41%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.48));
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr .55fr;
  align-items: center;
  gap: 42px;
  min-height: 760px;
}
.eyebrow {
  color: var(--gold-soft);
  font: 700 11px var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.display {
  margin: 14px 0 30px;
  color: #fff;
  font: 600 clamp(52px,6.4vw,86px)/.94 var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 16px 34px rgba(0,0,0,.46);
}
.display .gold { color: var(--gold-soft); }
.display .red {
  color: #ff284f;
  text-shadow: 0 16px 34px rgba(0,0,0,.46);
}
.lede {
  max-width: 480px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.68;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  box-shadow: 0 18px 34px rgba(200,16,46,.22), inset 0 1px 0 rgba(255,255,255,.2);
  font: 700 15px var(--display);
  letter-spacing: .035em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(200,16,46,.3), inset 0 1px 0 rgba(255,255,255,.24);
}
.btn.gold {
  color: #141414;
  border-color: rgba(232,177,30,.26);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 34px rgba(232,177,30,.22), inset 0 1px 0 rgba(255,255,255,.45);
}
.btn.ghost {
  background: rgba(255,255,255,.06);
  border-color: rgba(232,177,30,.42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 18px 34px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    radial-gradient(420px 320px at 50% 30%, rgba(232,177,30,.22), transparent 70%),
    rgba(255,255,255,.06);
  clip-path: polygon(10% 0,100% 0,90% 100%,0 100%);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255,255,255,.22);
  backdrop-filter: blur(20px) saturate(130%);
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(232,177,30,.2);
  clip-path: inherit;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,.08), rgba(200,16,46,.24));
  pointer-events: none;
}
.hero-art-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 500px;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.4));
}
.hero-art-image.is-brand-fallback { object-fit: contain; padding: 56px; }
.hero-art-image.is-uploaded-hero { object-fit: cover; }
.hero-stats {
  display: grid;
  gap: 18px;
}
.stat {
  position: relative;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(16px);
}
.stat b {
  display: block;
  color: #fff;
  font: 700 36px/.94 var(--display);
  text-shadow: 0 12px 30px rgba(0,0,0,.42);
}

.section { position: relative; padding: 74px 0; }
.section.alt {
  color: #111;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,247,247,.98)),
    radial-gradient(720px 460px at 18% 10%, rgba(200,16,46,.08), transparent 64%);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section h1, .section h2 {
  margin: 0;
  color: inherit;
  font: 600 clamp(32px,3.4vw,52px)/1 var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.grid-4, .grid-3 {
  display: grid;
  gap: 20px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card,
.list-row,
.feature-card,
.metric,
.panel {
  position: relative;
  isolation: isolate;
}
.card::before,
.list-row::before,
.feature-card::before,
.metric::before,
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255,228,132,.98), transparent) top left / 34% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(255,228,132,.98), transparent) top right / 1px 34% no-repeat,
    linear-gradient(270deg, transparent, rgba(255,228,132,.98), transparent) bottom right / 34% 1px no-repeat,
    linear-gradient(0deg, transparent, rgba(255,228,132,.98), transparent) bottom left / 1px 34% no-repeat;
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(255,214,96,.34));
  animation: card-neon-trace 4.4s linear infinite;
}
.card::before,
.list-row::before,
.feature-card::before {
  clip-path: inherit;
}
.card {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(255,255,255,.06);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255,255,255,.15);
  backdrop-filter: blur(18px) saturate(120%);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0 34%, rgba(255,255,255,.05) 49%, transparent 64%);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,177,30,.34);
  box-shadow: 0 30px 72px rgba(0,0,0,.46), 0 0 0 1px rgba(232,177,30,.06);
}
.alt .card {
  color: #111;
  border-color: rgba(17,17,17,.09);
  background: rgba(255,255,255,.78);
  box-shadow: 0 24px 48px rgba(30,30,30,.11), inset 0 1px 0 rgba(255,255,255,.7);
}
.card-media {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  color: var(--gold-soft);
  background:
    radial-gradient(360px 240px at 30% 20%, rgba(232,177,30,.18), transparent 60%),
    linear-gradient(135deg, rgba(200,16,46,.8), rgba(34,5,12,.94));
  font: 700 26px var(--display);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.media-thumb {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #18080d;
}
.media-thumb img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.05);
}
.media-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,2,4,.08), rgba(6,2,4,.66)),
    linear-gradient(135deg, rgba(200,16,46,.14), transparent 55%);
}
.media-thumb span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  padding: 8px 12px;
  color: #111;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 999px;
  font: 700 11px var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.media-thumb-logo {
  object-fit: contain!important;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.card-body { position: relative; z-index: 1; padding: 22px; }
.card h3 {
  margin: 0 0 12px;
  color: inherit;
  font: 900 28px/1 var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
}
.meta {
  color: var(--gold);
  font: 700 11px var(--mono);
  letter-spacing: .11em;
  text-transform: uppercase;
}
.prose { max-width: 900px; }
.prose h2 {
  margin-top: 36px;
  font-size: 38px;
}
.list-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(16px);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}
.alt .list-row {
  border-color: rgba(17,17,17,.08);
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 42px rgba(0,0,0,.08);
}
.result-row {
  align-items: center;
}
.result-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.result-league-badge {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  width: 118px;
  min-height: 118px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(232,177,30,.34);
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.03)),
    linear-gradient(135deg, rgba(200,16,46,.94), rgba(34,7,11,.96));
  box-shadow:
    0 24px 42px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.18);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}
.result-league-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,220,120,.18), transparent 42%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 8px, transparent 8px 16px);
  pointer-events: none;
}
.result-league-badge span,
.result-league-badge small {
  position: relative;
  z-index: 1;
}
.result-league-badge span {
  color: #fff;
  font: 700 42px/.94 var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
}
.result-league-badge small {
  margin-top: 8px;
  color: var(--gold-soft);
  font: 700 11px/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
}

.partner-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(17,17,17,.08);
  border-bottom: 1px solid rgba(17,17,17,.08);
  background: #fff;
}
.partner-marquee::before,
.partner-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: min(12vw, 140px);
  pointer-events: none;
}
.partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0));
}
.partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255,255,255,1), rgba(255,255,255,0));
}
.partner-marquee-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: partner-marquee-scroll 34s linear infinite;
}
.partner-marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
  flex: none;
  padding: 20px clamp(28px, 4vw, 56px);
}
.partner-marquee-group img {
  width: auto;
  max-width: 236px;
  height: clamp(30px, 3.6vw, 52px);
  padding: 8px 18px;
  object-fit: contain;
  opacity: .76;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 999px;
  background: rgba(17,17,17,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 10px 24px rgba(17,17,17,.06);
  filter: saturate(.9) contrast(1.02);
  transition: opacity .22s ease, filter .22s ease, transform .22s ease, background .22s ease;
}
.partner-marquee-group img:hover {
  opacity: .92;
  filter: saturate(1) contrast(1.02);
  background: rgba(17,17,17,.055);
  transform: translateY(-1px);
}
.partner-marquee-group .partner-logo-wide {
  min-width: 180px;
  max-width: 272px;
  height: clamp(46px, 5vw, 72px);
  padding-inline: 22px;
}
@keyframes partner-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  background: rgba(4,4,4,.92);
  backdrop-filter: blur(18px);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  width: 108px;
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 16px 34px rgba(0,0,0,.35));
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255,255,255,.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 14px 28px rgba(0,0,0,.18);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.footer-socials a:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(232,177,30,.34);
  background: rgba(232,177,30,.12);
}
.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.footer-credit {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.56);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-credit a {
  color: var(--gold-soft);
  transition: color .18s ease;
}
.footer-credit a:hover {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee-track {
    animation-play-state: paused;
  }
}

.admin-body {
  display: grid;
  grid-template-columns: 286px 1fr;
  min-height: 100vh;
  color: #171717;
  background:
    radial-gradient(820px 520px at 12% 8%, rgba(200,16,46,.08), transparent 58%),
    linear-gradient(180deg, #f6f6f6, #efefef);
}
.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  color: #fff;
  background: rgba(8,8,8,.94);
  border-right: 1px solid rgba(255,255,255,.08);
  box-shadow: 18px 0 48px rgba(0,0,0,.16);
}
.admin-sidebar a, .admin-sidebar button {
  padding: 12px 13px;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  font: 700 14px var(--body);
  text-align: left;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.admin-sidebar a:hover, .admin-sidebar button:hover {
  transform: translateX(2px);
  border-color: rgba(232,177,30,.18);
  background: rgba(232,177,30,.12);
}
.admin-logo {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--gold)!important;
  font: 900 24px var(--display)!important;
}
.admin-logo img {
  width: 126px;
  height: auto;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 38px rgba(0,0,0,.24);
}
.admin-main { overflow: auto; padding: 38px; }
.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.admin-title {
  margin: 0;
  color: #151515;
  font: 900 52px/.88 var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.metric, .panel {
  padding: 22px;
  border: 1px solid rgba(20,20,20,.08);
  border-radius: 10px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 24px 56px rgba(20,20,20,.11), inset 0 1px 0 rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
}
@keyframes card-neon-trace {
  0% {
    background-position:
      -38% 0,
      100% -38%,
      138% 100%,
      0 138%;
  }
  100% {
    background-position:
      138% 0,
      100% 138%,
      -38% 100%,
      0 -38%;
  }
}
.panel-spaced { margin-top: 22px; }
.metric span {
  display: block;
  margin-bottom: 8px;
  color: #666;
  font: 700 12px var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.metric b {
  color: var(--red);
  font: 900 46px/.92 var(--display);
}
.table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  border-radius: 10px;
  background: rgba(255,255,255,.8);
}
.table th, .table td {
  padding: 15px;
  border-bottom: 1px solid rgba(20,20,20,.08);
  text-align: left;
  vertical-align: top;
}
.table th {
  color: #555;
  font: 700 12px var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.inline-form { display: inline; }
.inline-form button {
  color: var(--red);
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 700; }
input, textarea, select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid rgba(200,16,46,.18);
  border-color: rgba(200,16,46,.34);
}
textarea { min-height: 180px; }
.checkbox { display: flex; align-items: center; gap: 8px; }
.checkbox input { width: auto; }
.note {
  padding: 15px;
  border: 1px solid rgba(232,177,30,.38);
  border-radius: 8px;
  color: #4b3600;
  background: rgba(255,247,220,.9);
  box-shadow: 0 18px 38px rgba(232,177,30,.08);
}
.validation-summary-errors {
  color: #a4001c;
  padding: 12px;
  border: 1px solid #ffc3ce;
  border-radius: 8px;
  background: #fff0f3;
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; padding: 72px 0; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  body.menu-open { overflow: hidden; }
  .header-row {
    grid-template-columns: 1fr auto;
    min-height: 88px;
  }
  .brand { min-width: 0; }
  .brand-name { font-size: 21px; }
  .menu-toggle {
    display: grid;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .theme-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 62px;
  }
  .nav {
    position: fixed;
    top: 88px;
    left: 18px;
    right: 18px;
    z-index: 30;
    display: grid;
    max-height: calc(100vh - 110px);
    gap: 0;
    padding: 12px;
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    background: rgba(11,11,11,.98);
    box-shadow: 0 28px 72px rgba(0,0,0,.5);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { bottom: 0; }
  .admin-link { display: none; }
  .nav-admin-mobile { display: flex!important; }
  .header-socials { display: none; }
  .nav-socials-mobile {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    padding: 14px 12px 4px;
  }
  .nav-socials-mobile a {
    min-height: 40px;
    border-bottom: 0;
  }
  .grid-3, .form-grid, .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
  .admin-main { padding: 24px; }
  .admin-top, .section-head, .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-socials { justify-content: flex-start; }
  .list-row { grid-template-columns: 1fr; }
  .result-content { grid-template-columns: 1fr; }
  .result-league-badge { width: 100%; min-height: 104px; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 18px; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; padding: 56px 0; }
  .display { font-size: clamp(42px, 13vw, 62px); }
  .lede { font-size: 16px; }
  .hero-art, .hero-art-image { min-height: 320px; }
  .hero-art-image.is-brand-fallback { padding: 34px; }
  .hero-stats, .grid-4, .metric-grid { grid-template-columns: 1fr; }
  .brand-logo { width: 72px; }
  .brand-name { font-size: 19px; }
  .hero-video {
    opacity: .3;
    object-position: center center;
  }
  .hero-reference .display {
    font-size: clamp(38px, 12vw, 58px);
  }
  .feature-card { min-height: auto; }
  .feature-body { min-height: 0; }
}

/* Homepage reset toward the original CGA reference direction */
.hero-reference {
  min-height: 620px;
  background:
    linear-gradient(180deg, rgba(9,0,3,.32), rgba(9,0,3,.82)),
    repeating-linear-gradient(115deg, rgba(255,255,255,.018) 0 2px, transparent 2px 16px),
    radial-gradient(760px 460px at 24% 12%, rgba(200,16,46,.2), transparent 64%),
    radial-gradient(680px 420px at 72% 22%, rgba(232,177,30,.12), transparent 68%),
    linear-gradient(180deg, #210309 0%, #0c0809 72%, #070707 100%);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .24;
  filter: saturate(.9) contrast(1.02) brightness(.82);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,4,5,.62), rgba(8,4,5,.82)),
    radial-gradient(700px 420px at 22% 16%, rgba(200,16,46,.12), transparent 64%);
}
.hero-reference .hero-copy {
  position: relative;
  max-width: 680px;
}
.hero-reference .hero-copy::before {
  content: "";
  position: absolute;
  inset: -36px auto auto -24px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(232,177,30,.1), transparent 70%);
  pointer-events: none;
}
.hero-reference::before {
  background:
    linear-gradient(120deg, transparent 24%, rgba(232,177,30,.08) 24.2%, transparent 24.6%),
    linear-gradient(120deg, transparent 52%, rgba(200,16,46,.16) 52.2%, transparent 52.6%),
    linear-gradient(120deg, transparent 77%, rgba(255,255,255,.05) 77.2%, transparent 77.6%);
}
.hero-reference::after {
  height: 1px;
  top: auto;
  bottom: 0;
  background: rgba(255,255,255,.08);
}
.hero-reference .hero-grid {
  min-height: 620px;
  grid-template-columns: .92fr 1.08fr .42fr;
  gap: 34px;
}
.hero-copy { padding-top: 8px; }
.hero-reference .display {
  max-width: 680px;
  margin: 14px 0 24px;
  font-size: clamp(42px, 5.1vw, 72px);
  font-weight: 600;
  line-height: .98;
  text-shadow: 0 14px 30px rgba(0,0,0,.44);
}
.hero-reference .display span {
  display: block;
}
.hero-actions .btn {
  min-height: 48px;
  padding: 12px 22px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.hero-actions .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255,255,255,.22) 48%, transparent 68%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.hero-actions .btn:hover::after {
  transform: translateX(120%);
}
.hero-stage {
  position: relative;
  min-height: 360px;
}
.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity .85s ease, transform .85s ease;
}
.hero-stage::before {
  inset: 24px 12px 14px;
  border: 1px solid rgba(255,255,255,.06);
  transform: skewX(-10deg);
}
.hero-stage::after {
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 10px, transparent 10px 20px);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 84%, transparent);
}
.hero-panel {
  position: relative;
  z-index: 1;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(232,177,30,.22);
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.015)),
    rgba(24,10,13,.4);
  box-shadow: 0 22px 48px rgba(0,0,0,.22);
  backdrop-filter: blur(12px) saturate(115%);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
  opacity: 1;
  transition: opacity .85s ease, transform .85s ease;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), inset 0 -120px 120px rgba(0,0,0,.18);
}
.hero-carousel {
  isolation: isolate;
}
.hero-carousel.is-paused {
  opacity: 0;
  transform: translateY(8px) scale(.985);
}
.hero-stage.is-paused::before,
.hero-stage.is-paused::after {
  opacity: 0;
  transform: translateY(8px) scale(.985);
}
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.05s ease, transform 5.2s ease;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,3,5,.08), rgba(9,3,5,.38)),
    linear-gradient(135deg, rgba(200,16,46,.12), transparent 52%);
}
.hero-slide.is-active {
  z-index: 1;
  opacity: .78;
  transform: scale(1);
}
.hero-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}
.hero-slide figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  color: #fff;
  font: 600 15px/1.15 var(--display);
  letter-spacing: .02em;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0,0,0,.64);
  opacity: 0;
  transition: opacity .35s ease;
}
.hero-slide.is-active figcaption {
  opacity: 1;
}
.hero-reference .hero-stats {
  gap: 20px;
}
.hero-reference .stat {
  padding: 0 0 0 14px;
  border: 0;
  border-left: 2px solid var(--gold);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.hero-reference .stat b {
  font-size: 28px;
  font-weight: 600;
}
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 64px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}
.hero-slider-dots button {
  display: block;
  width: 24px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.24);
  cursor: pointer;
  transition: width .22s ease, background .22s ease, transform .22s ease;
}
.hero-slider-dots button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.5);
}
.hero-slider-dots button.is-active {
  width: 40px;
  background: var(--red);
}

.pulse-band {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding-bottom: 24px;
}
.pulse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pulse-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 168px;
  padding: 20px 20px 18px;
  overflow: hidden;
  border: 1px solid rgba(232,177,30,.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.03)),
    rgba(16,12,13,.82);
  box-shadow:
    0 24px 48px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(18px) saturate(125%);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.pulse-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(320px 180px at 8% 10%, rgba(232,177,30,.18), transparent 60%),
    linear-gradient(115deg, transparent 0 40%, rgba(255,255,255,.08) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .8s ease;
  pointer-events: none;
}
.pulse-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 2px solid var(--gold);
  pointer-events: none;
}
.pulse-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232,177,30,.42);
  box-shadow:
    0 34px 68px rgba(0,0,0,.38),
    0 0 0 1px rgba(232,177,30,.08);
}
.pulse-card:hover::before {
  transform: translateX(120%);
}
.pulse-kicker,
.section-kicker {
  color: var(--gold-soft);
  font: 700 11px var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.pulse-card strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font: 700 24px/1.02 var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
}
.pulse-card small {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.72);
  font: 700 11px var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-head-compact {
  align-items: flex-end;
  margin-bottom: 24px;
}
.section-head-compact h2 {
  max-width: 880px;
  margin-top: 10px;
  font-size: clamp(34px, 4vw, 58px);
}
.authority-band {
  position: relative;
  padding: 28px 0 34px;
  background:
    linear-gradient(180deg, rgba(8,8,8,.98), rgba(11,11,11,.98)),
    radial-gradient(920px 420px at 18% 20%, rgba(200,16,46,.16), transparent 62%);
}
.authority-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 22px;
}
.authority-lead,
.authority-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232,177,30,.18);
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(15,15,15,.82);
  box-shadow:
    0 28px 58px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(18px) saturate(120%);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}
.authority-lead {
  padding: 30px;
}
.authority-lead::before,
.authority-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(360px 220px at 10% 8%, rgba(232,177,30,.14), transparent 62%),
    linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,.07) 50%, transparent 62%);
}
.authority-lead h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 12px 0 18px;
  color: #fff;
  font: 700 clamp(34px,3.8vw,56px)/1 var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
}
.authority-lead p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: rgba(255,255,255,.8);
  font-size: 17px;
}
.authority-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.authority-stack {
  display: grid;
  gap: 18px;
}
.authority-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 20px 22px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.authority-card span,
.authority-card small {
  position: relative;
  z-index: 1;
  color: var(--gold-soft);
  font: 700 11px var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.authority-card strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font: 700 26px/1.02 var(--display);
  text-transform: uppercase;
}
.authority-card:hover,
.authority-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(232,177,30,.42);
  box-shadow:
    0 34px 68px rgba(0,0,0,.38),
    0 0 0 1px rgba(232,177,30,.08);
  outline: none;
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(860px 420px at 18% 8%, rgba(200,16,46,.28), transparent 64%),
    radial-gradient(760px 420px at 82% 18%, rgba(232,177,30,.12), transparent 66%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.028) 0 2px, transparent 2px 16px),
    linear-gradient(180deg, #170308 0%, #090909 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(232,177,30,.12) 28.2%, transparent 28.6%),
    linear-gradient(120deg, transparent 0 62%, rgba(200,16,46,.18) 62.2%, transparent 62.6%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  margin: 12px 0 14px;
  color: #fff;
  font: 700 clamp(28px,3.2vw,44px)/.94 var(--display);
  text-transform: uppercase;
  text-shadow: 0 16px 36px rgba(0,0,0,.32);
}
.page-hero p:last-child {
  max-width: 820px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.7;
}
.editorial-section {
  padding-top: 46px;
}
.editorial-list {
  display: grid;
  gap: 18px;
}
.editorial-row {
  min-height: 160px;
}
.elevated-prose {
  padding: 28px;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 10px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 24px 56px rgba(20,20,20,.1), inset 0 1px 0 rgba(255,255,255,.88);
}
.contact-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 24px;
  align-items: start;
}
.contact-intro h2 {
  margin: 12px 0 14px;
  font: 700 clamp(32px,3.8vw,50px)/1 var(--display);
  text-transform: uppercase;
}
.contact-intro p {
  max-width: 520px;
}

.feature-strip {
  padding-top: 16px;
  background: #090909;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  min-height: 548px;
  overflow: hidden;
  border: 1px solid rgba(200,16,46,.44);
  background: #151515;
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}
.feature-card::after {
  content: "";
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -42%;
  width: 28%;
  opacity: 0;
  background: linear-gradient(125deg, transparent 18%, rgba(255,255,255,.11) 48%, transparent 78%);
  transform: skewX(-18deg) translateX(0);
  transition: opacity .24s ease, transform .6s ease;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(232,177,30,.48);
  box-shadow: 0 34px 68px rgba(0,0,0,.42), 0 0 0 1px rgba(232,177,30,.08);
}
.feature-card:hover::after {
  opacity: .7;
  transform: skewX(-18deg) translateX(510%);
}
.feature-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 14px 20px;
  background: linear-gradient(180deg, #da0f31, #b60c28);
}
.feature-card-head h2 {
  margin: 0;
  color: #fff;
  font: 700 clamp(22px, 2vw, 32px)/1 var(--display);
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display {
  font-style: normal;
}

.card,
.list-row,
.feature-card,
.pulse-card,
.authority-lead,
.authority-card {
  clip-path: none;
}
.feature-card-head a {
  color: var(--gold-soft);
  font: 700 11px var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.feature-media {
  position: relative;
  overflow: hidden;
  min-height: 252px;
  background: #21080d;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.028) 0 10px, transparent 10px 20px),
    linear-gradient(180deg, rgba(12,4,6,.08), rgba(12,4,6,.42));
  pointer-events: none;
}
.feature-media img {
  width: 100%;
  height: 252px;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.04);
  transition: transform .5s ease, filter .5s ease;
}
.feature-card:hover .feature-media img {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.06);
}
.feature-media-portrait img {
  object-position: center 24%;
}
.feature-body {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 230px;
  padding: 22px 20px 24px;
}
.feature-body h3 {
  margin: 0;
  color: #fff;
  font: 900 22px/1.02 var(--display);
  text-transform: uppercase;
}
.results-feature {
  background: #171717;
}
.results-feature-body {
  padding: 22px 20px 24px;
}
.results-feature-body h3 {
  margin: 0;
  color: #fff;
  font: 700 28px/1 var(--display);
  text-transform: uppercase;
}
.results-kicker {
  margin: 6px 0 18px;
  color: var(--gold);
  font: 700 11px var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.result-mini-list {
  display: grid;
  gap: 0;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.result-mini-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
}
.result-mini-league {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.result-mini-league b {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(232,177,30,.34);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(200,16,46,.96), rgba(113,7,29,.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  font: 700 17px/.96 var(--display);
  letter-spacing: 0;
}
.result-mini-league em {
  overflow: hidden;
  color: rgba(255,255,255,.86);
  font: 700 11px var(--mono);
  font-style: normal;
  letter-spacing: .12em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.result-mini-list strong {
  color: #fff;
  font-family: var(--mono);
  letter-spacing: .06em;
}
.results-outline-link {
  display: flex;
  justify-content: center;
  padding: 14px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font: 700 12px var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.results-outline-link:hover {
  color: #111;
  background: var(--gold-soft);
  transform: translateY(-2px);
}
.media-band {
  background: linear-gradient(180deg, #f8f8f8, #f0f0f0);
}
.media-card {
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
}
.reveal-card {
  opacity: 0;
  transform: translateY(18px);
}
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease, box-shadow .24s ease, border-color .24s ease;
}
.feature-card-head {
  position: relative;
  overflow: hidden;
}
.feature-card-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 40%, rgba(255,255,255,.16) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .8s ease;
}
.feature-card:hover .feature-card-head::after {
  transform: translateX(120%);
}
.feature-card:nth-child(2).is-visible,
.media-card:nth-child(2).is-visible { transition-delay: .08s; }
.feature-card:nth-child(3).is-visible,
.media-card:nth-child(3).is-visible { transition-delay: .16s; }
.feature-card:nth-child(4).is-visible { transition-delay: .24s; }

@media (max-width: 1100px) {
  .hero-reference .hero-grid,
  .feature-grid,
  .pulse-grid,
  .authority-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-reference .hero-stats {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .hero-reference {
    min-height: auto;
  }
  .hero-reference .hero-grid,
  .feature-grid,
  .pulse-grid,
  .authority-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hero-reference .hero-grid {
    min-height: auto;
    padding: 42px 0 60px;
  }
  .hero-reference .hero-video-wrap {
    inset: 0 0 auto;
    height: min(72vh, 680px);
    min-height: 520px;
  }
  .hero-reference .hero-video {
    object-position: center 24%;
  }
  .hero-reference .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(8,4,5,.5), rgba(8,4,5,.82)),
      radial-gradient(620px 420px at 50% 18%, rgba(200,16,46,.2), transparent 64%);
  }
  .hero-reference .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-slide img {
    height: 300px;
  }
  .pulse-band {
    margin-top: -16px;
    padding-bottom: 18px;
  }
  .pulse-card {
    min-height: 0;
  }
  .authority-lead {
    padding: 24px;
  }
  .page-hero {
    padding: 30px 0 24px;
  }
}

html[data-theme="light"] {
  --paper: #15120f;
  --muted: rgba(27,22,18,.72);
  --line: rgba(40,29,20,.14);
  --line-strong: rgba(40,29,20,.22);
  --glass: rgba(255,255,255,.74);
  --glass-strong: rgba(255,255,255,.92);
  --shadow-deep: 0 28px 72px rgba(67,36,18,.16);
  --shadow-glow: 0 0 0 1px rgba(200,16,46,.04), 0 24px 56px rgba(120,64,20,.12);
}
html[data-theme="light"] body {
  background:
    radial-gradient(980px 560px at 14% -8%, rgba(232,177,30,.24), transparent 56%),
    radial-gradient(980px 640px at 92% 8%, rgba(200,16,46,.16), transparent 56%),
    linear-gradient(180deg, #fffaf2 0%, #f8f1e8 42%, #f7f7f5 100%);
  color: #171310;
}
html[data-theme="light"] body::before {
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(200,16,46,.05) 28.3%, transparent 28.7%),
    linear-gradient(115deg, transparent 0 62%, rgba(232,177,30,.1) 62.2%, transparent 62.6%);
  opacity: .7;
}
html[data-theme="light"] ::selection {
  background: rgba(200,16,46,.18);
  color: #170c0d;
}
html[data-theme="light"] .site-header {
  background: rgba(255,248,238,.82);
  border-bottom-color: rgba(73,49,27,.12);
  box-shadow: 0 20px 46px rgba(79,46,20,.12);
}
html[data-theme="light"] .site-header::after {
  border-color: rgba(232,177,30,.24);
  box-shadow:
    inset 0 0 18px rgba(255,213,94,.1),
    0 0 18px rgba(255,213,94,.12);
}
html[data-theme="light"] .brand-name {
  color: #16110e;
  text-shadow: 0 10px 26px rgba(120,76,32,.14);
}
html[data-theme="light"] .brand-logo {
  filter: drop-shadow(0 14px 26px rgba(93,52,24,.16));
}
html[data-theme="light"] .brand-logo-full {
  background: transparent;
  box-shadow: none;
}
html[data-theme="light"] .nav a,
html[data-theme="light"] .admin-link {
  color: rgba(23,19,16,.88);
}
html[data-theme="light"] .header-socials a,
html[data-theme="light"] .nav-socials-mobile a {
  color: #9a6c00;
  border-color: rgba(121,79,19,.16);
  background: rgba(255,255,255,.76);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 12px 24px rgba(96,61,25,.12);
}
html[data-theme="light"] .header-socials a:hover,
html[data-theme="light"] .nav-socials-mobile a:hover {
  color: var(--red);
  border-color: rgba(200,16,46,.22);
  background: rgba(200,16,46,.08);
}
html[data-theme="light"] .nav a:hover,
html[data-theme="light"] .admin-link:hover {
  color: var(--red);
}
html[data-theme="light"] .theme-toggle {
  border-color: rgba(121,79,19,.18);
  background: rgba(255,255,255,.78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 16px 34px rgba(96,61,25,.14);
}
html[data-theme="light"] .theme-toggle-track {
  background:
    radial-gradient(circle at 25% 50%, rgba(255,210,86,.36), transparent 30%),
    linear-gradient(135deg, rgba(255,226,150,.56), rgba(255,255,255,.9));
}
html[data-theme="light"] .theme-toggle-thumb {
  left: 5px;
  background: linear-gradient(135deg, #fff1b5, #f4c13e);
  box-shadow:
    0 8px 18px rgba(132,83,17,.22),
    inset 0 1px 0 rgba(255,255,255,.8);
}
html[data-theme="light"] .menu-toggle {
  border-color: rgba(121,79,19,.22);
  background: rgba(255,255,255,.84);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    0 16px 34px rgba(92,58,28,.14);
}
html[data-theme="light"] .menu-toggle span {
  background: linear-gradient(90deg, var(--red), var(--gold));
  box-shadow: 0 0 10px rgba(232,177,30,.26);
}
html[data-theme="light"] .hero-reference {
  background:
    linear-gradient(180deg, rgba(255,249,241,.42), rgba(255,247,236,.76)),
    repeating-linear-gradient(115deg, rgba(107,61,24,.045) 0 2px, transparent 2px 14px),
    radial-gradient(880px 520px at 24% 12%, rgba(200,16,46,.14), transparent 64%),
    radial-gradient(760px 460px at 72% 22%, rgba(232,177,30,.18), transparent 68%),
    linear-gradient(180deg, #f7e9de 0%, #f8f0e8 72%, #fbfaf7 100%);
}
html[data-theme="light"] .hero-video {
  opacity: .24;
  filter: saturate(.9) contrast(1.02) brightness(1.08);
}
html[data-theme="light"] .hero-video-overlay {
  background:
    linear-gradient(180deg, rgba(255,246,235,.48), rgba(255,247,240,.8)),
    radial-gradient(800px 480px at 22% 16%, rgba(200,16,46,.16), transparent 64%);
}
html[data-theme="light"] .hero-reference::before {
  background:
    linear-gradient(120deg, transparent 24%, rgba(232,177,30,.14) 24.2%, transparent 24.6%),
    linear-gradient(120deg, transparent 52%, rgba(200,16,46,.14) 52.2%, transparent 52.6%),
    linear-gradient(120deg, transparent 77%, rgba(45,28,20,.08) 77.2%, transparent 77.6%);
}
html[data-theme="light"] .hero-reference::after {
  background: rgba(84,50,25,.12);
}
html[data-theme="light"] .display {
  color: #15110d;
  text-shadow: 0 2px 0 rgba(255,255,255,.46), 0 18px 42px rgba(110,68,32,.16);
}
html[data-theme="light"] .display .red {
  color: #e90f38;
  text-shadow: 0 0 18px rgba(233,15,56,.18), 0 18px 42px rgba(110,68,32,.14);
}
html[data-theme="light"] .lede {
  color: rgba(27,22,18,.84);
}
html[data-theme="light"] .btn.ghost {
  color: #171310;
  background: rgba(255,255,255,.68);
  border-color: rgba(200,16,46,.18);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.82),
    0 18px 34px rgba(90,58,30,.12);
}
html[data-theme="light"] .hero-stage::before {
  border-color: rgba(77,50,28,.14);
}
html[data-theme="light"] .hero-stage::after {
  background: repeating-linear-gradient(45deg, rgba(79,50,29,.04) 0 10px, transparent 10px 20px);
}
html[data-theme="light"] .hero-panel {
  border-color: rgba(200,16,46,.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,255,255,.24)),
    rgba(255,248,240,.54);
  box-shadow: 0 28px 60px rgba(95,58,31,.16);
}
html[data-theme="light"] .hero-panel::before {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.48),
    inset 0 -120px 120px rgba(39,18,14,.12);
}
html[data-theme="light"] .hero-slide::after {
  background:
    linear-gradient(180deg, rgba(27,16,12,.04), rgba(27,16,12,.22)),
    linear-gradient(135deg, rgba(200,16,46,.08), transparent 52%);
}
html[data-theme="light"] .hero-slide figcaption {
  color: #fffdf8;
}
html[data-theme="light"] .hero-reference .stat {
  border-left-color: var(--red);
}
html[data-theme="light"] .hero-reference .stat b {
  color: #18120f;
}
html[data-theme="light"] .hero-slider-dots button {
  background: rgba(35,24,18,.24);
}
html[data-theme="light"] .hero-slider-dots button:hover {
  background: rgba(35,24,18,.46);
}
html[data-theme="light"] .feature-strip {
  background:
    radial-gradient(840px 420px at 10% 0%, rgba(232,177,30,.16), transparent 56%),
    linear-gradient(180deg, #f6efe8 0%, #fffaf4 100%);
}
html[data-theme="light"] .pulse-card {
  border-color: rgba(200,16,46,.14);
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,240,232,.86)),
    rgba(255,252,247,.94);
  box-shadow:
    0 24px 52px rgba(84,48,22,.14),
    inset 0 1px 0 rgba(255,255,255,.9);
}
html[data-theme="light"] .pulse-card::after {
  border-left-color: var(--red);
}
html[data-theme="light"] .pulse-card:hover {
  border-color: rgba(200,16,46,.28);
  box-shadow:
    0 34px 68px rgba(84,48,22,.18),
    0 0 0 1px rgba(232,177,30,.08);
}
html[data-theme="light"] .pulse-card strong {
  color: #18120f;
}
html[data-theme="light"] .pulse-card small {
  color: rgba(24,18,15,.66);
}
html[data-theme="light"] .pulse-kicker,
html[data-theme="light"] .section-kicker {
  color: #9a6c00;
}
html[data-theme="light"] .authority-band {
  background:
    radial-gradient(920px 420px at 18% 20%, rgba(200,16,46,.12), transparent 62%),
    linear-gradient(180deg, #f5eee7 0%, #fffaf5 100%);
}
html[data-theme="light"] .authority-lead,
html[data-theme="light"] .authority-card {
  border-color: rgba(200,16,46,.14);
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,240,232,.86)),
    rgba(255,252,247,.94);
  box-shadow:
    0 28px 58px rgba(84,48,22,.14),
    inset 0 1px 0 rgba(255,255,255,.92);
}
html[data-theme="light"] .authority-lead h2,
html[data-theme="light"] .authority-card strong {
  color: #18120f;
}
html[data-theme="light"] .authority-lead p {
  color: rgba(24,18,15,.78);
}
html[data-theme="light"] .authority-card span,
html[data-theme="light"] .authority-card small {
  color: #9a6c00;
}
html[data-theme="light"] .authority-card:hover,
html[data-theme="light"] .authority-card:focus-visible {
  border-color: rgba(200,16,46,.28);
  box-shadow:
    0 34px 68px rgba(84,48,22,.18),
    0 0 0 1px rgba(232,177,30,.08);
}
html[data-theme="light"] .page-hero {
  border-bottom-color: rgba(72,45,24,.1);
  background:
    radial-gradient(860px 420px at 18% 8%, rgba(200,16,46,.16), transparent 64%),
    radial-gradient(760px 420px at 82% 18%, rgba(232,177,30,.16), transparent 66%),
    repeating-linear-gradient(115deg, rgba(94,58,28,.04) 0 2px, transparent 2px 16px),
    linear-gradient(180deg, #fff3e7 0%, #fbf7f1 100%);
}
html[data-theme="light"] .page-hero h1 {
  color: #18120f;
  text-shadow: 0 16px 34px rgba(109,70,33,.14);
}
html[data-theme="light"] .page-hero p:last-child {
  color: rgba(24,18,15,.76);
}
html[data-theme="light"] .feature-card,
html[data-theme="light"] .results-feature {
  color: #18120f;
  border-color: rgba(200,16,46,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,241,233,.98));
  box-shadow: 0 22px 46px rgba(84,48,22,.12);
}
html[data-theme="light"] .feature-card:hover {
  border-color: rgba(200,16,46,.28);
  box-shadow: 0 30px 64px rgba(84,48,22,.18), 0 0 0 1px rgba(232,177,30,.08);
}
html[data-theme="light"] .feature-media {
  border-bottom-color: rgba(69,42,24,.1);
  background: #efe2d7;
}
html[data-theme="light"] .feature-body h3,
html[data-theme="light"] .results-feature-body h3,
html[data-theme="light"] .result-mini-list strong {
  color: #18120f;
}
html[data-theme="light"] .result-mini-list li {
  color: rgba(24,18,15,.84);
  border-bottom-color: rgba(59,37,24,.14);
}
html[data-theme="light"] .result-mini-league b {
  color: #fff;
}
html[data-theme="light"] .result-mini-league em {
  color: rgba(24,18,15,.74);
}
html[data-theme="light"] .results-outline-link {
  color: #6b4300;
  background: rgba(255,255,255,.58);
}
html[data-theme="light"] .results-outline-link:hover {
  color: #18120f;
}
html[data-theme="light"] .section {
  color: #18120f;
}
html[data-theme="light"] .section.alt,
html[data-theme="light"] .media-band {
  background:
    radial-gradient(720px 460px at 18% 10%, rgba(200,16,46,.08), transparent 64%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,242,235,.98));
}
html[data-theme="light"] .card,
html[data-theme="light"] .list-row,
html[data-theme="light"] .panel,
html[data-theme="light"] .metric {
  color: #18120f;
  border-color: rgba(64,42,24,.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(247,240,232,.84));
  box-shadow: 0 24px 54px rgba(86,52,27,.14), inset 0 1px 0 rgba(255,255,255,.92);
}
html[data-theme="light"] .card:hover {
  border-color: rgba(200,16,46,.24);
  box-shadow: 0 30px 72px rgba(86,52,27,.18), 0 0 0 1px rgba(232,177,30,.08);
}
html[data-theme="light"] .card::after {
  background: linear-gradient(135deg, transparent 0 34%, rgba(255,255,255,.26) 49%, transparent 64%);
}
html[data-theme="light"] .card-media {
  color: #fff7d8;
  background:
    radial-gradient(360px 240px at 30% 20%, rgba(232,177,30,.22), transparent 60%),
    linear-gradient(135deg, rgba(200,16,46,.86), rgba(76,24,30,.92));
}
html[data-theme="light"] .meta,
html[data-theme="light"] .results-kicker {
  color: #9a6c00;
}
html[data-theme="light"] .partner-marquee {
  border-top-color: rgba(68,44,24,.08);
  border-bottom-color: rgba(68,44,24,.08);
  background: #fffdf8;
}
html[data-theme="light"] .partner-marquee::before {
  background: linear-gradient(90deg, rgba(255,253,248,1), rgba(255,253,248,0));
}
html[data-theme="light"] .partner-marquee::after {
  background: linear-gradient(270deg, rgba(255,253,248,1), rgba(255,253,248,0));
}
html[data-theme="light"] .site-footer {
  border-top-color: rgba(70,44,24,.14);
  background:
    radial-gradient(720px 360px at 20% 0%, rgba(232,177,30,.14), transparent 60%),
    linear-gradient(180deg, #17110e 0%, #0d0a08 100%);
}
html[data-theme="light"] .footer-credit {
  border-top-color: rgba(255,255,255,.12);
}
@media (max-width: 980px) {
  html[data-theme="light"] .nav {
    border-color: rgba(73,49,27,.14);
    background: rgba(255,249,241,.98);
    box-shadow: 0 28px 72px rgba(77,48,24,.18);
  }
  html[data-theme="light"] .nav a {
    border-bottom-color: rgba(73,49,27,.08);
  }
}
