:root {
  --ink: #0B1D3A;
  --ink-2: #132743;
  --red: #E63946;
  --gold: #F4A261;
  --blue-gray: #D3DEE8;
  --white: #FFFFFF;
  --dark-red: #6C1D24;
  --neon: #00E5FF;
  --header-h: 72px;
  --radius: 20px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font-display: "Archivo Black", "Montserrat", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-text: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "Roboto Mono", "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

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

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
}

body {
  min-height: 100vh;
  color: var(--blue-gray);
  background-color: var(--ink);
  background-image: linear-gradient(rgba(211, 222, 232, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(211, 222, 232, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

main {
  display: block;
}

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

a {
  color: var(--blue-gray);
  text-decoration: none;
  transition: color .25s ease;
}

a:hover {
  color: var(--white);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--neon);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--red);
  color: var(--white);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:hover {
  color: var(--white);
}

.skip-link:focus {
  transform: none;
}

.container {
  width: calc(100% - clamp(32px, 7vw, 96px));
  max-width: 1240px;
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(11, 29, 58, .82), rgba(11, 29, 58, 0));
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 29, 58, .94);
  border-bottom-color: rgba(211, 222, 232, .14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  backdrop-filter: saturate(120%) blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--white);
}

.site-brand__mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--red);
  box-shadow: 0 0 0 2px var(--red), 0 0 0 5px rgba(230, 57, 70, .18);
}

.site-brand__mark::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.brand-glyph {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-brand__text strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .02em;
  color: var(--white);
}

.site-brand__text small {
  margin-top: 3px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue-gray);
}

.site-nav {
  margin: 0 auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__list a {
  position: relative;
  display: block;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  color: var(--blue-gray);
  transition: background .25s ease, color .25s ease;
}

.site-nav__list a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.site-nav__list a[aria-current="page"] {
  color: var(--white);
  background: rgba(230, 57, 70, .18);
  box-shadow: inset 0 0 0 1px rgba(230, 57, 70, .5);
}

.site-nav__list a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(6px, .8vw, 10px);
  flex-shrink: 0;
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(19, 39, 67, .42);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: var(--blue-gray);
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.header-action:hover {
  color: var(--white);
  border-color: rgba(244, 162, 97, .6);
  background: rgba(244, 162, 97, .10);
  transform: translateY(-1px);
}

.header-action--member {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(230, 57, 70, .32);
}

.header-action--member:hover {
  color: var(--white);
  background: #d12f3e;
  border-color: #d12f3e;
}

.header-action__label {
  white-space: nowrap;
}

.header-action .icon {
  width: 16px;
  height: 16px;
}

.icon {
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: rgba(11, 29, 58, .35);
  transition: border-color .25s ease, background .25s ease;
}

.nav-toggle:hover {
  border-color: var(--gold);
  background: rgba(230, 57, 70, .16);
}

.nav-toggle__box {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}

.nav-toggle__box span {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: top .3s ease, transform .3s ease, opacity .3s ease;
}

.nav-toggle__box span:nth-child(1) {
  top: 0;
}

.nav-toggle__box span:nth-child(2) {
  top: 6px;
}

.nav-toggle__box span:nth-child(3) {
  top: 12px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

#main-content,
.site-main {
  position: relative;
  min-height: 62vh;
  scroll-margin-top: calc(var(--header-h) + 10px);
}

.section {
  padding-block: clamp(64px, 11vw, 132px);
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, rgba(19, 39, 67, .72), rgba(11, 29, 58, 0));
  border-block: 1px solid rgba(255, 255, 255, .05);
}

.section__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.section__kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  flex: none;
  background: var(--gold);
}

.section__title {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--white);
}

.section__desc {
  margin-top: 16px;
  max-width: 66ch;
  font-size: 15px;
  color: var(--blue-gray);
}

.page-head {
  padding-top: calc(var(--header-h) + clamp(36px, 8vw, 96px));
  padding-bottom: clamp(28px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.page-head__eyebrow {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-head__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--white);
}

.page-head__intro {
  max-width: 70ch;
  margin-top: 18px;
  font-size: 16px;
  color: var(--blue-gray);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

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

.btn-primary {
  background: var(--red);
  box-shadow: 0 12px 32px rgba(230, 57, 70, .32);
}

.btn-primary:hover {
  background: #d12f3e;
  box-shadow: 0 16px 40px rgba(230, 57, 70, .42);
}

.btn-ghost {
  background: rgba(255, 255, 255, .03);
  border-color: rgba(255, 255, 255, .22);
  color: var(--blue-gray);
}

.btn-ghost:hover {
  border-color: var(--neon);
  background: rgba(0, 229, 255, .08);
  color: var(--white);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn .icon {
  width: 16px;
  height: 16px;
}

.panel {
  position: relative;
  padding: clamp(20px, 3vw, 32px);
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

.panel--red::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 72px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--red);
}

.panel--gold::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  background: radial-gradient(circle, rgba(244, 162, 97, .28), transparent 68%);
  pointer-events: none;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
}

.bento-cell {
  grid-column: span 4;
}

.bento-cell--3 {
  grid-column: span 3;
}

.bento-cell--4 {
  grid-column: span 4;
}

.bento-cell--6 {
  grid-column: span 6;
}

.bento-cell--8 {
  grid-column: span 8;
}

.stat-block {
  display: grid;
  gap: 8px;
  align-content: center;
}

.stat-block__value {
  font-family: var(--font-mono);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.stat-block__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.stat-block--red .stat-block__value {
  color: var(--red);
}

.figure-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ink-2), #081832);
}

