:root {
  --zg-green: #0e4b2a;
  --zg-green-dark: #041b12;
  --zg-green-deep: #082d1c;
  --zg-green-soft: #163f29;
  --zg-lime: #fff200;
  --zg-gold: #e6b44c;
  --zg-cream: #edf4e8;
  --zg-cream-2: #dfeada;
  --zg-text: #f5f8ee;
  --zg-muted: #b8cbb4;
  --zg-ink: #06140d;
  --zg-line: rgba(255, 242, 0, 0.18);
  --zg-card: rgba(7, 45, 28, 0.86);
  --zg-card-2: rgba(18, 74, 43, 0.78);
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.22);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--zg-text);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 242, 0, 0.09), transparent 28rem),
    radial-gradient(circle at 85% 0%, rgba(230, 180, 76, 0.12), transparent 30rem),
    linear-gradient(180deg, var(--zg-green-dark), #062718 38%, #0b351f 100%);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 0.75rem 1rem;
  color: var(--zg-ink);
  background: var(--zg-lime);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.container.narrow {
  width: min(840px, calc(100% - 40px));
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 27, 18, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 242, 0, 0.16);
}

.nav-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 54px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.3vw, 1.35rem);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a {
  color: var(--zg-text);
  text-decoration: none;
  opacity: 0.9;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--zg-lime);
  opacity: 1;
}

.nav-cta {
  padding: 0.65rem 0.9rem;
  color: var(--zg-ink) !important;
  background: var(--zg-lime);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(255, 242, 0, 0.18);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--zg-text);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 27, 18, 0.94), rgba(4, 27, 18, 0.78) 44%, rgba(4, 27, 18, 0.5)),
    url("/assets/img/hero-clubhouse.png") center / cover no-repeat;
  transform: scale(1.03);
  filter: saturate(1.04);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 27, 18, 0.06), rgba(4, 27, 18, 0.88)),
    radial-gradient(circle at 78% 20%, rgba(255, 242, 0, 0.13), transparent 30rem);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-copy h1,
.section h2,
.section-copy h2,
.weekly-section h2 {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 6.6rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.section h2,
.section-copy h2,
.weekly-section h2 {
  font-size: clamp(2rem, 4.4vw, 4.7rem);
}

.hero-lead {
  max-width: 680px;
  margin: 1.4rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: #e6f1dd;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--zg-lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--zg-ink);
  background: var(--zg-lime);
  box-shadow: 0 13px 0 rgba(3, 54, 33, 0.95), 0 20px 32px rgba(0, 0, 0, 0.26);
}

.button-secondary {
  color: var(--zg-text);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 2rem;
}

.mini-stats span {
  min-height: 86px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 242, 0, 0.18);
  border-left: 4px solid var(--zg-lime);
  border-radius: 0.75rem;
  color: #dbe8d4;
  box-shadow: var(--shadow-card);
}

.mini-stats strong {
  display: block;
  color: var(--zg-lime);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-media {
  margin: 0;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft);
  transform: rotate(1.25deg);
}

.hero-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.number-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--zg-green);
  border-top: 6px solid var(--zg-lime);
  border-bottom: 1px solid rgba(255, 242, 0, 0.2);
}

.number-item {
  padding: clamp(1rem, 2vw, 1.6rem);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.number-item:last-child {
  border-right: 0;
}

.number-item strong {
  display: block;
  color: var(--zg-lime);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1;
}

.number-item span {
  color: #eaf4df;
  font-weight: 700;
}

.section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.dark-section {
  background:
    linear-gradient(135deg, rgba(4, 27, 18, 0.96), rgba(11, 53, 31, 0.94)),
    radial-gradient(circle at 88% 20%, rgba(255, 242, 0, 0.1), transparent 28rem);
}

.matrix-section,
.play-steps,
.practice-section,
.faq-section {
  background: rgba(7, 45, 28, 0.74);
}

.media-feature,
.weekly-section,
.clubhouse-section {
  background: rgba(4, 27, 18, 0.92);
}

.comparison-section,
.newsletter-section {
  background: rgba(8, 45, 28, 0.96);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.9fr);
}

.split-grid.reverse .section-copy {
  order: 2;
}

