:root {
  --scorigoo-green: #7cfc00;
  --scorigoo-blue: #1e90ff;
  --scorigoo-navy: #0d1b2a;
  --scorigoo-black: #000000;
  --scorigoo-white: #ffffff;
  --surface-1: #101820;
  --surface-2: #151e27;
  --surface-3: #1b2632;
  --surface-4: #243344;
  --text-strong: #f7fbff;
  --text-soft: #b8c3cf;
  --text-muted: #81909f;
  --line: rgba(234, 242, 248, 0.14);
  --line-strong: rgba(234, 242, 248, 0.28);
  --green-soft: rgba(124, 252, 0, 0.14);
  --blue-soft: rgba(30, 144, 255, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius-card: 8px;
  --radius-panel: 22px;
  --max: 1160px;
  --header-height: 72px;
}

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

html {
  background: var(--scorigoo-black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text-strong);
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.96), rgba(0, 0, 0, 1) 72%),
    var(--scorigoo-black);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--scorigoo-green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--scorigoo-green);
  color: #081015;
  font-weight: 900;
  padding: 10px 16px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(234, 242, 248, 0.08);
  background: rgba(5, 10, 16, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand img {
  width: 176px;
  height: auto;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-strong);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__bars {
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -6px;
}

.nav-toggle__bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  transform: translateY(6px) rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  opacity: 0;
}

.site-nav {
  position: absolute;
  top: var(--header-height);
  left: 16px;
  right: 16px;
  display: grid;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  border: 0 solid transparent;
  border-radius: 18px;
  background: rgba(16, 24, 32, 0.98);
  box-shadow: var(--shadow);
  transition: max-height 220ms ease, border-width 220ms ease, padding 220ms ease;
}

.site-nav.is-open {
  max-height: 420px;
  border-width: 1px;
  border-color: var(--line);
  padding: 10px;
}

.site-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 0 14px;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  color: #071014 !important;
  background: var(--scorigoo-green) !important;
}

.main {
  isolation: isolate;
}

.hero {
  position: relative;
  min-height: calc(88svh - var(--header-height));
  padding: 36px 0 62px;
  overflow: hidden;
  border-bottom: 1px solid rgba(234, 242, 248, 0.08);
}

.hero::before,
.page-hero::before,
.live-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.4;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.08) 8% 8.4%, transparent 8.4% 91.6%, rgba(255, 255, 255, 0.08) 91.6% 92%, transparent 92%),
    linear-gradient(0deg, transparent 0 17%, rgba(255, 255, 255, 0.06) 17% 17.4%, transparent 17.4% 82.6%, rgba(255, 255, 255, 0.06) 82.6% 83%, transparent 83%),
    linear-gradient(90deg, transparent 0 49.8%, rgba(255, 255, 255, 0.08) 49.8% 50.2%, transparent 50.2%);
  background-size: 100% 100%;
}

.hero::after,
.page-hero::after,
.live-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(135deg, rgba(124, 252, 0, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(30, 144, 255, 0.1), transparent 38%),
    #050b12;
}

.hero-grid {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 26px;
  align-items: center;
}

.hero-logo {
  width: 196px;
  margin-bottom: 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--scorigoo-green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1,
.page-title {
  margin: 0;
  max-width: 820px;
  color: var(--scorigoo-white);
  font-size: 3.35rem;
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-lede,
.page-lede {
  margin: 22px 0 0;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 1.06rem;
  font-weight: 650;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--scorigoo-green);
  color: #071014;
  box-shadow: 0 16px 34px rgba(124, 252, 0, 0.18);
}

.button--secondary {
  border-color: var(--line-strong);
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.04);
}

.hero-chips,
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-chips {
  display: none;
}

.chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  padding: 0 12px;
  font-size: 0.82rem;
  font-weight: 850;
}

.score-product {
  position: relative;
  border: 1px solid rgba(234, 242, 248, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 36%),
    #08111b;
  box-shadow: var(--shadow);
  padding: 16px;
}

.score-product__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  padding: 0 4px 14px;
}

