:root {
  --green: #008348;
  --deep-green: #002f1d;
  --action-green: #52ff6b;
  --gold: #f6c85f;
  --yellow: #ffe05c;
  --black: #080b0a;
  --ink: #111712;
  --muted: #68726c;
  --line: #dce7df;
  --white: #ffffff;
  --soft: #f4f8f1;
  --shadow: 0 24px 70px rgba(0, 47, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(8, 11, 10, 0.9);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--yellow);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  height: calc(100svh - 126px);
  min-height: 590px;
  max-height: 780px;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  align-items: stretch;
  background: var(--black);
  color: var(--white);
}

.hero-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 11, 10, 0) 45%, rgba(8, 11, 10, 0.9) 100%),
    linear-gradient(0deg, rgba(0, 47, 29, 0.15), rgba(0, 47, 29, 0.15));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.hero-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 62px);
  background:
    radial-gradient(circle at 82% 20%, rgba(82, 255, 107, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(0, 131, 72, 0.32), transparent 42%);
}

.eyebrow,
.tag {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.booking-strip span {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.45rem, 5.3vw, 4.55rem);
  line-height: 1;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.offer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.offer-nav a {
  display: grid;
  gap: 6px;
  min-height: 132px;
  align-content: center;
  padding: 24px clamp(18px, 3vw, 38px);
  border-right: 1px solid var(--line);
  transition: background 160ms ease, color 160ms ease;
}

.offer-nav a:last-child {
  border-right: 0;
}

.offer-nav a:hover {
  background: var(--deep-green);
  color: var(--white);
}

.offer-nav span {
  color: var(--green);
  font-weight: 950;
}

.offer-nav strong {
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  line-height: 1.08;
}

.offer-nav a:hover span {
  color: var(--gold);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 12px 30px rgba(255, 224, 92, 0.2);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button.analytics-cta {
  background: var(--green);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 131, 72, 0.22);
}

.button.compact {
  min-height: 42px;
  background: var(--green);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.hero-stats div {
  padding: 14px;
  border: 1px solid rgba(82, 255, 107, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-stats dt {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  font-weight: 950;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.booking-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 18px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 54px);
  background: var(--deep-green);
  color: var(--white);
}

.booking-strip div {
  min-width: 0;
}

.booking-strip span,
.booking-strip strong {
  display: block;
}

.booking-strip strong {
  font-size: clamp(1rem, 1.7vw, 1.45rem);
}

.section {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 4vw, 54px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--white);
}

.credibility {
  background: var(--deep-green);
  color: var(--white);
}

.cred-intro {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-bottom: 30px;
}

.credibility .eyebrow {
  color: var(--gold);
}

.cred-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.cred-row article {
  min-height: 230px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(82, 255, 107, 0.1), transparent 55%),
    #071d14;
}

.cred-row p {
  color: rgba(255, 255, 255, 0.68);
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.08rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid article,
.drill-card,
.estimate-card,
.detail-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.proof-grid article {
  min-height: 240px;
  padding: 22px;
}

.proof-grid span {
  color: var(--gold);
  font-size: 2.4rem;
  font-weight: 950;
}

.proof-grid p,
.program-card p,
.drill-card p,
.detail-list p,
.faq p,
.estimate-card li {
  color: var(--muted);
}

.programs {
  background: linear-gradient(180deg, var(--soft), #e8f3e9);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

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

.program-card {
  overflow: hidden;
  border: 1px solid rgba(0, 47, 29, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(0, 47, 29, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.program-card.active,
.program-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

.program-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 48%;
}

.program-card[data-track="guard"] img {
  object-position: center 34%;
}

.program-card[data-track="wing"] img {
  object-position: center 0%;
}

.program-card[data-track="foundation"] img {
  object-position: center top;
}

.program-card div {
  padding: 22px;
}

.workout-lab {
  background: var(--black);
  color: var(--white);
}

.workout-lab .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.tab {
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.tab.active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

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

.drill-card {
  min-height: 230px;
  padding: 22px;
  background: #111712;
  border-color: rgba(255, 255, 255, 0.12);
}

.drill-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--action-green);
  font-weight: 950;
}

.drill-card p {
  color: rgba(255, 255, 255, 0.66);
}

.drill-card.is-hidden {
  display: none;
}

.curriculum {
  background: var(--white);
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.module-card {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 131, 72, 0.08), transparent 48%),
    #fbfdf9;
}

.module-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.module-card li + li {
  margin-top: 8px;
}

.session-template {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(320px, 1.38fr);
  gap: 28px;
  align-items: start;
  margin-top: 24px;
  padding: 28px;
  border-radius: 8px;
  background: var(--deep-green);
  color: var(--white);
}

.session-template .eyebrow {
  color: var(--gold);
}

.session-template ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.74);
}

.session-template strong {
  color: var(--yellow);
}

.analytics {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 224, 92, 0.18), transparent 28%),
    var(--deep-green);
  color: var(--white);
}

