/* 6686 SPORTS — official website concept */
:root {
  --ink: #07130f;
  --ink-2: #0b1b15;
  --ink-3: #11261d;
  --paper: #f4f5ef;
  --white: #ffffff;
  --muted: #6f7d76;
  --line: rgba(8, 31, 21, .12);
  --line-light: rgba(255, 255, 255, .13);
  --green: #b8f23d;
  --green-bright: #d2ff69;
  --green-dark: #80be13;
  --cyan: #41e6b0;
  --gold: #f2c85b;
  --red: #ff5e62;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 80px rgba(4, 20, 13, .14);
  --shell: min(1260px, calc(100vw - 80px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--green);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #e9ece4;
}

::-webkit-scrollbar-thumb {
  background: #9ca99e;
  border: 3px solid #e9ece4;
  border-radius: 10px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.sr-only {
  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;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--green);
  transform: translateY(-160%);
  transition: transform .2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 12px var(--green);
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  filter: blur(130px);
  opacity: .08;
  pointer-events: none;
}

.ambient-one {
  top: 32vh;
  left: -18vw;
  background: var(--green);
}

.ambient-two {
  right: -18vw;
  top: 110vh;
  background: #45c6ff;
}

.status-bar {
  height: 34px;
  color: rgba(255, 255, 255, .74);
  background: #030a07;
  font-size: 11px;
  letter-spacing: .08em;
}

.status-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-live,
.beijing-time {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-live strong {
  color: var(--white);
  font-weight: 650;
}

.status-copy {
  padding-left: 9px;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.beijing-time time {
  min-width: 68px;
  color: var(--green);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.pulse-dot,
.live-mini {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(184, 242, 61, .6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 7px rgba(184, 242, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 242, 61, 0); }
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
}

.navbar {
  height: 82px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  transition: background .3s, height .3s, box-shadow .3s;
}

.navbar.is-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  color: var(--ink);
  background: rgba(248, 250, 244, .94);
  border-bottom-color: rgba(10, 30, 21, .08);
  box-shadow: 0 8px 40px rgba(2, 16, 10, .09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: navDrop .45s var(--ease) both;
}

@keyframes navDrop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--green);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-mark path {
  fill: currentColor;
}

.brand-mark .mark-accent {
  fill: var(--white);
}

.navbar.is-fixed .brand-mark .mark-accent {
  fill: var(--ink);
}

.brand-type {
  line-height: 1;
}

.brand-type b {
  display: block;
  font-size: 23px;
  letter-spacing: .05em;
  font-style: italic;
  font-weight: 900;
}

.brand-type small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .55);
  font-size: 7px;
  letter-spacing: .18em;
  font-weight: 650;
}

.navbar.is-fixed .brand-type small {
  color: #748078;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
  margin-right: 38px;
}

.nav-link {
  position: relative;
  padding: 31px 0 28px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 600;
  transition: color .2s;
}

.navbar.is-fixed .nav-link {
  padding-top: 25px;
  padding-bottom: 24px;
  color: #627069;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 19px;
  left: 50%;
  height: 2px;
  background: var(--green);
  transition: right .3s var(--ease), left .3s var(--ease);
}

.navbar.is-fixed .nav-link::after {
  bottom: 14px;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.navbar.is-fixed .nav-link:hover,
.navbar.is-fixed .nav-link.is-active {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  right: 0;
  left: 0;
}

.nav-cta {
  height: 42px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  color: var(--ink);
  background: var(--green);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 750;
  transition: background .25s, transform .25s;
}

.nav-cta:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
}

.nav-cta svg {
  width: 14px;
  height: 14px;
}

.nav-cta svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.nav-cta .live-mini {
  width: 6px;
  height: 6px;
  background: var(--ink);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 860px;
  padding-top: 176px;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 41%, rgba(117, 211, 95, .17), transparent 28%),
    linear-gradient(130deg, #07130f 0%, #0a1d16 58%, #0d251b 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -28%;
  right: -7%;
  width: 56vw;
  height: 56vw;
  border: 1px solid rgba(184, 242, 61, .13);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(184, 242, 61, .025),
    0 0 0 180px rgba(184, 242, 61, .02);
}

.hero::after {
  content: "6686";
  position: absolute;
  z-index: 0;
  bottom: 12px;
  left: -35px;
  color: rgba(255, 255, 255, .016);
  font-size: 300px;
  line-height: .7;
  letter-spacing: -.08em;
  font-style: italic;
  font-weight: 950;
}

.hero-canvas,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-grid {
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 84%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 84%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 74px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 98px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 800;
}

.eyebrow-line {
  width: 34px;
  height: 1px;
  background: var(--green);
}

.hero h1 {
  max-width: 680px;
  margin: 28px 0 26px;
  font-size: clamp(55px, 5.7vw, 84px);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 850;
}

.text-gradient {
  color: transparent;
  background: linear-gradient(92deg, var(--green) 0%, var(--green-bright) 44%, #6df1c4 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, .63);
  font-size: 16px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 750;
  transition: color .25s, background .25s, border .25s, transform .25s, box-shadow .25s;
}

.button-primary {
  color: var(--ink);
  background: var(--green);
  box-shadow: 0 8px 34px rgba(184, 242, 61, .18);
}

.button-primary:hover {
  background: var(--green-bright);
  box-shadow: 0 13px 40px rgba(184, 242, 61, .28);
  transform: translateY(-3px);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.button-ghost {
  padding-right: 18px;
  color: var(--white);
  border-color: rgba(255, 255, 255, .17);
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(6px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .09);
}

.play-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
}

.play-icon svg {
  width: 16px;
  height: 16px;
}

.play-icon svg path {
  fill: currentColor;
  stroke: none;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 50px;
}

.hero-metrics > div {
  min-width: 148px;
  padding: 0 25px;
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.hero-metrics > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-metrics strong {
  display: block;
  color: var(--white);
  font-size: 25px;
  line-height: 1;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
}

.hero-metrics small {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, .42);
  font-size: 10px;
}

.hero-visual {
  position: relative;
  align-self: end;
  height: 616px;
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 94%;
  height: 570px;
  border-radius: 180px 16px 16px 16px;
  box-shadow: 0 36px 120px rgba(0, 0, 0, .37);
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: inherit;
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  transition: transform 1.2s var(--ease);
}

.hero-image-wrap:hover img {
  transform: scale(1.035);
}

.image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 13, 8, .28), transparent 40%),
    linear-gradient(0deg, rgba(2, 10, 6, .8) 0%, transparent 48%);
}

