:root {
  --ink: #17202a;
  --muted: #5f6f7c;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: rgba(23, 32, 42, 0.14);
  --coral: #e95f4f;
  --coral-dark: #c93f32;
  --mint: #69b89f;
  --teal: #155f65;
  --navy: #172b4d;
  --gold: #f4bc4b;
  --shadow: 0 22px 60px rgba(18, 31, 39, 0.16);
  --image-band-url: url("./assets/coach-huddle.png");
  --identity-url: url("./assets/boardroom-leadership.png");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(11, 18, 28, 0.74), rgba(11, 18, 28, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(13, 20, 31, 0.32);
  backdrop-filter: blur(16px);
}

.nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.header-cta {
  justify-self: end;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #1e2430;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(244, 188, 75, 0.28);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(20px, 6vw, 82px) 30px;
  color: var(--white);
}

.camp-hero {
  position: relative;
  display: grid;
  min-height: 72vh;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(20px, 6vw, 82px) 72px;
  color: var(--white);
}

.camp-hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(11, 20, 31, 0.84), rgba(11, 20, 31, 0.26)),
    url("./assets/coach-huddle.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-media,
.image-band::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(11, 20, 31, 0.84), rgba(11, 20, 31, 0.26)),
    url("./assets/hero-hardcourt.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(11, 15, 22, 0.9), rgba(11, 15, 22, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding-bottom: 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--coral-dark);
}

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

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.95;
}

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

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.trust-line {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 850;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(233, 95, 79, 0.35);
}

.button.primary:hover {
  background: var(--coral-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1060px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel > div {
  padding: 22px;
  background: rgba(10, 18, 28, 0.34);
}

.metric {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.metric-label {
  display: block;
  max-width: 260px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 6vw, 82px);
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.credibility-strip div {
  padding: 28px clamp(20px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.credibility-strip div:last-child {
  border-right: 0;
}

.credibility-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credibility-strip p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 850;
}

.section-intro {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-intro p:not(.eyebrow),
.program-copy p,
.parent-section p,
.podcast-section p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.reality-layout,
.how-grid,
.skill-columns,
.proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.reality-list,
.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 28px 28px 28px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 31, 39, 0.06);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 760;
}

.reality-note,
.fit-panel {
  padding: 28px;
  border: 1px solid rgba(233, 95, 79, 0.2);
  border-radius: 8px;
  background: #fff0dd;
}

.reality-note p,
.fit-panel p {
  margin-bottom: 0;
  color: #5d5148;
}

.photo-story-section {
  background: var(--white);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  min-height: 560px;
}

.photo-card {
  position: relative;
  display: grid;
  min-height: 260px;
  align-items: end;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 15, 24, 0.04), rgba(8, 15, 24, 0.72));
}

.photo-card figcaption {
  position: relative;
  padding: 24px;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
}

.photo-play {
  grid-row: span 2;
  background-image: url("./assets/hero-hardcourt.png");
}

.photo-coach {
  background-image: url("./assets/coach-huddle.png");
}

.photo-friends {
  background-image: url("./assets/teammate-friends.png");
}

.problem-grid article,
.outcome-grid article,
.audience-columns article {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 31, 39, 0.06);
}

.audience-section {
  background: var(--white);
}

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

.audience-grid article,
.skill-columns article,
.proof-grid blockquote {
  min-height: 100%;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 31, 39, 0.06);
}

.card-lead {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 1.18rem;
  font-weight: 900;
}

.audience-grid p:not(.card-lead),
.skill-columns li {
  color: var(--muted);
}

.problem-grid p,
.outcome-grid p,
.audience-columns li {
  color: var(--muted);
}

.program-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  background: #eef7f4;
}

.paths-section {
  background: #101820;
  color: var(--white);
}

.paths-section .section-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

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

.path-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.path-grid h3,
.path-grid p,
.path-grid a {
  margin-left: 24px;
  margin-right: 24px;
}

.path-grid h3 {
  margin-top: 24px;
}

.path-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.path-grid a {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold);
  text-decoration-color: rgba(244, 188, 75, 0.42);
}

.path-image {
  min-height: 220px;
  background-position: center;
  background-size: cover;
}

.path-team {
  background-image: url("./assets/coach-huddle.png");
}

.path-classroom {
  background-image: url("./assets/athlete-reflection.png");
}

.path-parent {
  background-image: url("./assets/teammate-friends.png");
}

.program-copy {
  position: sticky;
  top: 108px;
}

