/* ============================================================
   Pillar Africa — Home page styles
   Plain CSS, no build step, no dependencies.
   Tokens live in :root; everything below is plain class-based CSS.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Headline:wght@400;500;600;700&family=Stack+Sans+Text:wght@200;300;400;500;600;700&family=Stack+Sans+Notch:wght@400;500;600&display=swap');

:root {
  /* ---- Neutrals ---- */
  --paper:        #FBFAF9;
  --paper-sunk:   #F4F1EC;
  --surface:      #FFFFFF;
  --ink-900:      #16130F;

  --text-strong:  #1A1714;
  --text-body:    #45403A;
  --text-muted:   #78736B;
  --text-faint:   #9C968C;
  --text-inverse-muted: #B7AFA4;

  --border-default: #E4DFD7;
  --border-subtle:  #ECE8E1;

  /* ---- Brand colour ---- */
  --spring:       #12C971;  --spring-deep: #0E9D58;  --spring-tint: #D6F4E3;
  --sky:          #65C6FF;  --sky-deep:    #2E9CE6;
  --marigold:     #F7A912;  --marigold-deep: #C9830A;
  --cobalt:       #2F62E6;

  /* ---- Type ---- */
  --font-headline: 'Stack Sans Headline', 'Stack Sans Text', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:     'Stack Sans Text', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-accent:   'Stack Sans Notch', 'Stack Sans Headline', system-ui, sans-serif;

  /* ---- Radii / shadow / motion ---- */
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-xs: 0 1px 2px rgba(22,19,15,0.05);
  --shadow-sm: 0 1px 3px rgba(22,19,15,0.06), 0 1px 2px rgba(22,19,15,0.04);
  --shadow-md: 0 4px 14px rgba(22,19,15,0.07), 0 2px 5px rgba(22,19,15,0.05);
  --shadow-lg: 0 14px 40px rgba(22,19,15,0.10), 0 4px 12px rgba(22,19,15,0.06);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--paper);
  font-family: var(--font-body);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }

/* ---- Layout helpers ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1340px; margin: 0 auto; padding: 0 52px; }
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
}
.section-title {
  font-family: var(--font-headline); font-weight: 600;
  line-height: 1.08; letter-spacing: -0.025em; color: var(--text-strong);
}
.body-text { line-height: 1.65; letter-spacing: -0.011em; color: var(--text-body); }

/* ---- Brand motif: the tilted square "atom" ---- */
.atom {
  width: 13px; height: 13px; background: var(--spring);
  border-radius: 2px; transform: rotate(14deg); flex: 0 0 auto;
}

/* ============================================================
   Motion
   ============================================================ */
