:root {
  --site-bg: #080b0d;
  --site-bg-soft: #0b0d0f;
  --site-panel: rgba(255, 255, 255, .035);
  --site-panel-raised: rgba(255, 255, 255, .055);
  --site-panel-hover: rgba(255, 255, 255, .075);
  --site-line: rgba(214, 231, 240, .11);
  --site-line-strong: rgba(214, 231, 240, .18);
  --site-text: rgba(246, 249, 252, .94);
  --site-muted: rgba(205, 216, 225, .64);
  --site-subtle: rgba(205, 216, 225, .42);
  --site-accent: #08a7c8;
  --site-accent-strong: #21c1de;
  --site-success: #42d78d;
  --site-warning: #f2c94c;
  --site-danger: #ff5d73;
  --site-radius-sm: 7px;
  --site-radius-md: 10px;
  --site-radius-lg: 13px;
  --site-font: "Manrope", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--site-text);
  background:
    linear-gradient(180deg, rgba(8, 167, 200, .045), transparent 440px),
    var(--site-bg);
  font-family: var(--site-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-site-loading {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px 8px 8px 14px;
  border: 1px solid rgba(214, 231, 240, .1);
  border-radius: var(--site-radius-lg);
  background: rgba(8, 11, 13, .78);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.site-header.is-scrolled {
  border-color: rgba(214, 231, 240, .14);
  background: rgba(8, 11, 13, .9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .36);
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(33, 193, 222, .22);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(33, 193, 222, .12), rgba(8, 167, 200, .035)),
    #050709;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(8, 167, 200, .12);
}

.brand-mark img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-copy strong {
  color: var(--site-text);
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
}

.brand-copy span {
  color: var(--site-muted);
  font-size: 11px;
  line-height: 14px;
  font-weight: 600;
}

.desktop-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(214, 231, 240, .07);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
}

.desktop-nav a,
.ghost-link,
.primary-link {
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(226, 237, 244, .72);
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.desktop-nav a {
  padding: 0 13px;
}

.desktop-nav a:hover,
.ghost-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .055);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ghost-link {
  padding: 0 14px;
  border: 1px solid rgba(214, 231, 240, .1);
  background: rgba(255, 255, 255, .025);
}

.primary-link {
  padding: 0 16px;
  color: #f8fdff;
  background: linear-gradient(180deg, #21c1de 0%, #089fc2 100%);
  box-shadow: 0 12px 28px rgba(8, 167, 200, .18);
}

.primary-link:hover {
  filter: brightness(1.06);
}

.mobile-toggle {
  width: 38px;
  height: 38px;
  display: none;
  place-items: center;
  border: 1px solid rgba(214, 231, 240, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: #fff;
}

.mobile-toggle svg {
  width: 18px;
  height: 18px;
}

.mobile-nav {
  position: fixed;
  z-index: 45;
  top: 82px;
  left: 50%;
  width: min(420px, calc(100% - 32px));
  display: none;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius-lg);
  background: rgba(8, 11, 13, .94);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 12px;
  border-radius: var(--site-radius-md);
  color: rgba(226, 237, 244, .78);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, .03);
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  pointer-events: auto;
  background-color: #06080a;
  background:
    radial-gradient(circle at 50% 48%, rgba(8, 167, 200, .13), rgba(6, 8, 10, 0) 30%),
    linear-gradient(180deg, #0c1114 0%, #06080a 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 760ms ease, visibility 760ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-mark {
  position: relative;
  width: 168px;
  height: 168px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  filter: drop-shadow(0 22px 54px rgba(0, 0, 0, .36));
  animation: siteLoaderBreath 2200ms cubic-bezier(.22, 1, .36, 1) infinite;
}

.site-loader-mark::before,
.site-loader-mark::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(33, 193, 222, .26);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.78);
  animation: siteLoaderWave 2100ms ease-out infinite;
}

.site-loader-mark::after {
  animation-delay: 720ms;
}

.site-loader-mark img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  opacity: .98;
  mix-blend-mode: screen;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 58%, rgba(0, 0, 0, .86) 67%, rgba(0, 0, 0, .34) 77%, transparent 88%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0 58%, rgba(0, 0, 0, .86) 67%, rgba(0, 0, 0, .34) 77%, transparent 88%);
}