.analytics .eyebrow {
  color: var(--gold);
}

.analytics-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.analytics-actions {
  margin-top: 24px;
}

.dashboard-preview {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 11, 10, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.dashboard-head,
.metric-grid,
.analytics-list {
  margin-bottom: 16px;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.dashboard-head span,
.dashboard-head strong,
.dashboard-head p {
  display: block;
  margin: 0;
}

.dashboard-head span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-head p {
  color: var(--yellow);
  font-weight: 950;
}

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

.metric-grid article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-grid span,
.metric-grid strong {
  display: block;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 800;
}

.metric-grid strong {
  margin: 4px 0 10px;
  font-size: 1.55rem;
}

.meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

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

.analytics-list {
  margin-bottom: 0;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.analytics-list ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.analytics-list li + li {
  margin-top: 7px;
}

.portal-preview {
  background: var(--white);
}

.portal-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.portal-preview-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 131, 72, 0.08), transparent 48%),
    #fbfdf9;
  box-shadow: 0 16px 45px rgba(0, 47, 29, 0.08);
}

.portal-preview-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-preview-grid p {
  color: var(--muted);
}

.portal-actions {
  margin-top: 24px;
}

.nil-offers {
  background: var(--black);
  color: var(--white);
}

.nil-offers .section-heading p:not(.eyebrow),
.nil-card p {
  color: rgba(255, 255, 255, 0.68);
}

.nil-offers .eyebrow,
.nil-card .tag {
  color: var(--gold);
}

.nil-grid,
.download-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.nil-grid {
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  align-items: stretch;
}

.nil-card,
.download-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 131, 72, 0.22), transparent 52%),
    #111712;
}

.nil-card.featured,
.download-card.featured {
  border-color: rgba(255, 224, 92, 0.48);
  background:
    linear-gradient(135deg, rgba(255, 224, 92, 0.14), transparent 48%),
    #071d14;
}

.nil-card.advisement {
  border-color: rgba(82, 255, 107, 0.36);
  background:
    linear-gradient(135deg, rgba(82, 255, 107, 0.12), transparent 48%),
    #071d14;
}

.nil-photo {
  position: relative;
  min-height: 520px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #111712;
  box-shadow: none;
  outline: 0;
}

.nil-photo::before {
  display: none;
  content: none;
}

.nil-photo::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 11, 10, 0.08), rgba(8, 11, 10, 0.2)),
    linear-gradient(0deg, rgba(0, 47, 29, 0.12), rgba(0, 47, 29, 0.12));
  pointer-events: none;
}

.nil-photo img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.nil-note {
  padding: 12px;
  border: 1px solid rgba(246, 200, 95, 0.3);
  border-radius: 8px;
  background: rgba(246, 200, 95, 0.08);
  color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 750;
}

.nil-price {
  margin: 24px 0;
  color: var(--yellow);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 950;
  line-height: 1;
}

.nil-page {
  background: var(--black);
}

.nil-page .site-nav.always-open {
  display: flex;
}

.nil-hero {
  display: grid;
  min-height: 58svh;
  align-content: end;
  gap: 18px;
  padding: clamp(70px, 12vw, 130px) clamp(18px, 6vw, 76px);
  background:
    linear-gradient(0deg, rgba(8, 11, 10, 0.94), rgba(8, 11, 10, 0.5)),
    linear-gradient(135deg, rgba(0, 131, 72, 0.72), rgba(246, 200, 95, 0.18)),
    url("assets/coach-harris-court.jpg") center 42% / cover;
  color: var(--white);
}

.nil-hero.business {
  background:
    linear-gradient(0deg, rgba(8, 11, 10, 0.94), rgba(8, 11, 10, 0.5)),
    linear-gradient(135deg, rgba(0, 47, 29, 0.86), rgba(246, 200, 95, 0.2)),
    url("assets/coach-harris-champs.jpg") center 52% / cover;
}

.nil-hero.download {
  min-height: 46svh;
  background:
    linear-gradient(0deg, rgba(8, 11, 10, 0.94), rgba(8, 11, 10, 0.56)),
    linear-gradient(135deg, rgba(0, 131, 72, 0.7), rgba(8, 11, 10, 0.2)),
    url("assets/coach-harris-ball.jpg") center 35% / cover;
}

.nil-hero .eyebrow {
  color: var(--gold);
}

