/* ============================================================
   SCRAPMINT — From Waste to Worth
   Editorial sustainability aesthetic. Navy + bright mint.
   ============================================================ */

:root {
  --paper:        #FAFAF5;
  --paper-2:      #F2F1EA;
  --white:        #FFFFFF;
  --ink:          #0A1230;   /* deep navy, near-black */
  --ink-2:        #16224B;   /* mid navy */
  --ink-3:        #2A3568;   /* lighter navy */
  --mint:         #37FF9A;   /* signature bright green */
  --mint-2:       #1DD17A;   /* legible green for text on light */
  --mint-soft:    #C5F0D6;
  --text:         #0F1428;
  --text-2:       #4A506B;
  --text-3:       #7A809A;
  --line:         #E4E2D6;
  --line-dark:    #243057;
  --shadow-sm:    0 1px 2px rgba(10, 18, 48, 0.04);
  --shadow:       0 6px 24px rgba(10, 18, 48, 0.08);
  --shadow-lg:    0 20px 60px rgba(10, 18, 48, 0.12);

  --serif:  "Fraunces", "Iowan Old Style", "Palatino", Georgia, serif;
  --sans:   "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --container: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

em {
  font-style: italic;
  font-family: var(--serif);
  font-feature-settings: "ss01" on;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 245, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(228, 226, 214, 0.6);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: block; line-height: 0; }
.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 11px 20px;
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--ink-2); transform: translateY(-1px); }

@media (max-width: 760px) {
  .nav-links { gap: 18px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-logo img { height: 32px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .22s cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-lg {
  padding: 18px 34px;
  font-size: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(40px, 8vw, 110px) 0 clamp(50px, 8vw, 100px);
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-text { max-width: 640px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.dot {
  width: 8px;
  height: 8px;
  background: var(--mint-2);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(55, 255, 154, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(55, 255, 154, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(55, 255, 154, 0.05); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(54px, 9vw, 116px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-feature-settings: "ss01" on;
  margin-bottom: 32px;
}
.hero-title em {
  font-weight: 400;
  font-style: italic;
  position: relative;
}
.hero-title em:nth-of-type(2) {
  color: var(--ink);
  background: linear-gradient(180deg, transparent 60%, var(--mint) 60%, var(--mint) 92%, transparent 92%);
}

.hero-lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  filter: contrast(1.04) saturate(0.95);
}
.hero-caption {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 480px; margin: 0 auto; }
  .hero-photo img { aspect-ratio: 4 / 3; }
}

/* ============================================================
   IMPACT
   ============================================================ */
.impact {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(55, 255, 154, 0.12), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(55, 255, 154, 0.06), transparent 50%);
  pointer-events: none;
}
.impact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}
.impact-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.impact-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--mint);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.stat { position: relative; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.18); }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin-bottom: 16px;
  font-feature-settings: "lnum" on, "ss01" on;
}
.stat-unit {
  font-size: 0.55em;
  color: var(--mint);
  font-weight: 500;
  margin-left: 4px;
}
.stat-label {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(250, 250, 245, 0.72);
  max-width: 200px;
}

@media (max-width: 820px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

/* ============================================================
   SECTION SHELLS
   ============================================================ */
.section {
  padding: clamp(70px, 9vw, 130px) 0;
}
.section-head {
  max-width: 780px;
  margin: 0 auto clamp(50px, 6vw, 90px);
  text-align: center;
}
.section-head-tight { margin-bottom: 50px; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-2);
  padding: 6px 14px;
  background: rgba(55, 255, 154, 0.12);
  border-radius: 999px;
  margin-bottom: 24px;
}
.section-tag-light {
  color: var(--mint);
  background: rgba(55, 255, 154, 0.16);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-feature-settings: "ss01" on;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
}
.section-title-light { color: var(--paper); }
.section-title-light em { color: var(--mint); }
.section-title-sm {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
}

.section-lede {
  margin-top: 24px;
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   HOW IT WORKS — Flow
   ============================================================ */
.how { background: var(--paper); }

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1.1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.flow-col {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.flow-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-2);
  margin-bottom: 6px;
}
.flow-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--text-3);
  margin-bottom: 22px;
}
.flow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flow-list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.flow-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--ink-3);
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--mint-2);
  font-weight: 300;
}