.score-product__sport {
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.live-pill {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(124, 252, 0, 0.38);
  background: rgba(124, 252, 0, 0.1);
  color: var(--scorigoo-green);
  padding: 0 10px;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.live-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.score-face {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 26px 0 20px;
}

.score-side {
  min-width: 0;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.score-side__label {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 950;
}

.score-side__number {
  color: var(--text-strong);
  font-size: 4.8rem;
  line-height: 0.9;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  animation: scorePulse 1800ms ease-in-out infinite;
}

.score-side--a .score-side__number {
  color: var(--scorigoo-green);
}

.score-side--b .score-side__number {
  color: var(--scorigoo-blue);
  animation-delay: 520ms;
}

.score-vs {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.score-product__controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.score-tap {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  color: #061016;
  font-weight: 950;
  cursor: pointer;
}

.score-tap--a {
  background: var(--scorigoo-green);
}

.score-tap--b {
  background: var(--scorigoo-blue);
  color: var(--scorigoo-white);
}

.score-tap.is-pressed {
  transform: scale(0.96);
}

.section {
  padding: 76px 0;
}

.section--tight {
  padding-top: 42px;
}

.section__inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section__header {
  max-width: 760px;
  margin-bottom: 30px;
}

.section h2 {
  margin: 0;
  color: var(--text-strong);
  font-size: 2.25rem;
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
}

.section__text {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 650;
}

.steps-grid,
.device-grid,
.sports-grid,
.button-products,
.feature-grid {
  display: grid;
  gap: 12px;
}

.step-card,
.device-card,
.sport-card,
.product-card,
.faq-item,
.info-panel,
.club-feature {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(21, 30, 39, 0.82);
}

.step-card {
  min-height: 180px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
}

.step-number {
  color: var(--scorigoo-green);
  font-size: 3rem;
  line-height: 0.9;
  font-weight: 950;
}

.step-card h3,
.device-card h3,
.sport-card h3,
.product-card h3,
.info-panel h3,
.info-panel h2,
.club-feature h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.02rem;
  font-weight: 950;
}

.step-card p,
.device-card p,
.sport-card p,
.product-card p,
.info-panel p,
.club-feature p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 650;
}

.tap-section {
  border-block: 1px solid rgba(234, 242, 248, 0.08);
  background:
    linear-gradient(90deg, rgba(124, 252, 0, 0.08), transparent 34%),
    linear-gradient(270deg, rgba(30, 144, 255, 0.08), transparent 34%),
    rgba(5, 10, 16, 0.66);
}

.tap-layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

.tap-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tap-button {
  min-height: 162px;
  display: grid;
  place-items: center;
  gap: 10px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 -16px 24px rgba(0, 0, 0, 0.25), 0 22px 52px rgba(0, 0, 0, 0.32);
  color: #061016;
  font-weight: 950;
  aspect-ratio: 1;
  transition: transform 180ms ease, filter 180ms ease;
}

.tap-button:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.06);
}

.tap-button--a {
  background: var(--scorigoo-green);
}

.tap-button--b {
  background: var(--scorigoo-blue);
  color: var(--scorigoo-white);
}

.tap-button strong {
  font-size: 2rem;
  line-height: 1;
}

.tap-button span {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.tap-note {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.tap-note__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0 14px;
  color: var(--text-soft);
  font-weight: 800;
}

.tap-note__item b {
  color: var(--text-strong);
}

.device-card {
  min-height: 176px;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.device-card img {
  width: 72px;
  height: 72px;
}

.device-card--wide {
  background: linear-gradient(135deg, rgba(124, 252, 0, 0.12), rgba(30, 144, 255, 0.1)), rgba(21, 30, 39, 0.86);
}

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

.sport-card {
  min-height: 126px;
  padding: 14px;
  display: grid;
  align-content: space-between;
}

.sport-token {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-strong);
  font-size: 0.9rem;
  font-weight: 950;
}

.sport-card:nth-child(odd) .sport-token {
  border: 1px solid rgba(124, 252, 0, 0.46);
  color: var(--scorigoo-green);
}

.sport-card:nth-child(even) .sport-token {
  border: 1px solid rgba(30, 144, 255, 0.5);
  color: var(--scorigoo-blue);
}

.sport-card--more {
  background: linear-gradient(135deg, rgba(124, 252, 0, 0.13), rgba(30, 144, 255, 0.12)), rgba(21, 30, 39, 0.86);
}

.live-layout,
.offline-layout,
.buttons-layout,
.club-layout {
  display: grid;
  gap: 26px;
  align-items: center;
}

.mini-live {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-panel);
  background: #061018;
  box-shadow: var(--shadow);
  padding: 18px;
}

.mini-live__top,
.mini-live__row,
.mini-live__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mini-live__top {
  margin-bottom: 22px;
  color: var(--text-soft);
  font-weight: 950;
  text-transform: uppercase;
}

.mini-live__name {
  min-width: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 900;
}

.mini-live__score {
  color: var(--text-strong);
  font-size: 3.2rem;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.mini-live__score span:first-child {
  color: var(--scorigoo-green);
}

.mini-live__score span:last-child {
  color: var(--scorigoo-blue);
}

.mini-live__footer {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.offline-panel,
.buttons-panel,
.club-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: rgba(16, 24, 32, 0.9);
  padding: 22px;
}

.offline-message {
  margin: 0;
  color: var(--text-strong);
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 950;
}

.offline-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.offline-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
  font-weight: 750;
}

.offline-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--scorigoo-blue);
}

.button-device {
  display: grid;
  place-items: center;
  min-height: 260px;
}

.button-device__outer {
  width: min(240px, 74vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.7);
  background: #0b131c;
  box-shadow: inset 0 -18px 28px rgba(0, 0, 0, 0.42), 0 26px 60px rgba(0, 0, 0, 0.36);
}

