/* ============================================================
   ReSolVe — shared stylesheet
   Navy chrome · green action · teal structure
   Manrope + Inter, Transform-slim
   ============================================================ */

/* Typography and the current visual tokens are defined in direction.css. */

:root {
  --navy:        #12324C;
  --navy-deep:   #0B2235;
  --navy-700:    #0E2A40;
  --green:       #0F6853;
  --green-hi:    #148066;
  --teal:        #2A7A82;
  --teal-ink:    #1E5C63;
  --mint:        #E7F3EF;
  --mint-deep:   #D4EBE3;
  --paper:       #F7FAF9;
  --ink:         #12324C;
  --ink-soft:    #4A6578;
  --charcoal:    #3A3A3C;
  --hair:        #D7E4DF;
  --hair-strong: #C3D4CE;
  --amber:       #C9891A;
  --crimson:     #B42318;
  --on-dark:     #E8EEF2;
  --on-dark-70:  rgba(232, 238, 242, 0.72);
  --on-dark-50:  rgba(232, 238, 242, 0.52);
  --on-dark-12:  rgba(232, 238, 242, 0.12);

  --wash-navy:   #E8EEF3;
  --wash-teal:   #E4F0F1;
  --wash-green:  #E7F3EF;
  --wash-warm:   #F4F1EA;

  --display: 'Manrope', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;

  --measure: 64ch;
  --gutter: clamp(28px, 7vw, 96px);
  --maxw: 1280px;
  --band-inset: clamp(12px, 1.8vw, 24px);
  --r-band: clamp(24px, 3.2vw, 48px);
  --nav-h: 74px;
  --r: 16px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(16.5px, 1vw + 11px, 18px);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; }
p, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
::selection { background: var(--green); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0 0 1.1em; max-width: var(--measure); text-wrap: pretty; }
strong { font-weight: 600; color: var(--navy-700); }
em { font-style: italic; }
.lead {
  font-size: clamp(1.12rem, 1.45vw, 1.35rem);
  line-height: 1.52;
  color: var(--ink);
  font-weight: 400;
  max-width: 58ch;
}
.small { font-size: 0.92rem; color: var(--ink-soft); }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }

.wrap {
  width: min(100%, var(--maxw));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(60px, 8vw, 110px); }
.section-tight { padding-block: clamp(36px, 5vw, 64px); }
.band-mint,
.band-navy-wash,
.band-teal,
.impact-band {
  margin-inline: var(--band-inset);
  border-radius: var(--r-band);
}
.band-mint { background: var(--mint); }
.band-navy-wash { background: var(--wash-navy); }
.band-teal { background: var(--wash-teal); }

.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.split-5-7 { grid-template-columns: 1fr 1.45fr; align-items: start; }
.split { grid-template-columns: 1fr 1fr; align-items: end; }
@media (max-width: 900px) {
  .cols-3, .cols-4, .split-5-7, .split { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cols-2 { grid-template-columns: 1fr; }
}

.label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-ink);
  margin: 0 0 1rem;
}

.btn {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.62em 1.35em;
  border: 1.5px solid var(--green);
  color: #fff;
  background: var(--green);
  text-decoration: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn .arw { transition: transform 0.2s var(--ease); }
.btn:hover { background: var(--green-hi); border-color: var(--green-hi); transform: translateY(-1px); }
.btn:hover .arw { transform: translateX(3px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--hair-strong);
}
.btn-ghost:hover { border-color: var(--navy); background: transparent; color: var(--navy); }
.btn-ondark {
  background: #fff;
  color: var(--navy-deep);
  border-color: #fff;
}
.btn-ondark:hover { background: var(--mint); border-color: var(--mint); }

.tlink {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}
.tlink .arw { transition: transform 0.2s var(--ease); }
.tlink:hover .arw { transform: translateX(3px); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.1) blur(12px);
  border-bottom: 1px solid var(--hair);
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--nav-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-right: auto;
}
.brand__mark { width: 42px; height: 35px; flex: none; }
.brand__word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  color: var(--charcoal);
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink-soft);
  position: relative;
  padding: 0.3em 0;
  transition: color 0.18s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--green); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; }
.nav-mobile-only { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
  border-radius: 2px;
}
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--hair);
    padding: 8px var(--gutter) 22px;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    display: block;
    padding: 0.9em 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--hair);
    width: 100%;
  }
  .nav-links.open a[aria-current="page"]::after { display: none; }
  .nav-mobile-only { display: block; }
}