.flow-platform {
  padding: 32px 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.flow-platform::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(55,255,154,0.18), transparent 60%);
}
.flow-platform-label {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 6px;
}
.flow-platform-name {
  position: relative;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--paper);
}
.flow-platform-desc {
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(250,250,245,0.78);
}

@media (max-width: 860px) {
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { padding: 6px 0; transform: rotate(90deg); }
}

/* ============================================================
   ROUTES — 4 program cards
   ============================================================ */
.routes { background: var(--paper-2); }

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.route-card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.route-num {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.04em;
  font-feature-settings: "lnum" on;
  margin-bottom: 16px;
}
.route-status {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint-2);
  background: rgba(55, 255, 154, 0.14);
  padding: 5px 11px;
  border-radius: 999px;
}
.route-pipeline .route-status {
  color: var(--text-2);
  background: rgba(74, 80, 107, 0.1);
}
.route-name {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1;
}
.route-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-3);
  margin-bottom: 22px;
}
.route-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 28px;
  flex-grow: 1;
}
.route-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}
.route-meta span:first-child {
  color: var(--ink-2);
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 820px) {
  .route-grid { grid-template-columns: 1fr; }
  .route-card { padding: 32px 28px; }
  .route-status { top: 28px; right: 24px; }
}

/* ============================================================
   PROOF — case studies
   ============================================================ */
.proof {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.proof::after {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(55,255,154,0.08), transparent 70%);
  pointer-events: none;
}
.proof .section-head { position: relative; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
}
.proof-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}
.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(55,255,154,0.4);
}
.proof-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.proof-meta {
  padding: 28px 32px 34px;
}
.proof-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 12px;
}
.proof-meta h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--paper);
  line-height: 1.15;
}
.proof-meta p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(250,250,245,0.72);
}

@media (max-width: 820px) {
  .proof-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners { background: var(--paper); }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 880px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .partner-grid { grid-template-columns: 1fr; }
}
.partner {
  background: var(--paper);
  padding: 36px 28px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease;
}
.partner:hover { background: var(--white); }
.partner img {
  max-height: 76px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(0.92);
  transition: filter .25s ease, transform .3s ease;
}
.partner:hover img {
  filter: saturate(1);
  transform: scale(1.04);
}
@media (max-width: 460px) {
  .partner { height: 130px; padding: 24px; }
  .partner img { max-height: 56px; max-width: 200px; }
}

/* ============================================================
   VISION QUOTE
   ============================================================ */
.vision {
  background: var(--paper-2);
  padding: clamp(70px, 9vw, 130px) 0;
  text-align: center;
}
.vision-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-2);
  margin-bottom: 28px;
}
.vision-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 980px;
  margin: 0 auto 32px;
  font-feature-settings: "ss01" on;
}
.vision-quote em {
  font-style: italic;
  position: relative;
  display: inline-block;
}
.vision-quote em:first-of-type {
  background: linear-gradient(180deg, transparent 65%, var(--mint) 65%, var(--mint) 95%, transparent 95%);
  padding: 0 4px;
}
.vision-attr {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text-3);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 100%, rgba(55,255,154,0.16), transparent 55%),
    radial-gradient(ellipse at 80% 0%, rgba(55,255,154,0.08), transparent 55%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 26px;
}
.cta-lede {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: rgba(250,250,245,0.78);
  max-width: 580px;
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta .btn-primary {
  background: var(--mint);
  color: var(--ink);
  font-weight: 700;
}
.cta .btn-primary:hover { background: var(--paper); }
.cta .btn-ghost { color: var(--paper); border-color: rgba(250,250,245,0.4); }
.cta .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060B20;
  color: var(--paper);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(60px, 7vw, 90px) var(--pad) clamp(40px, 5vw, 60px);
  align-items: start;
}
.footer-brand .footer-logo {
  height: 56px;
  margin-bottom: 22px;
  filter: none;
  max-width: 100%;
}
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(250,250,245,0.65);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 8px;
}
.footer-col a {
  font-size: 15px;
  color: rgba(250,250,245,0.74);
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--mint); }

