:root {
  --ink: #09111f;
  --navy: #101a3e;
  --blue: #18295f;
  --red: #e3262f;
  --gold: #f0c05a;
  --paper: #f6f7f9;
  --line: rgba(9, 17, 31, 0.12);
  --white: #ffffff;
  --muted: #687184;
  --shadow: 0 24px 70px rgba(9, 17, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

.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;
  padding: 18px clamp(18px, 4vw, 52px);
  color: var(--white);
  background: rgba(8, 14, 29, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 46px;
  height: 46px;
}

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

.brand strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-action {
  justify-self: end;
  padding: 11px 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(1.05) contrast(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 12, 25, 0.94) 0%, rgba(7, 12, 25, 0.74) 42%, rgba(7, 12, 25, 0.16) 100%),
    linear-gradient(0deg, rgba(7, 12, 25, 0.96) 0%, rgba(7, 12, 25, 0.16) 46%, rgba(7, 12, 25, 0.34) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(940px, 100%);
  padding: 132px clamp(22px, 6vw, 76px) 154px;
}

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

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

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

h1,
h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(64px, 11vw, 132px);
  line-height: 0.86;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

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

.dark-button {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.score-strip {
  position: absolute;
  z-index: 3;
  left: clamp(16px, 6vw, 76px);
  right: clamp(16px, 6vw, 76px);
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.score-strip div {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

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

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

.score-strip strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 32px;
  line-height: 1;
}

.score-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-band,
.pathway,
.update-request,
.closing {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 6vw, 76px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  background: var(--white);
}

.section-heading h2,
.alumni h2,
.ops-copy h2,
.closing h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.94;
}

.intro-copy {
  color: #3c4658;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.impact-grid article {
  min-height: 330px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
}

.impact-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 44px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.impact-grid h3 {
  max-width: 260px;
  margin-bottom: 12px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 0.96;
  text-transform: uppercase;
}

.impact-grid p {
  color: #566074;
  font-weight: 700;
}

.programs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.program-panel {
  min-height: 560px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 34px;
  padding: clamp(28px, 5vw, 64px);
  background: var(--paper);
}

.program-panel.fastpitch {
  background: #ffffff;
}

.program-panel.baseball {
  background: #f0f2f6;
}

.program-mark {
  width: clamp(96px, 14vw, 154px);
  height: auto;
}

.program-panel h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
}

.program-panel p:not(.eyebrow) {
  max-width: 620px;
  color: #4d5668;
  font-size: 18px;
  font-weight: 600;
}

.program-panel > a {
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 3px solid var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.teams-band {
  padding: clamp(58px, 9vw, 120px) clamp(20px, 6vw, 76px);
  color: var(--white);
  background: var(--ink);
}

.section-heading.light {
  max-width: 760px;
  margin-bottom: 34px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.team-card {
  min-height: 255px;
  border-radius: 8px;
  overflow: hidden;
  background: #18233a;
  box-shadow: var(--shadow);
}

.team-card.featured {
  grid-row: span 2;
  display: grid;
  grid-template-rows: 1fr auto;
}

.team-card.featured img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.team-card.featured div,
.stat-card {
  padding: 28px;
}

.team-card span,
.stat-card strong {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.team-card h3,
.timeline-item h3 {
  margin: 8px 0 8px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.team-card p,
.timeline-item p {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card.red {
  background: var(--red);
}

.stat-card.red strong {
  color: var(--white);
}

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

.pathway .section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.timeline-item {
  min-height: 300px;
  padding: 28px;
  background: var(--white);
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 48px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.timeline-item h3 {
  color: var(--ink);
}

.timeline-item p {
  color: #566074;
}

.alumni {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(20px, 6vw, 76px);
  color: var(--white);
  background: var(--blue);
}

.alumni-copy {
  max-width: 620px;
}

.alumni-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  font-weight: 600;
}

.alumni-board {
  display: grid;
  gap: 10px;
}

.alumni-board div {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.alumni-board strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  color: var(--gold);
  font-size: 44px;
  line-height: 1;
}

.alumni-board span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.operations {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  background: var(--white);
}

.ops-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.ops-copy {
  align-self: center;
  padding: clamp(40px, 6vw, 76px);
}

.ops-copy ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.ops-copy li {
  padding: 16px 18px;
  border-left: 4px solid var(--red);
  background: var(--paper);
  color: #475164;
  font-weight: 800;
}

.update-request {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  background: #f0f2f6;
}

.update-copy {
  position: sticky;
  top: 104px;
}

.update-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.94;
}

.update-copy p:not(.eyebrow) {
  color: #475164;
  font-size: 18px;
  font-weight: 650;
}

.update-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.update-flow span {
  display: grid;
  min-height: 74px;
  place-items: center;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.update-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.update-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.update-form input,
.update-form textarea {
  width: 100%;
  border: 1px solid rgba(9, 17, 31, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfe;
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  text-transform: none;
}

.update-form input:focus,
.update-form textarea:focus {
  outline: 3px solid rgba(227, 38, 47, 0.16);
  border-color: var(--red);
}

.update-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #566074;
  font-size: 14px;
  font-weight: 800;
}

.closing {
  padding-bottom: clamp(30px, 4vw, 48px);
  color: var(--white);
  background: var(--ink);
}

.closing h2 {
  max-width: 960px;
}

.powered-by {
  display: flex;
  width: fit-content;
  flex-direction: column;
  gap: 8px;
  margin-top: clamp(52px, 8vw, 96px);
  margin-left: auto;
  color: var(--ink);
  text-transform: uppercase;
}

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

.powered-by-kicker {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: right;
}

.powered-by-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  color: #111827;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
}

.powered-by-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.powered-by-icon rect {
  fill: #162238;
}

.powered-by-icon text {
  fill: #ffffff;
  font-family: Inter, Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.proposal-page {
  background: #f4f6fa;
}

.proposal-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: var(--white);
  background: rgba(7, 12, 25, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

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

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

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

.proposal-brand strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.proposal-brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.proposal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.proposal-nav a:hover {
  color: var(--white);
}

.proposal-hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.proposal-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 230px;
  background: linear-gradient(0deg, rgba(7, 12, 25, 0.98) 0%, rgba(7, 12, 25, 0.92) 46%, rgba(7, 12, 25, 0) 100%);
  pointer-events: none;
}

.proposal-hero-media,
.proposal-hero-media img,
.proposal-hero-shade {
  position: absolute;
  inset: 0;
}

.proposal-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.95) contrast(1.08);
}

.proposal-hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 12, 25, 0.96) 0%, rgba(7, 12, 25, 0.8) 48%, rgba(7, 12, 25, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 12, 25, 0.96) 0%, rgba(7, 12, 25, 0.18) 54%, rgba(7, 12, 25, 0.4) 100%);
}

.proposal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 150px clamp(22px, 6vw, 76px) 166px;
}

.proposal-hero h1 {
  max-width: 940px;
  margin-bottom: 20px;
  font-size: clamp(60px, 10.5vw, 126px);
  line-height: 0.88;
}

.proposal-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 650;
}

