:root {
  color-scheme: light;
  --ink: #10241f;
  --forest: #173f35;
  --forest-deep: #0d2e27;
  --forest-soft: #e7f0ed;
  --lime: #c5f54c;
  --lime-deep: #8dbd20;
  --lime-soft: #f1fad9;
  --canvas: #f7f8f3;
  --paper: #ffffff;
  --line: #dfe6df;
  --muted: #65756f;
  --subtle: #899791;
  --coral: #f16c5b;
  --shadow: 0 24px 70px rgba(16, 36, 31, 0.12);
  --shadow-soft: 0 12px 32px rgba(16, 36, 31, 0.07);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --content: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--lime);
  color: var(--forest-deep);
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 800;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 230, 223, 0.8);
  background: rgba(247, 248, 243, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell,
.section-shell,
.footer-shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--forest);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--forest);
  box-shadow: 0 7px 18px rgba(23, 63, 53, 0.18);
}

.brand-ball {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--lime);
  position: relative;
}

.brand-ball::before,
.brand-ball::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 7px 2px 0 var(--forest), 3px 8px 0 var(--forest);
}

.brand-ball::before { left: 4px; top: 4px; }
.brand-ball::after { left: 6px; top: 9px; transform: rotate(28deg); }

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

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
}

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

.nav-cta {
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--forest);
  color: white !important;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  right: -260px;
  top: -260px;
  background: radial-gradient(circle, rgba(197, 245, 76, 0.34), rgba(197, 245, 76, 0));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.eyebrow,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-deep);
  box-shadow: 0 0 0 5px var(--lime-soft);
}

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

.hero h1 {
  max-width: 720px;
  margin: 22px 0 22px;
  font-size: clamp(3.15rem, 7.3vw, 6.65rem);
  line-height: 0.94;
  letter-spacing: -0.066em;
  font-weight: 900;
}

.hero h1 span { color: var(--lime-deep); }

.hero-copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.7;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--forest);
  color: white;
  box-shadow: 0 12px 25px rgba(23, 63, 53, 0.22);
}

.button-primary:hover { background: var(--forest-deep); }

.button-secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--forest);
}

.founder-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.founder-avatar {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--lime);
  font-size: 0.65rem;
  font-weight: 900;
}

.product-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.court-lines {
  position: absolute;
  inset: 6% 0 0 8%;
  border: 2px solid rgba(23, 63, 53, 0.08);
  border-radius: 40px;
  transform: rotate(-7deg);
}

.court-lines::before,
.court-lines::after {
  content: "";
  position: absolute;
  background: rgba(23, 63, 53, 0.08);
}

.court-lines::before { width: 2px; height: 100%; left: 50%; }
.court-lines::after { height: 2px; width: 100%; top: 50%; }

.phone {
  position: relative;
  z-index: 2;
  width: min(100%, 382px);
  padding: 12px;
  border: 1px solid rgba(16, 36, 31, 0.14);
  border-radius: 43px;
  background: #fcfdf9;
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}

.phone-screen {
  min-height: 572px;
  overflow: hidden;
  border-radius: 33px;
  background: var(--canvas);
  padding: 27px 19px 18px;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.phone-brand { color: var(--forest); font-size: 0.83rem; font-weight: 900; }

.mini-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--forest);
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
}

.phone-label { color: var(--lime-deep); font-size: 0.65rem; font-weight: 900; letter-spacing: 0.12em; }
.phone-title { margin: 4px 0 18px; font-size: 1.63rem; line-height: 1.15; letter-spacing: -0.04em; }

.game-card {
  overflow: hidden;
  border-radius: 23px;
  background: var(--forest);
  color: white;
  box-shadow: 0 17px 34px rgba(23, 63, 53, 0.2);
}

.game-main { padding: 20px; }
.game-kicker { color: var(--lime); font-size: 0.66rem; font-weight: 900; letter-spacing: 0.1em; }
.game-card h3 { margin: 7px 0 16px; font-size: 1.3rem; line-height: 1.2; }
.game-meta { display: flex; gap: 14px; color: #c4d3ce; font-size: 0.73rem; font-weight: 650; }

.game-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #38645a;
  padding: 13px 20px;
}

.players { display: flex; }
.player-dot {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-right: -7px;
  border: 2px solid var(--forest);
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
  font-size: 0.58rem;
  font-weight: 900;
}