.section-copy p,
.section-header p,
.weekly-section p,
.practice-copy p {
  color: var(--zg-muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.section-header {
  max-width: 850px;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.image-card,
.reveal-card {
  margin: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.matrix-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.matrix-card {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1rem, 2.8vw, 1.6rem);
  background: rgba(4, 27, 18, 0.72);
  border: 1px solid rgba(255, 242, 0, 0.18);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-card);
}

.matrix-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.9rem;
}

.matrix-row span:first-child {
  color: var(--zg-lime);
  font-size: 1.35rem;
  font-weight: 950;
}

.matrix-row span:last-child {
  color: #edf6e8;
  font-weight: 700;
}

.matrix-row.total {
  background: var(--zg-lime);
}

.matrix-row.total span {
  color: var(--zg-ink);
}

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

.step-card,
.comparison-grid article,
.feeling-cards article,
.lead-form,
.faq-list details {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

.step-card {
  padding: 1.35rem;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  color: var(--zg-ink);
  background: var(--zg-lime);
  border-radius: 0.75rem;
  font-weight: 950;
}

.step-card h3,
.comparison-grid h3,
.practice-copy h3,
.feeling-cards strong {
  margin: 0 0 0.55rem;
  color: var(--zg-text);
  font-size: 1.18rem;
}

.step-card p,
.comparison-grid li,
.feeling-cards span,
.faq-list p {
  color: var(--zg-muted);
}

.media-frame {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.media-frame video {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
  background: #000;
}

.photo-pair {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1rem;
  align-items: end;
}

.photo-pair .lower {
  transform: translateY(2rem);
}

.pill-list,
.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.pill-list span,
.audience-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  color: #eff7e9;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 242, 0, 0.16);
  border-radius: 999px;
  font-weight: 800;
}

.practice-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.practice-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background: rgba(4, 27, 18, 0.76);
  border: 1px solid rgba(255, 242, 0, 0.18);
  border-radius: 1.2rem;
}

.image-card.wide img {
  min-height: 360px;
}

.weekly-section {
  text-align: center;
}

.weekly-section .eyebrow {
  margin-top: 0;
}

.audience-grid {
  justify-content: center;
}

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

.comparison-grid article {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.comparison-grid .highlight {
  border-color: rgba(255, 242, 0, 0.5);
  background: linear-gradient(135deg, rgba(255, 242, 0, 0.15), rgba(12, 79, 44, 0.9));
}

.comparison-grid ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.feeling-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.feeling-cards article {
  padding: 1rem;
}

.feeling-cards strong,
.feeling-cards span {
  display: block;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  padding: 1rem 1.2rem;
}

.faq-list summary {
  color: #f7fff2;
  font-weight: 900;
  cursor: pointer;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.direct-contact {
  padding-top: 1rem;
  color: #eff8e8 !important;
  font-weight: 800;
}

.direct-contact span {
  color: var(--zg-lime);
}

.lead-form {
  padding: clamp(1.15rem, 3vw, 1.65rem);
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: #edf7e7;
  font-size: 0.88rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  color: var(--zg-text);
  background: rgba(3, 20, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.75rem;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(255, 242, 0, 0.28);
  border-color: var(--zg-lime);
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--zg-lime);
  font-weight: 800;
}

.site-footer {
  background: #03120c;
  border-top: 1px solid rgba(255, 242, 0, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 3rem 0;
}

.footer-logo {
  margin-bottom: 1rem;
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  font-size: 0.88rem;
  color: var(--zg-lime);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer span {
  color: var(--zg-muted);
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 0.55rem;
  color: var(--zg-text);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--zg-lime);
}

.social-icons {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 1.2rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100svh - 78px);
    padding: 1rem 20px 1.4rem;
    background: rgba(4, 27, 18, 0.98);
    border-bottom: 1px solid rgba(255, 242, 0, 0.18);
    overflow-y: auto;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.9rem 1rem;
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-grid,
  .split-grid,
  .split-grid.reverse,
  .matrix-grid,
  .practice-grid,
  .newsletter-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .split-grid.reverse .section-copy {
    order: 0;
  }

  .hero-section {
    min-height: auto;
    padding-top: clamp(3rem, 12vw, 5rem);
  }

  .hero-media {
    transform: none;
  }

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

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

  .photo-pair .lower {
    transform: none;
  }
}

@media (max-width: 720px) {
  .container,
  .container.narrow,
  .nav-shell,
  .footer-bottom {
    width: min(100% - 28px, 1120px);
  }

  .brand img {
    height: 48px;
  }

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

  .mini-stats,
  .number-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .number-item:nth-child(5) {
    grid-column: 1 / -1;
  }

  .steps-grid,
  .feeling-cards,
  .footer-grid,
  .photo-pair {
    grid-template-columns: 1fr;
  }

  .matrix-row {
    grid-template-columns: 1fr;
  }

  .image-card img {
    min-height: 240px;
  }

  .button {
    width: 100%;
  }
}

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