.text-link {
  color: var(--teal);
  font-weight: 850;
  text-decoration-color: rgba(21, 95, 101, 0.32);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.program-list {
  display: grid;
  gap: 14px;
}

.module {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(21, 95, 101, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.module span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
}

.module p {
  margin-bottom: 0;
  color: var(--muted);
}

.image-band {
  position: relative;
  display: grid;
  min-height: 440px;
  align-items: end;
  overflow: hidden;
  padding: clamp(40px, 8vw, 82px);
  color: var(--white);
}

.image-band::before {
  content: "";
  background-image:
    linear-gradient(90deg, rgba(20, 38, 56, 0.82), rgba(20, 38, 56, 0.16)),
    var(--image-band-url);
}

.image-band-copy {
  position: relative;
  max-width: 760px;
}

.image-band-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.outcome-grid {
  grid-template-columns: repeat(4, 1fr);
}

.skills-section,
.proof-section {
  background: #f6f1e8;
}

.skill-columns ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.proof-grid blockquote {
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 760;
}

.proof-grid cite {
  display: block;
  margin-top: 18px;
  color: var(--coral-dark);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 900;
}

.gated-section {
  background: #eef7f4;
}

.gated-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 480px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.gated-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.gate-note {
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.72);
}

.gate-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(21, 95, 101, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.gate-form h3 {
  font-size: 1.55rem;
}

.hidden-field {
  display: none;
}

.gate-form label:not(.gate-checkbox) {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.gate-form input[type="email"],
.gate-form input[type="text"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
}

.gate-form input:focus {
  outline: 3px solid rgba(244, 188, 75, 0.42);
  border-color: var(--gold);
}

.gate-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
}

.gate-checkbox input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.gate-message {
  min-height: 22px;
  margin: 0;
  color: var(--coral-dark);
  font-weight: 850;
}

.gate-message.success {
  color: var(--teal);
}

.presentation-library {
  margin-top: clamp(42px, 7vw, 82px);
  padding-top: clamp(36px, 6vw, 64px);
  border-top: 1px solid rgba(21, 95, 101, 0.18);
}

.presentation-library.locked {
  display: none;
}

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

.presentation-card {
  padding: 18px;
  border: 1px solid rgba(21, 95, 101, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 31, 39, 0.06);
}

.presentation-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 6px;
  background: #101820;
}

.presentation-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.presentation-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: #fff0dd;
  color: var(--coral-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.parent-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 80px);
  background: var(--white);
}

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

.audience-columns ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.podcast-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.podcast-section > div {
  max-width: 780px;
}

.listen-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.identity-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--white);
}

.identity-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(13, 22, 33, 0.9), rgba(13, 22, 33, 0.54), rgba(13, 22, 33, 0.18)),
    var(--identity-url);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.identity-section > * {
  position: relative;
  max-width: 860px;
}

.identity-section p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.identity-section .eyebrow.dark {
  color: var(--gold);
}

.leadership-stat {
  display: flex;
  gap: 22px;
  align-items: center;
  max-width: 780px;
  margin: 28px 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.leadership-stat span {
  color: var(--gold);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 950;
  line-height: 0.9;
}

.leadership-stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
  font-weight: 780;
}

.dark-button {
  border-color: rgba(23, 32, 42, 0.18) !important;
  background: var(--navy) !important;
  color: var(--white) !important;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 520px);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(70px, 9vw, 118px) clamp(20px, 6vw, 82px);
  background: var(--teal);
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(244, 188, 75, 0.42);
  border-color: var(--gold);
}

.lead-form .button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 82px);
  background: #101820;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  margin: 4px 0 0;
}

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

.camps-intro-section {
  background: var(--white);
}

.camps-list-section {
  background: #eef7f4;
}

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

.camp-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(21, 95, 101, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 31, 39, 0.06);
}

.camp-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.camp-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.camp-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.camp-card .button {
  width: fit-content;
}

.camp-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.camp-card-meta span,
.camp-age {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  background: #fff0dd;
  color: var(--coral-dark) !important;
  font-size: 0.82rem;
  font-weight: 900;
}

.camps-contact-section {
  grid-template-columns: minmax(0, 780px);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-panel,
  .credibility-strip,
  .problem-grid,
  .outcome-grid,
  .program-section,
  .parent-section,
  .contact-section,
  .reality-layout,
  .how-grid,
  .skill-columns,
  .proof-grid,
  .audience-grid,
  .path-grid,
  .camp-grid {
    grid-template-columns: 1fr;
  }

  .credibility-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .credibility-strip div:last-child {
    border-bottom: 0;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .photo-play {
    grid-row: auto;
  }

  .program-copy {
    position: static;
  }

  .podcast-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .listen-actions {
    justify-content: flex-start;
  }

  .gated-layout,
  .presentation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 10px 13px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 780px;
    padding: 104px 18px 20px;
  }

  .hero-content {
    padding-bottom: 26px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-panel,
  .audience-columns {
    grid-template-columns: 1fr;
  }

  .hero-panel > div,
  .problem-grid article,
  .outcome-grid article,
  .audience-columns article,
  .module,
  .lead-form {
    padding: 20px;
  }

  .module {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .module span {
    width: 42px;
    height: 42px;
  }

  .section,
  .contact-section {
    padding: 60px 18px;
  }

  .image-band {
    min-height: 390px;
    padding: 44px 18px;
  }

  .listen-actions,
  .hero-actions {
    width: 100%;
  }

  .listen-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 18px;
  }
}