.hero-image-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 34px;
}

.hero-image-caption span {
  color: var(--green);
  font-size: 9px;
  letter-spacing: .18em;
  font-weight: 800;
}

.hero-image-caption p {
  max-width: 360px;
  margin: 7px 0 0;
  font-size: 16px;
  font-weight: 650;
}

.floating-card {
  position: absolute;
  z-index: 5;
  color: var(--white);
  background: rgba(10, 27, 20, .8);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 24px 65px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.floating-score {
  bottom: 18px;
  left: -18px;
  width: 320px;
  padding: 18px 20px 17px;
  border-radius: 18px;
  animation: float 4.6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.floating-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.floating-head span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 9px;
  letter-spacing: .15em;
  font-weight: 800;
}

.floating-head i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.floating-head small {
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
}

.floating-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 0 13px;
  text-align: center;
}

.floating-teams b {
  display: block;
  font-size: 13px;
  letter-spacing: .05em;
}

.floating-teams small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .45);
  font-size: 9px;
}

.floating-teams > strong {
  font-size: 22px;
  font-weight: 760;
}

.floating-teams em {
  color: rgba(255, 255, 255, .28);
  font-style: normal;
}

.match-momentum {
  height: 3px;
  background: rgba(255, 255, 255, .1);
  border-radius: 5px;
  overflow: hidden;
}

.match-momentum span {
  display: block;
  width: var(--width);
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.floating-insight {
  top: 62px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px 13px 13px;
  border-radius: 14px;
  animation: float 5.2s .7s ease-in-out infinite;
}

.insight-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(184, 242, 61, .12);
  border-radius: 10px;
}