.proposal-proof {
  position: absolute;
  z-index: 3;
  left: clamp(16px, 6vw, 76px);
  right: clamp(16px, 6vw, 76px);
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 12, 25, 0.88);
  backdrop-filter: blur(16px);
}

.proposal-proof div {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.proposal-proof div:last-child {
  border-right: 0;
}

.proposal-proof strong,
.proposal-proof span {
  display: block;
}

.proposal-proof strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 36px;
  line-height: 1;
}

.proposal-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proposal-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  padding: clamp(60px, 8vw, 118px) clamp(20px, 6vw, 76px);
  background: var(--white);
}

.proposal-intro h2,
.package-section h2,
.subscription-copy h2,
.system-section h2,
.case-copy h2,
.proposal-close h2 {
  margin-bottom: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.94;
  text-transform: uppercase;
}

.proposal-intro > p {
  color: #3d4658;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
}

.club-goals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.club-goals article {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 42px);
  background: #f8f9fb;
}

.club-goals span {
  width: fit-content;
  margin-bottom: auto;
  padding: 7px 10px;
  color: var(--white);
  background: var(--red);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.club-goals h3,
.system-grid h3 {
  margin: 0 0 12px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 0.96;
  text-transform: uppercase;
}

.club-goals p,
.system-grid p {
  margin-bottom: 0;
  color: #566074;
  font-weight: 700;
}

.package-section {
  padding: clamp(60px, 8vw, 118px) clamp(20px, 6vw, 76px);
  background: var(--white);
}

.package-section .section-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

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

.price-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f9fb;
}

.featured-price {
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.plan-name {
  margin-bottom: 32px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-price .plan-name {
  color: var(--gold);
}

.price-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(58px, 7vw, 86px);
  line-height: 0.9;
  text-transform: uppercase;
}

.season-rate {
  display: block;
  margin: 10px 0 32px;
  color: #566074;
  font-weight: 900;
}

.featured-price .season-rate {
  color: rgba(255, 255, 255, 0.75);
}

.price-card ul {
  display: grid;
  gap: 14px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #4d5668;
  font-weight: 800;
}

.featured-price li {
  color: rgba(255, 255, 255, 0.82);
  border-top-color: rgba(255, 255, 255, 0.14);
}

.subscription-model {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: clamp(60px, 8vw, 118px) clamp(20px, 6vw, 76px);
  color: var(--white);
  background: var(--blue);
}

.subscription-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 650;
}

.subscription-list {
  display: grid;
  gap: 10px;
}