.hero-section {
  position: relative;
  min-height: clamp(760px, 90vh, 920px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px 24px 92px;
  border-bottom: 1px solid rgba(214, 231, 240, .08);
}

.hero-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 11, 13, 0), var(--site-bg) 78%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 13, .96) 0%, rgba(8, 11, 13, .84) 34%, rgba(8, 11, 13, .5) 58%, rgba(8, 11, 13, .86) 100%),
    linear-gradient(180deg, rgba(8, 11, 13, .26), rgba(8, 11, 13, .9));
  pointer-events: none;
}

.product-console,
.floating-match {
  display: none !important;
}

.product-shot {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(33, 193, 222, .25);
  border-radius: 8px;
  background: #0b0d0f;
  box-shadow: 0 38px 90px rgba(0, 0, 0, .44);
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.product-shot-dashboard {
  top: 118px;
  right: max(20px, calc((100vw - 1180px) / 2 - 110px));
  width: min(820px, 68vw);
  opacity: .95;
  transform: perspective(1300px) rotateY(-6deg) rotateX(1.6deg);
  transform-origin: center right;
}

.product-shot-match {
  right: max(74px, calc((100vw - 1180px) / 2 + 54px));
  top: 548px;
  bottom: auto;
  width: 470px;
  border-color: rgba(33, 193, 222, .32);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .42), 0 0 0 1px rgba(33, 193, 222, .08);
}

.product-console {
  position: absolute;
  top: 118px;
  right: max(16px, calc((100vw - 1180px) / 2 - 78px));
  width: min(850px, 72vw);
  height: 520px;
  display: grid;
  grid-template-columns: 230px 1fr;
  border: 1px solid rgba(33, 193, 222, .25);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .012)),
    #0b0d0f;
  box-shadow: 0 38px 90px rgba(0, 0, 0, .44);
  opacity: .92;
  transform: perspective(1300px) rotateY(-7deg) rotateX(2deg);
  transform-origin: center right;
}

.console-sidebar {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid rgba(214, 231, 240, .08);
  background: rgba(255, 255, 255, .012);
}

.console-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(214, 231, 240, .08);
}

.console-brand > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #08a7c8;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.console-brand strong,
.console-title,
.league-row strong,
.comparison-panel h3,
.feature-card h3,
.step-card h3,
.sport-card h3 {
  color: rgba(246, 249, 252, .94);
}

.console-brand strong {
  display: block;
  font-size: 14px;
  line-height: 18px;
}

.console-brand small {
  color: var(--site-muted);
  font-size: 11px;
  line-height: 14px;
}

.console-group {
  display: grid;
  gap: 8px;
  margin-bottom: 26px;
}

.group-label {
  color: rgba(205, 216, 225, .44);
  font-size: 10px;
  line-height: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.console-item {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: var(--site-radius-md);
  color: rgba(246, 249, 252, .8);
  font-size: 12px;
  font-weight: 800;
}

.console-item svg {
  width: 15px;
  height: 15px;
  color: var(--site-accent-strong);
}

.console-item.is-active {
  border-color: rgba(8, 167, 200, .18);
  background: rgba(8, 167, 200, .12);
}

.metric-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(214, 231, 240, .08);
  border-radius: var(--site-radius-md);
  background: rgba(255, 255, 255, .03);
  color: rgba(205, 216, 225, .68);
  font-size: 12px;
  font-weight: 700;
}

.metric-row strong {
  color: var(--site-text);
  font-size: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(205, 216, 225, .5);
  box-shadow: 0 0 0 3px rgba(205, 216, 225, .07);
}

.dot.success {
  background: var(--site-success);
  box-shadow: 0 0 0 3px rgba(66, 215, 141, .1);
}

.dot.warning {
  background: var(--site-warning);
  box-shadow: 0 0 0 3px rgba(242, 201, 76, .1);
}

.dot.danger {
  background: var(--site-danger);
  box-shadow: 0 0 0 3px rgba(255, 93, 115, .1);
}

.console-main {
  min-width: 0;
  padding: 28px 30px;
}

.console-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(214, 231, 240, .08);
}

.console-top span {
  color: rgba(205, 216, 225, .44);
  font-size: 10px;
  line-height: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.console-title {
  display: block;
  margin: 5px 0 3px;
  font-size: 26px;
  line-height: 30px;
  font-weight: 850;
}

.console-top p {
  margin: 0;
  color: var(--site-muted);
  font-size: 13px;
}

.event-switches {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.event-button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 231, 240, .1);
  border-radius: var(--site-radius-md);
  background: rgba(255, 255, 255, .035);
  color: var(--site-accent-strong);
}

