:root {
  --bg: #071116;
  --bg-soft: #0c1b22;
  --panel: rgba(15, 31, 39, 0.82);
  --panel-strong: #10232c;
  --text: #f5fbff;
  --muted: #b5c2c8;
  --subtle: #7d8c93;
  --lime: #9bff57;
  --green: #31d889;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(155, 255, 87, 0.16), transparent 28rem),
    radial-gradient(circle at 14% 32%, rgba(49, 216, 137, 0.09), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(155, 255, 87, 0.95);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px max(22px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 22, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(155, 255, 87, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 65% 28%, rgba(155, 255, 87, 0.34), transparent 32%),
    #0e2027;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name,
.brand-tagline {
  display: block;
}

.brand-name {
  font-size: 1.04rem;
  font-weight: 800;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 44px;
  padding: 11px 15px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: 128px max(22px, calc((100vw - var(--max-width)) / 2)) 74px;
  isolation: isolate;
}

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

.court-line {
  position: absolute;
  border: 1px solid rgba(155, 255, 87, 0.12);
  transform: rotate(-16deg);
  animation: drift 10s ease-in-out infinite alternate;
}

.court-line-one {
  right: -110px;
  top: 130px;
  width: 520px;
  height: 300px;
}

.court-line-two {
  left: -160px;
  bottom: 30px;
  width: 500px;
  height: 250px;
  animation-delay: -3s;
}

.glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.28;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.glow-one {
  top: 18%;
  right: 22%;
  background: rgba(155, 255, 87, 0.28);
}

.glow-two {
  bottom: 7%;
  left: 10%;
  background: rgba(49, 216, 137, 0.18);
  animation-delay: -4s;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  align-items: center;
  gap: 58px;
  width: 100%;
}

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

.status-label,
.eyebrow,
.panel-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(155, 255, 87, 0.32);
  border-radius: 999px;
  background: rgba(155, 255, 87, 0.09);
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-label,
.eyebrow {
  padding: 6px 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 750px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-subtitle,
.section-intro p,
.analytics-copy p,
.coming-inner > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-subtitle {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  max-width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--lime), var(--green));
  color: #071116;
  box-shadow: 0 14px 42px rgba(155, 255, 87, 0.25);
}

.secondary-button {
  margin-top: 6px;
  background: var(--text);
  color: #071116;
}

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

.support-line {
  margin: 18px 0 0;
  color: var(--subtle);
  font-weight: 700;
}

.dashboard-wrap {
  position: relative;
}

.dashboard-wrap::before {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(155, 255, 87, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(155, 255, 87, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, #000 22%, transparent 70%);
}

.dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 23, 29, 0.94);
  box-shadow: var(--shadow);
  padding: 22px;
}

.dashboard::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(155, 255, 87, 0.25);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 30%, rgba(155, 255, 87, 0.07) 31%, transparent 32%),
    radial-gradient(circle, transparent 46%, rgba(155, 255, 87, 0.07) 47%, transparent 48%);
}

.dashboard-top,
.chart-head,
.comparison-row,
.club-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-top strong {
  display: block;
  font-size: 1.62rem;
  line-height: 1.1;
}

.dashboard-kicker,
.metric-card span,
.chart-head span,
.comparison-row span,
.club-card span {
  display: block;
  color: var(--subtle);
  font-size: 0.8rem;
  font-weight: 700;
}

.score-pill {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 7px 10px;
  white-space: nowrap;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.metric-card,
.chart-card,
.comparison-row,
.club-card,
.info-card,
.feature-block,
.analytics-panel {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.metric-card {
  padding: 14px;
}

.metric-card strong {
  display: block;
  margin-top: 3px;
  color: var(--lime);
  font-size: 1.28rem;
}

.chart-card {
  padding: 16px;
}

.mini-chart {
  display: block;
  width: 100%;
  height: 124px;
  margin-top: 12px;
}

.chart-head strong {
  color: var(--green);
}

.comparison-row {
  margin-top: 12px;
  padding: 14px;
}

.compare-meter {
  flex: 1 1 96px;
  height: 8px;
  min-width: 74px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.compare-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), var(--green));
}

.club-card {
  justify-content: flex-start;
  margin-top: 12px;
  padding: 14px;
}