.footer-base {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-base-inner {
  display: flex;
  justify-content: space-between;
  padding: 22px var(--pad);
  font-size: 13px;
  color: rgba(250,250,245,0.5);
}

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-base-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   WHY WE EXIST — About page intro
   ============================================================ */
.why {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--paper);
}
.why .container { max-width: 1080px; }

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
  margin-bottom: 60px;
}
.why-stat {
  padding: 32px 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.why-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mint);
}
.why-stat-num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--paper);
  font-feature-settings: "lnum" on, "ss01" on;
}
.why-stat-unit {
  font-size: 0.5em;
  color: var(--mint);
  margin-left: 4px;
}
.why-stat-label {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(250,250,245,0.78);
}
@media (max-width: 760px) {
  .why-stats { grid-template-columns: 1fr; }
}

.why-mix {
  margin-bottom: 70px;
  padding: 32px 36px;
  background: var(--paper-2);
  border-radius: 8px;
}
.why-mix-head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-2);
  margin-bottom: 24px;
}
.why-mix-bars {
  display: flex;
  gap: 3px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 4px;
  overflow: hidden;
}
.why-bar {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px;
  color: var(--paper);
  font-weight: 600;
}
.why-bar:nth-child(1) { background: var(--ink); }
.why-bar:nth-child(2) { background: var(--ink-2); }
.why-bar:nth-child(3) { background: var(--ink-3); }
.why-bar:nth-child(4) { background: var(--text-3); }
.why-bar-pct {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.why-bar-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}
.why-mix-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 720px;
}
@media (max-width: 600px) {
  .why-bar-pct { font-size: 16px; }
  .why-bar-label { display: none; }
  .why-mix-bars { height: 52px; }
}

.why-gaps-head {
  text-align: center;
  margin-bottom: 40px;
}
.why-gaps-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 16px;
}
.why-gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.why-gap-card {
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--mint-2);
  border-radius: 8px;
}
.why-gap-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-2);
  margin-bottom: 14px;
}
.why-gap-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}
.why-gap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-gap-list li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}
.why-gap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--mint-2);
}
@media (max-width: 880px) {
  .why-gap-grid { grid-template-columns: 1fr; }
}

.why-source {
  font-size: 12px;
  color: var(--text-3);
  font-style: italic;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   BSF PROCESS DIAGRAM — In the Works
   ============================================================ */
.bsf-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 8px;
  position: relative;
}
.bsf-step {
  padding: 18px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
}
.bsf-flow-illus .bsf-step {
  padding: 16px 12px 18px;
}
.bsf-step-icon {
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-2);
  border-radius: 4px;
  margin-bottom: 12px;
}
.bsf-step-icon svg {
  width: 56px;
  height: 56px;
}
@media (max-width: 980px) {
  .bsf-step-icon { height: 64px; }
  .bsf-step-icon svg { width: 44px; height: 44px; }
}
.program:nth-child(even) .bsf-step { background: var(--paper); }
.bsf-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--mint-2);
  font-weight: 600;
  z-index: 1;
  background: inherit;
}
.bsf-step-num {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  color: var(--mint-2);
  margin-bottom: 8px;
  font-feature-settings: "lnum" on;
}
.bsf-step-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  line-height: 1.2;
}
.bsf-step-desc {
  font-size: 11px;
  color: var(--text-2);
  line-height: 1.4;
}
.bsf-loop {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 22px 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
  border-left: 3px solid var(--mint);
}
.bsf-loop-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 8px;
}
.bsf-loop-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin-bottom: 6px;
}
.bsf-loop-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(250,250,245,0.75);
}
@media (max-width: 980px) {
  .bsf-flow { grid-template-columns: repeat(3, 1fr); }
  .bsf-step:nth-child(3)::after,
  .bsf-step:nth-child(6)::after { display: none; }
}
@media (max-width: 560px) {
  .bsf-flow { grid-template-columns: repeat(2, 1fr); }
  .bsf-step::after { display: none; }
}

/* ============================================================
   HOME PAGE — V4 EDITS — highlight, hero portrait, route flow,
   partner text grid, vision feeders
   ============================================================ */