.insight-icon svg {
  width: 20px;
  height: 20px;
}

.insight-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.floating-insight b,
.floating-insight small {
  display: block;
}

.floating-insight b {
  font-size: 11px;
}

.floating-insight small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .48);
  font-size: 8px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(184, 242, 61, .19);
  border-radius: 50%;
  pointer-events: none;
}

.orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--green);
}

.orbit-one {
  top: -34px;
  right: -56px;
  width: 280px;
  height: 280px;
  animation: rotate 14s linear infinite;
}

.orbit-two {
  right: -12px;
  bottom: 3px;
  width: 130px;
  height: 130px;
  opacity: .5;
  animation: rotate 9s linear reverse infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.hero-bottom {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(3, 12, 8, .72);
  border-top: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(10px);
}

.ticker-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-label {
  height: 100%;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  padding-right: 22px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, .12);
  font-size: 11px;
  font-weight: 750;
}

.ticker-window {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: ticker 36s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

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

.ticker-track > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 27px;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  white-space: nowrap;
}

.ticker-track > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, .3);
  border-radius: 50%;
}

.ticker-track b {
  color: var(--green);
}

.ticker-track strong {
  color: var(--white);
  font-size: 13px;
}

.ticker-track i {
  color: rgba(255, 255, 255, .38);
  font-style: normal;
}

.ticker-wrap > a {
  flex: 0 0 auto;
  padding-left: 18px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  transition: color .2s;
}

.ticker-wrap > a:hover {
  color: var(--green);
}

.ticker-wrap > a span {
  margin-left: 5px;
}

.section {
  position: relative;
  padding: 125px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}

.section-kicker {
  margin-bottom: 18px;
  color: #568b05;
}

.section-heading h2,
.feature-copy h2,
.platform-intro h2,
.newsletter-inner h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.13;
  letter-spacing: -.045em;
  font-weight: 800;
}

.section-heading h2 span {
  position: relative;
  color: #477900;
}

.section-heading h2 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -3px;
  bottom: 4px;
  left: -2px;
  height: 10px;
  background: rgba(184, 242, 61, .35);
}

.section-side {
  padding-bottom: 3px;
}

.section-side p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.demo-note {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 9px;
  color: #7c887f;
  background: rgba(13, 38, 28, .05);
  border-radius: 20px;
  font-size: 9px;
}

.match-section {
  background:
    radial-gradient(circle at 95% 20%, rgba(184, 242, 61, .11), transparent 27%),
    var(--paper);
}

.match-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 9px 12px 9px 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 35px rgba(6, 31, 20, .05);
}

.sport-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sport-tab {
  position: relative;
  padding: 10px 17px;
  color: #718078;
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
  transition: color .2s, background .2s;
}

.sport-tab:hover {
  color: var(--ink);
}

.sport-tab.is-active {
  color: var(--ink);
  background: var(--green);
}

.match-date {
  display: flex;
  align-items: center;
  gap: 12px;
}

.match-date button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #869089;
  background: #f2f4ef;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: color .2s, background .2s;
}

.match-date button:hover {
  color: var(--ink);
  background: var(--green);
}

.match-date span {
  text-align: center;
}

.match-date small,
.match-date b {
  display: block;
}

.match-date small {
  color: #89938d;
  font-size: 8px;
}

.match-date b {
  margin-top: 3px;
  font-size: 11px;
}

.match-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 366px;
  gap: 20px;
  align-items: start;
}

.match-list {
  display: grid;
  gap: 12px;
}

.match-card {
  padding: 17px 21px 16px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(6, 31, 20, .035);
  transition: transform .35s var(--ease), box-shadow .35s, border .35s, opacity .3s;
}

.match-card:hover {
  border-color: rgba(84, 132, 21, .3);
  box-shadow: 0 22px 48px rgba(6, 31, 20, .08);
  transform: translateY(-3px);
}

.match-card.is-featured {
  background: var(--white);
  border-left: 3px solid var(--green-dark);
}

.match-card.is-filtered {
  display: none;
}