.subscription-list div {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.subscription-list strong,
.subscription-list span {
  display: block;
}

.subscription-list strong {
  margin-bottom: 5px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.subscription-list span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.onboarding-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  padding: clamp(60px, 8vw, 118px) clamp(20px, 6vw, 76px);
  background: var(--white);
}

.onboarding-copy {
  position: sticky;
  top: 104px;
}

.onboarding-copy h2 {
  margin-bottom: 22px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.94;
  text-transform: uppercase;
}

.onboarding-copy p:not(.eyebrow) {
  color: #465065;
  font-size: 18px;
  font-weight: 650;
}

.deposit-steps {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.deposit-steps div {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f9fb;
}

.deposit-steps strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  color: var(--red);
  font-size: 46px;
  line-height: 1;
}

.deposit-steps span {
  color: #566074;
  font-weight: 800;
}

.onboarding-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f9fb;
  box-shadow: var(--shadow);
}

.onboarding-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.onboarding-form input,
.onboarding-form select,
.onboarding-form textarea {
  width: 100%;
  border: 1px solid rgba(9, 17, 31, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  text-transform: none;
}

.locked-package {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(9, 17, 31, 0.14);
  border-radius: 6px;
  padding: 14px 16px;
  background: var(--white);
  text-transform: none;
}

.locked-package strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.locked-package small {
  color: #5c6577;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}

.onboarding-form input:focus,
.onboarding-form select:focus,
.onboarding-form textarea:focus {
  outline: 3px solid rgba(227, 38, 47, 0.16);
  border-color: var(--red);
}

.onboarding-form textarea {
  resize: vertical;
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(227, 38, 47, 0.22);
  border-radius: 8px;
  background: rgba(227, 38, 47, 0.06);
  text-transform: none;
}

.check-row input {
  width: auto;
  margin-top: 3px;
}

.check-row span {
  color: #465065;
  font-size: 14px;
  font-weight: 800;
  text-transform: none;
}

.system-section {
  padding: clamp(60px, 8vw, 118px) clamp(20px, 6vw, 76px);
  color: var(--white);
  background: var(--ink);
}

.system-section .section-heading {
  max-width: 920px;
  margin-bottom: 38px;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.system-grid article {
  min-height: 330px;
  padding: clamp(24px, 4vw, 38px);
  background: #111b31;
}

.system-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 48px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.system-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.case-study {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  background: var(--white);
}

.case-media img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.case-copy {
  align-self: center;
  padding: clamp(44px, 6vw, 78px);
}

.case-copy p:not(.eyebrow) {
  margin: 24px 0 28px;
  color: #4d5668;
  font-size: 18px;
  font-weight: 650;
}

.proposal-close {
  padding: clamp(60px, 8vw, 118px) clamp(20px, 6vw, 76px);
  color: var(--white);
  background: var(--ink);
}

.proposal-close h2 {
  max-width: 1020px;
}

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

  .nav-links,
  .proposal-nav {
    display: none;
  }

  .proposal-header {
    grid-template-columns: 1fr auto;
  }

  .score-strip,
  .proposal-proof,
  .intro-band,
  .impact-grid,
  .proposal-intro,
  .club-goals,
  .programs,
  .team-grid,
  .timeline,
  .alumni,
  .operations,
  .update-request,
  .package-grid,
  .subscription-model,
  .onboarding-section,
  .system-grid,
  .case-study {
    grid-template-columns: 1fr;
  }

  .score-strip,
  .proposal-proof {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -134px 18px 22px;
  }

  .score-strip div,
  .proposal-proof div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero-content,
  .proposal-hero-content {
    padding-bottom: 180px;
  }

  .program-panel {
    min-height: 470px;
  }

  .update-copy {
    position: static;
  }

  .onboarding-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-action {
    padding: 10px 12px;
  }

  .brand-badge {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .proposal-brand small {
    display: none;
  }

  .hero,
  .proposal-hero {
    min-height: 100vh;
  }

  .hero-media img,
  .proposal-hero-media img {
    object-position: center top;
  }

  .hero-shade,
  .proposal-hero-shade {
    background:
      linear-gradient(0deg, rgba(7, 12, 25, 0.98) 0%, rgba(7, 12, 25, 0.74) 48%, rgba(7, 12, 25, 0.18) 100%),
      linear-gradient(90deg, rgba(7, 12, 25, 0.76), rgba(7, 12, 25, 0.22));
  }

  .hero-content,
  .proposal-hero-content {
    padding: 128px 18px 164px;
  }

  .hero-copy,
  .proposal-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .score-strip,
  .proposal-proof {
    margin-top: -126px;
  }

  .score-strip strong,
  .proposal-proof strong {
    font-size: 28px;
  }

  .button {
    width: 100%;
  }

  .powered-by {
    margin-left: 0;
  }

  .powered-by-kicker {
    text-align: left;
  }

  .section-heading h2,
  .alumni h2,
  .ops-copy h2,
  .closing h2,
  .proposal-intro h2,
  .package-section h2,
  .subscription-copy h2,
  .system-section h2,
  .case-copy h2,
  .proposal-close h2 {
    font-size: 42px;
  }

  .program-panel h2 {
    font-size: 38px;
  }

  .alumni-board div {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .update-flow {
    grid-template-columns: 1fr;
  }

  .deposit-steps div {
    grid-template-columns: 1fr;
  }

  .ops-media img,
  .case-media img {
    min-height: 260px;
  }
}
