@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bebas Street";
  src: url("/fonts/bebas-neue-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #020814;
  --ink-soft: #071426;
  --panel: #09182c;
  --panel-soft: #0d2038;
  --line: rgba(141, 194, 241, 0.22);
  --line-strong: rgba(168, 212, 250, 0.48);
  --text: #f5f8fc;
  --muted: #8e9aae;
  --muted-light: #bac4d2;
  --blue: #5db9fa;
  --blue-bright: #8ad3ff;
  --blue-deep: #1d558b;
  --white: #ffffff;
  --danger: #ff6f85;
  --shell: 1200px;
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -15%, rgba(30, 92, 148, 0.2), transparent 32%),
    var(--ink);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 0 0 12px 12px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  border-color: rgba(130, 177, 218, 0.15);
  background: rgba(2, 8, 20, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  min-height: 88px;
  gap: 32px;
}

.brand {
  width: 164px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(47, 92, 135, 0.52), rgba(14, 41, 69, 0.52));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--blue-bright);
  background: linear-gradient(180deg, rgba(74, 137, 195, 0.64), rgba(18, 55, 89, 0.64));
  transform: translateY(-1px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 23px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px rgba(93, 185, 250, 0.65);
}

.hero {
  position: relative;
  min-height: 930px;
  padding-top: 150px;
  overflow: hidden;
  isolation: isolate;
}

.hero-brand-stamp {
  display: none;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(104, 166, 218, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 166, 218, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  top: 120px;
  right: -260px;
  width: 740px;
  height: 740px;
  background: radial-gradient(circle, rgba(50, 137, 211, 0.2), transparent 68%);
}

.hero-glow-two {
  bottom: 10px;
  left: -340px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(17, 75, 127, 0.18), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.92fr);
  align-items: center;
  min-height: 650px;
  gap: 52px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 32px;
}

.hero h1,
.section-heading h2,
.feature-copy h3,
.mini-feature h3,
.community-content h2,
.install-copy h2,
.faq-heading h2,
.final-content h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 730px;
  margin-top: 24px;
  font-size: clamp(62px, 7.1vw, 104px);
}

.hero-era {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  transform: none;
}

.hero-era span,
.hero-era b {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 12px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-era span {
  border-top: 1px solid rgba(204, 230, 249, 0.34);
  border-bottom: 1px solid rgba(204, 230, 249, 0.34);
  color: #c9d7e4;
  background: rgba(2, 11, 23, 0.32);
}

.hero-era b {
  color: #06111f;
  background: var(--blue-bright);
  box-shadow: 0 0 28px rgba(92, 184, 247, 0.19);
}

.hero-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 12px !important;
  text-transform: uppercase;
}

.hero-title::before {
  position: absolute;
  top: -40px;
  right: -40px;
  z-index: -1;
  color: rgba(152, 208, 248, 0.035);
  content: "00";
  font-family: "Bebas Street", sans-serif;
  font-size: 260px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.8;
  pointer-events: none;
}

.hero-title > span {
  display: block;
  width: max-content;
}

.hero-title-top {
  font-family: "Bebas Street", "Montserrat", sans-serif;
  color: #f4f8fc;
  font-size: clamp(51px, 4.7vw, 76px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.9;
}

.hero-title-core,
.hero-title-outline {
  font-family: "Bebas Street", "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.72;
  transform: none;
  transform-origin: left center;
}

.hero-title-core {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: transparent;
  font-size: clamp(126px, 10.5vw, 180px);
  background: linear-gradient(180deg, #ffffff 0 34%, #c8deed 35% 47%, #ffffff 48% 61%, #7398b6 62% 76%, #eef7fd 77% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.48),
    0 14px 42px rgba(0, 0, 0, 0.62);
}

.hero-title-core::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  color: transparent;
  content: attr(data-text);
  opacity: 0.22;
  -webkit-text-stroke: 1px rgba(117, 193, 246, 0.84);
  transform: translate(4px, 4px);
}

.hero-title-outline {
  position: relative;
  margin-top: 30px;
  color: transparent;
  font-size: clamp(110px, 9.1vw, 158px);
  -webkit-text-stroke: 1.2px rgba(218, 238, 253, 0.82);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.5);
}

.hero-title-outline::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  color: transparent;
  content: attr(data-text);
  opacity: 0.18;
  -webkit-text-stroke: 1px var(--blue);
  transform: translate(4px, 4px);
}

.hero-title-outline > span {
  color: var(--blue-bright);
  -webkit-text-stroke: 0;
}

.hero-mixtape {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: #6f8197;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
  transform: none;
}

.hero-mixtape i {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
  box-shadow: 0 0 10px rgba(93, 185, 250, 0.45);
}

.hero h1 em,
.section-heading h2 em,
.community-content h2 em,
.install-copy h2 em,
.final-content h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(191, 220, 245, 0.84);
}