.match-meta,
.match-main,
.match-events {
  display: flex;
  align-items: center;
}

.match-meta {
  gap: 10px;
}

.league-tag {
  padding: 4px 8px;
  color: var(--ink);
  background: #ecf0e9;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
}

.league-tag.green { background: #d9f58d; }
.league-tag.gold { background: #f6dda0; }
.league-tag.blue { background: #d1e8ff; }
.league-tag.violet { background: #e3d4ff; }

.match-state {
  font-size: 9px;
  font-weight: 650;
}

.match-state.live {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #d94046;
}

.match-state.live i {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  50% { opacity: .25; }
}

.match-state.finished { color: #7c8982; }
.match-state.upcoming { color: #5a8500; }

.follow-button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-left: auto;
  color: #849087;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: color .2s, background .2s, border .2s;
}

.follow-button:hover,
.follow-button.is-followed {
  color: #376600;
  background: var(--green);
  border-color: var(--green);
}

.match-main {
  display: grid;
  grid-template-columns: 1fr 130px 1fr;
  gap: 14px;
  align-items: center;
  padding: 19px 0 16px;
}

.team {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-away {
  justify-content: flex-end;
  text-align: right;
}

.team-badge {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 3px solid #edf0eb;
  border-radius: 50%;
  font-size: 8px;
  letter-spacing: -.02em;
  font-weight: 850;
}

.team-badge.sky { background: #5bbce6; }
.team-badge.red { background: #c83342; }
.team-badge.purple { background: #684198; }
.team-badge.blue { background: #2468af; }
.team-badge.lime { background: #6c9e19; }
.team-badge.navy { background: #263559; }
.team-badge.hot { background: #e83970; }
.team-badge.orange { background: #e76b29; }

.team b,
.team small {
  display: block;
}

.team b {
  font-size: 13px;
}

.team small {
  margin-top: 4px;
  color: #8a958f;
  font-size: 8px;
}

.score {
  text-align: center;
}

.score strong {
  display: block;
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.score strong em {
  margin: 0 6px;
  color: #b9c1bc;
  font-style: normal;
  font-weight: 400;
}

.score small {
  display: block;
  margin-top: 8px;
  color: #929c96;
  font-size: 8px;
}

.score.tennis-score strong {
  font-size: 19px;
}

.score .versus {
  color: #647169;
  font-size: 16px;
  letter-spacing: .09em;
}

.match-events {
  gap: 15px;
  padding-top: 12px;
  color: #7d8881;
  border-top: 1px solid var(--line);
  font-size: 8px;
}

.match-events > span {
  white-space: nowrap;
}

.match-events b {
  color: #4f5c54;
}

.event-ball {
  margin-right: 3px;
  color: #7a9a2d;
  font-style: normal;
}

.match-events a {
  margin-left: auto;
  color: #497800;
  font-weight: 750;
}

.match-events a:hover {
  text-decoration: underline;
}

.insight-panel {
  position: sticky;
  top: 90px;
  padding: 25px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(184, 242, 61, .055), transparent 38%),
    var(--ink-2);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  box-shadow: 0 24px 55px rgba(6, 27, 18, .18);
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.panel-head span {
  color: var(--green);
  font-size: 8px;
  letter-spacing: .18em;
  font-weight: 800;
}

.panel-head h3 {
  margin: 7px 0 0;
  font-size: 18px;
}

.panel-head .ai-badge {
  padding: 6px 9px;
  color: var(--green);
  background: rgba(184, 242, 61, .1);
  border: 1px solid rgba(184, 242, 61, .2);
  border-radius: 20px;
  letter-spacing: 0;
}

.win-probability {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 20px;
  align-items: center;
  margin: 27px 0;
}

.donut {
  position: relative;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--green) calc(var(--value) * 1%), rgba(255, 255, 255, .08) 0);
  border-radius: 50%;
}

.donut::before {
  content: "";
  position: absolute;
  width: 98px;
  height: 98px;
  background: var(--ink-2);
  border-radius: 50%;
}

.donut > div {
  position: relative;
  text-align: center;
}

.donut strong {
  display: block;
  font-size: 26px;
}

.donut strong small {
  color: var(--green);
  font-size: 11px;
}

.donut span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .4);
  font-size: 8px;
}

.probability-legend p {
  display: grid;
  grid-template-columns: 6px 1fr auto;
  gap: 8px;
  align-items: center;
  margin: 0 0 11px;
  color: rgba(255, 255, 255, .56);
  font-size: 9px;
}

.probability-legend p:last-child {
  margin: 0;
}

.probability-legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.legend-home { background: var(--green); }
.legend-draw { background: #587064; }
.legend-away { background: #a3afa9; }

.probability-legend b {
  color: var(--white);
  font-size: 10px;
}

.stat-bars {
  padding: 20px 0 16px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.stat-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .46);
  font-size: 8px;
}

.stat-label b {
  color: rgba(255, 255, 255, .75);
  font-weight: 650;
}

.dual-bar {
  position: relative;
  height: 3px;
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
  overflow: hidden;
}

.dual-bar:last-child {
  margin-bottom: 0;
}

.dual-bar i,
.dual-bar em {
  display: block;
  height: 100%;
  border-radius: 4px;
  transition: width 1s var(--ease);
}

.dual-bar i {
  width: var(--home);
  background: var(--green);
}

.dual-bar em {
  width: var(--away);
  background: #4a5e54;
}

.key-insight {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 13px;
  background: rgba(255, 255, 255, .045);
  border-radius: 10px;
}

.spark {
  width: 27px;
  height: 27px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green);
  background: rgba(184, 242, 61, .1);
  border-radius: 7px;
}

.spark svg {
  width: 15px;
  height: 15px;
}

.spark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.key-insight p {
  margin: 0;
  color: rgba(255, 255, 255, .53);
  font-size: 8px;
  line-height: 1.65;
}

.key-insight b {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 9px;
}

.panel-button {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--ink);
  background: var(--green);
  border: 0;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.panel-button:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
}

.coverage-section {
  color: var(--white);
  background: var(--ink);
}

.coverage-section .section-heading h2 span {
  color: var(--green);
}

.coverage-section .section-heading h2 span::after {
  display: none;
}

.coverage-section .section-side p {
  color: rgba(255, 255, 255, .48);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: repeat(2, 300px);
  gap: 14px;
}

.coverage-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.coverage-main {
  grid-row: span 2;
}

.coverage-wide {
  grid-column: span 2;
}

.coverage-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: inherit;
  pointer-events: none;
}

.coverage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .5s;
}

.coverage-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.coverage-main img {
  object-position: 44% center;
}

.coverage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3, 12, 8, .94) 0%, rgba(4, 12, 9, .22) 67%, rgba(3, 12, 8, .3) 100%);
}

.coverage-content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 24px;
  transform: translateZ(20px);
}

.coverage-top {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
}

.coverage-top span {
  color: var(--green);
  font-weight: 800;
}

.coverage-top i {
  padding: 5px 9px;
  background: rgba(7, 19, 15, .45);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  font-style: normal;
  backdrop-filter: blur(8px);
}

.coverage-en {
  color: var(--green);
  font-size: 8px;
  letter-spacing: .2em;
  font-weight: 800;
}

.coverage-content h3 {
  margin: 7px 0 10px;
  font-size: 27px;
  line-height: 1;
}

.coverage-main .coverage-content h3 {
  font-size: 42px;
}

.coverage-content p {
  max-width: 440px;
  margin: 0 0 15px;
  color: rgba(255, 255, 255, .56);
  font-size: 10px;
  line-height: 1.7;
}

.coverage-content a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
}

.coverage-content a b {
  color: var(--green);
  font-size: 13px;
}

.feature-section {
  padding: 0;
  color: var(--white);
  background: #0c1d17;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 690px;
}

.feature-media {
  position: relative;
  min-height: 690px;
  margin-left: calc((100vw - var(--shell)) / -2);
  overflow: hidden;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 60%, #0c1d17 100%),
    linear-gradient(0deg, rgba(2, 11, 7, .75), transparent 48%);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-number {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 7%;
  color: rgba(255, 255, 255, .09);
  font-size: 190px;
  line-height: 1;
  font-style: italic;
  font-weight: 900;
}

.feature-caption {
  position: absolute;
  z-index: 3;
  bottom: 42px;
  left: max(7%, calc((100vw - var(--shell)) / 2));
}

.feature-caption span {
  color: var(--green);
  font-size: 9px;
  letter-spacing: .2em;
  font-weight: 800;
}

.feature-caption strong {
  display: block;
  margin-top: 9px;
  font-size: 20px;
}

.feature-copy {
  align-self: center;
  padding: 75px 0 75px 82px;
}

.feature-copy h2 {
  margin-bottom: 22px;
}

.feature-lead {
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
  line-height: 1.9;
}

.feature-points {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line-light);
}

.feature-points > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
}

.feature-points > div > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}

.feature-points b {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
}

.feature-points p {
  margin: 0;
  color: rgba(255, 255, 255, .4);
  font-size: 9px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  color: var(--green);
  font-size: 11px;
  font-weight: 750;
}

.text-link span {
  transition: transform .2s;
}

.text-link:hover span {
  transform: translateX(5px);
}

.stories-section {
  background: #f7f8f3;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.story-card {
  min-width: 0;
}

.story-image {
  position: relative;
  display: block;
  aspect-ratio: 1.18 / 1;
  border-radius: 16px;
  overflow: hidden;
}

.story-lead .story-image {
  aspect-ratio: 1.47 / 1;
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 12, 8, .4), transparent 45%);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-type {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  padding: 6px 9px;
  color: var(--white);
  background: rgba(7, 19, 15, .65);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;
  font-size: 8px;
  backdrop-filter: blur(8px);
}