.event-button.is-active {
  border-color: rgba(33, 193, 222, .32);
  background: rgba(8, 167, 200, .12);
}

.event-button.yellow svg {
  color: var(--site-warning);
  fill: var(--site-warning);
}

.event-button.red svg {
  color: var(--site-danger);
  fill: var(--site-danger);
}

.event-button svg {
  width: 16px;
  height: 16px;
}

.league-list {
  display: grid;
  gap: 10px;
}

.league-row {
  min-height: 46px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(214, 231, 240, .075);
  border-radius: var(--site-radius-md);
  background: rgba(255, 255, 255, .035);
}

.league-row span {
  width: 28px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 193, 222, .18);
  border-radius: 4px;
  color: rgba(163, 231, 244, .82);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .05em;
  background: rgba(8, 167, 200, .08);
}

.league-row strong {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  line-height: 18px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.league-row em {
  color: var(--site-muted);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.floating-match {
  position: absolute;
  right: max(56px, calc((100vw - 1180px) / 2 + 58px));
  bottom: 104px;
  width: 470px;
  border: 1px solid rgba(33, 193, 222, .28);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .42);
}

.floating-match img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 34px;
}

.hero-content > * {
  max-width: 455px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--site-accent-strong);
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 16px 0 10px;
  color: var(--site-text);
  font-size: clamp(44px, 6.2vw, 76px);
  line-height: .96;
  font-weight: 800;
  text-shadow: 0 26px 72px rgba(0, 0, 0, .48);
}

.hero-lead {
  margin: 0;
  color: #f6f9fc;
  font-size: clamp(24px, 2.9vw, 38px);
  line-height: 1.08;
  font-weight: 800;
}