@keyframes paRise {
  from { opacity: 0; transform: translateY(22px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes paFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* JS hides [data-reveal] then animates them in on scroll (see app.js).
   With JS off, content simply stays visible. */
@media (prefers-reduced-motion: reduce) {
  [data-animate], [data-reveal] {
    animation: none !important; opacity: 1 !important;
    transform: none !important; filter: none !important;
  }
}

/* ============================================================
   Nav
   ============================================================ */
.site-nav,
.subpage-header__inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 32px;
}
.site-nav {
  padding-top: 34px;
  animation: paFade .7s var(--ease-out) both;
}
.nav-logo { flex-shrink: 0; line-height: 0; }
.nav-logo img { height: 66px; width: auto; }
.subpage-header .nav-logo img { height: 52px; }

.nav-toggle {
  display: none; margin-left: auto;
  align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  background: var(--surface); border: 1px solid var(--border-default);
  border-radius: 10px; cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: background var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard);
}
.nav-toggle:hover { background: #fff; border-color: #D4CEC4; }
.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  display: block; width: 18px; height: 2px;
  background: var(--text-strong); border-radius: 1px;
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-fast) var(--ease-standard);
}
.nav-toggle__lines { position: relative; }
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  content: ""; position: absolute; left: 0;
}
.nav-toggle__lines::before { top: -6px; }
.nav-toggle__lines::after  { top: 6px; }
.nav-toggle.is-open .nav-toggle__lines { background: transparent; }
.nav-toggle.is-open .nav-toggle__lines::before {
  top: 0; transform: rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__lines::after {
  top: 0; transform: rotate(-45deg);
}

.nav-links { margin-left: auto; display: flex; gap: 34px; align-items: center; }
.nav-link {
  position: relative; font-size: 16px; font-weight: 300; letter-spacing: -0.3px;
  color: var(--text-strong); text-decoration: none;
  transition: color var(--dur-fast) var(--ease-standard);
}
.nav-link:hover { color: var(--spring); }
.nav-link.is-active { font-weight: 400; color: var(--spring); }
.nav-link.is-active:hover { color: var(--spring-deep); }
.nav-link.is-active::before {
  content: ""; position: absolute; left: 50%; top: -13px;
  width: 8px; height: 8px; background: var(--spring);
  border-radius: 1px; transform: translateX(-50%) rotate(16deg);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; width: 100%;
  aspect-ratio: 2885 / 1626; min-height: 660px;
  background-color: #E8F1EB;
  background-image: url(assets/hero-bg.png);
  background-size: cover; background-position: center right;
  background-repeat: no-repeat; overflow: hidden;
}
.hero__wash {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    rgba(232,241,235,0.97) 0%, rgba(232,241,235,0.88) 26%, rgba(232,241,235,0) 54%);
}
.hero__inner {
  position: relative; z-index: 2;
  padding: clamp(40px, 5vw, 76px) 0 64px;
}
.hero__copy { max-width: 640px; }
.hero__title {
  font-family: var(--font-headline); font-weight: 500;
  font-size: clamp(52px, 6.6vw, 68px); line-height: 1.1;
  letter-spacing: -0.035em; color: #394A37;
}
.hero__title .line { display: block; animation: paRise .9s var(--ease-out) both; }
.hero__title .line:nth-child(1) { animation-delay: .12s; }
.hero__title .line:nth-child(2) { animation-delay: .24s; }
.hero__title .line:nth-child(3) { animation-delay: .36s; }
.hero__title .accent { font-family: var(--font-accent); color: var(--spring); }
.hero__lede {
  font-size: clamp(17px, 1.5vw, 22px); line-height: 1.5; color: #394A37;
  max-width: 470px; margin-top: clamp(24px, 2.4vw, 38px);
  font-weight: 200; letter-spacing: -0.5px;
  animation: paRise .9s var(--ease-out) both; animation-delay: .5s;
}
.hero__cta {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin-top: clamp(32px, 3.6vw, 52px);
  animation: paRise .9s var(--ease-out) both; animation-delay: .64s;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-family: var(--font-body);
  font-weight: 300; font-size: 18px; letter-spacing: -0.5px;
  border-radius: 12px; cursor: pointer;
}
.btn--lg { height: 64px; width: 240px; }
.btn--apply {
  background: var(--spring); color: #fff;
  box-shadow: 0 6px 18px rgba(18,201,113,0.28);
  transition: background var(--dur-fast) var(--ease-standard);
}
.btn--apply:hover { background: var(--spring-deep); }
.btn--ghost {
  background: var(--surface); color: #394A37;
  border: 1px solid rgba(22,19,15,0.08); box-shadow: var(--shadow-sm);
  transition: background var(--dur-fast) var(--ease-standard),
              box-shadow var(--dur-fast) var(--ease-standard);
}
.btn--ghost:hover { background: #fff; box-shadow: var(--shadow-md); }

/* card button (paths section) */
.card-btn {
  margin-top: auto; display: inline-flex; align-items: center; justify-content: center;
  width: 180px; height: 54px; background: var(--surface); color: var(--ink-900);
  font-family: var(--font-body); font-weight: 600; font-size: 16px; letter-spacing: -0.01em;
  border-radius: 10px; text-decoration: none;
  transition: background var(--dur-fast) var(--ease-standard);
}
.card-btn:hover { background: #fff; }

/* ============================================================
   Mission
   ============================================================ */
.mission { padding-top: 128px; padding-bottom: 128px; }
.mission__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.mission__eyebrow { margin-bottom: 20px; }
.mission__title { font-size: 46px; }
.mission__title .muted { color: var(--text-faint); }
.mission__statement { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.mission__statement p {
  font-family: var(--font-headline); font-weight: 600; font-size: 22px;
  line-height: 1.3; letter-spacing: -0.015em; color: var(--text-strong);
}
.mission__body { padding-top: 6px; }
.mission__body p { font-size: 18.5px; }
.mission__body p + p { margin-top: 20px; }
.mission__photo { margin-top: 72px; border-radius: var(--radius-xl); overflow: hidden; }
.mission__photo img { width: 100%; height: auto; }

/* ============================================================
   How we do it
   ============================================================ */
.how {
  background-color: var(--paper-sunk);
  background-image:
    linear-gradient(rgba(22,19,15,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,19,15,0.045) 1px, transparent 1px);
  background-size: 84px 84px; background-position: center top;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.how__inner { padding-top: 120px; padding-bottom: 120px; }
.how__head { max-width: 720px; margin-bottom: 52px; }
.how__head .eyebrow { margin-bottom: 18px; }
.how__head h2 { font-size: 44px; }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.how-card {
  background: var(--surface); border: 1px solid var(--border-default);
  border-top: 4px solid var(--spring); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-out);
}
.how-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.how-card--sky      { border-top-color: var(--sky); }
.how-card--marigold { border-top-color: var(--marigold); }
.how-card--spring   { border-top-color: var(--spring); }
.how-card__num {
  font-family: var(--font-accent); font-weight: 500; font-size: 34px;
  letter-spacing: -0.02em; line-height: 1;
}
.how-card--sky .how-card__num      { color: var(--sky-deep); }
.how-card--marigold .how-card__num { color: var(--marigold-deep); }
.how-card--spring .how-card__num   { color: var(--spring-deep); }
.how-card__label {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin: 18px 0 8px;
}
.how-card__title {
  font-family: var(--font-headline); font-weight: 600; font-size: 21px;
  line-height: 1.28; letter-spacing: -0.015em; color: var(--text-strong);
}
.how__note {
  text-align: center; max-width: 680px; margin: 48px auto 0;
  font-size: 18px; line-height: 1.6; letter-spacing: -0.011em; color: var(--text-body);
}
.how__note strong { color: var(--text-strong); }

/* ============================================================
   Vision + paths
   ============================================================ */
.vision {
  background: var(--spring-tint);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.vision__inner { padding-top: 124px; padding-bottom: 124px; }
.vision__head { max-width: 880px; margin: 0 auto 64px; text-align: center; }
.vision__head .eyebrow { margin-bottom: 24px; }
.vision__title { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.12; }
.vision__title .accent { color: var(--spring-deep); }

.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.path-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  border-radius: var(--radius-xl); padding: 44px; color: #fff;
}
.path-card--builders { background: var(--cobalt); }
.path-card--partners { background: var(--ink-900); }
.path-card__deco {
  position: absolute; right: -34px; top: -34px;
  width: 140px; height: 140px; border-radius: 20px;
  transform: rotate(18deg); background: rgba(255,255,255,0.10);
}
.path-card--partners .path-card__deco { background: rgba(255,255,255,0.06); }
.path-card__label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 16px;
}
.path-card--builders .path-card__label { color: var(--sky); }
.path-card--partners .path-card__label { color: var(--spring); }
.path-card__title {
  font-family: var(--font-headline); font-weight: 600; font-size: 34px;
  line-height: 1.06; letter-spacing: -0.02em; color: #fff;
}
.path-card__body {
  font-size: 16.5px; line-height: 1.55; letter-spacing: -0.011em;
  margin: 16px 0 32px; max-width: 380px;
}
.path-card--builders .path-card__body { color: rgba(255,255,255,0.85); }
.path-card--partners .path-card__body { color: var(--text-inverse-muted); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--border-subtle); background: var(--paper); }
.footer__top {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start;
  padding-top: 60px; padding-bottom: 40px;
}
.footer__brand img { height: 54px; width: auto; }
.footer__brand p {
  font-size: 15px; line-height: 1.6; color: var(--text-muted);
  max-width: 340px; margin-top: 20px;
}
.footer__links {
  display: flex; flex-direction: column; gap: 12px;
}
.footer__heading {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;
}
.footer-link { font-size: 14.5px; color: var(--text-body); text-decoration: none; }
.footer-link:hover { color: var(--spring-deep); }
.footer__bottom {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 0; border-top: 1px solid var(--border-subtle);
  font-size: 13px; color: var(--text-muted);
}
.footer__bottom .atom { width: 9px; height: 9px; transform: rotate(14deg); }
.footer__tagline { margin-left: auto; }

/* ============================================================
   Subpage header (mission, partner, …)
   ============================================================ */
.subpage-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(251,250,249,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.subpage-header__inner {
  display: flex; align-items: center; gap: 32px;
  padding: 22px 52px;
}
.subpage-header .nav-links { margin-left: auto; }

/* ============================================================
   Partner page
   ============================================================ */
.page-partner { background: var(--paper); }

/* ---- Hero ---- */
.partner-hero {
  position: relative; overflow: hidden;
  padding: clamp(56px, 8vw, 100px) 0 clamp(72px, 10vw, 120px);
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(ellipse 80% 60% at 100% 20%, rgba(101,198,255,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 80%, rgba(18,201,113,0.08) 0%, transparent 50%),
    var(--paper);
}
.partner-hero__deco { position: absolute; inset: 0; pointer-events: none; }
.partner-hero__atom {
  position: absolute; border-radius: 3px;
  background: var(--spring); opacity: 0.12;
}
.partner-hero__atom--1 { width: 120px; height: 120px; top: 12%; right: 8%; transform: rotate(18deg); }
.partner-hero__atom--2 { width: 48px; height: 48px; top: 58%; right: 22%; transform: rotate(-8deg); background: var(--sky); }
.partner-hero__atom--3 { width: 72px; height: 72px; bottom: 18%; right: 5%; transform: rotate(32deg); background: var(--marigold); opacity: 0.10; }

.partner-hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.partner-hero__copy .eyebrow { margin-bottom: 20px; }
.partner-hero__title {
  font-family: var(--font-headline); font-weight: 600;
  font-size: clamp(42px, 5.4vw, 64px); line-height: 1.06;
  letter-spacing: -0.035em; color: var(--text-strong);
}
.partner-hero__title .accent {
  font-family: var(--font-accent); color: var(--spring-deep);
}
.partner-hero__lede {
  font-size: clamp(17px, 1.4vw, 20px); margin-top: 28px; max-width: 540px;
}
.partner-hero__sub {
  font-size: 16.5px; margin-top: 16px; max-width: 540px;
  color: var(--text-muted);
}
.partner-hero__cta { margin-top: 36px; width: auto; min-width: 240px; padding: 0 36px; }

/* Pipeline diagram (CSS-only) */
.partner-flow {
  display: flex; flex-direction: column; gap: 0;
  padding: 36px; background: var(--surface);
  border: 1px solid var(--border-default); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.partner-flow__stage {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px 22px; border-radius: var(--radius-lg);
  background: var(--paper-sunk);
}
.partner-flow__stage--pillar {
  background: var(--ink-900); color: #fff;
}
.partner-flow__dot {
  width: 10px; height: 10px; border-radius: 2px;
  background: var(--sky-deep); transform: rotate(14deg);
}
.partner-flow__dot--spring { background: var(--spring); }
.partner-flow__mark {
  font-family: var(--font-accent); font-weight: 600; font-size: 22px;
  letter-spacing: -0.02em; color: var(--spring);
}
.partner-flow__label {
  font-size: 13.5px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--text-muted);
}
.partner-flow__stage--pillar .partner-flow__label { color: var(--text-inverse-muted); }
.partner-flow__connector {
  width: 2px; height: 28px; margin: 0 auto;
  background: linear-gradient(to bottom, var(--border-default), var(--spring));
}

/* ---- Problem ---- */
.partner-problem {
  padding: clamp(88px, 10vw, 128px) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.partner-problem__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px); align-items: start;
}
.partner-problem__head .eyebrow { margin-bottom: 20px; }
.partner-problem__title {
  font-size: clamp(32px, 3.8vw, 46px); line-height: 1.1;
}
.partner-problem__title .muted {
  display: block; margin-top: 8px; color: var(--spring-deep);
}
.partner-problem__body p { font-size: 18px; }
.partner-problem__body p + p { margin-top: 18px; }
.partner-problem__bridge {
  display: flex; align-items: center; gap: 14px; margin-top: 32px;
  font-family: var(--font-headline); font-weight: 600; font-size: 22px;
  letter-spacing: -0.015em; color: var(--text-strong);
}

/* ---- Steps ---- */
.partner-steps {
  padding: clamp(88px, 10vw, 128px) 0;
  background-color: var(--paper-sunk);
  background-image:
    linear-gradient(rgba(22,19,15,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,19,15,0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  border-bottom: 1px solid var(--border-subtle);
}
.partner-steps__head { max-width: 560px; margin-bottom: 48px; }
.partner-steps__head .eyebrow { margin-bottom: 18px; }
.partner-steps__head h2 { font-size: clamp(32px, 3.6vw, 44px); }
.partner-steps__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.partner-step {
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 48px); align-items: start;
  padding: clamp(28px, 3vw, 36px) clamp(28px, 4vw, 44px);
  background: var(--surface); border: 1px solid var(--border-default);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xs);
  border-left: 4px solid var(--spring);
  transition: box-shadow var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-out);
}
.partner-step:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.partner-step--sky   { border-left-color: var(--sky); }
.partner-step--marigold { border-left-color: var(--marigold); }
.partner-step--spring { border-left-color: var(--spring); }
.partner-step__index {
  font-family: var(--font-accent); font-weight: 500; font-size: 42px;
  line-height: 1; letter-spacing: -0.03em; color: var(--text-faint);
}
.partner-step--sky .partner-step__index      { color: var(--sky-deep); }
.partner-step--marigold .partner-step__index { color: var(--marigold-deep); }
.partner-step--spring .partner-step__index   { color: var(--spring-deep); }
.partner-step__title {
  font-family: var(--font-headline); font-weight: 600; font-size: 24px;
  line-height: 1.2; letter-spacing: -0.02em; color: var(--text-strong);
}
.partner-step__body {
  margin-top: 10px; font-size: 17px; line-height: 1.6;
  letter-spacing: -0.01em; color: var(--text-body); max-width: 640px;
}

/* ---- Audience (dark panel) ---- */
.partner-audience {
  padding: clamp(88px, 10vw, 120px) 0;
  background: var(--ink-900); color: #fff;
}
.partner-audience__inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 72px); align-items: start;
}
.partner-audience__eyebrow { color: var(--spring); }
.partner-audience__title {
  font-size: clamp(30px, 3.4vw, 42px); line-height: 1.12; color: #fff;
  margin-top: 18px;
}
.partner-audience__tags {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 12px; align-content: start;
}
.partner-audience__tags li {
  padding: 14px 20px; border-radius: 999px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard);
}
.partner-audience__tags li:hover {
  background: rgba(18,201,113,0.15);
  border-color: rgba(18,201,113,0.35);
}