/* ---------- footer ---------- */
.site-footer {
  margin-inline: var(--band-inset);
  margin-top: clamp(20px, 2.4vw, 36px);
  border-radius: var(--r-band) var(--r-band) 0 0;
  background: var(--navy-deep);
  color: var(--on-dark-70);
  padding-block: clamp(46px, 6vw, 72px) 30px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brandcol { grid-column: 1 / -1; }
}
.footer-links { display: grid; gap: 0.55rem; }
.footer-links a {
  color: var(--on-dark-70);
  text-decoration: none;
  font-size: 0.96rem;
  transition: color 0.18s var(--ease);
}
.footer-links a:hover { color: #fff; }
.footer-brandcol .brand { margin: 0; }
.footer-brandcol .brand__word { color: #fff; }
.footer-brandcol .brand__mark { filter: brightness(1.35); }
.footer-tag {
  font-size: 0.92rem;
  color: var(--on-dark-70);
  max-width: 36ch;
  margin-top: 0.9rem;
  line-height: 1.6;
}
.footer-fund {
  margin-top: 1.1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--on-dark-50);
}
.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(34px, 5vw, 52px);
  padding-top: 22px;
  border-top: 1px solid var(--on-dark-12);
  font-size: 0.78rem;
  color: var(--on-dark-50);
}
.footer-base a {
  color: inherit;
  text-underline-offset: 2px;
}
.footer-base a:hover { color: #fff; }

/* ---------- reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- page hero ---------- */
.page-hero { padding-block: clamp(54px, 7vw, 92px) clamp(28px, 4vw, 48px); }
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { margin-top: 1.4rem; }

/* ---------- home hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(40px, 6vw, 84px) clamp(36px, 5vw, 64px);
}
.hero__arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(24px, 3.4vw, 56px);
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
}
.hero h1 { max-width: 13ch; }
.hero .lead { margin: 1.45rem 0 2rem; max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem 1.4rem; align-items: center; }

.hero-art {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: clamp(16px, 2vw, 24px);
}
.hero-art svg { width: 100%; height: auto; }
.hero-art figcaption {
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ---------- metrics ---------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
  padding-bottom: clamp(8px, 2vw, 20px);
}
.metric {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  padding: 22px 22px 24px;
}
.metric:nth-child(1) { background: var(--mint); border-color: transparent; }
.metric:nth-child(2) { background: var(--wash-teal); border-color: transparent; }
.metric:nth-child(3) { background: var(--wash-navy); border-color: transparent; }
.metric__n {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.05;
}
.metric__l {
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
@media (max-width: 720px) { .metrics { grid-template-columns: 1fr 1fr; } }

/* ---------- cards ---------- */
.pcard {
  background: var(--wash, #fff);
  border: 1px solid var(--hair);
  border-radius: var(--r);
  padding: clamp(22px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 200px;
}
.pcard .num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--c, var(--teal));
}
.pcard p { font-size: 0.97rem; color: var(--ink-soft); margin: 0; }

.wp-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.4vw, 18px); }
@media (max-width: 860px) { .wp-strip { grid-template-columns: 1fr; } }
a.wpcard {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  padding: 1.15rem 1.25rem 1.25rem;
  display: grid;
  gap: 0.35rem;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
a.wpcard:hover { transform: translateY(-3px); border-color: var(--green); }
.wpcard .code {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--green);
}
.wpcard h3 { font-size: 1.08rem; }
.wpcard .who { font-size: 0.82rem; color: var(--ink-soft); }

.partner {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  padding: 1.3rem 1.35rem 1.45rem;
  display: grid;
  gap: 0.45rem;
}
.partner h3 { font-size: 1.2rem; }
.partner .role {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-ink);
}
.partner p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- news ---------- */
.news-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
@media (max-width: 820px) { .news-cards { grid-template-columns: 1fr; } }
.ncard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease);
}
.ncard:hover { transform: translateY(-3px); border-color: var(--hair-strong); }
.ncard .thumb {
  aspect-ratio: 16 / 9;
  background: var(--mint);
  display: grid;
  place-items: center;
}
.ncard .nbody {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: clamp(16px, 1.8vw, 22px);
  flex: 1;
}
.ncard .meta { display: flex; align-items: center; gap: 0.7rem; }
.ncard .date { font-family: var(--display); font-weight: 600; font-size: 0.8rem; color: var(--ink-soft); }
.ncard .cat {
  margin-left: auto;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
}
.ncard h3 { font-size: 1.15rem; line-height: 1.22; }
.ncard .read {
  margin-top: auto;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green);
}
.empty {
  background: #fff;
  border: 1px dashed var(--hair-strong);
  border-radius: var(--r);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}
.empty p { margin: 0.4rem auto 0; color: var(--ink-soft); }

/* ---------- approach ---------- */
.diagram {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: clamp(16px, 2.4vw, 28px);
}
.diagram svg { width: 100%; height: auto; }
.diagram figcaption {
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.failcard {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: clamp(20px, 2.4vw, 26px);
}
.failcard .n {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--teal);
}
.failcard p { margin: 0.45rem 0 0; font-size: 0.98rem; color: var(--ink-soft); }

.phase {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  padding: clamp(22px, 2.4vw, 30px);
}
.phase .scale {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.phase .tl {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-ink);
  margin: 0.5rem 0 0.8rem;
}
.phase p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); }