.hero-lead {
  max-width: 630px;
  margin: 30px 0 0;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

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

.button-primary {
  min-width: 194px;
  justify-content: space-between;
  border-color: rgba(157, 213, 255, 0.72);
  background: linear-gradient(145deg, #407aaa, #173f6d);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 34px rgba(15, 86, 145, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--blue-bright);
  background: linear-gradient(145deg, #5796ca, #1c4e82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 18px 42px rgba(21, 112, 186, 0.34);
}

.button-arrow {
  margin-left: 24px;
  font-size: 18px;
  font-weight: 400;
}

.button-ghost {
  color: var(--muted-light);
  background: rgba(5, 17, 32, 0.52);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--line-strong);
  color: var(--white);
  background: rgba(15, 41, 70, 0.7);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: #7e8ca1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(93, 185, 250, 0.9);
}

.meta-divider {
  width: 1px;
  height: 14px;
  margin: 0 3px;
  background: var(--line);
}

.hero-stage {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(149, 204, 249, 0.3);
  border-radius: 240px 240px 44px 44px;
  background: #071529;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.42), inset 0 0 90px rgba(66, 144, 210, 0.08);
}

.court-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(2, 8, 20, 0.16), rgba(2, 8, 20, 0.84)),
    url("/assets/hero-court.webp") 55% 50% / cover no-repeat;
  opacity: 0.82;
  filter: saturate(0.55) contrast(1.1);
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(29deg, transparent 0 43%, rgba(104, 173, 229, 0.14) 43.3% 43.7%, transparent 44%),
    linear-gradient(123deg, transparent 0 56%, rgba(104, 173, 229, 0.1) 56.2% 56.6%, transparent 57%);
  mix-blend-mode: screen;
}

.street {
  position: absolute;
  height: 5px;
  border: 1px solid rgba(161, 211, 248, 0.38);
  border-radius: 999px;
  background: rgba(77, 145, 201, 0.14);
  transform-origin: center;
}

.street-one {
  top: 245px;
  right: -120px;
  left: -90px;
  transform: rotate(-20deg);
}

.street-two {
  top: 360px;
  right: -90px;
  left: -100px;
  transform: rotate(14deg);
}

