:root {
  --zg-green: #288040;
  --zg-green-dark: #0f3d22;
  --zg-green-deep: #082615;
  --zg-green-soft: #e9f6e7;
  --zg-yellow: #fff000;
  --zg-yellow-dark: #d0c000;
  --zg-black: #06150b;
  --zg-white: #ffffff;
  --zg-surface: #f6faf2;
  --zg-muted: #5f7466;
  --zg-line: rgba(6, 21, 11, 0.12);
  --zg-shadow: 0 22px 60px rgba(6, 21, 11, 0.12);
  --zg-radius: 8px;
  --zg-max: 1180px;
  --zg-gutter: clamp(1rem, 4vw, 2rem);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--zg-black);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 240, 0, 0.16), transparent 28rem),
    linear-gradient(180deg, #fbfff6 0%, var(--zg-white) 34%, var(--zg-surface) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

main {
  position: relative;
  z-index: 1;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--zg-white);
  background: var(--zg-green-dark);
  border-radius: var(--zg-radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--zg-line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  max-width: calc(var(--zg-max) + var(--zg-gutter) * 2);
  margin: 0 auto;
  padding: 0.8rem var(--zg-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--zg-yellow);
  background: var(--zg-green);
  border: 0.18rem solid var(--zg-green-dark);
  border-radius: 50%;
  font-weight: 950;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: inset 0 -0.25rem 0 rgba(0, 0, 0, 0.12);
}

.brand-copy {
  display: grid;
  gap: 0.04rem;
}

.brand-copy strong {
  font-size: 1.04rem;
  letter-spacing: 0;
  line-height: 1.05;
}

.brand-copy span {
  color: var(--zg-muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

.nav-group {
  position: relative;
}

.nav-group summary {
  list-style: none;
  cursor: pointer;
  padding: 0.7rem 0.82rem;
  border-radius: var(--zg-radius);
  color: var(--zg-green-dark);
  font-weight: 850;
  white-space: nowrap;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "";
  display: inline-block;
  width: 0.38rem;
  height: 0.38rem;
  margin-left: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.12rem);
}

.nav-group[open] summary,
.nav-group summary:hover,
.nav-group summary:focus-visible {
  background: var(--zg-green-soft);
}

.nav-group a {
  display: block;
  text-decoration: none;
  color: var(--zg-black);
  font-weight: 750;
  padding: 0.78rem 0.9rem;
  border-radius: 6px;
}

.nav-group a:hover,
.nav-group a:focus-visible {
  color: var(--zg-green-dark);
  background: rgba(255, 240, 0, 0.25);
}

@media (min-width: 981px) {
  .nav-group[open] {
    z-index: 10;
  }

  .nav-group[open]::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
  }

  .nav-group[open] a:first-of-type {
    margin-top: 0.35rem;
  }

  .nav-group[open] a:last-of-type {
    margin-bottom: 0.35rem;
  }

  .nav-group[open] {
    background: var(--zg-white);
    border-radius: var(--zg-radius);
  }

  .nav-group[open] a {
    min-width: 13rem;
    margin-inline: 0.35rem;
  }

  .nav-group[open] {
    box-shadow: var(--zg-shadow);
  }
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.82rem 1.05rem;
  border: 0;
  border-radius: var(--zg-radius);
  text-decoration: none;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav-cta,
.button.primary {
  color: var(--zg-green-dark);
  background: var(--zg-yellow);
  box-shadow: 0 0.55rem 0 var(--zg-yellow-dark);
}

.button.secondary {
  color: var(--zg-white);
  background: var(--zg-green);
  box-shadow: 0 0.55rem 0 var(--zg-green-dark);
}

.button.ghost {
  color: var(--zg-green-dark);
  background: var(--zg-white);
  border: 1px solid var(--zg-line);
}

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

.button:active,
.nav-cta:active {
  transform: translateY(2px);
  box-shadow: 0 0.25rem 0 rgba(0, 0, 0, 0.18);
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.65rem;
  border: 1px solid var(--zg-line);
  border-radius: var(--zg-radius);
  background: var(--zg-white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.27rem 0;
  background: var(--zg-green-dark);
}

.section-pad {
  max-width: calc(var(--zg-max) + var(--zg-gutter) * 2);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6.5rem) var(--zg-gutter);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(22rem, 0.97fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: min(820px, calc(100vh - 5rem));
}

.hero-copy,
.hero-visual,
.split-section > *,
.calculator-shell > *,
.tab-panel > * {
  min-width: 0;
  max-width: 100%;
}

.hero h1,
.legal-page h1,
.thank-card h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--zg-green-dark);
  font-size: clamp(3rem, 10vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-deck {
  max-width: 58rem;
  margin: 1.25rem 0 0;
  color: #243c2d;
  font-size: clamp(1.08rem, 2.2vw, 1.36rem);
  line-height: 1.48;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--zg-green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker,
.hero-actions,
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-kicker {
  margin: 1.5rem 0;
}

.hero-kicker span,
.pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.52rem 0.75rem;
  color: var(--zg-green-dark);
  background: rgba(255, 240, 0, 0.32);
  border: 1px solid rgba(40, 128, 64, 0.22);
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.15;
}

.sport-panel {
  min-height: 31rem;
  border-radius: var(--zg-radius);
  background:
    linear-gradient(140deg, rgba(40, 128, 64, 0.94), rgba(15, 61, 34, 0.98)),
    var(--zg-green-dark);
  box-shadow: var(--zg-shadow);
  overflow: hidden;
}

.course-map {
  position: relative;
  min-height: 31rem;
  isolation: isolate;
}

.fairway {
  position: absolute;
  left: 11%;
  right: 7%;
  height: 5.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transform-origin: left center;
}

.fairway-a { top: 18%; transform: rotate(-16deg); }
.fairway-b { top: 42%; transform: rotate(8deg); }
.fairway-c { top: 63%; transform: rotate(-6deg); }

.green-pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 5.2rem;
  height: 5.2rem;
  color: var(--zg-green-dark);
  background: var(--zg-yellow);
  border: 0.55rem solid rgba(255,255,255,0.88);
  border-radius: 50%;
  font-weight: 950;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.22);
}

.pin-1 { top: 9%; right: 16%; }
.pin-2 { top: 39%; right: 9%; }
.pin-3 { bottom: 13%; right: 27%; }

.ball-dot {
  position: absolute;
  width: 1.05rem;
  height: 1.05rem;
  background: var(--zg-white);
  border-radius: 50%;
  box-shadow: 0 0 0 0.18rem rgba(255,255,255,0.35);
}

.dot-1 { left: 18%; top: 23%; }
.dot-2 { left: 28%; top: 19%; }
.dot-3 { left: 37%; top: 27%; }
.dot-4 { left: 17%; top: 51%; }
.dot-5 { left: 32%; top: 47%; }
.dot-6 { left: 48%; top: 54%; }
.dot-7 { left: 22%; top: 72%; }
.dot-8 { left: 42%; top: 69%; }
.dot-9 { left: 58%; top: 75%; }

.zippy-float {
  position: absolute;
  left: -8%;
  bottom: -17%;
  width: min(54%, 22rem);
  transform: rotate(-7deg);
  filter: drop-shadow(0 1.2rem 2rem rgba(0,0,0,0.2));
}

.visual-card {
  position: absolute;
  right: 7%;
  bottom: 7%;
  max-width: 19rem;
  padding: 1rem;
  color: var(--zg-green-dark);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--zg-radius);
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.16);
}