.nil-hero h1 {
  max-width: 980px;
}

.nil-hero p:not(.eyebrow) {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.nil-disclaimer,
.download-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--white);
  color: var(--ink);
}

.disclaimer-panel {
  max-width: 1060px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 131, 72, 0.08), transparent 42%),
    #fbfdf9;
  box-shadow: var(--shadow);
}

.disclaimer-panel p,
.disclaimer-panel li,
.download-card p {
  color: var(--muted);
}

.disclaimer-panel li + li {
  margin-top: 8px;
}

.nil-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.download-card {
  border-color: var(--line);
  background: #fbfdf9;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.download-card.featured {
  border-color: rgba(0, 131, 72, 0.32);
  background:
    linear-gradient(135deg, rgba(0, 131, 72, 0.08), transparent 50%),
    #fbfdf9;
}

.session-builder {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(0, 131, 72, 0.1), transparent 42%),
    var(--white);
}

.builder-panel {
  min-width: 0;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.booking-form label,
.duration-control {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--deep-green);
  font-weight: 850;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdf9;
  color: var(--ink);
  font: inherit;
}

.duration-control,
.check-row,
.booking-form .full {
  grid-column: 1 / -1;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdf9;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--green);
}

.range-meta,
.price-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

input[type="range"] {
  accent-color: var(--green);
}

.estimate-card {
  position: sticky;
  top: 96px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.estimate-card .tag {
  color: var(--green);
}

.price-line {
  align-items: baseline;
  margin: 12px 0;
}

.price-line span {
  color: var(--muted);
}

.price-line strong {
  font-size: 1.45rem;
}

.monthly-line strong {
  color: var(--green);
}

.estimate-card hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 20px 0;
}

.estimate-card ul {
  padding-left: 18px;
}

.estimate-card .secondary {
  margin-top: 18px;
  background: var(--deep-green);
  color: var(--white);
}

.details {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(28px, 5vw, 70px);
  background: var(--soft);
}

.praise {
  background: var(--black);
  color: var(--white);
}

.praise .section-heading p:not(.eyebrow),
.praise-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.praise .eyebrow {
  color: var(--gold);
}

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

.praise-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.trusted-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trusted-strip span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.trusted-strip strong {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(246, 200, 95, 0.36);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 0.9rem;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-list article {
  padding: 22px;
}

.faq {
  background: var(--white);
}

.faq details {
  max-width: 980px;
  border-top: 1px solid var(--line);
}

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

.faq summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--deep-green);
  font-size: 1.1rem;
  font-weight: 900;
}

.faq p {
  margin-top: 0;
  padding-bottom: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--black);
  color: var(--white);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer a {
  color: var(--yellow);
  font-weight: 900;
}

.portal-page,
.app-page {
  background: #edf5ee;
}

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

.portal-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: end;
  padding: clamp(62px, 10vw, 118px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(0deg, rgba(8, 11, 10, 0.92), rgba(8, 11, 10, 0.42)),
    linear-gradient(135deg, rgba(0, 131, 72, 0.72), rgba(246, 200, 95, 0.18)),
    url("assets/coach-harris-ball.jpg") center 30% / cover;
  color: var(--white);
}

.portal-hero .eyebrow {
  color: var(--gold);
}

.portal-hero p:not(.eyebrow),
.portal-note p {
  color: rgba(255, 255, 255, 0.76);
}

.portal-note {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 11, 10, 0.72);
  backdrop-filter: blur(10px);
}

.portal-note strong {
  display: block;
  color: var(--yellow);
  font-size: 1.1rem;
}

.portal-shell {
  padding: clamp(28px, 5vw, 56px) clamp(18px, 4vw, 54px);
}

.portal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.portal-tab {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--deep-green);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.portal-tab.active {
  border-color: var(--green);
  background: var(--deep-green);
  color: var(--white);
}

.portal-panel {
  display: none;
}

.portal-panel.active {
  display: block;
}

.portal-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.portal-card {
  min-width: 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(0, 47, 29, 0.08);
}

.portal-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.55rem);
}

.portal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.portal-form label,
.portal-dashboard-head label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--deep-green);
  font-weight: 850;
}

.portal-form input,
.portal-form select,
.portal-form textarea,
.portal-dashboard-head select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdf9;
  color: var(--ink);
  font: inherit;
}

.portal-form textarea {
  resize: vertical;
}

.portal-form .full {
  grid-column: 1 / -1;
}

.login-help {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--deep-green);
}

.login-help span {
  color: var(--green);
  font-weight: 950;
}

.family-mode .admin-only {
  display: none !important;
}