.map-label {
  position: absolute;
  color: rgba(172, 204, 229, 0.3);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.map-label-one {
  top: 180px;
  right: 65px;
  transform: rotate(-20deg);
}

.map-label-two {
  top: 430px;
  left: 64px;
  transform: rotate(14deg);
}

.live-chip,
.stage-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(2, 11, 24, 0.76);
  backdrop-filter: blur(12px);
  color: var(--muted-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.live-chip {
  top: 43px;
  left: 50%;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  transform: translateX(-50%);
}

.live-chip span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}

.stage-note {
  right: 25px;
  bottom: 23px;
  padding: 10px 13px;
  border-radius: 10px;
}

.player-pin {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.player-pin::after {
  width: 1px;
  height: 34px;
  margin-top: 4px;
  background: linear-gradient(var(--blue), transparent);
  content: "";
}

.pin-avatar {
  width: 47px;
  height: 47px;
  padding: 3px;
  border: 1px solid rgba(153, 216, 255, 0.8);
  border-radius: 50%;
  background: #071426;
  box-shadow: 0 0 0 7px rgba(57, 133, 194, 0.13), 0 0 30px rgba(93, 185, 250, 0.28);
}

.pin-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.player-pin span {
  margin-top: 5px;
  padding: 3px 6px;
  border-radius: 999px;
  background: #0b1c31;
}

.player-pin-one {
  top: 176px;
  right: 42px;
}

.player-pin-two {
  right: 52px;
  bottom: 143px;
  transform: scale(0.78);
  opacity: 0.76;
}

.game-pin {
  position: absolute;
  top: 150px;
  left: 36px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 9px 12px;
  border: 1px solid rgba(140, 205, 251, 0.4);
  border-radius: 12px;
  background: rgba(3, 13, 29, 0.82);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

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

.game-pin span {
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.phone-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: min(71%, 330px);
  min-height: 390px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(170, 218, 253, 0.46);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0, rgba(99, 175, 236, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(12, 37, 66, 0.96), rgba(2, 12, 27, 0.96));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -45%) rotate(-2deg);
}

.phone-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(127, 195, 247, 0.15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 30px rgba(127, 195, 247, 0.03), 0 0 0 70px rgba(127, 195, 247, 0.025);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #cbd9e6;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.phone-top img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.phone-top i {
  width: 5px;
  height: 5px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}

.phone-badge {
  display: inline-flex;
  margin-top: 44px;
  padding: 5px 9px;
  border: 1px solid rgba(106, 188, 247, 0.26);
  border-radius: 999px;
  color: var(--blue-bright);
  background: rgba(56, 134, 198, 0.09);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.phone-card h2 {
  margin: 13px 0 0;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.phone-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
  border-top: 1px solid rgba(143, 194, 235, 0.14);
  border-bottom: 1px solid rgba(143, 194, 235, 0.14);
}

.phone-stat-row div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 13px 6px;
}

.phone-stat-row div + div {
  border-left: 1px solid rgba(143, 194, 235, 0.14);
}

.phone-stat-row strong {
  color: var(--white);
  font-size: 10px;
}

.phone-stat-row span {
  color: #74859a;
  font-size: 8px;
}

.phone-action {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 19px;
  padding: 13px 16px;
  border: 1px solid rgba(150, 212, 255, 0.55);
  border-radius: 999px;
  background: linear-gradient(180deg, #315e8a, #183c64);
  font-size: 10px;
  font-weight: 700;
}

.ball-icon {
  font-size: 16px;
}

.sport-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 52px;
  overflow: hidden;
  border-top: 1px solid rgba(135, 185, 226, 0.13);
  border-bottom: 1px solid rgba(135, 185, 226, 0.13);
  background: linear-gradient(90deg, rgba(4, 16, 31, 0.74), rgba(8, 27, 48, 0.3), rgba(4, 16, 31, 0.74));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.sport-marquee-track,
.sport-marquee-group {
  display: flex;
  width: max-content;
  align-items: center;
}

.sport-marquee-track {
  animation: sport-marquee 28s linear infinite;
  will-change: transform;
}

.sport-marquee-group {
  min-height: 96px;
  color: #91a1b4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.sport-marquee-group span {
  padding: 0 42px;
}

.sport-marquee-group span:nth-of-type(4n + 1) {
  color: #d5e2ed;
}

.sport-marquee-group i {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: rgba(83, 177, 242, 0.72);
  box-shadow: 0 0 12px rgba(83, 177, 242, 0.35);
}

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

.section-heading h2 {
  margin-top: 22px;
  font-size: clamp(48px, 5.7vw, 78px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 70px;
}

.split-heading > p,
.center-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.split-heading > p {
  margin: 0 0 4px;
}

.pain-section {
  background:
    radial-gradient(circle at 82% 48%, rgba(25, 81, 132, 0.11), transparent 26%),
    linear-gradient(to bottom, transparent, rgba(5, 16, 30, 0.42), transparent);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 62px;
}

.pain-card,
.step-card,
.mini-feature {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(10, 29, 52, 0.74), rgba(4, 14, 29, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.pain-card {
  min-height: 260px;
  padding: 34px;
  border-radius: var(--radius-lg);
}

.pain-card::after {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 145, 210, 0.13), transparent 67%);
  content: "";
}

.pain-number,
.feature-index {
  color: var(--blue-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.pain-card h3,
.step-card h3 {
  margin: 74px 0 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.pain-card p,
.step-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.how-section {
  border-top: 1px solid rgba(134, 184, 226, 0.08);
  background: radial-gradient(circle at 50% 52%, rgba(25, 88, 142, 0.16), transparent 34%);
}

.center-heading {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
}

.center-heading > p {
  max-width: 620px;
  margin: 26px auto 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 64px;
}

.step-card {
  min-height: 350px;
  padding: 34px;
  border-radius: var(--radius-lg);
}

.step-card.featured {
  min-height: 400px;
  border-color: rgba(139, 205, 251, 0.47);
  background:
    radial-gradient(circle at 72% 10%, rgba(83, 169, 232, 0.19), transparent 34%),
    linear-gradient(145deg, rgba(16, 46, 78, 0.92), rgba(4, 18, 37, 0.95));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-top > span {
  color: #728297;
  font-size: 10px;
  font-weight: 700;
}

.step-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-bright);
  background: rgba(12, 37, 63, 0.72);
  font-size: 20px;
}

.step-card h3 {
  margin-top: 120px;
  font-size: 24px;
}

.step-card.featured h3 {
  margin-top: 168px;
}

.features-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 62%, rgba(55, 136, 201, 0.14), transparent 27%),
    radial-gradient(circle at 73% 74%, rgba(27, 91, 151, 0.18), transparent 31%),
    linear-gradient(to bottom, rgba(4, 14, 28, 0.25), rgba(5, 17, 33, 0.76), rgba(2, 8, 20, 0.2));
}

.feature-rail {
  position: relative;
  isolation: isolate;
}

.feature-rail::before,
.feature-rail::after {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  content: "";
  filter: blur(70px);
  pointer-events: none;
}

.feature-rail-top,
.feature-scroll-track {
  position: relative;
  z-index: 1;
}

.feature-rail::before {
  top: 14%;
  left: 18%;
  width: 410px;
  height: 410px;
  background: rgba(53, 146, 216, 0.17);
}

.feature-rail::after {
  right: 10%;
  bottom: 8%;
  width: 520px;
  height: 360px;
  background: rgba(23, 80, 134, 0.19);
}

.feature-rail-top,
.feature-rail-controls {
  display: none;
}

.feature {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
  min-height: 590px;
  margin-top: 74px;
  overflow: hidden;
  border: 1px solid rgba(159, 211, 249, 0.25);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), transparent 31%),
    radial-gradient(circle at 80% 10%, rgba(75, 160, 224, 0.14), transparent 31%),
    linear-gradient(145deg, rgba(10, 31, 55, 0.5), rgba(3, 13, 27, 0.63));
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.085),
    inset 0 -1px 0 rgba(79, 152, 210, 0.08);
  -webkit-backdrop-filter: blur(32px) saturate(145%);
  backdrop-filter: blur(32px) saturate(145%);
}

.feature::after,
.mini-feature::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.07), transparent 18%, transparent 76%, rgba(114, 194, 249, 0.035)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 22%);
  content: "";
  pointer-events: none;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 66px;
}