.visual-card strong {
  display: block;
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  line-height: 1;
}

.section-heading {
  max-width: 52rem;
  margin: 0 0 clamp(1.7rem, 4vw, 3rem);
}

.section-heading h2,
.split-section h2,
.footer-cta h2,
.form-heading h3,
.legal-band h2 {
  margin: 0;
  color: var(--zg-green-dark);
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:last-child,
.split-section p,
.footer-cta p,
.form-heading p {
  color: var(--zg-muted);
  font-size: 1.03rem;
}

.format-grid,
.venue-grid,
.check-grid,
.partner-grid,
.path-grid,
.resource-grid,
.mock-grid,
.metric-mini-grid,
.flow-grid,
.footer-grid,
.contact-direct {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 1rem;
}

.format-card,
.icon-card,
.check-card,
.mock-card,
.metric-card,
.path-card,
.resource-card,
.flow-card,
.lead-form,
.assessment-form,
.calculator-result,
.phone-mock,
.dashboard-mock,
.scorecard-mock,
.zippy-card,
.thank-card,
.legal-page,
.legal-band,
.demo-tabs,
.tab-panel,
.footer-cta {
  border: 1px solid var(--zg-line);
  border-radius: var(--zg-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0.8rem 2rem rgba(6, 21, 11, 0.06);
}

.format-card,
.icon-card,
.check-card,
.mock-card,
.metric-card,
.path-card,
.resource-card,
.flow-card {
  min-width: 0;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.format-card span {
  display: block;
  color: var(--zg-green);
  font-size: clamp(3.2rem, 9vw, 5.5rem);
  font-weight: 950;
  line-height: 0.85;
}

.format-card h3,
.icon-card h3,
.mock-card h3,
.resource-card h3,
.flow-card h3 {
  margin: 0.85rem 0 0.35rem;
  color: var(--zg-green-dark);
  font-size: 1.18rem;
  line-height: 1.15;
}

.format-card p,
.icon-card p,
.check-card p,
.mock-card p,
.resource-card p,
.flow-card p {
  margin: 0;
  color: var(--zg-muted);
}

.icon-chip,
.check-card span,
.mock-card span,
.path-card span {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--zg-green-dark);
  background: var(--zg-yellow);
  border-radius: 50%;
  font-weight: 950;
}

.check-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.check-card span {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.25rem;
  box-shadow: 0 0 0 0.32rem rgba(255, 240, 0, 0.22);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.florida-band,
.dark-cta,
.legal-band {
  max-width: calc(var(--zg-max) + var(--zg-gutter) * 2);
  border-radius: var(--zg-radius);
}

.florida-band {
  background: linear-gradient(135deg, rgba(40, 128, 64, 0.1), rgba(255, 240, 0, 0.24));
}

.dark-cta,
.legal-band {
  color: var(--zg-white);
  background: linear-gradient(135deg, var(--zg-green-dark), var(--zg-green));
}

.dark-cta h2,
.dark-cta p,
.dark-cta .eyebrow,
.legal-band h2,
.legal-band p {
  color: var(--zg-white);
}

.florida-map {
  position: relative;
  min-height: 22rem;
  display: grid;
  place-items: center;
  color: var(--zg-yellow);
  background: var(--zg-green-dark);
  border-radius: var(--zg-radius);
  overflow: hidden;
}

.florida-map span {
  width: min(46vw, 15rem);
  height: min(64vw, 22rem);
  background: var(--zg-green);
  clip-path: polygon(42% 0, 60% 8%, 70% 25%, 64% 43%, 74% 58%, 78% 78%, 66% 100%, 50% 88%, 44% 70%, 30% 56%, 36% 40%, 27% 26%);
  box-shadow: inset 0 0 0 0.75rem rgba(255, 255, 255, 0.14);
}

.florida-map b {
  position: absolute;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 1;
}

.florida-map em {
  position: absolute;
  bottom: 1rem;
  color: var(--zg-white);
  font-style: normal;
  font-weight: 850;
}

.phone-mock {
  width: min(100%, 22rem);
  margin-inline: auto;
  padding: 1rem;
  color: var(--zg-white);
  background: #0b1d11;
  border: 0.5rem solid #122b19;
  box-shadow: var(--zg-shadow);
}

.phone-top,
.dash-head,
.score-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.phone-top span,
.dash-head span {
  width: 3.5rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.app-card,
.app-row {
  margin-top: 0.75rem;
  padding: 0.9rem;
  color: var(--zg-black);
  background: var(--zg-white);
  border-radius: 7px;
}

.app-card.active {
  background: var(--zg-yellow);
}

.app-card small,
.app-card em,
.app-row span,
.demo-row span,
.module-table th,
.module-table td small {
  color: var(--zg-muted);
}

.app-card b,
.app-card em {
  display: block;
}

.app-card em {
  font-style: normal;
  font-size: 0.88rem;
}

.app-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-mock,
.scorecard-mock {
  padding: 1.1rem;
  background: var(--zg-white);
}

.metric-mini-grid {
  margin-top: 1rem;
}

.metric-mini-grid div {
  min-height: 5.2rem;
  padding: 0.9rem;
  background: var(--zg-surface);
  border: 1px solid var(--zg-line);
  border-radius: 7px;
}

.metric-mini-grid small,
.metric-mini-grid b {
  display: block;
}

.metric-mini-grid b {
  color: var(--zg-green-dark);
  font-size: 1.35rem;
}

.dash-chart {
  display: flex;
  align-items: end;
  gap: 0.65rem;
  height: 8rem;
  margin-top: 1rem;
  padding: 0.8rem;
  background: linear-gradient(180deg, rgba(40,128,64,0.08), rgba(255,240,0,0.12));
  border-radius: 7px;
}

.dash-chart span {
  flex: 1;
  min-width: 0.7rem;
  background: var(--zg-green);
  border-radius: 999px 999px 0 0;
}

.dash-chart span:nth-child(1) { height: 35%; }
.dash-chart span:nth-child(2) { height: 62%; }
.dash-chart span:nth-child(3) { height: 48%; }
.dash-chart span:nth-child(4) { height: 80%; background: var(--zg-yellow-dark); }
.dash-chart span:nth-child(5) { height: 68%; }

.scorecard-mock table,
.module-table {
  width: 100%;
  border-collapse: collapse;
}

.scorecard-mock th,
.scorecard-mock td,
.module-table th,
.module-table td {
  padding: 0.78rem;
  border-bottom: 1px solid var(--zg-line);
  text-align: left;
}

.scorecard-mock td {
  font-weight: 900;
  color: var(--zg-green-dark);
}

.score-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 0.9rem;
  background: var(--zg-yellow);
  border-radius: 7px;
}

.score-total strong {
  font-size: 2rem;
  line-height: 1;
}

.zippy-card {
  max-width: calc(var(--zg-max) + var(--zg-gutter) * 2);
  margin: 0 auto;
  padding: clamp(1.2rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 4vw, 2rem);
}

.zippy-card img {
  width: min(100%, 14rem);
  justify-self: center;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  min-width: 0;
}

.faq-list details {
  padding: 1rem;
  background: var(--zg-white);
  border: 1px solid var(--zg-line);
  border-radius: var(--zg-radius);
}

.faq-list summary {
  cursor: pointer;
  color: var(--zg-green-dark);
  font-weight: 900;
}

.form-section {
  display: grid;
  justify-items: center;
}

.lead-form,
.assessment-form {
  width: min(100%, 62rem);
  padding: clamp(1rem, 4vw, 2rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

label {
  min-width: 0;
  color: var(--zg-green-dark);
  font-weight: 850;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  min-height: 3rem;
  margin-top: 0.35rem;
  padding: 0.78rem 0.82rem;
  color: var(--zg-black);
  background: var(--zg-white);
  border: 1px solid rgba(40, 128, 64, 0.28);
  border-radius: 7px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 240, 0, 0.85);
  outline-offset: 3px;
}

.span-2 {
  grid-column: 1 / -1;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1rem;
  color: var(--zg-muted);
  font-weight: 650;
}

.consent-row input {
  width: 1.1rem;
  min-height: 1.1rem;
  margin-top: 0.25rem;
}

.hp-field {
  display: none;
}

.turnstile-slot {
  margin-top: 1rem;
}

.turnstile-note {
  margin: 0.8rem 0 0;
  color: var(--zg-muted);
  font-size: 0.9rem;
}

.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
}

.form-status {
  margin: 0;
  color: var(--zg-muted);
  font-weight: 800;
}

.form-status.success {
  color: var(--zg-green-dark);
}

.form-status.error {
  color: #8a1d1d;
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.45fr);
  gap: 1rem;
}

.calculator-shell .section-heading {
  grid-column: 1 / -1;
}

.calculator-result {
  align-self: start;
  position: sticky;
  top: 6rem;
  padding: 1.2rem;
}

.score-ring {
  display: grid;
  place-items: center;
  width: 8.5rem;
  height: 8.5rem;
  margin: 0 auto 1rem;
  color: var(--zg-green-dark);
  background: conic-gradient(var(--zg-yellow) 70%, rgba(40, 128, 64, 0.14) 0);
  border-radius: 50%;
  font-size: 2.4rem;
  font-weight: 950;
}

.table-wrap {
  max-width: calc(var(--zg-max) + var(--zg-gutter) * 2);
  margin: 0 auto;
  padding-inline: var(--zg-gutter);
  overflow-x: auto;
}

.module-table {
  min-width: 760px;
  background: var(--zg-white);
  border: 1px solid var(--zg-line);
  border-radius: var(--zg-radius);
  overflow: hidden;
}

.mock-gallery .section-heading,
.conversion-flow .section-heading {
  margin-inline: auto;
  text-align: center;
}

.demo-tabs {
  padding: 1rem;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.tab-list button {
  min-height: 2.6rem;
  padding: 0.62rem 0.75rem;
  color: var(--zg-green-dark);
  background: var(--zg-surface);
  border: 1px solid var(--zg-line);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.tab-list button[aria-selected="true"] {
  background: var(--zg-yellow);
}

.tab-panel {
  display: none;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 1rem;
  padding: clamp(1rem, 4vw, 1.5rem);
  box-shadow: none;
}

.tab-panel.active {
  display: grid;
}

.demo-screen {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  background: var(--zg-green-dark);
  border-radius: var(--zg-radius);
}

.demo-row {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.7rem;
  color: var(--zg-white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 7px;
}

.demo-row span {
  color: var(--zg-yellow);
  font-weight: 950;
}

.flow-land {
  min-height: 16rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 7px;
  background: var(--zg-green-soft);
}

.flow-land span {
  display: grid;
  place-items: center;
  min-height: 4.4rem;
  padding: 0.7rem;
  text-align: center;
  border-radius: 7px;
  font-weight: 900;
}

.flow-land.stressed span { background: #f1e9dc; }
.flow-land.review span { background: var(--zg-white); }
.flow-land.active span { background: var(--zg-yellow); }

.path-card {
  text-decoration: none;
  color: inherit;
}

.path-card strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--zg-green-dark);
  line-height: 1.2;
}

.resource-card span {
  display: inline-block;
  color: var(--zg-green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article {
  padding: 1rem;
  background: var(--zg-white);
  border-left: 0.42rem solid var(--zg-yellow);
  border-radius: 0 var(--zg-radius) var(--zg-radius) 0;
  box-shadow: 0 0.6rem 1.4rem rgba(6,21,11,0.05);
}

.legal-page,
.thank-card {
  max-width: 56rem;
  padding: clamp(1.2rem, 4vw, 2.5rem);
}

.legal-page h1,
.thank-card h1 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 7vw, 5rem);
}

.legal-page h2 {
  margin-top: 2rem;
  color: var(--zg-green-dark);
}

.thank-you {
  min-height: 64vh;
  display: grid;
  place-items: center;
}

.site-footer {
  margin-top: clamp(2rem, 5vw, 4rem);
  color: rgba(255,255,255,0.86);
  background: var(--zg-green-deep);
}

.footer-cta {
  max-width: var(--zg-max);
  margin: 0 auto;
  transform: translateY(-2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: clamp(1rem, 4vw, 2rem);
  color: var(--zg-black);
  background: var(--zg-yellow);
}

.footer-cta h2,
.footer-cta p,
.footer-cta .eyebrow {
  color: var(--zg-green-dark);
}

.footer-grid {
  max-width: calc(var(--zg-max) + var(--zg-gutter) * 2);
  margin: 0 auto;
  padding: 1rem var(--zg-gutter) 2rem;
}

.footer-grid h3 {
  margin-top: 0;
  color: var(--zg-yellow);
}

.footer-grid a,
.footer-brand a {
  display: block;
  margin: 0.42rem 0;
  color: rgba(255,255,255,0.86);
  text-decoration: none;
}

.footer-brand {
  grid-column: span 2;
}

.footer-brand-row .brand-mark {
  background: var(--zg-yellow);
  color: var(--zg-green-dark);
}

.footer-brand-row .brand-copy strong,
.footer-brand-row .brand-copy span {
  color: var(--zg-white);
}

.footer-bottom {
  max-width: calc(var(--zg-max) + var(--zg-gutter) * 2);
  margin: 0 auto;
  padding: 1rem var(--zg-gutter) 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

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

@media (max-width: 1120px) {
  .site-nav {
    gap: 0.2rem;
  }

  .nav-group summary {
    padding-inline: 0.62rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 4.55rem var(--zg-gutter) auto var(--zg-gutter);
    max-height: calc(100vh - 6rem);
    overflow: auto;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    padding: 0.75rem;
    background: var(--zg-white);
    border: 1px solid var(--zg-line);
    border-radius: var(--zg-radius);
    box-shadow: var(--zg-shadow);
  }

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

  .nav-group {
    border: 1px solid var(--zg-line);
    border-radius: var(--zg-radius);
  }

  .nav-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: normal;
  }

  .nav-group a {
    margin: 0 0.45rem 0.45rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero,
  .split-section,
  .calculator-shell,
  .tab-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 3rem;
  }

  .sport-panel {
    min-height: 24rem;
  }

  .course-map {
    min-height: 24rem;
  }

  .calculator-result {
    position: static;
  }

  .footer-cta,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .form-grid,
  .footer-grid,
  .zippy-card {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .span-2 {
    grid-column: auto;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.9rem);
  }

  .hero-actions .button,
  .form-actions .button,
  .footer-cta-actions .button {
    width: 100%;
  }

  .hero-kicker span,
  .pill-grid span {
    flex: 1 1 9rem;
    justify-content: center;
    text-align: center;
  }

  .visual-card {
    left: 6%;
    right: 6%;
    bottom: 6%;
  }

  .zippy-float {
    width: 15rem;
    left: -3rem;
  }

  .pin-1 { right: 8%; }
  .pin-2 { right: 7%; }
  .pin-3 { right: 15%; }
}

@media (max-width: 420px) {
  :root {
    --zg-gutter: 0.88rem;
  }

  .brand-copy span {
    font-size: 0.68rem;
  }

  .brand-mark {
    width: 2.42rem;
    height: 2.42rem;
  }

  .section-pad {
    padding-block: 3rem;
  }

  .format-grid,
  .venue-grid,
  .check-grid,
  .partner-grid,
  .path-grid,
  .resource-grid,
  .mock-grid,
  .metric-mini-grid,
  .flow-grid,
  .contact-direct {
    grid-template-columns: 1fr;
  }

  .phone-mock {
    border-width: 0.35rem;
  }
}