/* ---- Ways to Partner Grid ---- */
.partner-ways__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.partner-ways-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: background var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-out);
}
.partner-ways-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(18, 201, 113, 0.3);
  transform: translateY(-2px);
}
.partner-ways-card__title {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}
.partner-ways-card__body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-inverse-muted);
}

/* ---- Ecosystem Outcomes List ---- */
.ecosystem-outcomes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ecosystem-outcomes li {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ecosystem-outcomes li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--spring);
  border-radius: 2px;
  transform: rotate(14deg);
  flex-shrink: 0;
}

/* ---- The Ecosystem Section ---- */
.ecosystem-section {
  padding: clamp(88px, 10vw, 128px) 0;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--paper);
}
.ecosystem-section__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.ecosystem-section__head .eyebrow {
  margin-bottom: 20px;
}
.ecosystem-section__intro {
  margin-top: 24px;
}
.ecosystem-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.ecosystem-card {
  background: var(--surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-out);
}
.ecosystem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.ecosystem-card__title {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 19px;
  color: var(--text-strong);
  margin-bottom: 16px;
}
.ecosystem-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ecosystem-card__tags span {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--paper-sunk);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  color: var(--text-body);
  transition: background var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard);
}
.ecosystem-card__tags span:hover {
  background: rgba(18, 201, 113, 0.08);
  border-color: rgba(18, 201, 113, 0.25);
  color: var(--spring-deep);
}
.ecosystem-footer {
  margin-top: 56px;
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
}
.ecosystem-footer a {
  color: var(--spring-deep);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--dur-fast) var(--ease-standard);
}
.ecosystem-footer a:hover {
  color: var(--spring);
}