/* Mint highlight on inline text */
.hl-mint {
  background: linear-gradient(180deg, transparent 60%, rgba(55, 255, 154, 0.5) 60%, rgba(55, 255, 154, 0.5) 92%, transparent 92%);
  padding: 0 2px;
}

/* Hero portrait variant — for the polished team photo with text baked in */
.hero-photo-portrait {
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin: 0 auto;
}
.hero-photo-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(6, 11, 32, 0.12);
}

/* Route mini-flow (McKinsey-style) */
.route-flow {
  display: flex;
  align-items: stretch;
  gap: 6px;
  margin: 20px 0 20px;
  padding: 14px 12px;
  background: var(--paper-2);
  border-radius: 6px;
  border: 1px solid var(--line);
}
.route-card.route-pipeline .route-flow {
  background: rgba(74, 80, 107, 0.05);
}
.rf-step {
  flex: 1;
  padding: 8px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}
.rf-step.rf-process {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.rf-step.rf-out {
  background: rgba(55, 255, 154, 0.14);
  border-color: var(--mint-2);
  color: var(--ink);
}
.route-card.route-pipeline .rf-step.rf-out {
  background: rgba(74, 80, 107, 0.08);
  border-color: var(--text-3);
  color: var(--text-2);
}
.rf-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--mint-2);
  font-weight: 600;
  flex: 0 0 14px;
}
.route-card.route-pipeline .rf-arrow {
  color: var(--text-3);
}
@media (max-width: 540px) {
  .route-flow { flex-direction: column; gap: 8px; }
  .rf-arrow { transform: rotate(90deg); flex: 0 0 14px; }
}

/* Proof grid — 3 cols version */
.proof-grid-three {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 980px) {
  .proof-grid-three { grid-template-columns: 1fr !important; }
}

/* Partner grid — uniform text version */
.partner-grid-text {
  background: transparent;
  border: none;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.partner-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 760px) {
  .partner-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
.partner-grid-text .partner-text {
  background: var(--paper);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: background .25s ease, color .25s ease;
  text-align: center;
  padding: 20px;
}
.partner-grid-text .partner-text:hover {
  background: var(--ink);
  color: var(--mint);
}

/* Vision feeders */
.vision-container {
  text-align: center;
}
.vision-feeders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 60px auto 0;
}
.vision-feeder {
  margin: 0;
  text-align: left;
}
.vision-feeder img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  filter: contrast(1.02) saturate(0.96);
  transition: transform .4s ease;
}
.vision-feeder:hover img { transform: scale(1.02); }
.vision-feeder figcaption {
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.4;
}
@media (max-width: 760px) {
  .vision-feeders { grid-template-columns: 1fr; gap: 24px; }
  .vision-feeder { max-width: 360px; margin: 0 auto; }
}

/* ============================================================
   PAGE HEADER — smaller hero for inner pages
   ============================================================ */
.page-header {
  padding: clamp(60px, 8vw, 120px) 0 clamp(50px, 6vw, 90px);
}
.page-header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 28px;
  justify-content: center;
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 32px;
  font-feature-settings: "ss01" on;
}
.page-title em {
  font-style: italic;
  font-weight: 400;
}
.page-lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================================
   PROGRAM DETAIL — deep dives on Programs page
   ============================================================ */
.program {
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
}
.program:nth-child(even) {
  background: var(--paper-2);
}
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.program-aside {
  position: sticky;
  top: 100px;
}
.program-marker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 24px;
}
.program-marker .program-status {
  background: rgba(55, 255, 154, 0.16);
  color: var(--mint-2);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.program-marker .program-status.pipeline {
  background: rgba(74, 80, 107, 0.1);
  color: var(--text-2);
}
.program-name {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 92px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.96;
  color: var(--ink);
  margin-bottom: 14px;
}
.program-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink-2);
  margin-bottom: 26px;
  line-height: 1.25;
}
.program-anchor {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.program-anchor strong {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-top: 6px;
}

.program-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.program-pain {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 36px;
  border-radius: 8px;
  border-left: 4px solid var(--mint);
  position: relative;
}
.program-pain-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 14px;
}
.program-pain p {
  font-family: var(--serif);
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.program-how-head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-2);
  margin-bottom: 22px;
}
.program-how ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: step;
}
.program-how li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: baseline;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.program-how li:last-child { border-bottom: none; }
.program-how li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--mint-2);
  font-feature-settings: "lnum" on;
}