.story-arrow {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  border-radius: 50%;
  font-size: 16px;
  transform: translateY(-4px);
  opacity: 0;
  transition: opacity .25s, transform .25s;
}

.story-image:hover .story-arrow {
  transform: translateY(0);
  opacity: 1;
}

.story-body {
  padding: 19px 2px 0;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8a958f;
  font-size: 8px;
}

.story-meta span {
  color: #5a8500;
  font-weight: 750;
}

.story-meta i {
  margin-left: auto;
  font-style: normal;
  letter-spacing: .08em;
}

.story-body h3 {
  margin: 11px 0 9px;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -.02em;
}

.story-lead .story-body h3 {
  font-size: 23px;
}

.story-body p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.72;
}

.stories-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.stories-footer > span {
  color: #89948e;
  font-size: 9px;
  letter-spacing: .08em;
}

.button-outline {
  min-height: 44px;
  color: var(--ink);
  border-color: rgba(7, 19, 15, .25);
}

.button-outline:hover {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

.platform-section {
  padding: 118px 0 125px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.86), rgba(255,255,255,.86)),
    repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(7,19,15,.08) 25%);
}

.platform-intro {
  max-width: 750px;
}

.platform-intro p {
  max-width: 620px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.platform-card {
  position: relative;
  min-height: 300px;
  padding: 35px 27px;
  background: rgba(255, 255, 255, .56);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .35s, background .35s, transform .35s var(--ease);
}

.platform-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.platform-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #527c13;
  background: rgba(184, 242, 61, .2);
  border-radius: 13px;
}