.pin-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--lime);
  transform: rotate(-45deg);
}

.pin-icon::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #071116;
}

.content-section {
  padding: 98px max(22px, calc((100vw - var(--max-width)) / 2));
}

.section-alt {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section-intro {
  max-width: 820px;
  margin-bottom: 38px;
}

.card-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}

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

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

.info-card,
.feature-block {
  min-height: 100%;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.info-card:hover,
.feature-block:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 255, 87, 0.32);
  background: rgba(255, 255, 255, 0.07);
}

.info-card p,
.feature-block p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-shape {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background-color: rgba(155, 255, 87, 0.1);
  border: 1px solid rgba(155, 255, 87, 0.28);
}

.icon-bars {
  background-image:
    linear-gradient(to top, var(--lime) 44%, transparent 45%),
    linear-gradient(to top, var(--green) 64%, transparent 65%),
    linear-gradient(to top, var(--lime) 82%, transparent 83%);
  background-size: 6px 26px, 6px 26px, 6px 26px;
  background-position: 11px 9px, 18px 9px, 25px 9px;
  background-repeat: no-repeat;
}

.icon-compare {
  position: relative;
}

.icon-compare::before,
.icon-compare::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  height: 5px;
  border-radius: 999px;
  background: var(--lime);
}

.icon-compare::before {
  top: 13px;
  width: 24px;
}

.icon-compare::after {
  bottom: 13px;
  width: 16px;
  background: var(--green);
}

.icon-pin {
  position: relative;
}

.icon-pin::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 0;
  background: var(--lime);
  transform: rotate(-45deg);
}

.analytics-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 560px);
  align-items: center;
  gap: 56px;
}

.analytics-copy {
  max-width: 560px;
}

.analytics-panel {
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow);
}

.panel-label {
  margin-bottom: 18px;
  padding: 6px 11px;
  font-size: 0.73rem;
}

.progress-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  margin-bottom: 16px;
}

.progress-item:last-child {
  margin-bottom: 0;
}

.progress-item span {
  color: var(--muted);
  font-weight: 750;
}

.progress-item strong {
  color: var(--text);
}

.progress-track {
  grid-column: 1 / -1;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), var(--green));
  transition: width 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.progress-track span.is-filled {
  width: var(--progress-value);
}

.coming-soon {
  padding: 90px max(22px, calc((100vw - 900px) / 2)) 105px;
  text-align: center;
}

.coming-inner {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border: 1px solid rgba(155, 255, 87, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(155, 255, 87, 0.13), transparent 35%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.coming-inner::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  pointer-events: none;
}

.coming-inner > * {
  position: relative;
}

.check-list {
  display: grid;
  gap: 10px;
  max-width: 590px;
  margin: 26px auto 28px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.check-list li {
  position: relative;
  min-height: 30px;
  padding-left: 34px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(155, 255, 87, 0.15);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(-45deg);
}

.partnerships {
  margin: 18px 0 0;
  color: var(--subtle);
  font-size: 0.96rem;
}

.site-footer {
  display: grid;
  gap: 5px;
  padding: 34px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--lime);
  font-weight: 800;
}

.section-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) rotate(-16deg);
  }
  to {
    transform: translate3d(18px, -12px, 0) rotate(-16deg);
  }
}

@keyframes pulseGlow {
  from {
    transform: scale(0.95);
    opacity: 0.18;
  }
  to {
    transform: scale(1.08);
    opacity: 0.32;
  }
}

@media (max-width: 1040px) {
  .hero-content,
  .analytics-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .dashboard-wrap,
  .analytics-panel {
    max-width: 620px;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 12px 18px;
  }

  .brand-tagline {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(7, 17, 22, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 116px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .content-section,
  .coming-soon {
    padding-top: 74px;
    padding-bottom: 76px;
  }

  .card-grid.three,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .coming-inner {
    padding: 34px 22px;
  }

  .comparison-row {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .hero,
  .content-section,
  .coming-soon {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-content {
    gap: 36px;
  }

  .hero-subtitle,
  .section-intro p,
  .analytics-copy p,
  .coming-inner > p {
    font-size: 1rem;
  }

  .dashboard,
  .analytics-panel,
  .info-card,
  .feature-block {
    padding: 18px;
  }

  .dashboard-top,
  .club-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}

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

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