.figure-frame--tall {
  aspect-ratio: 3 / 4;
}

.figure-frame--wide {
  aspect-ratio: 16 / 10;
}

.figure-frame--round {
  border-radius: 50%;
}

.figure-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(0, 229, 255, .12) 45%, rgba(0, 229, 255, .03) 48%, transparent 51%), linear-gradient(45deg, rgba(230, 57, 70, .08), transparent 60%);
  transition: transform .6s var(--ease);
}

.figure-frame::after {
  content: "SPORTS / DATA";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(211, 222, 232, .75);
}

.figure-frame--round::before,
.figure-frame--round::after {
  display: none;
}

.figure-frame img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-ticker {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, .28);
  border-radius: 999px;
  background: rgba(11, 29, 58, .72);
}

.live-ticker__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--neon);
}

.live-ticker__label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s ease-out infinite;
}

.live-ticker__track {
  display: inline-flex;
  gap: 34px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue-gray);
  animation: ticker 28s linear infinite;
}

.speed-line {
  position: absolute;
  height: 1px;
  pointer-events: none;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), transparent);
  opacity: .5;
}

.speed-line--a {
  top: 16%;
  right: -4%;
  width: 42%;
  transform: rotate(-8deg);
}

.speed-line--b {
  bottom: 22%;
  left: -6%;
  width: 34%;
  transform: rotate(6deg);
}

.speed-line--c {
  top: 46%;
  left: -12%;
  width: 55%;
  transform: rotate(-3deg);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-block: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: #9BB0C3;
}

.breadcrumb a {
  color: #9BB0C3;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: #445B73;
}

.capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(244, 162, 97, .35);
  border-radius: 999px;
  background: rgba(244, 162, 97, .08);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  margin-top: auto;
  overflow: hidden;
  background: #081326;
  border-top: 1px solid rgba(230, 57, 70, .4);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(460px, 50%);
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), transparent);
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 12%;
  right: -10%;
  width: 48%;
  height: 160%;
  background: linear-gradient(115deg, transparent, rgba(230, 57, 70, .05), transparent 70%);
  transform: rotate(14deg);
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr .8fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  padding-block: clamp(52px, 8vw, 84px);
}

.footer-brand {
  display: grid;
  gap: 22px;
  align-content: start;
}

.site-footer .site-brand__text strong {
  color: var(--white);
}

.site-footer .site-brand__text small {
  color: #8FA6BC;
}

.footer-trust {
  max-width: 46ch;
  font-size: 14px;
  line-height: 1.8;
  color: #9AAEC2;
  border-left: 2px solid var(--red);
  padding-left: 16px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-heading::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold);
}

.footer-links ul,
.footer-contact__list {
  display: grid;
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--blue-gray);
  transition: color .2s ease, transform .2s ease;
}

.footer-links a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  transition: background .2s ease;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-links a:hover::before {
  background: var(--gold);
}

.footer-contact__list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 4px 10px;
  font-size: 14px;
  color: var(--blue-gray);
}

.footer-contact__list li::before {
  content: "›";
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.footer-bottom {
  position: relative;
  padding-block: 18px;
  background: rgba(2, 8, 18, .62);
  border-top: 1px solid rgba(211, 222, 232, .12);
}

.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: #8CA2B7;
}

.footer-bottom__inner a {
  color: #8CA2B7;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(244, 162, 97, .5);
  transition: color .2s ease;
}

.footer-bottom__inner a:hover {
  color: var(--gold);
}

.footer-note {
  color: #5F7690;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
  }
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

html.js [data-reveal="left"] {
  transform: translateX(-24px);
}

html.js [data-reveal="right"] {
  transform: translateX(24px);
}

html.js [data-reveal="zoom"] {
  transform: scale(.96);
}

html.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .bento-cell,
  .bento-cell--3,
  .bento-cell--4 {
    grid-column: span 6;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 64px;
  }

  .site-header .container {
    width: calc(100% - 24px);
  }

  .header-action {
    width: 42px;
    height: 42px;
    justify-content: center;
    padding: 0;
  }

  .header-action__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    padding: calc(var(--header-h) + 28px) clamp(20px, 6vw, 44px) 40px;
    overflow-y: auto;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s ease, transform .3s ease, visibility 0s .3s;
  }

  .site-nav[data-open] {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 8px;
    max-width: 560px;
  }

  .site-nav__list a {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
  }

  .site-nav__list a:hover {
    border-color: rgba(244, 162, 97, .35);
    background: rgba(255, 255, 255, .08);
  }

  .site-nav__list a[aria-current="page"] {
    border-color: rgba(230, 57, 70, .55);
    background: rgba(230, 57, 70, .20);
    color: var(--white);
  }

  .site-nav__list a[aria-current="page"]::after {
    display: none;
  }

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

@media (max-width: 880px) {
  .footer-links ul,
  .footer-contact__list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 620px) {
  .site-brand__text small {
    display: none;
  }

  .site-brand__mark {
    width: 34px;
    height: 34px;
  }

  .site-brand__text strong {
    font-size: 17px;
  }

  .footer-bottom__inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .bento-cell,
  .bento-cell--3,
  .bento-cell--4,
  .bento-cell--6,
  .bento-cell--8 {
    grid-column: span 12;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .live-ticker__label::before {
    animation: none;
  }
}