.program-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.program:nth-child(even) .program-stats {
  background: var(--paper);
}
.program-stat .program-stat-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  font-feature-settings: "lnum" on, "ss01" on;
}
.program-stat .program-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  line-height: 1.4;
}

@media (max-width: 880px) {
  .program-grid { grid-template-columns: 1fr; gap: 32px; }
  .program-aside { position: static; }
  .program-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   TIMELINE — used on Programs & About
   ============================================================ */
.timeline {
  position: relative;
  padding: 30px 0 10px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--line-dark);
  opacity: 0.18;
}
.timeline-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  list-style: none;
  position: relative;
}
.timeline-item {
  text-align: center;
  padding-top: 36px;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--mint);
  border-radius: 50%;
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--mint-2);
}
.program:nth-child(even) .timeline-item::before { border-color: var(--paper-2); }
.timeline-item.future::before { background: var(--paper); box-shadow: 0 0 0 1px var(--text-3); }
.timeline-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.timeline-label {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}

/* ============================================================
   ABOUT — vision/mission, team, journey
   ============================================================ */
.vision-mission {
  padding: clamp(50px, 7vw, 100px) 0;
  background: var(--paper-2);
}
.vm-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
}
.vm-card {
  background: var(--paper);
  padding: 44px 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.vm-card.vm-vision {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.vm-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-2);
  margin-bottom: 16px;
}
.vm-vision .vm-tag { color: var(--mint); }
.vm-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.32;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.vm-vision .vm-text { color: var(--paper); }
.vm-text em {
  font-style: italic;
  background: linear-gradient(180deg, transparent 65%, var(--mint) 65%, var(--mint) 95%, transparent 95%);
  padding: 0 2px;
}
.vm-vision .vm-text em { color: var(--mint); background: none; }

@media (max-width: 760px) {
  .vm-grid { grid-template-columns: 1fr; }
}

/* circular concept */
.circular {
  padding: clamp(60px, 8vw, 110px) 0;
}
.circular-grid {
  max-width: 980px;
  margin: 50px auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}
.circular-state {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-align: center;
}
.circular-state-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.circular-state.is-future .circular-state-tag { color: var(--mint-2); }
.circular-state-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.circular-state-flow {
  font-size: 13px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-2);
  line-height: 1.5;
}
.circular-arrow {
  font-size: 36px;
  color: var(--mint-2);
  font-weight: 300;
  text-align: center;
}
@media (max-width: 760px) {
  .circular-grid { grid-template-columns: 1fr; }
  .circular-arrow { transform: rotate(90deg); }
}

/* team grid */
.team {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--paper-2);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.team-card {
  background: var(--paper);
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper-2);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.96);
  transition: transform .5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.03); }
.team-initials {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin: 28px 28px 0;
}
.team-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 22px 24px 4px;
}
.team-role {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0 24px 24px;
}
@media (max-width: 880px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* journey — multi-row timeline */
.journey {
  padding: clamp(60px, 8vw, 110px) 0;
}
.journey-list {
  list-style: none;
  max-width: 760px;
  margin: 50px auto 0;
  padding: 0 var(--pad);
  position: relative;
}
.journey-list::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: calc(var(--pad) + 7px);
  width: 1px;
  background: var(--line-dark);
  opacity: 0.2;
}
.journey-item {
  padding: 0 0 28px 36px;
  position: relative;
}
.journey-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--mint-2);
}
.journey-item.is-future::before { background: var(--paper); box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--text-3); }
.journey-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-2);
  margin-bottom: 6px;
}
.journey-item.is-future .journey-date { color: var(--text-3); }
.journey-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.journey-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ============================================================
   PARTNER — archetype cards & process
   ============================================================ */