.restricted-note {
  margin: 14px 0 0;
  padding: 12px;
  border: 1px solid rgba(0, 131, 72, 0.22);
  border-radius: 8px;
  background: var(--soft);
  color: var(--deep-green);
  font-weight: 800;
}

.stack-heading {
  margin-top: 24px;
}

.portal-dashboard-head {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(220px, 320px);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 131, 72, 0.1), transparent 44%),
    var(--white);
}

.portal-dashboard-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 3rem);
}

.portal-dashboard-head p:not(.tag) {
  color: var(--muted);
}

.portal-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.portal-metrics article {
  min-height: 148px;
  padding: 18px;
  border: 1px solid rgba(0, 47, 29, 0.14);
  border-radius: 8px;
  background: var(--deep-green);
  color: var(--white);
}

.portal-metrics span,
.portal-metrics strong {
  display: block;
}

.portal-metrics span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

.portal-metrics strong {
  margin: 6px 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.note-feed {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.note-feed article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdf9;
}

.note-feed strong,
.note-feed span,
.note-feed small {
  display: block;
}

.note-feed span {
  color: var(--green);
  font-weight: 850;
}

.note-feed p,
.note-feed small,
.development-plan dd {
  color: var(--muted);
}

.note-feed small {
  font-weight: 750;
}

.development-plan dl {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
}

.development-plan div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdf9;
}

.development-plan dt {
  color: var(--green);
  font-weight: 950;
}

.development-plan dd {
  margin: 4px 0 0;
}

.app-page {
  color: var(--ink);
}

.app-shell {
  position: relative;
  max-width: 520px;
  min-height: 100svh;
  margin: 0 auto;
  padding: 14px 14px 86px;
  background: #edf5ee;
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(8, 11, 10, 0.94);
  color: var(--white);
}

.app-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.app-brand strong,
.app-brand small {
  display: block;
}

.app-brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.app-link {
  color: var(--yellow);
  font-weight: 900;
}

.app-hero {
  margin: 14px 0;
  padding: 28px 18px;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(8, 11, 10, 0.88), rgba(8, 11, 10, 0.36)),
    url("assets/coach-harris-ball.jpg") center 36% / cover;
  color: var(--white);
}

.app-hero .eyebrow {
  color: var(--gold);
}

.app-hero h1 {
  font-size: 2.35rem;
}

.app-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.app-login-card,
.app-card {
  margin-bottom: 14px;
}

.app-login-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.app-login-card .portal-form {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.app-login-card .button {
  margin-top: 10px;
}

.app-dashboard .portal-dashboard-head {
  grid-template-columns: 1fr;
  padding: 18px;
}

.app-dashboard .portal-dashboard-head h2 {
  font-size: 1.7rem;
}

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

.app-metrics article {
  min-height: 134px;
}

.app-bottom-nav {
  position: fixed;
  right: 50%;
  bottom: 12px;
  z-index: 15;
  display: grid;
  width: min(492px, calc(100vw - 28px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 11, 10, 0.94);
  color: var(--white);
  transform: translateX(50%);
}

.app-bottom-nav a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

.app-bottom-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
}

@media (max-width: 1060px) {
  .hero {
    height: auto;
    max-height: none;
    grid-template-columns: 1fr;
  }

  .hero-media {
    height: 52svh;
    min-height: 52svh;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(8, 11, 10, 0.9), rgba(8, 11, 10, 0.08) 70%);
  }

  .booking-strip,
  .offer-nav,
  .split,
  .analytics,
  .session-builder,
  .details {
    grid-template-columns: 1fr;
  }

  .drill-grid,
  .curriculum-grid,
  .nil-grid,
  .download-section,
  .portal-preview-grid,
  .portal-metrics,
  .cred-row,
  .praise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .estimate-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: 73px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(8, 11, 10, 0.98);
  }

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

  .site-nav a {
    padding: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    height: 54svh;
    min-height: 54svh;
  }

  .hero-media img {
    object-position: center 35%;
  }

  .hero-content {
    padding: 30px 18px 44px;
  }

  .hero-stats,
  .booking-strip,
  .offer-nav,
  .proof-grid,
  .program-grid,
  .drill-grid,
  .curriculum-grid,
  .nil-grid,
  .download-section,
  .metric-grid,
  .portal-hero,
  .portal-preview-grid,
  .portal-two-col,
  .portal-dashboard-head,
  .portal-metrics,
  .portal-form,
  .cred-row,
  .praise-grid,
  .booking-form,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .offer-nav a {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-strip {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nil-page .site-nav.always-open {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .portal-page .site-nav.always-open {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .portal-form .full {
    grid-column: auto;
  }
}