.feature-copy h3,
.mini-feature h3 {
  margin-top: 22px;
  font-family: "Bebas Street", "Montserrat", sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.9;
  text-transform: uppercase;
}

.feature-copy > p,
.mini-feature > p {
  margin: 24px 0 0;
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.78;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: #94a3b6;
  font-size: 12px;
}

.check-list li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 13px;
  height: 1px;
  background: var(--blue);
  content: "";
  box-shadow: 0 0 8px rgba(93, 185, 250, 0.7);
}

.feature-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-left: 1px solid rgba(142, 194, 236, 0.14);
  background: rgba(5, 22, 42, 0.58);
}

.tracker-visual {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(94, 157, 208, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 157, 208, 0.035) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(16, 50, 80, 0.82), rgba(6, 20, 38, 0.74) 58%, rgba(3, 13, 28, 0.76));
  background-size: 42px 42px, 42px 42px, auto;
}

.tracker-orbit {
  position: absolute;
  border: 1px solid rgba(117, 185, 235, 0.2);
  border-radius: 50%;
}

.orbit-one {
  width: 320px;
  height: 320px;
  box-shadow: 0 0 70px rgba(33, 119, 189, 0.11);
}

.orbit-two {
  width: 480px;
  height: 480px;
  border-color: rgba(117, 185, 235, 0.09);
}

.tracker-you {
  position: relative;
  z-index: 3;
  display: flex;
  width: 118px;
  height: 142px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(164, 220, 255, 0.76);
  border-radius: 59px;
  background: linear-gradient(180deg, rgba(49, 101, 151, 0.98), rgba(14, 48, 85, 0.98));
  box-shadow: 0 0 0 13px rgba(54, 135, 201, 0.08), 0 0 60px rgba(72, 163, 230, 0.24);
}

.basketball-mark {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border-radius: 50%;
  background: #030d1d;
  color: var(--white);
  font-size: 28px;
}

.tracker-you small {
  margin-top: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.tracker-person {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 58px;
  padding: 3px;
  border: 1px solid rgba(156, 215, 255, 0.74);
  border-radius: 50%;
  background: #07172b;
  box-shadow: 0 0 0 10px rgba(57, 136, 198, 0.08), 0 0 28px rgba(70, 159, 224, 0.22);
}

.tracker-person img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.tracker-person::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 11px;
  height: 11px;
  border: 2px solid #08172a;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.tracker-person-a {
  top: 22%;
  right: 18%;
}

.tracker-person-b {
  bottom: 20%;
  left: 18%;
}

.tracker-caption {
  position: absolute;
  bottom: 36px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 10, 22, 0.72);
  color: #a9b8c8;
  font-size: 9px;
  font-weight: 600;
  transform: translateX(-50%);
}

.tracker-caption span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

.feature-planned {
  grid-template-columns: 1.12fr 0.88fr;
}

.feature-planned .feature-visual {
  border-right: 1px solid rgba(142, 194, 236, 0.14);
  border-left: 0;
}