/* ---- Role clarity ---- */
.partner-clarity {
  padding: clamp(88px, 10vw, 128px) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.partner-clarity__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.partner-clarity__head .eyebrow { margin-bottom: 20px; }
.partner-clarity__title { font-size: clamp(30px, 3.4vw, 40px); line-height: 1.14; }
.partner-clarity__panel {
  padding: 36px 40px; background: var(--surface);
  border: 1px solid var(--border-default); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.partner-clarity__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.partner-clarity__list li {
  font-family: var(--font-headline); font-weight: 600; font-size: 20px;
  letter-spacing: -0.015em; color: var(--text-strong);
  padding-bottom: 14px; border-bottom: 1px solid var(--border-subtle);
}
.partner-clarity__list li:last-child { padding-bottom: 0; border-bottom: none; }
.partner-clarity__not {
  display: inline-block; min-width: 42px;
  font-family: var(--font-accent); font-weight: 500; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-faint); margin-right: 8px;
}
.partner-clarity__note {
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 16.5px; line-height: 1.6; color: var(--text-muted);
}

/* ---- Contact CTA ---- */
.partner-contact {
  padding: clamp(96px, 12vw, 140px) 0;
  background: var(--spring-tint);
  border-top: 1px solid rgba(18,201,113,0.15);
}
.partner-contact__inner {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.partner-contact__eyebrow { margin-bottom: 20px; }
.partner-contact__title {
  font-size: clamp(26px, 3.2vw, 38px); line-height: 1.18;
  margin-bottom: 40px;
}
.partner-contact__inner .btn { margin: 0 auto; width: auto; min-width: 240px; padding: 0 36px; }

/* ============================================================
   Mission page
   ============================================================ */
.page-mission { background: var(--paper); }

/* ---- Hero ---- */
.mission-hero {
  position: relative; overflow: hidden;
  padding: clamp(64px, 9vw, 112px) 0 clamp(72px, 10vw, 100px);
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(ellipse 70% 55% at 10% 30%, rgba(18,201,113,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 70%, rgba(247,169,18,0.08) 0%, transparent 50%),
    var(--paper);
}
.mission-hero__deco { position: absolute; inset: 0; pointer-events: none; }
.mission-hero__atom {
  position: absolute; border-radius: 3px; opacity: 0.11;
}
.mission-hero__atom--1 {
  width: 96px; height: 96px; top: 18%; right: 12%;
  background: var(--spring); transform: rotate(22deg);
}
.mission-hero__atom--2 {
  width: 56px; height: 56px; bottom: 22%; right: 28%;
  background: var(--marigold); transform: rotate(-12deg);
}
.mission-hero__inner { max-width: 820px; }
.mission-hero__inner .eyebrow { margin-bottom: 24px; }
.mission-hero__title {
  font-family: var(--font-headline); font-weight: 600;
  font-size: clamp(44px, 5.8vw, 72px); line-height: 1.04;
  letter-spacing: -0.038em; color: var(--text-strong);
}
.mission-hero__title .accent {
  font-family: var(--font-accent); color: var(--spring-deep);
}
.mission-hero__split {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  margin-top: clamp(32px, 4vw, 48px);
  font-family: var(--font-headline); font-weight: 600;
  font-size: clamp(24px, 2.8vw, 32px); letter-spacing: -0.02em;
  color: var(--text-strong);
}
.mission-hero__split-muted { color: var(--text-faint); }

/* ---- Gap ---- */
.mission-gap {
  padding: clamp(72px, 9vw, 112px) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.mission-gap__grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px); align-items: end;
}
.mission-gap__body p { font-size: 19px; max-width: 580px; }
.mission-gap__body p + p { margin-top: 20px; }
.mission-gap__statement {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 32px 36px; background: var(--surface);
  border: 1px solid var(--border-default); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.mission-gap__statement p {
  font-family: var(--font-headline); font-weight: 600; font-size: 24px;
  line-height: 1.3; letter-spacing: -0.018em; color: var(--text-strong);
}

/* ---- Origin story ---- */
.mission-origin {
  padding: clamp(88px, 10vw, 128px) 0;
  background-color: var(--paper-sunk);
  background-image:
    linear-gradient(rgba(22,19,15,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,19,15,0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  border-bottom: 1px solid var(--border-subtle);
}
.mission-origin__head { max-width: 640px; margin-bottom: 48px; }
.mission-origin__head .eyebrow { margin-bottom: 18px; }
.mission-origin__intro { font-size: 18px; }
.mission-origin__story {
  max-width: 720px; padding-left: clamp(0px, 4vw, 32px);
  border-left: 3px solid var(--spring);
}
.mission-origin__quote {
  margin: 0; padding: 0;
  font-family: var(--font-headline); font-weight: 600;
  font-size: clamp(26px, 3vw, 34px); line-height: 1.25;
  letter-spacing: -0.022em; color: var(--text-strong);
}
.mission-origin__beats {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.mission-origin__beats li {
  font-size: 18px; line-height: 1.55; color: var(--text-muted);
  padding-left: 20px; position: relative;
}
.mission-origin__beats li::before {
  content: ""; position: absolute; left: 0; top: 0.72em;
  width: 6px; height: 6px; border-radius: 1px;
  background: var(--text-faint); transform: rotate(14deg);
}
.mission-origin__conviction {
  margin-top: 36px; font-size: 18px; line-height: 1.65; color: var(--text-body);
}
.mission-origin__conviction strong {
  font-family: var(--font-headline); font-weight: 600;
  font-size: 20px; color: var(--text-strong);
}

/* ---- Mission statement ---- */
.mission-statement {
  padding: clamp(88px, 11vw, 132px) 0;
  background: var(--ink-900); color: #fff;
}
.mission-statement__inner { max-width: 900px; text-align: center; margin: 0 auto; }
.mission-statement__eyebrow { color: var(--spring); margin-bottom: 28px; }
.mission-statement__quote {
  margin: 0; padding: 0; border: none;
  font-family: var(--font-headline); font-weight: 600;
  font-size: clamp(28px, 3.8vw, 48px); line-height: 1.16;
  letter-spacing: -0.028em; color: #fff;
}

/* ---- Why Bitcoin ---- */
.mission-bitcoin {
  padding: clamp(88px, 10vw, 128px) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.mission-bitcoin__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 88px); align-items: start;
}
.mission-bitcoin__head .eyebrow { margin-bottom: 18px; }
.mission-bitcoin__title { font-size: clamp(30px, 3.4vw, 40px); }
.mission-bitcoin__body p { font-size: 18px; }
.mission-bitcoin__body p + p { margin-top: 18px; }
.mission-bitcoin__payoff {
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-headline); font-weight: 600;
  font-size: 19px !important; color: var(--text-strong) !important;
}

/* ---- Approach ---- */
.mission-approach {
  padding: clamp(88px, 10vw, 128px) 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border-subtle);
}
.mission-approach__head { max-width: 560px; margin-bottom: 48px; }
.mission-approach__head .eyebrow { margin-bottom: 18px; }
.mission-approach__head h2 { font-size: clamp(30px, 3.4vw, 42px); }
.mission-approach__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.mission-pillar {
  padding: 36px 32px; min-height: 220px;
  background: var(--surface); border: 1px solid var(--border-default);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xs);
  border-top: 4px solid var(--spring);
  transition: box-shadow var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-out);
}
.mission-pillar:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.mission-pillar--sky      { border-top-color: var(--sky); }
.mission-pillar--marigold { border-top-color: var(--marigold); }
.mission-pillar--spring   { border-top-color: var(--spring); }
.mission-pillar__label {
  font-family: var(--font-accent); font-weight: 600; font-size: 28px;
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 18px;
}
.mission-pillar--sky .mission-pillar__label      { color: var(--sky-deep); }
.mission-pillar--marigold .mission-pillar__label { color: var(--marigold-deep); }
.mission-pillar--spring .mission-pillar__label   { color: var(--spring-deep); }
.mission-pillar__body {
  font-size: 16.5px; line-height: 1.6; letter-spacing: -0.01em;
  color: var(--text-body);
}
.mission-approach__note {
  text-align: center; max-width: 640px; margin: 52px auto 0;
  font-size: 18px; line-height: 1.6; color: var(--text-body);
}
.mission-approach__note strong { color: var(--text-strong); }

/* ---- Role ---- */
.mission-role {
  padding: clamp(88px, 10vw, 128px) 0;
  background: var(--spring-tint);
  border-bottom: 1px solid rgba(18,201,113,0.12);
}
.mission-role__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.mission-role__head .eyebrow { margin-bottom: 18px; }
.mission-role__title { font-size: clamp(28px, 3.2vw, 38px); line-height: 1.14; }
.mission-role__lead { margin-top: 20px; font-size: 17px; color: var(--text-muted); }
.mission-role__outcomes {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0;
  background: var(--surface); border: 1px solid var(--border-default);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.mission-role__outcomes li {
  padding: 22px 28px; font-family: var(--font-headline);
  font-weight: 600; font-size: 19px; letter-spacing: -0.015em;
  color: var(--text-strong); border-bottom: 1px solid var(--border-subtle);
  transition: background var(--dur-fast) var(--ease-standard);
}
.mission-role__outcomes li:last-child { border-bottom: none; }
.mission-role__outcomes li:hover { background: var(--paper-sunk); }
.mission-role__outcomes li::before {
  content: ""; display: inline-block;
  width: 8px; height: 8px; margin-right: 14px;
  background: var(--spring); border-radius: 2px;
  transform: rotate(14deg); vertical-align: middle;
}

/* ---- Vision ---- */
.mission-vision {
  padding: clamp(96px, 11vw, 140px) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.mission-vision__inner { max-width: 880px; }
.mission-vision__eyebrow { margin-bottom: 24px; }
.mission-vision__title {
  font-size: clamp(34px, 4.2vw, 52px); line-height: 1.12;
}
.mission-vision__title .accent { color: var(--spring-deep); }
.mission-vision__body {
  margin-top: 28px; font-size: 18.5px; max-width: 680px;
}
.mission-vision__closing {
  margin-top: 36px; font-size: 20px; line-height: 1.55; color: var(--text-muted);
}
.mission-vision__closing strong {
  font-family: var(--font-headline); font-weight: 600;
  color: var(--text-strong); font-size: 22px;
}

/* ---- Belief / closing ---- */
.mission-belief {
  padding: clamp(88px, 10vw, 128px) 0;
}
.mission-belief__inner { max-width: 720px; }
.mission-belief__inner .eyebrow { margin-bottom: 32px; }
.mission-belief__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.mission-belief__list li {
  font-family: var(--font-headline); font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px); line-height: 1.3;
  letter-spacing: -0.02em; color: var(--text-strong);
  padding-left: 24px; border-left: 3px solid var(--border-default);
  transition: border-color var(--dur-base) var(--ease-standard);
}
.mission-belief__list li:hover { border-left-color: var(--spring); }
.mission-belief__actions {
  display: flex; gap: 18px; flex-wrap: wrap; margin-top: 48px;
}
.mission-belief__actions .btn--lg { width: auto; min-width: 200px; padding: 0 32px; }

/* ============================================================
   Apply page
   ============================================================ */
.page-apply { background: var(--paper); }

/* ---- Hero ---- */
.apply-hero {
  position: relative; overflow: hidden;
  padding: clamp(64px, 9vw, 108px) 0 clamp(80px, 10vw, 120px);
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(ellipse 65% 55% at 85% 25%, rgba(47,98,230,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 5% 75%, rgba(18,201,113,0.07) 0%, transparent 50%),
    var(--paper);
}
.apply-hero__deco { position: absolute; inset: 0; pointer-events: none; }
.apply-hero__atom {
  position: absolute; border-radius: 3px; opacity: 0.12;
}
.apply-hero__atom--1 {
  width: 88px; height: 88px; top: 14%; right: 10%;
  background: var(--cobalt); transform: rotate(16deg);
}
.apply-hero__atom--2 {
  width: 44px; height: 44px; bottom: 28%; right: 24%;
  background: var(--spring); transform: rotate(-10deg); opacity: 0.14;
}
.apply-hero__inner { max-width: 680px; }
.apply-hero__copy .eyebrow { margin-bottom: 22px; }
.apply-hero__title {
  font-family: var(--font-headline); font-weight: 600;
  font-size: clamp(44px, 5.6vw, 68px); line-height: 1.06;
  letter-spacing: -0.035em; color: var(--text-strong);
}
.apply-hero__title .accent {
  font-family: var(--font-accent); color: var(--cobalt);
}
.apply-hero__lede {
  font-size: clamp(17px, 1.4vw, 20px); margin-top: 28px;
}
.apply-hero__sub {
  font-size: 16.5px; margin-top: 16px; color: var(--text-muted);
}
.apply-hero__cta {
  margin-top: 36px; width: auto; min-width: 220px; padding: 0 36px;
}

/* ---- Program Format (5 Columns) ---- */
.program-format {
  margin-bottom: 96px;
}
.program-format__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.program-format__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.program-format__col h4 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-strong);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--border-subtle);
  padding-bottom: 8px;
}
.program-format__col p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---- Your Journey Pipeline ---- */
.journey-pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 48px;
}
.journey-step {
  flex: 1 1 0px;
  min-width: 110px;
  background: var(--surface);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-standard);
}
.journey-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--cobalt);
}
.journey-step__num {
  font-family: var(--font-accent);
  font-size: 12px;
  color: var(--cobalt);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.journey-step__name {
  font-family: var(--font-headline);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-strong);
  line-height: 1.2;
}
.journey-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 16px;
  flex-shrink: 0;
}
.journey-tagline {
  text-align: center;
  margin-top: 36px;
  font-size: 17px;
  color: var(--text-muted);
}