.platform-icon svg {
  width: 27px;
  height: 27px;
}

.platform-icon path,
.platform-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-no {
  position: absolute;
  top: 37px;
  right: 29px;
  color: #a4ada7;
  font-size: 9px;
  font-weight: 700;
}

.platform-card h3 {
  margin: 64px 0 12px;
  font-size: 16px;
}

.platform-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
  transition: color .35s;
}

.platform-card:hover p {
  color: rgba(255, 255, 255, .52);
}

.platform-card:hover .platform-no {
  color: var(--green);
}

.newsletter-section {
  position: relative;
  padding: 94px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 130%, rgba(184,242,61,.18), transparent 30%),
    var(--ink);
  overflow: hidden;
}

.newsletter-lines {
  position: absolute;
  top: -120px;
  right: -60px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(184, 242, 61, .13);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(184, 242, 61, .025),
    0 0 0 140px rgba(184, 242, 61, .02),
    0 0 0 210px rgba(184, 242, 61, .012);
}

.newsletter-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 510px;
  gap: 90px;
  align-items: end;
}

.newsletter-inner h2 {
  margin-top: 3px;
}

.newsletter-inner p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 7px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 13px;
  backdrop-filter: blur(10px);
}

.newsletter-form input {
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 11px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.newsletter-form button {
  height: 48px;
  padding: 0 21px;
  color: var(--ink);
  background: var(--green);
  border: 0;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: var(--green-bright);
}

.newsletter-form small {
  grid-column: 1 / -1;
  padding: 8px 12px 4px;
  color: rgba(255, 255, 255, .3);
  font-size: 8px;
}

.site-footer {
  padding: 75px 0 24px;
  color: var(--white);
  background: #030a07;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 120px;
  padding-bottom: 60px;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, .4);
  font-size: 10px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .48);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  font-size: 9px;
  transition: color .2s, background .2s, border .2s;
}