.calendar-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background:
    radial-gradient(circle at 20% 10%, rgba(74, 154, 217, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(11, 34, 60, 0.72), rgba(5, 20, 37, 0.74));
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--blue-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.calendar-head b {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(79, 164, 226, 0.12);
  font-size: 8px;
}

.calendar-date {
  display: grid;
  grid-template-columns: 52px 100px 1fr;
  align-items: end;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.calendar-date small {
  align-self: start;
  color: var(--blue-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.calendar-date strong {
  color: var(--white);
  font-size: 66px;
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.calendar-date span {
  color: var(--muted-light);
  font-size: 13px;
}

.calendar-game {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.calendar-game div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.calendar-game span {
  color: #62758d;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.calendar-game strong {
  font-size: 12px;
  font-weight: 600;
}

.calendar-place {
  padding: 20px 0;
  color: #9aaabd;
  font-size: 11px;
}

.avatar-stack {
  display: flex;
  margin-top: 20px;
}

.avatar-stack img,
.avatar-stack span {
  width: 43px;
  height: 43px;
  margin-left: -8px;
  border: 3px solid #0a2139;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.avatar-stack span {
  display: grid;
  place-items: center;
  background: #173a5c;
  color: var(--blue-bright);
  font-size: 9px;
  font-weight: 700;
}

.feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.mini-feature {
  min-height: 500px;
  padding: 56px;
  border-radius: var(--radius-xl);
}

.mini-feature h3 {
  max-width: 470px;
  font-size: clamp(34px, 3.6vw, 50px);
}

.mini-feature > p {
  max-width: 510px;
  font-size: 14px;
}

.rating-board {
  margin-top: 56px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(3, 13, 28, 0.64);
}

.rating-head {
  display: flex;
  justify-content: space-between;
  color: #7f8fa2;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.rating-head b {
  color: var(--blue-bright);
}

.rating-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.rating-row span {
  display: flex;
  min-height: 80px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(135, 190, 235, 0.16);
  border-radius: 15px;
  color: #8392a5;
  font-size: 7px;
  font-weight: 700;
}

.rating-row b {
  color: var(--white);
  font-size: 21px;
  font-weight: 500;
}

.verify-feature {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 31%),
    radial-gradient(circle at 84% 16%, rgba(90, 171, 230, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(13, 35, 61, 0.64), rgba(4, 14, 29, 0.76));
  -webkit-backdrop-filter: blur(28px) saturate(135%);
  backdrop-filter: blur(28px) saturate(135%);
}

.verified-profile {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr 110px;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  margin-top: 45px;
  padding: 18px 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(2, 12, 27, 0.64);
}

.verified-avatar {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(147, 211, 255, 0.7);
  border-radius: 50%;
  object-fit: cover;
}

.verified-profile > div {
  display: flex;
  flex-direction: column;
}

.verified-profile strong {
  font-size: 14px;
  font-weight: 500;
}

.verified-profile span {
  color: var(--muted);
  font-size: 10px;
}

.verified-stamp {
  width: 102px;
  justify-self: end;
  opacity: 0.86;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.12));
  transform: rotate(11deg);
}

.feature-tournament {
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 14px;
}

@media (min-width: 901px) {
  .site-header .shell,
  .hero .shell {
    width: min(calc(100% - 80px), 1600px);
  }

  .hero {
    min-height: 100svh;
    padding-top: 136px;
    background:
      linear-gradient(90deg, rgba(2, 8, 20, 0.98) 0%, rgba(2, 8, 20, 0.82) 37%, rgba(2, 8, 20, 0.22) 68%, rgba(2, 8, 20, 0.02) 100%),
      linear-gradient(0deg, rgba(2, 8, 20, 0.98) 0%, transparent 31%),
      url("/assets/hero-court-desktop-v2.png") center center / cover no-repeat;
  }

  .hero::before {
    z-index: 0;
    opacity: 0.5;
  }

  .hero-grid {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(560px, 0.84fr) minmax(420px, 1.16fr);
    min-height: calc(100svh - 225px);
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-copy::before {
    position: absolute;
    top: 44%;
    left: 57%;
    z-index: -1;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(125, 199, 248, 0.24) 0 1px, transparent 1.6px);
    background-size: 8px 8px;
    content: "";
    opacity: 0.28;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(-9deg);
    -webkit-mask-image: radial-gradient(circle, #000 0 36%, transparent 72%);
    mask-image: radial-gradient(circle, #000 0 36%, transparent 72%);
  }

  .hero-copy::after {
    position: absolute;
    top: -110px;
    bottom: -110px;
    left: -180px;
    z-index: -1;
    width: min(980px, 70vw);
    background: radial-gradient(ellipse at 30% 48%, rgba(2, 8, 20, 0.82), rgba(2, 8, 20, 0.34) 52%, transparent 74%);
    content: "";
    pointer-events: none;
  }

  .hero-title {
    max-width: 720px;
  }

  .hero-stage {
    display: none;
  }

  .hero-brand-stamp {
    align-self: end;
    justify-self: end;
    display: flex;
    width: 300px;
    flex-direction: column;
    align-items: flex-end;
    margin: 0 18px 42px 0;
    color: rgba(238, 246, 253, 0.9);
    text-align: right;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    transform: rotate(-5deg);
  }

  .hero-brand-stamp span,
  .feature-rail-top span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .hero-brand-stamp strong {
    display: inline-block;
    margin-top: 10px;
    font-family: "Arial Narrow", "Montserrat", sans-serif;
    font-size: 35px;
    font-stretch: condensed;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 0.94;
    transform: scaleX(0.72);
    transform-origin: right center;
  }

  .feature-rail {
    --rail-gutter: max(36px, calc((100vw - 1600px) / 2));
    margin-top: 64px;
  }

  .feature-rail-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 var(--rail-gutter);
    color: #718399;
  }

  .feature-rail-top strong {
    color: var(--blue-bright);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
  }

  .feature-scroll-track {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    padding: 12px var(--rail-gutter) 48px;
    cursor: grab;
    overscroll-behavior-inline: auto;
    scroll-behavior: auto;
    scrollbar-width: none;
    touch-action: pan-x pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
  }

  .feature-scroll-track::-webkit-scrollbar {
    display: none;
  }

  .feature-scroll-track.is-dragging {
    cursor: grabbing;
    user-select: none;
  }

  .feature-scroll-track.is-dragging * {
    pointer-events: none;
  }

  .feature-scroll-track:focus-visible {
    outline: 1px solid var(--blue-bright);
    outline-offset: 8px;
  }

  .feature-scroll-track > .feature {
    flex: 0 0 clamp(820px, 61vw, 1120px);
    min-height: 620px;
    margin: 0;
    border-radius: 30px;
    box-shadow:
      0 30px 86px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.09);
  }

  .feature-scroll-track > .feature-pair {
    display: contents;
  }

  .feature-scroll-track > .feature-pair > .mini-feature {
    flex: 0 0 clamp(480px, 36vw, 650px);
    min-height: 620px;
    margin: 0;
    border-radius: 30px;
    border-color: rgba(159, 211, 249, 0.25);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.085), transparent 31%),
      linear-gradient(145deg, rgba(10, 29, 52, 0.48), rgba(4, 14, 29, 0.61));
    box-shadow:
      0 30px 86px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.09);
    -webkit-backdrop-filter: blur(32px) saturate(145%);
    backdrop-filter: blur(32px) saturate(145%);
  }

  .feature-scroll-track > .feature-pair > .rating-feature {
    background:
      linear-gradient(rgba(92, 169, 226, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(92, 169, 226, 0.035) 1px, transparent 1px),
      radial-gradient(circle at 74% 18%, rgba(53, 129, 189, 0.18), transparent 34%),
      linear-gradient(145deg, rgba(8, 28, 50, 0.46), rgba(3, 13, 28, 0.6));
    background-size: 42px 42px, 42px 42px, auto, auto;
  }

  .feature-scroll-track .mini-feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 66px 58px;
  }

  .feature-scroll-track .rating-board,
  .feature-scroll-track .verified-profile {
    width: min(100%, 610px);
  }

}

.tournament-visual {
  min-height: 620px;
}

.tournament-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.68);
}