.hero-copy {
  margin: 20px 0 0;
  color: var(--site-muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: var(--site-radius-sm);
  font-size: 14px;
  font-weight: 800;
}

.button.primary {
  background: linear-gradient(180deg, #21c1de 0%, #089fc2 100%);
  color: #f8fdff;
  box-shadow: 0 16px 32px rgba(8, 167, 200, .2);
}

.button.secondary {
  border: 1px solid rgba(214, 231, 240, .17);
  background: rgba(255, 255, 255, .035);
  color: rgba(246, 249, 252, .86);
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.trust-strip span {
  height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(214, 231, 240, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  color: rgba(205, 216, 225, .72);
  font-size: 12px;
  font-weight: 800;
}

.trust-strip svg {
  width: 14px;
  height: 14px;
  color: var(--site-accent-strong);
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
  scroll-margin-top: 96px;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.section-heading h2,
.trust-panel h2,
.download-panel h2 {
  margin: 0;
  color: var(--site-text);
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.08;
  font-weight: 800;
}

.section-heading p,
.trust-panel p,
.download-panel p {
  margin: 0;
  color: var(--site-muted);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 600;
}

.trust-panel p + p {
  margin-top: 10px;
}

.comparison-grid,
.feature-grid,
.sports-grid,
.pricing-grid {
  display: grid;
  gap: 14px;
}

.explainer-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.explainer-flow article {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .018)),
    rgba(12, 15, 18, .62);
}

.explainer-flow article::after {
  content: "";
  position: absolute;
  top: 35px;
  right: -15px;
  width: 15px;
  height: 1px;
  background: rgba(33, 193, 222, .22);
}

.explainer-flow article:last-child::after {
  display: none;
}

.explainer-flow span {
  display: inline-flex;
  height: 26px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(33, 193, 222, .18);
  border-radius: 999px;
  background: rgba(8, 167, 200, .08);
  color: var(--site-accent-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.explainer-flow h3 {
  margin: 22px 0 12px;
  color: var(--site-text);
  font-size: 18px;
  line-height: 1.22;
  font-weight: 850;
}

.explainer-flow p {
  margin: 0;
  color: var(--site-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 620;
}

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

.comparison-panel,
.feature-card,
.step-card,
.sport-card,
.pricing-card,
.trust-panel,
.download-panel,
.faq-item {
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .018)),
    rgba(12, 15, 18, .62);
}

.comparison-panel {
  min-height: 260px;
  padding: 26px;
}

.comparison-panel.is-accent {
  border-color: rgba(33, 193, 222, .24);
  background:
    linear-gradient(180deg, rgba(8, 167, 200, .08), rgba(255, 255, 255, .018)),
    rgba(12, 15, 18, .66);
}

.panel-label {
  display: inline-flex;
  height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.panel-label.is-danger {
  color: #ffb2bd;
  background: rgba(255, 93, 115, .1);
}

.panel-label.is-success {
  color: #a8f2cc;
  background: rgba(66, 215, 141, .1);
}

.comparison-panel h3,
.feature-card h3,
.step-card h3,
.sport-card h3 {
  margin: 18px 0 12px;
  font-size: 19px;
  line-height: 1.22;
  font-weight: 800;
}

.comparison-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-panel li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--site-muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.comparison-panel li svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: currentColor;
}

.comparison-panel.is-accent li svg {
  color: var(--site-success);
}

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

.feature-card,
.sport-card {
  min-height: 230px;
  padding: 22px;
}

.feature-icon,
.sport-card > svg {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 193, 222, .16);
  border-radius: var(--site-radius-md);
  background: rgba(8, 167, 200, .08);
  color: var(--site-accent-strong);
}

.feature-icon svg {
  width: 19px;
  height: 19px;
}

.sport-card > svg {
  padding: 11px;
}

.feature-card p,
.step-card p,
.sport-card p,
.pricing-card p,
.site-footer p {
  margin: 0;
  color: var(--site-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(410px, .86fr) minmax(0, 1.34fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(33, 193, 222, .2);
  border-radius: var(--site-radius-lg);
  background:
    radial-gradient(circle at 74% 18%, rgba(33, 193, 222, .13), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .016)),
    rgba(12, 15, 18, .68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.product-stage-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 38px 36px;
  border-right: 1px solid rgba(214, 231, 240, .09);
}

.stage-label {
  justify-self: start;
  display: inline-flex;
  height: 28px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(33, 193, 222, .22);
  border-radius: 999px;
  background: rgba(8, 167, 200, .08);
  color: var(--site-accent-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-stage-copy h3 {
  margin: 0;
  color: var(--site-text);
  font-size: clamp(28px, 2.45vw, 34px);
  line-height: 1.12;
  font-weight: 850;
}

.product-stage-copy p {
  margin: 0;
  color: var(--site-muted);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 650;
}

.stage-points {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.stage-points span {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid rgba(214, 231, 240, .08);
  border-radius: var(--site-radius-sm);
  background: rgba(255, 255, 255, .028);
  color: rgba(246, 249, 252, .82);
  font-size: 13px;
  font-weight: 820;
}

.stage-points svg {
  width: 15px;
  height: 15px;
  color: var(--site-accent-strong);
}

.product-stage-media {
  position: relative;
  min-height: 520px;
  padding: 34px 34px 92px 30px;
}

.product-stage-media::after,
.sport-preview-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0 36%, rgba(33, 193, 222, .12) 47%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-38%);
}

.product-stage:hover .product-stage-media::after,
.sport-preview:hover .sport-preview-frame::after {
  animation: scanHighlight 900ms ease both;
}

.stage-dashboard {
  width: 100%;
  display: block;
  border: 1px solid rgba(33, 193, 222, .18);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .36);
}

.stage-match {
  position: absolute;
  right: 58px;
  bottom: 34px;
  width: min(500px, 66%);
  border: 1px solid rgba(33, 193, 222, .28);
  border-radius: 8px;
  box-shadow: 0 24px 74px rgba(0, 0, 0, .48);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step-card {
  min-height: 190px;
  padding: 22px;
}

.step-card span {
  color: var(--site-accent-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px;
}

.pricing-card.is-featured {
  border-color: rgba(33, 193, 222, .4);
  background:
    linear-gradient(180deg, rgba(8, 167, 200, .11), rgba(255, 255, 255, .02)),
    rgba(12, 15, 18, .72);
  box-shadow: inset 0 0 0 1px rgba(8, 167, 200, .18);
}

.best-badge,
.plan-duration {
  justify-self: start;
  color: var(--site-accent-strong);
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.best-badge {
  height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(33, 193, 222, .22);
  border-radius: 999px;
  background: rgba(8, 167, 200, .08);
  letter-spacing: 0;
  text-transform: none;
}

.pricing-card strong {
  color: #fff;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}

.pricing-card button {
  min-height: 42px;
  border: 1px solid rgba(214, 231, 240, .12);
  border-radius: var(--site-radius-sm);
  background: rgba(255, 255, 255, .035);
  color: var(--site-text);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.pricing-card button:hover,
.pricing-card.is-selected button {
  border-color: rgba(33, 193, 222, .34);
  background: rgba(8, 167, 200, .12);
}

.sport-preview {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 0;
  padding: 18px;
  border: 1px solid rgba(33, 193, 222, .18);
  border-radius: var(--site-radius-lg);
  background:
    radial-gradient(circle at 80% 18%, rgba(33, 193, 222, .13), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .018)),
    rgba(12, 15, 18, .66);
}

.sport-preview-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px 8px 18px 0;
}

.sport-preview-copy h3 {
  margin: 0;
  color: var(--site-text);
  font-size: 26px;
  line-height: 1.08;
  font-weight: 850;
}

.sport-preview-copy p {
  margin: 0;
  color: var(--site-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

.sport-preview-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.sport-preview-tabs button {
  height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(214, 231, 240, .1);
  border-radius: var(--site-radius-sm);
  background: rgba(255, 255, 255, .035);
  color: rgba(246, 249, 252, .74);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.sport-preview-tabs button svg {
  width: 15px;
  height: 15px;
  color: var(--site-accent-strong);
}

.sport-preview-tabs button:hover,
.sport-preview-tabs button.is-active {
  border-color: rgba(33, 193, 222, .32);
  background: rgba(8, 167, 200, .11);
  color: var(--site-text);
  transform: translateY(-1px);
}

.sport-preview-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.sport-preview-meta span {
  min-height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 231, 240, .08);
  border-radius: var(--site-radius-sm);
  background: rgba(255, 255, 255, .026);
  color: rgba(205, 216, 225, .72);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .02em;
}

.sport-preview-frame {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(214, 231, 240, .1);
  border-radius: var(--site-radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .024), rgba(255, 255, 255, .01)),
    rgba(5, 7, 9, .5);
}

.sport-preview-frame img {
  width: min(90%, 690px);
  height: auto;
  display: block;
  border: 1px solid rgba(33, 193, 222, .18);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
  transition: opacity 180ms ease, transform 240ms ease;
}

.sport-preview-frame.is-switching img {
  opacity: .35;
  transform: translateY(4px) scale(.99);
}

.sport-preview-frame:hover img {
  transform: translateY(-2px);
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 360px;
  gap: 34px;
  align-items: start;
  padding: 34px;
  border-color: rgba(33, 193, 222, .22);
}

.trust-copy {
  max-width: 760px;
}

.trust-panel .trust-lede {
  max-width: 720px;
  margin-top: 34px;
}

.trust-note {
  max-width: 780px;
}

.post-goal-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 22px;
}

.post-goal-flow span {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid rgba(33, 193, 222, .14);
  border-radius: var(--site-radius-md);
  background: rgba(8, 167, 200, .06);
  color: rgba(246, 249, 252, .84);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 820;
}

.post-goal-flow strong {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(33, 193, 222, .12);
  color: var(--site-accent-strong);
  font-size: 11px;
  font-weight: 950;
}

.trust-list {
  display: grid;
  gap: 10px;
  padding-top: 50px;
}

.trust-list span {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid rgba(214, 231, 240, .08);
  border-radius: var(--site-radius-md);
  background: rgba(255, 255, 255, .03);
  color: rgba(246, 249, 252, .82);
  font-size: 13px;
  font-weight: 800;
}

.trust-list svg {
  width: 16px;
  height: 16px;
  color: var(--site-accent-strong);
}

.faq-section {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--site-text);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  text-align: left;
}

.faq-item button svg {
  width: 17px;
  height: 17px;
  color: var(--site-subtle);
  transition: transform 180ms ease;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 18px 18px;
  color: var(--site-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}

.faq-item.is-open {
  border-color: rgba(33, 193, 222, .18);
}

.faq-item.is-open p {
  display: block;
}

.faq-item.is-open button svg {
  transform: rotate(180deg);
}

.download-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 108px;
}

.download-panel {
  min-height: 330px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 42px;
  border-color: rgba(33, 193, 222, .24);
}

.download-panel > * {
  max-width: 700px;
}

.download-panel p {
  margin-top: 28px;
}

.download-panel .hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.site-footer {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  margin: 0 auto;
  padding: 28px 0 44px;
  border-top: 1px solid rgba(214, 231, 240, .09);
}

.site-footer p {
  max-width: 420px;
  margin-top: 12px;
}

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

.footer-links a {
  color: var(--site-muted);
  font-size: 12px;
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .ghost-link {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    justify-self: end;
  }

  .product-console {
    right: -190px;
    width: 780px;
    opacity: .52;
  }

  .product-shot-dashboard {
    right: -180px;
    width: 780px;
    opacity: .64;
  }

  .floating-match {
    right: 28px;
    width: 410px;
    opacity: .8;
  }

  .product-shot-match {
    right: 28px;
    width: 410px;
    opacity: .84;
  }

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

  .explainer-flow article:nth-child(2)::after {
    display: none;
  }

  .product-stage,
  .sport-preview {
    grid-template-columns: 1fr;
  }

  .product-stage-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(214, 231, 240, .09);
  }

  .product-stage-media {
    min-height: 420px;
    padding: 24px 24px 84px;
  }

  .faq-section,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .trust-list {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 12px;
  }

  .brand-copy span {
    display: none;
  }

  .primary-link {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 116px 18px 72px;
  }

  .hero-bg {
    position: relative;
    width: 100%;
    height: clamp(274px, 76vw, 360px);
    min-height: 0;
    display: block;
    order: 2;
    margin: 34px -4px 0;
    padding: 0;
    overflow: visible;
    isolation: isolate;
  }

  .hero-bg::before {
    display: none;
  }

  .hero-section {
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    order: 1;
    padding-top: 0;
  }

  .product-console {
    top: 10px;
    right: auto;
    left: 18px;
    width: 720px;
    height: 420px;
    opacity: .7;
    transform: scale(.72);
    transform-origin: top left;
  }

  .product-shot-dashboard {
    position: absolute;
    top: auto;
    right: auto;
    left: 0;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3 / 2;
    opacity: .82;
    transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translateY(4px);
    transform-origin: center;
    box-shadow: 0 24px 58px rgba(0, 0, 0, .42);
  }

  .product-shot-dashboard::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(8, 11, 13, 0) 42%, rgba(8, 11, 13, .42) 100%),
      linear-gradient(90deg, rgba(8, 11, 13, .08), rgba(8, 11, 13, .38));
  }

  .product-shot-dashboard img,
  .product-shot-match img {
    height: 100%;
    object-fit: cover;
  }

  .floating-match {
    right: 18px;
    bottom: 22px;
    width: min(360px, calc(100% - 36px));
  }

  .product-shot-match {
    position: absolute;
    right: auto;
    top: auto;
    bottom: 8px;
    right: 8px;
    z-index: 3;
    width: min(340px, 84%);
    aspect-ratio: 3 / 1;
    margin: 0;
    opacity: .98;
    border-color: rgba(33, 193, 222, .38);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .48), 0 0 0 1px rgba(33, 193, 222, .1);
  }

  .hero-content h1 {
    font-size: 44px;
  }

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

  .hero-copy {
    font-size: 15px;
  }

  .section,
  .download-section,
  .site-footer {
    width: calc(100% - 36px);
  }

  .section {
    padding: 70px 0;
  }

  .comparison-grid,
  .feature-grid,
  .sports-grid,
  .explainer-flow,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .explainer-flow article {
    min-height: auto;
  }

  .explainer-flow article::after {
    display: none;
  }

  .post-goal-flow {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: auto;
  }

  .product-stage-copy {
    padding: 24px;
  }

  .stage-points {
    grid-template-columns: 1fr;
  }

  .product-stage-media {
    min-height: 330px;
    padding: 18px 18px 82px;
  }

  .stage-match {
    right: 22px;
    bottom: 20px;
    width: min(330px, calc(100% - 44px));
  }

  .sport-preview {
    gap: 14px;
    padding: 14px;
  }

  .sport-preview-copy {
    padding: 4px;
  }

  .sport-preview-tabs {
    grid-template-columns: 1fr;
  }

  .sport-preview-frame {
    min-height: 230px;
  }

  .sport-preview-frame img {
    width: 96%;
  }

  .comparison-panel.is-accent,
  .pricing-card.is-featured {
    transform: none;
  }

  .comparison-panel,
  .feature-card,
  .step-card,
  .sport-card,
  .pricing-card,
  .trust-panel,
  .download-panel {
    padding: 22px;
  }

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

@keyframes scanHighlight {
  0% {
    opacity: 0;
    transform: translateX(-42%);
  }

  28% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(58%);
  }
}

@keyframes siteLoaderBreath {
  0%,
  100% {
    transform: scale(.985);
  }

  50% {
    transform: scale(1.025);
  }
}

@keyframes siteLoaderWave {
  0% {
    opacity: 0;
    transform: scale(.78);
  }

  18% {
    opacity: .72;
  }

  100% {
    opacity: 0;
    transform: scale(1.72);
  }
}

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

  .site-loader {
    transition-duration: 180ms !important;
  }
}