.footer-social a:hover {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
}

.footer-links h3 {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
}

.footer-links a {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, .36);
  font-size: 9px;
  transition: color .2s, transform .2s;
}

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

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  padding-top: 22px;
  color: rgba(255, 255, 255, .26);
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 8px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:nth-child(2) {
  text-align: center;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .48);
}

.back-to-top {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(7, 23, 16, .18);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, background .2s;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green-bright);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 21px;
  height: 21px;
}

.back-to-top path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 78px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  padding: 13px 16px;
  color: var(--white);
  background: rgba(7, 19, 15, .94);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity .3s, transform .3s var(--ease);
}

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

.toast-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.toast-message {
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

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

.match-list.reveal,
.insight-panel.reveal,
.feature-media.reveal {
  transform: translateY(22px);
}

.match-list.reveal.is-visible,
.insight-panel.reveal.is-visible,
.feature-media.reveal.is-visible {
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1120px);
  }

  .nav-menu {
    gap: 20px;
    margin-right: 24px;
  }

  .hero-layout {
    grid-template-columns: .9fr 1.1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero-visual {
    height: 575px;
  }

  .hero-image-wrap {
    height: 530px;
  }

  .floating-insight {
    right: 5px;
  }

  .floating-score {
    left: -8px;
  }

  .feature-copy {
    padding-left: 55px;
  }

  .footer-main {
    gap: 75px;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: calc(100% - 40px);
  }

  .navbar,
  .navbar.is-fixed {
    height: 68px;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
  }

  .navbar.is-fixed .nav-toggle {
    border-color: var(--line);
  }

  .nav-toggle span:not(.sr-only) {
    width: 16px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform .25s, opacity .25s;
  }

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

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

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

  .nav-menu {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 90px 11vw 50px;
    color: var(--white);
    background:
      radial-gradient(circle at 75% 25%, rgba(184,242,61,.15), transparent 28%),
      rgba(4, 14, 9, .98);
    transform: translateX(100%);
    transition: transform .5s var(--ease);
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .navbar.is-fixed .nav-menu .nav-link,
  .nav-menu .nav-link {
    width: 100%;
    padding: 14px 0;
    color: rgba(255,255,255,.66);
    font-size: 27px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.is-active,
  .navbar.is-fixed .nav-menu .nav-link:hover,
  .navbar.is-fixed .nav-menu .nav-link.is-active {
    color: var(--green);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 144px;
    padding-bottom: 64px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy {
    max-width: 760px;
    padding-bottom: 20px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(54px, 9vw, 76px);
  }

  .hero-visual {
    width: 92%;
    height: 590px;
    margin-left: auto;
  }

  .hero-image-wrap {
    width: 100%;
    height: 540px;
  }

  .hero-bottom {
    position: relative;
    bottom: auto;
    margin-top: 50px;
  }

  .match-layout {
    grid-template-columns: 1fr;
  }

  .insight-panel {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 34px;
  }

  .panel-head,
  .panel-button {
    grid-column: 1 / -1;
  }

  .key-insight {
    align-self: end;
  }

  .coverage-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 440px 285px 285px;
  }

  .coverage-main {
    grid-column: span 2;
    grid-row: auto;
  }

  .coverage-wide {
    grid-column: span 2;
  }

  .feature-layout {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 580px;
    margin: 0 calc((100vw - var(--shell)) / -2);
  }

  .feature-media::after {
    background: linear-gradient(0deg, #0c1d17 0%, transparent 38%);
  }

  .feature-copy {
    max-width: 720px;
    padding: 30px 0 90px;
  }

  .feature-caption {
    left: max(20px, calc((100vw - var(--shell)) / 2));
  }

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

  .story-lead {
    grid-column: span 2;
  }

  .story-lead .story-image {
    aspect-ratio: 2.1 / 1;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .newsletter-form {
    max-width: 620px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .status-copy {
    display: none;
  }

  .status-live strong {
    font-size: 9px;
  }

  .brand-type b {
    font-size: 20px;
  }

  .hero {
    padding-top: 124px;
  }

  .hero::after {
    font-size: 170px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: 45px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    justify-content: space-between;
    margin-top: 38px;
  }

  .hero-metrics > div {
    min-width: 0;
    padding: 0 13px;
  }

  .hero-metrics strong {
    font-size: 19px;
  }

  .hero-metrics small {
    font-size: 8px;
  }

  .hero-visual {
    width: 100%;
    height: 460px;
    margin-top: 15px;
  }

  .hero-image-wrap {
    height: 410px;
    border-radius: 110px 14px 14px 14px;
  }

  .floating-insight {
    top: 30px;
    right: -5px;
  }

  .floating-score {
    bottom: 8px;
    left: 7px;
    width: calc(100% - 28px);
  }

  .orbit {
    display: none;
  }

  .ticker-label {
    padding-right: 12px;
  }

  .ticker-wrap > a {
    display: none;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }

  .section-heading h2,
  .feature-copy h2,
  .platform-intro h2,
  .newsletter-inner h2 {
    font-size: 36px;
  }

  .match-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .sport-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .sport-tab {
    padding: 9px 4px;
    font-size: 10px;
  }

  .match-date {
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .match-main {
    grid-template-columns: 1fr 80px 1fr;
    gap: 6px;
  }

  .team {
    align-items: center;
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }

  .team-away {
    flex-direction: column-reverse;
  }

  .team small {
    display: none;
  }

  .team-badge {
    width: 38px;
    height: 38px;
  }

  .score strong {
    font-size: 20px;
  }

  .match-events {
    gap: 10px;
    overflow-x: auto;
  }

  .match-events a {
    flex: 0 0 auto;
  }

  .insight-panel {
    display: block;
  }

  .coverage-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 360px);
  }

  .coverage-main,
  .coverage-wide {
    grid-column: auto;
  }

  .feature-media {
    min-height: 460px;
  }

  .feature-number {
    font-size: 130px;
  }

  .feature-copy {
    padding-bottom: 75px;
  }

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

  .story-lead {
    grid-column: auto;
  }

  .story-image,
  .story-lead .story-image {
    aspect-ratio: 1.45 / 1;
  }

  .story-lead .story-body h3 {
    font-size: 20px;
  }

  .stories-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .platform-section {
    padding: 86px 0;
  }

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

  .platform-card {
    min-height: 250px;
  }

  .newsletter-section {
    padding: 75px 0;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .footer-bottom p:nth-child(2) {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 40px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero-visual {
    height: 420px;
  }

  .hero-image-wrap {
    height: 370px;
  }

  .floating-insight {
    display: none;
  }

  .match-card {
    padding: 15px 12px;
  }

  .match-main {
    grid-template-columns: 1fr 68px 1fr;
  }

  .score strong {
    font-size: 17px;
  }

  .score strong em {
    margin: 0 2px;
  }

  .coverage-grid {
    grid-template-rows: repeat(4, 315px);
  }

  .coverage-main .coverage-content h3 {
    font-size: 34px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