.button-device__inner {
  width: 64%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--scorigoo-green);
  color: #071014;
  font-weight: 950;
}

.club-feature {
  padding: 16px;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(30, 144, 255, 0.42);
  background: rgba(30, 144, 255, 0.12);
  color: var(--scorigoo-blue);
  padding: 0 10px;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid rgba(234, 242, 248, 0.08);
  background: #050a10;
  padding: 36px 0;
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.footer-brand img {
  width: 172px;
}

.footer-brand p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-soft);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--text-strong);
}

.copyright {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 66px;
  border-bottom: 1px solid rgba(234, 242, 248, 0.08);
}

.page-hero__inner,
.content-page,
.live-stage__inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.content-page {
  padding: 58px 0 76px;
}

.content-grid {
  display: grid;
  gap: 14px;
}

.info-panel {
  padding: 20px;
}

.info-panel ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
  font-weight: 650;
}

.notice {
  border: 1px solid rgba(124, 252, 0, 0.36);
  border-radius: var(--radius-card);
  background: rgba(124, 252, 0, 0.1);
  padding: 16px;
  color: var(--text-strong);
  font-weight: 850;
}

.button-products {
  margin-top: 24px;
}

.product-card {
  padding: 18px;
}

.product-card dl {
  display: grid;
  grid-template-columns: minmax(92px, 0.8fr) minmax(0, 1.2fr);
  gap: 9px 12px;
  margin: 18px 0 0;
}

.product-card dt {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.product-card dd {
  min-width: 0;
  margin: 0;
  color: var(--text-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

.status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.status--tested {
  background: rgba(124, 252, 0, 0.14);
  color: var(--scorigoo-green);
}

.status--pending {
  background: rgba(30, 144, 255, 0.16);
  color: var(--scorigoo-blue);
}

.status--no {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
}

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

.faq-item {
  padding: 18px;
}

.faq-item summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--text-strong);
  font-weight: 950;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-weight: 650;
}

.email-link {
  color: var(--scorigoo-green);
  font-weight: 950;
}

.support-contact {
  margin-top: 18px;
}

.live-main {
  min-height: calc(100svh - var(--header-height));
  background: #03070c;
}

.live-stage {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 44px 0;
}

.live-shell {
  max-width: 760px;
  margin: 0 auto;
}

.live-demo-note {
  margin: 0 0 18px;
  color: var(--text-soft);
  text-align: center;
  font-weight: 850;
}

.live-board {
  border: 1px solid rgba(234, 242, 248, 0.16);
  border-radius: 26px;
  background: #071019;
  box-shadow: var(--shadow);
  padding: 20px;
}

.live-board__top,
.live-board__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--text-soft);
  font-weight: 950;
  text-transform: uppercase;
}

.live-board__top {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.live-board__footer {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 16px;
  font-size: 0.86rem;
  text-transform: none;
}

.live-board__score {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 24px 0;
}

.live-team {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.live-team__name {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--text-strong);
  text-align: center;
  font-size: 0.98rem;
  font-weight: 950;
  text-transform: uppercase;
}

.live-team__set {
  color: var(--text-strong);
  font-size: 5rem;
  line-height: 0.88;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.live-team--a .live-team__set,
.live-team--a .live-team__point {
  color: var(--scorigoo-green);
}

.live-team--b .live-team__set,
.live-team--b .live-team__point {
  color: var(--scorigoo-blue);
}

.live-team__point {
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.live-divider {
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--line-strong);
}

.live-query-note {
  margin: 18px 0 0;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 750;
}

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

.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@keyframes scorePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@media (min-width: 640px) {
  .hero-chips {
    display: flex;
  }

  .steps-grid,
  .device-grid,
  .feature-grid,
  .button-products,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sports-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero h1,
  .page-title {
    font-size: 4.4rem;
  }
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    max-height: none;
    overflow: visible;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .site-nav a {
    padding: 0 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 54px;
  }

  .hero h1,
  .page-title {
    font-size: 5.6rem;
  }

  .hero-lede,
  .page-lede {
    font-size: 1.18rem;
  }

  .tap-layout,
  .live-layout,
  .offline-layout,
  .buttons-layout,
  .club-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .steps-grid,
  .device-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sports-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1120px) {
  .hero h1 {
    font-size: 6.25rem;
  }

  .section h2 {
    font-size: 3rem;
  }

  .score-side__number {
    font-size: 5.8rem;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 146px;
  }

  .hero h1,
  .page-title {
    font-size: 2.6rem;
  }

  .hero-logo {
    width: 166px;
    margin-bottom: 16px;
  }

  .score-side__number {
    font-size: 3.45rem;
  }

  .score-vs {
    width: 38px;
    height: 38px;
  }

  .tap-buttons {
    gap: 10px;
  }

  .tap-button {
    min-height: 136px;
  }

  .live-team__set {
    font-size: 3.7rem;
  }

  .live-team__point {
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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