.tournament-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 48px;
  background: linear-gradient(transparent, rgba(2, 8, 20, 0.94) 46%);
}

.tournament-overlay > span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(66, 152, 216, 0.17);
  color: var(--blue-bright);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.tournament-overlay h3 {
  margin: 16px 0 0;
  font-size: 54px;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.tournament-overlay p {
  margin: 2px 0 18px;
  color: #a9b7c7;
  font-size: 13px;
}

.tournament-overlay div {
  display: flex;
  gap: 14px;
  color: #8291a5;
  font-size: 10px;
}

.tournament-overlay b {
  color: var(--white);
}

.sports-section {
  overflow: hidden;
  border-top: 1px solid rgba(135, 186, 226, 0.08);
  background:
    radial-gradient(circle at 50% 55%, rgba(27, 91, 145, 0.18), transparent 34%),
    linear-gradient(to bottom, rgba(3, 12, 25, 0.3), transparent);
}

.sports-cloud {
  display: flex;
  max-width: 1000px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 64px auto 0;
}

.sport-pill {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(11, 33, 57, 0.76), rgba(4, 15, 30, 0.7));
  color: #8e9caf;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sport-pill:hover {
  border-color: rgba(144, 208, 252, 0.58);
  color: var(--white);
  transform: translateY(-2px);
}

.sport-pill-main {
  border-color: rgba(141, 205, 249, 0.65);
  background: linear-gradient(145deg, rgba(43, 95, 140, 0.82), rgba(12, 42, 72, 0.9));
  color: var(--white);
  box-shadow: 0 14px 32px rgba(27, 103, 163, 0.19);
}

.sport-pill-wide {
  padding-right: 40px;
  padding-left: 40px;
}

.formats-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: 35px;
  color: #627186;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.city-seo-section {
  background: linear-gradient(180deg, transparent, rgba(9, 26, 48, 0.52), transparent);
}

.city-seo-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 90px;
}

.city-copy h2 {
  margin: 22px 0 0;
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.city-copy p {
  margin: 28px 0 0;
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.85;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--blue-bright);
  font-size: 18px;
}