/* ---- Split Info Grid ---- */
.split-info {
  margin-bottom: 96px;
}
.split-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.info-card h3 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 24px;
  color: var(--text-strong);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
}
.info-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card__list li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-body);
  padding-left: 28px;
  position: relative;
}
.info-card__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--cobalt);
  transform: rotate(14deg);
}
.info-card__list--numbered li {
  padding-left: 36px;
}
.info-card__list--numbered li::before {
  display: none;
}
.info-card__step-num {
  position: absolute;
  left: 0;
  top: 2px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 13px;
  color: var(--cobalt);
  background: var(--paper-sunk);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Audience ---- */
.apply-audience {
  padding: clamp(88px, 10vw, 128px) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.apply-audience__head { max-width: 640px; margin-bottom: 48px; }
.apply-audience__head .eyebrow { margin-bottom: 18px; }
.apply-audience__title { font-size: clamp(28px, 3.2vw, 38px); line-height: 1.14; }
.apply-audience__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.apply-role {
  padding: 28px 32px; background: var(--surface);
  border: 1px solid var(--border-default); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-out);
}
.apply-role:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.apply-role--wide { grid-column: 1 / -1; }
.apply-role__title {
  font-family: var(--font-headline); font-weight: 600; font-size: 20px;
  letter-spacing: -0.015em; color: var(--text-strong);
}
.apply-role__detail {
  margin-top: 8px; font-size: 15px; line-height: 1.55;
  color: var(--text-muted);
}
.apply-audience__note {
  display: flex; align-items: flex-start; gap: 16px;
  margin-top: 40px; padding: 28px 32px;
  background: var(--spring-tint); border-radius: var(--radius-lg);
  border: 1px solid rgba(18,201,113,0.18);
}
.apply-audience__note p {
  font-size: 17px; line-height: 1.6; color: var(--text-body);
}
.apply-audience__note strong { color: var(--text-strong); font-weight: 600; }

/* ---- Gains ---- */
.apply-gains {
  padding: clamp(88px, 10vw, 128px) 0;
  background-color: var(--paper-sunk);
  background-image:
    linear-gradient(rgba(22,19,15,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,19,15,0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  border-bottom: 1px solid var(--border-subtle);
}
.apply-gains__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.apply-gains__head .eyebrow { margin-bottom: 18px; }
.apply-gains__title { font-size: clamp(28px, 3.2vw, 36px); line-height: 1.14; }
.apply-gains__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0;
  background: var(--surface); border: 1px solid var(--border-default);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.apply-gains__list li {
  padding: 22px 28px; font-size: 17px; line-height: 1.55;
  letter-spacing: -0.01em; color: var(--text-body);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--dur-fast) var(--ease-standard);
}
.apply-gains__list li:last-child { border-bottom: none; }
.apply-gains__list li:hover { background: var(--paper-sunk); }
.apply-gains__list li::before {
  content: ""; display: inline-block;
  width: 8px; height: 8px; margin-right: 14px;
  background: var(--cobalt); border-radius: 2px;
  transform: rotate(14deg); vertical-align: middle;
}

/* ---- Traits ---- */
.apply-traits {
  padding: clamp(88px, 10vw, 120px) 0;
  background: var(--cobalt); color: #fff;
}
.apply-traits__inner { max-width: 800px; }
.apply-traits__head .eyebrow { color: var(--sky); }
.apply-traits__title {
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.14; color: #fff;
  margin-top: 18px;
}
.apply-traits__title .accent { color: var(--sky); }
.apply-traits__tags {
  list-style: none; margin: 40px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.apply-traits__tags li {
  padding: 14px 22px; border-radius: 999px;
  font-family: var(--font-headline); font-weight: 600; font-size: 16px;
  letter-spacing: -0.01em; color: #fff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  transition: background var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard);
}
.apply-traits__tags li:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.30);
}

/* ---- Commitment ---- */
.apply-commitment {
  padding: clamp(88px, 10vw, 128px) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.apply-commitment__inner { max-width: 720px; text-align: center; margin: 0 auto; }
.apply-commitment__eyebrow { margin-bottom: 28px; }
.apply-commitment__quote {
  margin: 0; padding: 0; border: none;
  font-family: var(--font-headline); font-weight: 600;
  font-size: clamp(26px, 3.2vw, 36px); line-height: 1.2;
  letter-spacing: -0.022em; color: var(--text-strong);
}
.apply-commitment__goal {
  margin-top: 32px; font-size: 18px; line-height: 1.65; color: var(--text-muted);
}
.apply-commitment__goal strong {
  display: block; margin-top: 8px;
  font-family: var(--font-headline); font-weight: 600;
  font-size: 20px; color: var(--text-strong);
}

/* ---- Ready / Form ---- */
.apply-form-wrap {
  padding: clamp(88px, 10vw, 128px) 0 clamp(96px, 12vw, 140px);
  background: var(--paper-sunk);
  border-top: 1px solid var(--border-subtle);
}
.apply-form-wrap__inner { max-width: 860px; }

.apply-form__intro { margin-bottom: 48px; }
.apply-form__intro .eyebrow { margin-bottom: 18px; }
.apply-form__title {
  font-size: clamp(28px, 3.2vw, 38px); line-height: 1.14;
  max-width: 720px;
}
.apply-form__lede {
  margin-top: 18px; font-size: 17px; max-width: 560px;
}

.apply-form__success {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 32px; padding: 28px 32px;
  background: var(--spring-tint); border: 1px solid rgba(18,201,113,0.22);
  border-radius: var(--radius-xl);
}
.apply-form__success[hidden] { display: none; }
.apply-form__success strong {
  display: block; font-family: var(--font-headline); font-weight: 600;
  font-size: 20px; color: var(--text-strong); margin-bottom: 6px;
}
.apply-form__success p { font-size: 16px; line-height: 1.55; color: var(--text-body); }

.apply-form__card {
  padding: clamp(28px, 4vw, 44px);
  margin-bottom: 20px; background: var(--surface);
  border: 1px solid var(--border-default); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xs);
}
.apply-form__card-head {
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.apply-form__section-num {
  font-family: var(--font-accent); font-weight: 500; font-size: 14px;
  letter-spacing: 0.04em; color: var(--cobalt); margin-bottom: 10px;
}
.apply-form__section-title {
  font-family: var(--font-headline); font-weight: 600;
  font-size: clamp(22px, 2.4vw, 26px); letter-spacing: -0.02em;
  color: var(--text-strong);
}

.apply-form__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px 28px;
}
.apply-form__stack {
  display: flex; flex-direction: column; gap: 28px;
}
.apply-form__field--full { grid-column: 1 / -1; }
.apply-form__field--narrow { max-width: 420px; }

.apply-form__label {
  display: block; margin-bottom: 10px;
  font-size: 14.5px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--text-strong);
}
.apply-form__req { color: var(--spring-deep); font-weight: 600; }