.spots { color: #d6e1dd; font-size: 0.7rem; }

.weather-card,
.court-card-mini {
  margin-top: 13px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.weather-card { display: flex; align-items: center; gap: 13px; }
.weather-icon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 13px; background: var(--lime-soft); }
.weather-copy strong, .court-card-mini strong { display: block; color: var(--forest); font-size: 0.79rem; }
.weather-copy span, .court-card-mini span { color: var(--muted); font-size: 0.69rem; }

.court-card-mini { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.distance-pill { flex: 0 0 auto; padding: 5px 9px; border-radius: 999px; background: var(--forest-soft); color: var(--forest); font-size: 0.62rem; font-weight: 900; }

.section { padding: 94px 0; }
.section-dark { background: var(--forest-deep); color: white; }
.section-lime { background: var(--lime); }

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading .eyebrow { margin-bottom: 18px; }
.section-dark .eyebrow { color: var(--lime); }

.section h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading p { color: var(--muted); font-size: 1.08rem; }
.section-dark .section-heading p { color: #b8cbc4; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.feature-number { color: var(--lime-deep); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; }
.feature-card h3 { margin: auto 0 10px; font-size: 1.5rem; line-height: 1.2; letter-spacing: -0.03em; }
.feature-card p { margin-bottom: 0; color: var(--muted); }

.journey {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(42px, 8vw, 100px);
  align-items: start;
}

.journey-copy { position: sticky; top: 115px; }
.journey-copy p { color: #b8cbc4; }

.journey-list { display: grid; gap: 14px; }
.journey-item { display: grid; grid-template-columns: 49px 1fr; gap: 16px; border: 1px solid #31534b; border-radius: 20px; padding: 20px; background: #143a32; }
.journey-icon { width: 49px; height: 49px; display: grid; place-items: center; border-radius: 16px; background: var(--lime); color: var(--forest); font-weight: 900; }
.journey-item h3 { margin: 1px 0 5px; font-size: 1.1rem; }
.journey-item p { margin: 0; color: #afc2bc; font-size: 0.91rem; }

.local-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.local-copy p { max-width: 640px; color: #365346; font-size: 1.07rem; }

.local-card {
  border: 1px solid rgba(23, 63, 53, 0.13);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.6);
  padding: 30px;
  box-shadow: 0 20px 50px rgba(58, 84, 35, 0.1);
}

.local-card strong { display: block; color: var(--forest); font-size: 2.4rem; line-height: 1; letter-spacing: -0.05em; }
.local-card span { display: block; margin-top: 12px; color: #4d673e; }

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--forest);
  color: white;
  padding: clamp(28px, 6vw, 60px);
  position: relative;
}

.cta-panel::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -90px;
  top: -100px;
  border-radius: 50%;
  border: 45px solid rgba(197, 245, 76, 0.18);
}

.cta-copy { position: relative; z-index: 1; max-width: 700px; }
.cta-copy h2 { margin-bottom: 10px; font-size: clamp(2rem, 5vw, 3.8rem); }
.cta-copy p { margin-bottom: 0; color: #c0d0cb; }
.cta-panel .button { position: relative; z-index: 1; flex: 0 0 auto; background: var(--lime); color: var(--forest-deep); }

.site-footer { padding: 45px 0 55px; }
.footer-shell { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: end; }
.footer-copy { max-width: 480px; margin: 15px 0 0; color: var(--muted); font-size: 0.9rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { color: var(--muted); font-size: 0.84rem; font-weight: 700; text-decoration: none; }
.copyright { grid-column: 1 / -1; margin-top: 18px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--subtle); font-size: 0.76rem; }

.document-main { padding: 70px 0 92px; }
.document-wrap { width: min(calc(100% - 40px), 880px); margin-inline: auto; }
.document-hero { margin-bottom: 26px; }
.document-hero h1 { margin: 16px 0 12px; font-size: clamp(2.7rem, 7vw, 5rem); line-height: 1; letter-spacing: -0.055em; }
.document-hero p { max-width: 700px; color: var(--muted); font-size: 1.08rem; }
.tag { padding: 6px 10px; border-radius: 999px; background: var(--lime-soft); }

.document-card { border: 1px solid var(--line); border-radius: var(--radius-xl); background: white; padding: clamp(25px, 6vw, 58px); box-shadow: var(--shadow-soft); }
.document-card h2 { margin: 2.2em 0 0.55em; color: var(--forest); font-size: 1.35rem; letter-spacing: -0.025em; }
.document-card h2:first-of-type { margin-top: 0.5em; }
.document-card p, .document-card li { color: #40544d; }
.document-card ul { padding-left: 23px; }
.document-card li + li { margin-top: 10px; }
.document-card a { color: var(--forest); font-weight: 800; }
.callout { margin-top: 28px; border-radius: 18px; background: var(--lime-soft); padding: 18px 20px; }

@media (max-width: 860px) {
  .site-nav a:not(.nav-cta) { display: none; }
  .hero { padding-top: 60px; }
  .hero-grid, .local-grid, .journey { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .button-row, .founder-note { justify-content: center; }
  .hero-copy > p { margin-inline: auto; }
  .product-stage { min-height: 580px; }
  .phone { transform: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 220px; }
  .journey-copy { position: static; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .nav-shell, .section-shell, .footer-shell, .document-wrap { width: min(calc(100% - 28px), var(--content)); }
  .nav-shell { min-height: 68px; }
  .nav-cta { padding: 8px 12px; }
  .hero { padding: 48px 0 50px; }
  .hero h1 { font-size: clamp(3rem, 15.7vw, 4.6rem); }
  .product-stage { min-height: 535px; }
  .phone { width: 330px; }
  .phone-screen { min-height: 505px; padding: 23px 16px 16px; }
  .game-main { padding: 17px; }
  .section { padding: 70px 0; }
  .footer-shell { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .copyright { grid-column: auto; }
  .document-main { padding-top: 48px; }
}

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