:root {
  --ink: #0f1012;
  --soft-ink: #24262a;
  --muted: #686d75;
  --light-muted: #8b9098;
  --paper: #ffffff;
  --stone: #f5f5f2;
  --stone-2: #ededeb;
  --white: #ffffff;
  --edge: rgba(15, 16, 18, 0.1);
  --edge-dark: rgba(255, 255, 255, 0.16);
  --charcoal: #111214;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(15, 16, 18, 0.08);
  --shadow-soft: 0 14px 40px rgba(15, 16, 18, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

main {
  overflow: hidden;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 104px 0;
}

.section-tight {
  padding: 72px 0;
}

/* ACCESSIBILITY */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  z-index: 999;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--edge);
}

.nav-wrap {
  width: min(1240px, calc(100% - 32px));
  margin: auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 950;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.15rem;
  letter-spacing: 0.18em;
}

.brand-text em {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--soft-ink);
  font-size: 0.95rem;
  font-weight: 850;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--stone);
  color: var(--ink);
}

.site-nav .nav-cta {
  background: var(--ink);
  color: var(--white);
  padding-inline: 20px;
}

.site-nav .nav-cta:hover {
  background: #000;
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--edge);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

/* TYPOGRAPHY */

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-size: clamp(4rem, 11vw, 10.8rem);
  line-height: 0.82;
  letter-spacing: -0.095em;
}

.display .outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  text-stroke: 1.5px var(--ink);
}

.display .solid {
  display: block;
  color: var(--ink);
}

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

.section-title {
  margin: 0;
  max-width: 850px;
  font-size: clamp(2.2rem, 5vw, 5.3rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.section-copy {
  margin: 20px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.kicker-line {
  width: 44px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--ink);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* HERO */

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(245, 245, 242, 0.7), rgba(255, 255, 255, 1)),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 16, 18, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 16, 18, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 56px;
  align-items: end;
}

.hero-copy {
  max-width: 850px;
}

.definition {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--soft-ink);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.definition strong {
  font-weight: 950;
}

.hero-lede {
  max-width: 740px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
}

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

.hero-card {
  position: relative;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "STRIVE";
  position: absolute;
  right: -18px;
  bottom: -18px;
  color: rgba(255, 255, 255, 0.055);
  font-size: 5.6rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
}

.card-kicker {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card h2 {
  position: relative;
  margin: 0;
  max-width: 420px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.pulse-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.pulse-row span {
  border: 1px solid var(--edge-dark);
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 850;
}

/* IMPACT BAR */

.impact-bar {
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  background: var(--white);
}

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

.impact-item {
  padding: 28px 24px;
  border-right: 1px solid var(--edge);
}

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

.impact-item strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.impact-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

/* SECTIONS */

.soft-panel {
  background: var(--stone);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.copy-block {
  color: var(--soft-ink);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.copy-block p {
  margin: 0 0 24px;
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.section-head {
  margin-bottom: 38px;
}

.section-head.row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
}

.section-head.row .section-copy {
  max-width: 470px;
  margin-top: 0;
}

/* CARDS */

.cards {
  display: grid;
  gap: 18px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.info-card,
.program-card,
.team-card,
.contact-card,
.contact-form,
.feature-card {
  background: var(--white);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.info-card,
.feature-card {
  padding: 30px;
}

.info-card h3,
.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.info-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
}

.feature-card.dark {
  background: var(--ink);
  color: var(--white);
}

.feature-card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-number {
  display: block;
  margin-bottom: 44px;
  color: var(--light-muted);
  font-weight: 950;
  letter-spacing: -0.04em;
}

/* PROGRAMS */

.program-card {
  position: relative;
  min-height: 290px;
  padding: 32px;
  overflow: hidden;
}

.program-card::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  opacity: 0.18;
}

.program-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.program-card h2 {
  margin: 28px 0 14px;
  max-width: 480px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.program-card p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

/* TEAM */

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

.team-grid.single {
  grid-template-columns: minmax(0, 390px);
}

.team-card {
  padding: 28px;
}

.headshot {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  border-radius: 22px;
  background: var(--ink);
  color: var(--white);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.team-card h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.team-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.role {
  color: var(--ink) !important;
  font-weight: 900;
}

/* CTA */

.cta-band {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-inner h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.cta-inner p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

/* PAGE HERO */

.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--edge);
  padding: 96px 0 76px;
}

.page-hero h1 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
}

.contact-card,
.contact-form {
  padding: 30px;
}

.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

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

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--soft-ink);
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 14px 15px;
  background: var(--white);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

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

/* FOOTER */

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 34px;
}

.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

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

.footer-grid p {
  max-width: 420px;
  margin: 0;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  font-weight: 750;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-brand .brand-mark {
  background: var(--white);
  color: var(--ink);
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

/* MOBILE */

@media (max-width: 920px) {
  .section-pad {
    padding: 76px 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 94px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--edge);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    padding: 15px 16px;
    text-align: left;
  }

  .brand-text {
    flex-direction: column;
    gap: 3px;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .brand-text em {
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 74px 0;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .display {
    font-size: clamp(4.2rem, 22vw, 7rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .impact-grid,
  .cards.three,
  .cards.two,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .impact-item {
    border-right: 0;
    border-bottom: 1px solid var(--edge);
  }

  .impact-item:last-child {
    border-bottom: 0;
  }

  .section-head.row {
    display: block;
  }

  .section-head.row .section-copy {
    margin-top: 18px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .program-card {
    min-height: 250px;
  }

  .page-hero {
    padding: 72px 0 56px;
  }
}

@media (max-width: 520px) {
  .wrap,
  .hero-inner,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    width: min(100% - 24px, 1240px);
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .hero-card,
  .info-card,
  .feature-card,
  .program-card,
  .team-card,
  .contact-card,
  .contact-form {
    border-radius: 20px;
  }

  .hero-card,
  .program-card,
  .info-card,
  .feature-card {
    padding: 24px;
  }

  .display {
    letter-spacing: -0.085em;
  }
}

/* LOGO */

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

.site-logo {
  display: block;
  width: clamp(190px, 18vw, 285px);
  height: auto;
}

.hero-logo {
  display: block;
  width: min(720px, 100%);
  height: auto;
  margin-bottom: 30px;
}

.footer-logo {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin-bottom: 18px;
}

@media (max-width: 920px) {
  .site-logo {
    width: clamp(168px, 44vw, 230px);
  }

  .hero-logo {
    width: min(520px, 100%);
  }
}

@media (max-width: 520px) {
  .site-logo {
    width: 170px;
  }

  .hero-logo {
    width: 100%;
    margin-bottom: 24px;
  }
}
.site-footer .footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