.apply-form__input,
.apply-form__select,
.apply-form__textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px;
  letter-spacing: -0.01em; color: var(--text-strong);
  background: var(--paper); border: 1px solid var(--border-default);
  border-radius: 10px;
  transition: border-color var(--dur-fast) var(--ease-standard),
              box-shadow var(--dur-fast) var(--ease-standard);
}
.apply-form__input,
.apply-form__select {
  height: 52px; padding: 0 16px;
}
.apply-form__select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2378736B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 44px;
}
.apply-form__textarea {
  padding: 14px 16px; line-height: 1.55; resize: vertical;
  min-height: 100px;
}
.apply-form__textarea--lg { min-height: 148px; }

.apply-form__input::placeholder,
.apply-form__textarea::placeholder { color: var(--text-faint); }

.apply-form__input:hover,
.apply-form__select:hover,
.apply-form__textarea:hover { border-color: #D4CEC4; }

.apply-form__input:focus,
.apply-form__select:focus,
.apply-form__textarea:focus {
  outline: none; border-color: var(--spring);
  box-shadow: 0 0 0 3px rgba(18,201,113,0.14);
}

.apply-form__input.is-invalid,
.apply-form__select.is-invalid,
.apply-form__textarea.is-invalid {
  border-color: #D64545;
  box-shadow: 0 0 0 3px rgba(214,69,69,0.10);
}

.apply-form__error {
  margin: 8px 0 0; min-height: 1.2em;
  font-size: 13px; color: #C0392B;
}

.apply-form__fieldset {
  margin: 0; padding: 0; border: none;
}
.apply-form__fieldset .apply-form__label { margin-bottom: 14px; }

.apply-form__radios {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.apply-form__radio {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; cursor: pointer;
  background: var(--paper); border: 1px solid var(--border-default);
  border-radius: 10px; font-size: 15px; color: var(--text-body);
  transition: border-color var(--dur-fast) var(--ease-standard),
              background var(--dur-fast) var(--ease-standard);
}
.apply-form__radio input {
  width: 16px; height: 16px; margin: 0;
  accent-color: var(--spring); cursor: pointer;
}
.apply-form__radio:has(input:checked) {
  border-color: var(--spring); background: var(--spring-tint);
  color: var(--text-strong);
}

.apply-form__checks {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.apply-form__checks--grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.apply-form__check {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; cursor: pointer;
  background: var(--paper); border: 1px solid var(--border-default);
  border-radius: 10px; font-size: 14.5px; color: var(--text-body);
  transition: border-color var(--dur-fast) var(--ease-standard),
              background var(--dur-fast) var(--ease-standard);
}
.apply-form__check input {
  width: 16px; height: 16px; margin: 0; flex-shrink: 0;
  accent-color: var(--spring); cursor: pointer;
}
.apply-form__check:has(input:checked) {
  border-color: var(--spring); background: var(--spring-tint);
  color: var(--text-strong);
}

.apply-form__conditional {
  padding: 24px; background: var(--paper-sunk);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
}
.apply-form__conditional[hidden] { display: none; }

.apply-form__consent {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 15px; line-height: 1.55;
  color: var(--text-body);
}
.apply-form__consent input {
  width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0;
  accent-color: var(--spring); cursor: pointer;
}

.apply-form__submit {
  margin-top: 12px; padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.apply-form__btn {
  width: auto; min-width: 260px; padding: 0 40px;
  border: none; cursor: pointer;
}
.apply-form__btn:disabled { opacity: 0.6; cursor: not-allowed; }
.apply-form__note {
  max-width: 520px; margin: 24px auto 0;
  font-size: 15px; line-height: 1.6; color: var(--text-muted);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 880px) {
  .container { padding: 0 24px; }
  .container--wide { padding: 0 24px; }

  /* ---- Home: hero + nav ---- */
  .hero {
    aspect-ratio: auto;
    min-height: auto;
    background-position: 72% bottom;
  }
  .hero__wash {
    background: linear-gradient(180deg,
      rgba(232,241,235,0.98) 0%,
      rgba(232,241,235,0.94) 42%,
      rgba(232,241,235,0.82) 100%);
  }
  .site-nav {
    padding-top: 20px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .subpage-header__inner {
    padding: 16px 24px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .nav-logo img { height: 50px; }
  .subpage-header .nav-logo img { height: 44px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 8px 0 4px;
    border-top: 1px solid var(--border-subtle);
  }
  .nav-links.is-open { display: flex; }
  .nav-link {
    font-size: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-link.is-active {
    padding-left: 12px;
    border-left: 3px solid var(--spring);
  }
  .nav-link.is-active::before { display: none; }
  .hero__inner {
    padding: clamp(28px, 6vw, 48px) 0 clamp(40px, 8vw, 56px);
  }
  .hero__title { font-size: clamp(40px, 10.5vw, 56px); }
  .hero__lede { max-width: none; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn--lg { width: 100%; max-width: none; }

  /* ---- Home: mission ---- */
  .mission { padding-top: 88px; padding-bottom: 88px; }
  .mission__grid,
  .how__grid,
  .paths,
  .footer__top { grid-template-columns: 1fr; }
  .mission__grid { gap: 40px; }
  .mission__title { font-size: clamp(30px, 7.5vw, 46px); }
  .mission__statement { margin-top: 24px; }
  .mission__statement p { font-size: 19px; }
  .mission__body { padding-top: 0; }
  .mission__photo { margin-top: 48px; }

  /* ---- Home: how ---- */
  .how__inner { padding-top: 88px; padding-bottom: 88px; }
  .how__head { margin-bottom: 36px; }
  .how__head h2 { font-size: clamp(28px, 6.5vw, 44px); }
  .how__grid { gap: 16px; }
  .how-card { padding: 28px 24px; }

  /* ---- Home: vision + paths ---- */
  .vision__inner { padding-top: 88px; padding-bottom: 88px; }
  .vision__head { margin-bottom: 40px; }
  .paths { gap: 16px; }
  .path-card { padding: 32px 28px; }
  .path-card__title { font-size: clamp(26px, 6vw, 34px); }
  .path-card__body { max-width: none; margin-bottom: 28px; }
  .card-btn { width: 100%; }

  /* ---- Footer (all pages) ---- */
  .footer__top { gap: 32px; padding-top: 48px; padding-bottom: 32px; }
  .footer__brand p { max-width: none; }
  .footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 28px;
  }
  .footer__heading {
    width: 100%;
    margin-bottom: 4px;
  }
  .footer__bottom {
    flex-wrap: wrap;
    gap: 8px 10px;
    padding: 16px 0;
  }
  .footer__tagline {
    margin-left: 0;
    width: 100%;
    margin-top: 2px;
  }

  /* ---- Subpages ---- */
  .partner-hero__grid,
  .partner-problem__grid,
  .partner-audience__inner,
  .partner-clarity__grid,
  .ecosystem-section__grid,
  .mission-gap__grid,
  .mission-bitcoin__grid,
  .mission-approach__grid,
  .mission-role__grid,
  .apply-audience__grid,
  .apply-gains__grid,
  .apply-form__grid,
  .apply-form__checks--grid,
  .program-format__grid,
  .split-info__grid { grid-template-columns: 1fr; }
  .journey-pipeline {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .journey-step {
    flex: none;
    flex-direction: row;
    padding: 16px 20px;
    text-align: left;
    justify-content: flex-start;
    gap: 16px;
  }
  .journey-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
  .apply-role--wide { grid-column: auto; }
  .apply-form__field--narrow { max-width: none; }
  .partner-flow { order: -1; }
  .btn--lg { width: 100%; }
  .partner-hero__cta,
  .partner-contact__inner .btn,
  .mission-belief__actions .btn--lg,
  .apply-hero__cta,
  .apply-form__btn { width: 100%; }
  .mission-belief__actions { flex-direction: column; }
}

@media (max-width: 520px) {
  .container,
  .container--wide { padding: 0 20px; }

  /* ---- Nav (all pages) ---- */
  .site-nav { padding-top: 16px; }
  .subpage-header__inner { padding: 14px 20px; }
  .nav-logo img { height: 44px; }
  .subpage-header .nav-logo img { height: 40px; }
  .nav-toggle { width: 40px; height: 40px; }
  .nav-link { font-size: 15px; padding: 12px 0; }

  /* ---- Footer (all pages) ---- */
  .footer__top { padding-top: 40px; padding-bottom: 28px; gap: 28px; }
  .footer__brand img { height: 46px; }
  .footer__brand p { font-size: 14px; }
  .footer__links {
    flex-direction: column;
    gap: 10px;
  }
  .footer__bottom { font-size: 12px; }
  .hero { background-position: 80% center; }
  .hero__title { font-size: clamp(36px, 11vw, 44px); line-height: 1.12; }
  .hero__lede { font-size: 16px; margin-top: 20px; }
  .hero__cta { margin-top: 28px; gap: 12px; }
  .btn--lg { height: 56px; font-size: 16px; }

  /* ---- Home: sections ---- */
  .mission { padding-top: 64px; padding-bottom: 64px; }
  .mission__title { font-size: clamp(28px, 8vw, 36px); }
  .mission__body p { font-size: 17px; }
  .mission__photo { margin-top: 36px; border-radius: var(--radius-lg); }
  .how__inner { padding-top: 64px; padding-bottom: 64px; }
  .how__head h2 { font-size: clamp(26px, 7vw, 32px); }
  .how-card__num { font-size: 28px; }
  .how-card__title { font-size: 19px; }
  .how__note { font-size: 16px; margin-top: 36px; }
  .vision__inner { padding-top: 64px; padding-bottom: 64px; }
  .vision__title { font-size: clamp(26px, 7vw, 34px); }
  .path-card { padding: 28px 24px; }
  .path-card__deco { width: 100px; height: 100px; right: -28px; top: -28px; }
}