.city-search {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 0, rgba(58, 137, 200, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(10, 31, 54, 0.92), rgba(3, 14, 29, 0.95));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.search-label {
  color: #6c7b90;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.search-bar {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  min-height: 64px;
  margin-top: 12px;
  padding: 0 18px;
  border: 1px solid rgba(139, 196, 239, 0.25);
  border-radius: 18px;
  background: rgba(2, 11, 24, 0.55);
}

.search-bar > span {
  color: var(--blue-bright);
}

.search-bar b {
  font-size: 14px;
  font-weight: 500;
}

.search-bar i {
  color: #718096;
  font-style: normal;
}

.search-query {
  display: flex;
  justify-content: space-between;
  padding: 20px 3px 16px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.search-query span {
  color: var(--blue-bright);
}

.search-results {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.search-results > div {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  min-height: 82px;
  gap: 12px;
  padding: 0 20px;
  background: rgba(5, 18, 35, 0.72);
}

.search-results > div + div {
  border-top: 1px solid var(--line);
}

.result-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.result-dot.online {
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}

.result-dot.planned {
  border: 2px solid #6385a3;
}

.search-results span {
  display: flex;
  flex-direction: column;
}

.search-results b {
  font-size: 12px;
  font-weight: 600;
}

.search-results small {
  color: #708095;
  font-size: 9px;
}

.search-results strong {
  color: var(--blue-bright);
  font-size: 18px;
  font-weight: 400;
}

.community-section {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.community-photo,
.community-shade {
  position: absolute;
  inset: 0;
}

.community-photo {
  background: url("/assets/tournament.webp") center 38% / cover no-repeat;
  filter: saturate(0.72) contrast(1.06);
  transform: scale(1.02);
}

.community-shade {
  background: linear-gradient(90deg, rgba(2, 8, 20, 0.98) 0%, rgba(2, 8, 20, 0.82) 44%, rgba(2, 8, 20, 0.26) 78%, rgba(2, 8, 20, 0.58) 100%);
}

.community-content {
  position: relative;
  z-index: 2;
}

.eyebrow.light {
  color: #c5e6ff;
}

.community-content h2 {
  max-width: 820px;
  margin-top: 24px;
  font-size: clamp(54px, 6.5vw, 86px);
}

.community-content p {
  max-width: 650px;
  margin: 30px 0 0;
  color: #b7c2d0;
  font-size: 17px;
  line-height: 1.75;
}

.button-light {
  margin-top: 36px;
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--white);
  box-shadow: 0 16px 38px rgba(255, 255, 255, 0.13);
}

.install-section {
  background: radial-gradient(circle at 50% 50%, rgba(27, 91, 145, 0.18), transparent 42%);
}

.install-card {
  display: grid;
  grid-template-columns: 1fr 310px;
  align-items: center;
  min-height: 580px;
  gap: 60px;
  padding: 74px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 44px;
  background:
    radial-gradient(circle at 82% 22%, rgba(72, 161, 224, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(12, 35, 60, 0.92), rgba(3, 14, 29, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.install-copy h2 {
  margin-top: 22px;
  font-size: clamp(48px, 5vw, 70px);
}

.install-copy > p {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.8;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.store-badge {
  display: flex;
  min-height: 57px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: rgba(9, 32, 55, 0.76);
}

.store-badge > i {
  color: var(--blue-bright);
  font-size: 18px;
  font-style: normal;
}

.store-badge > span {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 600;
}

.store-badge small {
  color: #6f8196;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.store-badge.muted {
  border-color: rgba(128, 175, 216, 0.15);
  opacity: 0.65;
}

.qr-card {
  position: relative;
  display: flex;
  width: 290px;
  height: 340px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 1px solid rgba(177, 222, 255, 0.48);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(28, 70, 107, 0.9), rgba(7, 28, 51, 0.96));
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotate(3deg);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.qr-card:hover,
.qr-card:focus-visible {
  border-color: var(--blue-bright);
  transform: rotate(0deg) translateY(-3px);
}

.qr-card img {
  width: 220px;
  height: 220px;
  padding: 14px;
  border-radius: 22px;
  background: var(--white);
}

.qr-card span {
  margin-top: 22px;
  color: #c9e9ff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.faq-section {
  border-top: 1px solid rgba(133, 183, 224, 0.08);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 140px;
}

.faq-heading h2 {
  margin-top: 22px;
  font-size: clamp(48px, 5vw, 68px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: center;
  min-height: 98px;
  gap: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-bright);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-list details[open] summary span {
  background: rgba(55, 132, 192, 0.12);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.final-cta {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(135, 185, 225, 0.12);
  background:
    radial-gradient(circle at 50% 100%, rgba(55, 148, 216, 0.25), transparent 42%),
    linear-gradient(180deg, #061326, #020814);
}

.final-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(106, 169, 220, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 169, 220, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(transparent, #000 50%, transparent);
}

.final-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-content > img {
  width: 220px;
  height: auto;
  opacity: 0.86;
}

.final-content h2 {
  margin-top: 25px;
  font-size: clamp(55px, 7vw, 92px);
}

.button-large {
  min-width: 260px;
  min-height: 62px;
  margin-top: 38px;
}

.site-footer {
  padding: 70px 0 24px;
  border-top: 1px solid rgba(133, 184, 225, 0.11);
  background: #010610;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.footer-brand img {
  width: 160px;
  height: auto;
}

.footer-brand p {
  max-width: 390px;
  margin: 20px 0 0;
  color: #69798d;
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: #75869a;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.footer-links a {
  color: #a6b2c1;
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(133, 184, 225, 0.1);
  color: #4d5b6d;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 24px;
  }

  .feature-copy {
    padding: 54px 42px;
  }

  .calendar-visual {
    padding: 44px;
  }

  .mini-feature {
    padding: 44px;
  }

  .install-card {
    padding: 58px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 96px 0;
  }

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

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(7, 23, 42, 0.75);
  }

  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: var(--white);
    transition: transform 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: flex;
    max-height: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 24px;
    background: rgba(4, 16, 31, 0.97);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(18px);
    transition: max-height 0.25s ease, opacity 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
  }

  .mobile-nav.is-open {
    max-height: 420px;
    padding: 16px;
    border-color: var(--line);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 15px 14px;
    border-bottom: 1px solid rgba(130, 183, 225, 0.1);
    color: var(--muted-light);
    font-size: 13px;
    font-weight: 600;
  }

  .mobile-nav a:last-child {
    margin-top: 8px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--white);
    text-align: center;
  }

  .hero {
    padding-top: 118px;
  }

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

  .hero-copy {
    max-width: 740px;
  }

  .hero-stage {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .feature-rail {
    width: min(calc(100% - 48px), var(--shell));
    margin: 54px auto 0;
  }

  .split-heading,
  .city-seo-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pain-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .pain-card {
    min-height: 230px;
  }

  .step-card,
  .step-card.featured {
    min-height: 280px;
  }

  .step-card h3,
  .step-card.featured h3 {
    margin-top: 80px;
  }

  .feature,
  .feature-planned,
  .feature-tournament {
    grid-template-columns: 1fr;
  }

  .feature-visual,
  .feature-planned .feature-visual {
    min-height: 540px;
    border-top: 1px solid rgba(142, 194, 236, 0.14);
    border-right: 0;
    border-left: 0;
  }

  .feature-planned .feature-visual {
    order: 2;
  }

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

  .faq-heading {
    position: static;
  }

  .install-card {
    grid-template-columns: 1fr;
  }

  .qr-card {
    justify-self: start;
  }

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

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .feature-rail {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-header.is-scrolled {
    background: rgba(2, 8, 20, 0.92);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    width: 142px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-era {
    margin-top: 18px;
  }

  .hero-title {
    margin-top: 10px !important;
  }

  .hero-title-top {
    font-size: clamp(36px, 10vw, 42px);
  }

  .hero-title-core {
    margin-top: 14px;
    font-size: clamp(84px, 25vw, 105px);
  }

  .hero-title-outline {
    margin-top: 23px;
    font-size: clamp(70px, 20vw, 84px);
  }

  .hero-mixtape {
    margin-top: 19px;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    flex-wrap: wrap;
  }

  .hero-stage {
    min-height: 560px;
    border-radius: 180px 180px 32px 32px;
  }

  .phone-card {
    width: 75%;
    min-height: 350px;
    padding: 18px;
  }

  .phone-card h2 {
    font-size: 24px;
  }

  .phone-badge {
    margin-top: 33px;
  }

  .player-pin-one {
    right: 23px;
  }

  .game-pin {
    left: 20px;
  }

  .sport-marquee {
    margin-top: 38px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  }

  .sport-marquee-group {
    min-height: 76px;
  }

  .sport-marquee-group span {
    padding: 0 28px;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading h2,
  .city-copy h2,
  .install-copy h2,
  .faq-heading h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .split-heading {
    gap: 28px;
  }

  .split-heading > p,
  .center-heading > p {
    font-size: 14px;
  }

  .pain-grid,
  .steps-grid,
  .sports-cloud {
    margin-top: 42px;
  }

  .pain-card,
  .step-card {
    padding: 28px;
    border-radius: 24px;
  }

  .feature {
    min-height: 0;
    margin-top: 50px;
    border-radius: 28px;
  }

  .feature-copy {
    padding: 42px 25px;
  }

  .feature-copy h3,
  .mini-feature h3 {
    font-size: 39px;
  }

  .feature-copy > p,
  .mini-feature > p {
    font-size: 13px;
  }

  .feature-visual,
  .feature-planned .feature-visual {
    min-height: 440px;
  }

  .orbit-one {
    width: 250px;
    height: 250px;
  }

  .orbit-two {
    width: 370px;
    height: 370px;
  }

  .tracker-person-a {
    right: 10%;
  }

  .tracker-person-b {
    left: 10%;
  }

  .calendar-visual {
    padding: 35px 24px;
  }

  .calendar-date {
    grid-template-columns: 42px 86px 1fr;
  }

  .calendar-date strong {
    font-size: 58px;
  }

  .calendar-game {
    grid-template-columns: 1.35fr 1fr 0.8fr;
  }

  .calendar-game strong {
    font-size: 10px;
  }

  .mini-feature {
    min-height: auto;
    padding: 42px 25px;
    border-radius: 28px;
  }

  .rating-board {
    margin-top: 40px;
    padding: 15px;
  }

  .rating-row {
    gap: 5px;
  }

  .verified-profile {
    grid-template-columns: 54px 1fr 72px;
    gap: 10px;
    margin-top: 36px;
  }

  .verified-avatar {
    width: 54px;
    height: 54px;
  }

  .verified-stamp {
    width: 72px;
  }

  .tournament-overlay {
    padding: 30px 25px;
  }

  .tournament-overlay h3 {
    font-size: 42px;
  }

  .sport-pill {
    min-height: 48px;
    padding: 0 18px;
    font-size: 9px;
  }

  .city-seo-grid {
    gap: 50px;
  }

  .city-copy p {
    font-size: 13px;
  }

  .city-search {
    padding: 22px;
    border-radius: 28px;
  }

  .community-section {
    min-height: 720px;
  }

  .community-photo {
    background-position: 62% center;
  }

  .community-shade {
    background: linear-gradient(90deg, rgba(2, 8, 20, 0.96), rgba(2, 8, 20, 0.68));
  }

  .community-content h2,
  .final-content h2 {
    font-size: clamp(47px, 14vw, 66px);
  }

  .community-content p {
    font-size: 14px;
  }

  .install-card {
    width: min(calc(100% - 20px), var(--shell));
    padding: 44px 22px;
    border-radius: 30px;
  }

  .store-row {
    flex-direction: column;
  }

  .store-badge {
    width: 100%;
  }

  .qr-card {
    width: 100%;
    max-width: 290px;
    justify-self: center;
  }

  .faq-list summary {
    min-height: 86px;
    font-size: 14px;
  }

  .final-cta {
    min-height: 600px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

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

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