.archetypes {
  padding: clamp(50px, 7vw, 90px) 0;
}
.archetype-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.archetype {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease;
}
.archetype:hover { transform: translateY(-4px); border-color: var(--mint-2); }
.archetype-num {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  margin-bottom: 16px;
  font-feature-settings: "lnum" on;
}
.archetype-name {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.archetype-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.archetype-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 24px;
  flex-grow: 1;
}
.archetype-fits {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-2);
  margin-bottom: 10px;
}
.archetype-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.archetype-list li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
}
.archetype-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--mint-2);
}
@media (max-width: 880px) {
  .archetype-grid { grid-template-columns: 1fr; }
}

/* partnership process */
.process {
  background: var(--paper-2);
  padding: clamp(60px, 8vw, 110px) 0;
}
.process-steps {
  max-width: var(--container);
  margin: 50px auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  background: var(--paper);
  padding: 32px 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  position: relative;
}
.process-step-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--mint-2);
  line-height: 1;
  margin-bottom: 18px;
  font-feature-settings: "lnum" on;
}
.process-step-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
@media (max-width: 880px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* contact-form-section on partner page (mailto-driven) */
.contact-block {
  padding: clamp(70px, 9vw, 130px) 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 100%, rgba(55,255,154,0.14), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(55,255,154,0.08), transparent 55%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.contact-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 22px;
}
.contact-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.contact-lede {
  font-size: 17px;
  color: rgba(250,250,245,0.78);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px;
  transition: border-color .25s ease, transform .25s ease;
}
.contact-card:hover {
  border-color: rgba(55,255,154,0.4);
  transform: translateY(-2px);
}
.contact-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 10px;
}
.contact-card-value {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.01em;
  word-break: break-word;
}
@media (max-width: 720px) {
  .contact-channels { grid-template-columns: 1fr; }
}

/* ============================================================
   PROGRAMS — HERO + ACTIVITY GALLERY
   ============================================================ */
.program-hero {
  max-width: 1240px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.program-hero img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
  display: block;
  box-shadow: 0 18px 50px rgba(6, 11, 32, 0.10);
}
.program-hero-caption {
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--text-2);
  text-align: center;
  letter-spacing: -0.005em;
}

.program-gallery {
  max-width: 1240px;
  margin: 56px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.program-gallery figure {
  margin: 0;
}
.program-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.program-gallery figcaption {
  margin-top: 11px;
  font-size: 13px;
  color: var(--text-3);
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -0.003em;
}
@media (max-width: 760px) {
  .program-hero { margin-bottom: 36px; }
  .program-hero img { aspect-ratio: 4 / 3; border-radius: 8px; }
  .program-hero-caption { font-size: 13px; }
  .program-gallery { grid-template-columns: 1fr; gap: 28px; margin-top: 40px; }
}

/* ============================================================
   ADVISOR — INLINE WITH FOUNDING TEAM
   ============================================================ */
.advisor-inline {
  margin-top: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--mint-2);
  border-radius: 8px;
}
.advisor-inline-tag {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-2);
  padding-top: 5px;
}
.advisor-inline-body { flex: 1; }
.advisor-inline-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
}
.advisor-inline-bio {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
}
.advisor-inline-creds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.advisor-inline-creds li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}
.advisor-inline-creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--mint-2);
}
@media (max-width: 600px) {
  .advisor-inline {
    flex-direction: column;
    gap: 10px;
    padding: 20px 22px;
  }
  .advisor-inline-name { font-size: 20px; }
}

/* ============================================================
   MOBILE NAV — HAMBURGER + FULL-SCREEN OVERLAY
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.nav-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}
body.nav-open {
  overflow: hidden;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 40px 24px;
}
.mobile-menu-link {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s ease;
}
.mobile-menu-link:hover { color: var(--mint-2); }
.mobile-menu-cta {
  margin-top: 16px;
  padding: 16px 32px;
  background: var(--ink);
  color: var(--mint);
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: -0.01em;
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   FOOTER — POWERED BY NEXTLOOP (REFINED)
   ============================================================ */
.footer-poweredby {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-poweredby-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 600;
}
.footer-poweredby-logo {
  height: 32px;
  width: auto;
  background: var(--paper);
  padding: 6px 12px;
  border-radius: 6px;
}
@media (max-width: 760px) {
  .footer-poweredby { margin-top: 16px; }
  .footer-poweredby-logo { height: 28px; padding: 5px 10px; }
}


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