.plan {
  display: grid;
  gap: 10px;
}
.plan__head {
  display: grid;
  grid-template-columns: 140px 1fr 1fr 1fr;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.plan__head span {
  background: var(--wash-navy);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--navy);
}
.plan__head span:first-child { background: transparent; padding-left: 0; }
.plan__row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr 1fr;
  gap: 8px;
  align-items: stretch;
}
.plan__label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--navy);
  display: flex;
  align-items: center;
}
.plan__bar {
  grid-column: var(--span, 2 / 5);
  background: var(--mint);
  border: 1px solid var(--mint-deep);
  color: var(--navy);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
}
.plan__bar strong { display: block; font-family: var(--display); font-size: 0.82rem; }
@media (max-width: 760px) {
  .plan__head { display: none; }
  .plan__row { grid-template-columns: 1fr; }
  .plan__bar { grid-column: 1; }
}

.obj {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  padding: 1.2rem 1.3rem;
}
.obj .k {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--green);
}
.obj p { margin: 0.35rem 0 0; font-size: 0.95rem; color: var(--ink-soft); }

.rq {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--hair);
}
.rq .code {
  font-family: var(--display);
  font-weight: 800;
  color: var(--teal);
  padding-top: 0.15rem;
}
.rq p { margin: 0; }
.rq .wp { margin-top: 0.4rem; font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; }
@media (max-width: 560px) { .rq { grid-template-columns: 1fr; gap: 0.3rem; } }

/* WP tabs */
.wp-tabs {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: start;
}
@media (max-width: 840px) { .wp-tabs { grid-template-columns: 1fr; } }
.wp-list { display: grid; gap: 0.5rem; }
.wp-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  text-align: left;
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--hair);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.wp-item:hover { transform: translateX(2px); }
.wp-item .code {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--green);
  background: var(--mint);
  border-radius: 8px;
  padding: 0.45em 0.6em;
}
.wp-item .ttl {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  line-height: 1.18;
}
.wp-item .who { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.12rem; }
.wp-item[aria-selected="true"] {
  border-color: var(--green);
  box-shadow: inset 4px 0 0 var(--green);
}
.wp-panel {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 38px);
  min-height: 320px;
}
.wp-panel .phead { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.2rem; }
.wp-panel .phead .code {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.8rem;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  padding: 0.4em 0.65em;
}
.wp-panel h3 { font-size: clamp(1.35rem, 2.1vw, 1.8rem); margin: 0.35rem 0 1rem; }
.wp-panel .tasks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 1.1rem 0; }
@media (max-width: 520px) { .wp-panel .tasks { grid-template-columns: 1fr; } }
.wp-panel .task {
  background: var(--mint);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}
.wp-panel .task .tk {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 0.4rem;
}
.wp-panel .task p { margin: 0; font-size: 0.93rem; color: var(--ink); }
.wp-panel .out { font-size: 0.92rem; color: var(--ink-soft); border-top: 1px solid var(--hair); padding-top: 1rem; margin: 0; }
.wp-panel .out b { color: var(--navy); }

.tool {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  padding: 1.15rem 1.25rem;
}
.tool h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.tool p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }

.impact-band {
  background: var(--navy-deep);
  color: var(--on-dark);
}
.impact-band h2 { color: #fff; }
.impact-band p { color: var(--on-dark-70); }

/* ---------- team ---------- */
.pi-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 18px;
  overflow: hidden;
}
@media (max-width: 680px) { .pi-card { grid-template-columns: 1fr; } }
.pi-card .por { min-height: 300px; background: var(--mint); }
.pi-card .por img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
@media (max-width: 680px) {
  .pi-card .por img { min-height: 0; aspect-ratio: 16 / 10; }
}
.pi-card .body {
  padding: clamp(24px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pi-card .body h2 { font-size: clamp(1.55rem, 2.5vw, 2.1rem); }
.pi-card .role {
  font-family: var(--display);
  font-weight: 700;
  color: var(--teal-ink);
  margin: 0.35rem 0 0.9rem;
}
.pi-card .body p { color: var(--ink-soft); }

.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
@media (max-width: 880px) { .people { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .people { grid-template-columns: 1fr; } }
.person {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  overflow: hidden;
}
.person .por {
  aspect-ratio: 4 / 3.6;
  background: var(--mint);
  overflow: hidden;
}
.person .por img { width: 100%; height: 100%; object-fit: cover; }
.person .ini {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--teal-ink);
  background: var(--wash-teal);
}
.person .body { padding: 1.1rem 1.2rem 1.3rem; }
.person h3 { font-size: 1.12rem; }
.person .role {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0.15rem 0 0.55rem;
}
.person .desc { font-size: 0.93rem; color: var(--ink-soft); margin: 0; }

.spec {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.4rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--hair);
  margin: 0;
}
.spec dt { font-family: var(--display); font-weight: 700; font-size: 0.92rem; color: var(--navy); }
.spec dd { margin: 0; color: var(--ink-soft); }
.spec a { color: var(--green); font-weight: 600; text-decoration: none; }
.spec a:hover { text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 680px) { .spec { grid-template-columns: 1fr; gap: 0.3rem; } }

.shead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(22px, 3vw, 36px);
}
.shead h2 { max-width: 22ch; }
@media (max-width: 680px) { .shead { flex-direction: column; align-items: flex-start; } }
