@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

:root {
  --ink: #071733;
  --muted: #536171;
  --green: #174a32;
  --green-2: #557765;
  --sage: #edf3ee;
  --cream: #fbfaf7;
  --warm: #f3eee7;
  --line: #dde3dd;
  --panel: #ffffff;
  --gold: #c5a46d;
  --shadow: 0 24px 58px rgba(25, 39, 53, 0.065);
  --soft-shadow: 0 14px 34px rgba(25, 39, 53, 0.045);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, var(--cream) 540px, #fff 100%);
  font-family: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.56;
  overflow-x: hidden;
}

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

img,
svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 98px;
  padding: 0 clamp(22px, 5vw, 96px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(7, 23, 51, 0.06);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(112px, 11vw, 150px);
}

.brand img {
  width: 100%;
  height: auto;
}


.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a {
  padding: 12px 0;
  color: #0b1934;
}

.site-nav a[aria-current="page"] {
  color: var(--green);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #f3f6f1;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
}

.language-switch a {
  min-width: 34px;
  padding: 6px 8px;
  color: var(--muted);
  text-align: center;
  border-radius: 3px;
}

.language-switch a[aria-current="true"] {
  color: #fff;
  background: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(23, 74, 50, 0.11);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #16442f, var(--green));
  border-color: var(--green);
  box-shadow: 0 12px 28px rgba(23, 74, 50, 0.13);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(7, 23, 51, 0.24);
}

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

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 5.35vw, 5.85rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 2.8vw, 2.95rem);
  line-height: 1.13;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

h1,
h2 {
  font-weight: 650;
}

h3 {
  font-weight: 700;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.hero {
  position: relative;
  min-height: calc(100vh - 98px);
  display: flex;
  align-items: center;
  padding: clamp(62px, 7.8vw, 126px) clamp(22px, 8vw, 142px);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.99) 0%, rgba(251, 250, 247, 0.94) 36%, rgba(251, 250, 247, 0.46) 66%, rgba(251, 250, 247, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 23, 51, 0.015), rgba(7, 23, 51, 0.11)),
    url("assets/hero-room.png") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: clamp(18px, 5vw, 92px);
  bottom: clamp(22px, 4vw, 58px);
  width: clamp(160px, 18vw, 280px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(197, 164, 109, 0.36);
  border-radius: 50%;
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.13), inset 0 0 0 34px rgba(23, 74, 50, 0.08);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
}

.hero-kicker {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero p,
.page-hero p {
  max-width: 620px;
  margin-bottom: 28px;
  color: #1c2a40;
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.section-action {
  margin-top: 34px;
}

.hero-actions {
  margin-bottom: 30px;
}

.hero-standard {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.hero-standard span {
  padding: 7px 11px;
  color: #244134;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(49, 92, 75, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.status-note {
  max-width: 620px;
  margin: 0 0 28px;
  padding: 14px 16px;
  color: #244134;
  background: rgba(237, 243, 238, 0.78);
  border-left: 3px solid var(--green);
  font-size: 0.96rem;
}

.hero-mark {
  position: absolute;
  right: clamp(24px, 8vw, 132px);
  bottom: clamp(30px, 5.8vw, 84px);
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(148px, 15vw, 220px);
  aspect-ratio: 1;
  padding: clamp(18px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.18), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(23, 74, 50, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  box-shadow:
    0 20px 52px rgba(7, 23, 51, 0.12),
    inset 0 0 0 14px rgba(255, 255, 255, 0.08),
    inset 0 0 0 30px rgba(197, 164, 109, 0.07);
  text-align: center;
  backdrop-filter: blur(10px);
}

.hero-mark::before,
.hero-mark::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.hero-mark::before {
  inset: 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-mark::after {
  inset: 24px;
  border: 1px solid rgba(197, 164, 109, 0.24);
}

.hero-mark span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.62rem, 0.75vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-mark strong {
  display: block;
  max-width: 128px;
  color: #fff;
  font-size: clamp(1.08rem, 1.4vw, 1.52rem);
  line-height: 1.08;
}


.quick-answer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 780px;
}

.quick-answer article,
.card,
.panel,
.form-card,
.faq details,
.score-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 23, 51, 0.065);
  border-radius: 6px;
  box-shadow: var(--soft-shadow);
}

.quick-answer article {
  padding: 17px 19px;
  backdrop-filter: blur(12px);
}

.quick-answer h2 {
  margin-bottom: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-answer p {
  margin: 0;
  font-size: 0.96rem;
}

.page-hero {
  padding: clamp(58px, 8vw, 122px) clamp(22px, 8vw, 142px);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.985), rgba(251, 250, 247, 0.78)),
    url("assets/hero-room.png") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.55rem, 4.5vw, 4.95rem);
}

.section,
.split-section,
.steps-band,
.framework,
.pilot-section,
.experts,
.cta-band,
.content-band {
  padding: clamp(76px, 8.5vw, 132px) clamp(22px, 8vw, 142px);
}

.section,
.content-band,
.experts {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.section-alt,
.steps-band {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin-bottom: 18px;
  color: #1c2a40;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading p,
.section-copy p {
  font-size: 1.04rem;
}

.section-heading p,
.section-copy p {
  max-width: 66ch;
}

.card p,
.panel p,
.score-card p,
.faq p,
.doc-block p {
  max-width: 68ch;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(520px, 1.35fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

main > .split-section:first-of-type {
  background:
    linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
}

.three-column,
.steps-grid,
.score-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.four-column,
.framework-grid,
.expert-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.core-grid,
.advisory-grid {
  display: grid;
  gap: 20px;
}

.core-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1280px;
}

.advisory-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.card,
.panel,
.score-card {
  padding: 28px;
}

.card {
  border-top: 2px solid rgba(197, 164, 109, 0.22);
}

.card p,
.panel p,
.score-card p {
  margin-bottom: 0;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  align-items: center;
  gap: 20px;
}

.panel {
  min-height: 220px;
  background: linear-gradient(135deg, #f7f2ec, #fff);
}

.panel-green,
.card-green {
  background: linear-gradient(135deg, #eaf2ec, #fff);
  border-color: rgba(49, 92, 75, 0.18);
}

.arrow {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid #9aa4ae;
  border-radius: 50%;
  font-size: 2.1rem;
  line-height: 1;
}

.marked-list,
.plain-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.marked-list li {
  position: relative;
  padding-left: 34px;
}

.marked-list li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  content: "✓";
  color: #fff;
  background: var(--green-2);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

.muted-list li::before {
  content: "×";
  background: #9a9d9b;
}

.plain-list li {
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.steps-grid {
  gap: clamp(24px, 5vw, 76px);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 18px;
}

.step::before {
  position: absolute;
  top: 18px;
  left: 58px;
  right: -18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(197, 164, 109, 0.45), transparent);
}

.step:last-child::before {
  display: none;
}

.step span,
.score-dot {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-weight: 700;
}

.step p {
  grid-column: 2;
}

.icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  fill: none;
  stroke: #315c4b;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.framework {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) 1fr;
  gap: clamp(42px, 7vw, 96px);
  background:
    radial-gradient(circle at 82% 44%, rgba(197, 164, 109, 0.11), transparent 32%),
    linear-gradient(135deg, #fff, #f7f2ec);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.framework-grid article,
.expert-grid article {
  padding: 26px;
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.quality-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.quality-map::before {
  position: absolute;
  inset: 50% 8% auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(49, 92, 75, 0.38), transparent);
}

.quality-map article {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(7, 23, 51, 0.09);
  border-radius: 6px;
  box-shadow: var(--soft-shadow);
}

.quality-map article:nth-child(1),
.quality-map article:nth-child(5) {
  grid-column: span 2;
}

.quality-map article:nth-child(2),
.quality-map article:nth-child(3),
.quality-map article:nth-child(4) {
  grid-column: span 2;
}

.quality-map article:nth-child(4) {
  margin-left: 18%;
}

.quality-map article:nth-child(5) {
  margin-right: 18%;
}

.quality-map span {
  margin-bottom: 44px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  line-height: 1;
}

.impact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  padding: clamp(76px, 8.5vw, 132px) clamp(22px, 8vw, 142px);
  background:
    linear-gradient(135deg, rgba(7, 23, 51, 0.98), rgba(18, 61, 42, 0.94)),
    radial-gradient(circle at 82% 22%, rgba(197, 164, 109, 0.2), transparent 34%);
  color: #fff;
  border-bottom: 1px solid rgba(7, 23, 51, 0.18);
}

.impact-section .eyebrow,
.impact-section h2,
.impact-section p {
  color: #fff;
}

.impact-intro p,
.impact-body p {
  color: rgba(255, 255, 255, 0.78);
}

.impact-body {
  display: grid;
  gap: 18px;
}

.impact-body p {
  margin: 0;
  font-size: 1.04rem;
}

.impact-principle {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  max-width: 980px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
}

.impact-principle span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.impact-principle strong {
  max-width: 820px;
  font-size: clamp(1.45rem, 2.5vw, 2.4rem);
  line-height: 1.18;
}

.impact-principle.light {
  margin-top: 26px;
  color: var(--ink);
  background: linear-gradient(135deg, #f7f2ec, #fff);
  border-color: var(--line);
  border-left-color: var(--gold);
}

.impact-principle.light span {
  color: var(--green);
}

.pilot-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 0.7fr);
  gap: 44px;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(247, 242, 236, 0.94), rgba(237, 244, 239, 0.96)),
    radial-gradient(circle at 76% 36%, rgba(197, 164, 109, 0.16), transparent 30%);
  border-bottom: 1px solid var(--line);
}

.pilot-copy {
  max-width: 660px;
}

.pilot-copy .button {
  margin-top: 28px;
}

.pilot-image {
  min-height: 340px;
  background:
    linear-gradient(180deg, rgba(7, 23, 51, 0.02), rgba(7, 23, 51, 0.16)),
    url("assets/hero-room.png") center right / cover no-repeat;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.expert-grid article {
  text-align: center;
}

.person-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 38px rgba(14, 30, 53, 0.05);
}

.section-alt .person-card {
  background: rgba(255, 255, 255, 0.76);
}

.person-card .avatar {
  margin-inline: 0;
}

.person-card p {
  margin-bottom: 0;
}

.card-kicker {
  margin-bottom: 12px;
  color: #315c4b;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.avatar {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  color: #fff;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.45), transparent 31%),
    linear-gradient(135deg, #8b715f, #2d5d49);
  border-radius: 50%;
  font-weight: 700;
}

.score-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  background: #fff;
}

.score-card p {
  grid-column: 2;
}

.doc-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.35fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 78px);
}

.doc-nav {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 22px;
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.doc-nav a {
  color: var(--muted);
  font-weight: 700;
}

.doc-content {
  display: grid;
  gap: 42px;
}

.doc-block {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.doc-block:last-child {
  border-bottom: 0;
}

.doi-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.doi-list a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 17px 19px;
  background: linear-gradient(135deg, #fff, #f8faf7);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--soft-shadow);
}

.doi-list a:hover {
  border-color: rgba(49, 92, 75, 0.32);
  transform: translateY(-1px);
}

.doi-list span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.doi-list strong {
  overflow-wrap: anywhere;
  font-size: 1.02rem;
}

.form-card {
  padding: 28px;
  background: #fff;
}

.application-form {
  display: grid;
  gap: 18px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

label {
  display: grid;
  gap: 8px;
  color: #1c2a40;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid #cfd8d1;
  border-radius: 4px;
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-success {
  margin: 0;
  padding: 14px 16px;
  color: #174a32;
  background: #edf3ee;
  border: 1px solid #c8d8cc;
  border-radius: 4px;
  font-weight: 650;
}

.form-error {
  margin: 0;
  padding: 14px 16px;
  color: #7a2418;
  background: #fff4ef;
  border: 1px solid #e7c8bd;
  border-radius: 4px;
  font-weight: 650;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-note a {
  color: var(--green);
  font-weight: 700;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin: 12px 0 0;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(7, 23, 51, 0.98), rgba(18, 61, 42, 0.95)),
    radial-gradient(circle at 84% 24%, rgba(197, 164, 109, 0.2), transparent 34%);
  color: #fff;
}

.cta-band p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  grid-template-areas:
    "brand links language"
    "promise company language";
  align-items: start;
  gap: 18px 42px;
  padding: 48px clamp(22px, 8vw, 142px);
  background:
    linear-gradient(180deg, rgba(247, 242, 236, 0.5), rgba(255, 255, 255, 0.98));
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.site-footer p {
  grid-area: promise;
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.site-footer .brand {
  grid-area: brand;
  width: 162px;
}

.footer-links {
  grid-area: links;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links a {
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(221, 227, 221, 0.76);
  border-radius: 4px;
}

.footer-links a:hover {
  border-color: rgba(49, 92, 75, 0.36);
  color: var(--green);
}

.footer-company {
  grid-area: company;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 0;
  max-width: 640px;
  padding-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-company span,
.footer-company a {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
}

.footer-company span + span::before,
.footer-company a::before {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 10px;
  background: rgba(49, 92, 75, 0.42);
  border-radius: 50%;
}

.footer-company a {
  font-weight: 650;
}

.site-footer .language-switch {
  grid-area: language;
  background: #fff;
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand language"
      "nav nav";
    gap: 12px 18px;
    min-height: auto;
    padding-block: 14px 0;
  }

  .site-header .brand {
    grid-area: brand;
  }

  .site-header .language-switch {
    grid-area: language;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    grid-area: nav;
    justify-self: stretch;
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 0 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    border-top: 1px solid rgba(7, 23, 51, 0.07);
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(7, 23, 51, 0.08);
    border-radius: 999px;
    font-size: 0.84rem;
  }

  .site-nav a[aria-current="page"] {
    color: #fff;
    background: var(--green);
    border-color: var(--green);
  }

  .split-section,
  .framework,
  .pilot-section,
  .doc-layout {
    grid-template-columns: 1fr;
  }

  .doc-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .four-column,
  .framework-grid,
  .expert-grid,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-map article,
  .quality-map article:nth-child(1),
  .quality-map article:nth-child(2),
  .quality-map article:nth-child(3),
  .quality-map article:nth-child(4),
  .quality-map article:nth-child(5) {
    grid-column: auto;
    margin: 0;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .quick-answer,
  .three-column,
  .steps-grid,
  .score-grid,
  .core-grid {
    grid-template-columns: 1fr;
  }

  .two-column,
  .compare,
  .impact-section {
    grid-template-columns: 1fr;
  }

  .arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
    min-height: 86px;
    padding: 10px 18px 0;
  }

  .brand {
    width: 96px;
  }

  .site-nav {
    padding-bottom: 10px;
  }

  .language-switch {
    font-size: 0.72rem;
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding: 38px 18px 36px;
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.99) 0%, rgba(251, 250, 247, 0.95) 58%, rgba(251, 250, 247, 0.72) 100%),
      url("assets/hero-room.png") 58% center / cover no-repeat;
  }

  .hero::after,
  .hero-mark {
    display: none;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(2.1rem, 10.8vw, 3.25rem);
    line-height: 1.06;
  }

  h2 {
    margin-bottom: 16px;
    font-size: clamp(1.65rem, 7.8vw, 2.25rem);
    line-height: 1.14;
  }

  h3 {
    font-size: 1rem;
  }

  p,
  .section-heading p,
  .section-copy p,
  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .page-hero {
    padding: 48px 18px;
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.99) 0%, rgba(251, 250, 247, 0.94) 100%),
      url("assets/hero-room.png") 60% center / cover no-repeat;
  }

  .page-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .hero-actions,
  .cta-row,
  .button {
    width: 100%;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
    white-space: normal;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 20px;
  }

  .hero-standard {
    gap: 7px;
    margin-bottom: 24px;
  }

  .hero-standard span {
    font-size: 0.76rem;
  }

  .section,
  .split-section,
  .steps-band,
  .framework,
  .impact-section,
  .pilot-section,
  .experts,
  .cta-band,
  .content-band {
    padding: 48px 18px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .quick-answer,
  .quality-map,
  .impact-section,
  .compare,
  .two-column,
  .three-column,
  .steps-grid,
  .score-grid,
    .four-column,
    .framework-grid,
    .expert-grid,
    .partner-grid,
    .core-grid,
    .advisory-grid,
    .form-grid,
    .doc-nav {
      grid-template-columns: 1fr;
    }

  .quick-answer {
    gap: 12px;
  }

  .quality-map::before {
    display: none;
  }

  .quality-map article,
  .quality-map article:nth-child(1),
  .quality-map article:nth-child(2),
  .quality-map article:nth-child(3),
  .quality-map article:nth-child(4),
  .quality-map article:nth-child(5) {
    grid-column: auto;
    min-height: auto;
    margin: 0;
  }

  .quality-map span {
    margin-bottom: 18px;
    font-size: 2rem;
  }

  .impact-principle {
    grid-column: auto;
  }

  .quick-answer article,
  .card,
  .panel,
  .form-card,
  .score-card,
  .faq details {
    padding: 20px;
  }

  .split-section,
  .impact-section,
  .two-column,
  .three-column,
  .steps-grid,
  .score-grid,
    .four-column,
    .framework,
    .framework-grid,
    .expert-grid,
    .core-grid,
    .advisory-grid,
    .pilot-section,
    .doc-layout,
    .doc-content {
    gap: 18px;
  }

  .arrow {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }

  .step {
    grid-template-columns: 34px 1fr;
    column-gap: 14px;
  }

  .step::before {
    display: none;
  }

  .step span,
  .score-dot {
    width: 34px;
    height: 34px;
    font-size: 0.88rem;
  }

  .score-card {
    grid-template-columns: 38px 1fr;
  }

  .marked-list {
    gap: 11px;
  }

  .marked-list li {
    padding-left: 30px;
  }

  .marked-list li::before {
    width: 19px;
    height: 19px;
  }

  .pilot-image {
    min-height: 220px;
    border-radius: 4px;
  }

  .form-card {
    padding: 18px;
  }

  .application-form,
  .form-grid {
    gap: 14px;
  }

  input,
  textarea {
    font-size: 16px;
  }

  .doc-nav {
    padding: 16px;
  }

  .avatar {
    width: 64px;
    height: 64px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "promise"
      "links"
      "company"
      "language";
    align-items: start;
    gap: 18px;
    padding: 34px 18px;
  }

  .site-footer .brand {
    width: 138px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .footer-company {
    display: grid;
    justify-content: flex-start;
    gap: 5px;
    padding-top: 0;
  }

  .footer-company span + span::before,
  .footer-company a::before {
    display: none;
  }
}

/* Institutional framework version */
:root {
  --ink: #0f2032;
  --muted: #5c6874;
  --green: #315f4e;
  --green-2: #4f7464;
  --sage: #eef3ef;
  --cream: #fbfaf6;
  --warm: #f2f0eb;
  --line: #dbe2df;
  --gold: #a98655;
  --shadow: 0 18px 44px rgba(15, 32, 50, 0.075);
  --soft-shadow: 0 8px 22px rgba(15, 32, 50, 0.045);
}

body {
  background: #fff;
}

.site-header {
  min-height: 84px;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(15, 32, 50, 0.1);
}

.site-nav {
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.button {
  border-radius: 3px;
  box-shadow: none;
}

.button:hover {
  box-shadow: 0 8px 18px rgba(15, 32, 50, 0.08);
}

.button-primary {
  background: #123352;
  border-color: #123352;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(15, 32, 50, 0.28);
}

.hero {
  min-height: calc(100vh - 84px);
  background:
    linear-gradient(90deg, rgba(10, 31, 50, 0.92) 0%, rgba(10, 31, 50, 0.76) 48%, rgba(10, 31, 50, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 31, 50, 0.42), rgba(10, 31, 50, 0.04)),
    url("assets/hero-room.png") center right / cover no-repeat;
}

.hero::after {
  display: none;
}

.hero h1,
.hero p,
.hero-kicker {
  color: #fff;
}

.hero p {
  color: rgba(255, 255, 255, 0.84);
}

.hero-kicker,
.eyebrow {
  letter-spacing: 0.14em;
}

.hero-standard span {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
  border-radius: 3px;
}

.hero .status-note {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--gold);
}

.hero-mark {
  display: none;
}

.quick-answer article,
.card,
.panel,
.form-card,
.faq details,
.score-card {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(15, 32, 50, 0.12);
  border-radius: 4px;
  box-shadow: none;
}

.hero .quick-answer article {
  background: rgba(255, 255, 255, 0.92);
}

.quick-answer h2 {
  color: var(--green);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(10, 31, 50, 0.93), rgba(10, 31, 50, 0.78) 52%, rgba(10, 31, 50, 0.18)),
    url("assets/hero-room.png") center right / cover no-repeat;
}

.page-hero h1,
.page-hero p,
.page-hero .eyebrow {
  color: #fff;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.section,
.content-band,
.experts,
.split-section {
  background: #fff;
}

.section-alt,
.steps-band,
main > .split-section:first-of-type {
  background: var(--cream);
}

.framework {
  background: #fff;
}

.card {
  border-top: 1px solid rgba(15, 32, 50, 0.12);
}

.panel,
.panel-green,
.card-green {
  background: #fff;
}

.arrow {
  border-radius: 3px;
  border-color: var(--line);
  color: var(--green);
}

.marked-list li::before {
  background: var(--green);
  border-radius: 3px;
}

.muted-list li::before {
  background: #8a9298;
}

.quality-map::before {
  background: linear-gradient(90deg, transparent, rgba(15, 32, 50, 0.28), transparent);
}

.quality-map article {
  border-color: rgba(15, 32, 50, 0.12);
  border-radius: 4px;
  box-shadow: none;
}

.quality-map span {
  color: #123352;
  font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
}

.impact-section,
.cta-band {
  background: #0f2032;
}

.impact-principle {
  border-radius: 4px;
}

.pilot-section {
  background: var(--cream);
}

.pilot-image {
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.doc-nav,
.framework-grid article,
.expert-grid article {
  background: #f8faf7;
  border-radius: 4px;
}

.doc-block {
  padding-bottom: 42px;
}

.doi-list a {
  background: #fff;
  border-radius: 4px;
  box-shadow: none;
}

.site-footer {
  background: #f8faf7;
}

@media (max-width: 760px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(10, 31, 50, 0.92), rgba(10, 31, 50, 0.74)),
      url("assets/hero-room.png") 60% center / cover no-repeat;
  }

  .page-hero {
    background:
      linear-gradient(180deg, rgba(10, 31, 50, 0.94), rgba(10, 31, 50, 0.78)),
      url("assets/hero-room.png") 60% center / cover no-repeat;
  }
}

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

  .brand {
    width: 88px;
  }

  .language-switch {
    padding: 3px;
  }

  .language-switch a {
    min-width: 30px;
    padding: 5px 6px;
  }

  .hero,
  .page-hero,
  .section,
  .split-section,
  .steps-band,
  .framework,
  .pilot-section,
  .experts,
  .cta-band,
  .content-band {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: clamp(1.95rem, 10vw, 2.6rem);
  }

  .quick-answer article,
  .card,
  .panel,
  .form-card,
  .score-card,
  .faq details {
    padding: 18px;
  }
}

/* Layout refinement */
:root {
  --site-max: 1280px;
  --site-pad: clamp(24px, 6.6vw, 112px);
  --section-y: clamp(88px, 8.8vw, 148px);
}

.site-header,
.hero,
.page-hero,
.section,
.split-section,
.steps-band,
.framework,
.impact-section,
.pilot-section,
.experts,
.cta-band,
.content-band,
.site-footer {
  padding-left: max(var(--site-pad), calc((100vw - var(--site-max)) / 2));
  padding-right: max(var(--site-pad), calc((100vw - var(--site-max)) / 2));
}

.hero {
  min-height: min(820px, calc(100vh - 98px));
  padding-top: clamp(76px, 7vw, 116px);
  padding-bottom: clamp(76px, 7vw, 116px);
  background-position: center right;
}

.hero-copy {
  width: min(650px, 100%);
}

.hero h1 {
  max-width: 640px;
}

.hero p {
  max-width: 570px;
}

.hero-actions {
  margin-top: 30px;
  margin-bottom: 32px;
}

.quick-answer {
  max-width: 800px;
  gap: 18px;
}

.quick-answer article {
  min-height: 136px;
}

.page-hero {
  min-height: clamp(390px, 42vw, 560px);
  display: grid;
  align-content: center;
}

.page-hero h1 {
  max-width: 760px;
}

.section,
.split-section,
.steps-band,
.framework,
.impact-section,
.pilot-section,
.experts,
.cta-band,
.content-band {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.split-section {
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(56px, 7vw, 104px);
}

.section-heading {
  margin-bottom: clamp(42px, 4.4vw, 66px);
}

  .three-column,
  .score-grid,
  .core-grid,
  .advisory-grid,
  .framework-grid,
  .expert-grid,
  .four-column,
  .partner-grid {
  gap: clamp(22px, 2.2vw, 34px);
}

.card,
.panel,
.score-card,
.framework-grid article,
.expert-grid article,
.partner-grid article,
.quick-answer article,
.person-card {
  height: 100%;
}

.card,
.panel,
.score-card,
.framework-grid article,
.expert-grid article,
.partner-grid article {
  min-height: 184px;
  padding: clamp(28px, 2.45vw, 38px);
}

.card,
.panel,
.score-card,
.quick-answer article,
.framework-grid article,
.expert-grid article,
.partner-grid article,
.person-card,
.form-card,
.faq details {
  box-shadow: 0 22px 52px rgba(25, 39, 53, 0.055);
}

.steps-grid {
  gap: clamp(34px, 6vw, 88px);
  align-items: stretch;
}

.step {
  align-content: start;
}

.framework {
  grid-template-columns: minmax(300px, 0.52fr) minmax(560px, 1fr);
  gap: clamp(54px, 7vw, 104px);
}

.quality-map {
  gap: clamp(16px, 1.8vw, 24px);
}

.quality-map article {
  min-height: 238px;
  padding: clamp(26px, 2.4vw, 36px);
}

.impact-section {
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(48px, 7vw, 98px);
}

.pilot-section {
  gap: clamp(46px, 7vw, 100px);
}

.site-footer {
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  grid-template-areas:
    "brand company"
    "promise company";
  align-items: end;
  padding-top: clamp(58px, 6.5vw, 92px);
  padding-bottom: clamp(40px, 4.5vw, 64px);
}

.site-footer:has(.footer-links),
.site-footer:has(.language-switch) {
  grid-template-columns: minmax(260px, 1fr) auto auto;
  grid-template-areas:
    "brand links language"
    "promise company language";
}

.site-footer .brand {
  width: clamp(138px, 10vw, 168px);
}

.footer-links,
.site-footer .language-switch {
  justify-self: end;
}

.footer-links {
  align-self: end;
}

.footer-links a {
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.footer-company {
  align-self: end;
  justify-content: flex-end;
}

.hero-mark {
  opacity: 0.78;
  transform: translateY(8px);
}

@media (max-width: 1160px) {
  .site-header,
  .hero,
  .page-hero,
  .section,
  .split-section,
  .steps-band,
  .framework,
  .impact-section,
  .pilot-section,
  .experts,
  .cta-band,
  .content-band,
  .site-footer {
    padding-left: clamp(20px, 5vw, 54px);
    padding-right: clamp(20px, 5vw, 54px);
  }

  .hero {
    min-height: auto;
  }

  .split-section,
  .framework,
  .impact-section,
  .pilot-section {
    grid-template-columns: 1fr;
  }

  .framework > div:first-child,
  .impact-intro,
  .pilot-copy {
    max-width: 720px;
  }
}

@media (max-width: 980px) {
  :root {
    --section-y: clamp(68px, 10vw, 104px);
  }

  .page-hero {
    min-height: auto;
  }

  .hero-mark {
    opacity: 0.42;
    transform: scale(0.9) translateY(12px);
  }

  .card,
  .panel,
  .score-card,
  .framework-grid article,
  .expert-grid article,
  .partner-grid article,
  .quick-answer article {
    min-height: 0;
  }

  .quick-answer {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --section-y: 54px;
  }

  .site-header,
  .hero,
  .page-hero,
  .section,
  .split-section,
  .steps-band,
  .framework,
  .impact-section,
  .pilot-section,
  .experts,
  .cta-band,
  .content-band,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero-actions {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .quick-answer {
    gap: 12px;
  }

  .quick-answer article {
    min-height: 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .card,
  .panel,
  .score-card,
  .framework-grid article,
  .expert-grid article,
  .partner-grid article,
  .quick-answer article,
  .form-card,
  .faq details {
    padding: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "promise"
      "links"
      "company"
      "language";
    align-items: start;
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .footer-links,
  .footer-company,
  .site-footer .language-switch {
    justify-self: start;
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .site-header,
  .hero,
  .page-hero,
  .section,
  .split-section,
  .steps-band,
  .framework,
  .impact-section,
  .pilot-section,
  .experts,
  .cta-band,
  .content-band,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* Mobile safety pass */
html,
body {
  max-width: 100%;
}

h1,
h2,
h3,
p,
a,
button,
strong,
span,
li {
  overflow-wrap: break-word;
}

.site-nav {
  min-width: 0;
}

.brand img,
.pilot-image,
.hero,
.page-hero {
  max-width: 100%;
}

.card,
.panel,
.score-card,
.quick-answer article,
.framework-grid article,
.expert-grid article,
.person-card,
.form-card,
.faq details,
.quality-map article,
.doi-list a {
  box-shadow: none;
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    width: 100%;
  }

  .site-nav {
    max-width: 100%;
    overflow-x: auto;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .button,
  button,
  input,
  textarea {
    max-width: 100%;
  }

  .button {
    white-space: normal;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero p,
  .page-hero p {
    max-width: 100%;
  }

  .doi-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Color harmony pass */
:root {
  --ink: #102033;
  --muted: #5f6973;
  --navy: #102a43;
  --navy-soft: #173652;
  --green: #3f6657;
  --green-2: #55786a;
  --sage: #eef3ef;
  --cream: #faf8f2;
  --warm: #f3f0e8;
  --panel: #ffffff;
  --panel-tint: #f8faf7;
  --line: #dce3df;
  --gold: #a98655;
  --shadow: 0 14px 34px rgba(16, 32, 51, 0.07);
  --soft-shadow: 0 8px 22px rgba(16, 32, 51, 0.05);
}

body {
  color: var(--ink);
  background: var(--panel);
}

p,
.form-note,
.footer-company,
.footer-company span,
.footer-company a {
  color: var(--muted);
}

.site-header {
  background: rgba(250, 248, 242, 0.95);
  border-bottom-color: rgba(16, 32, 51, 0.1);
}

.site-nav a {
  color: #213348;
}

.site-nav a[aria-current="page"],
.eyebrow,
.card-kicker,
.doi-list span {
  color: var(--green);
}

.button-primary {
  background: var(--navy);
  border-color: var(--navy);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(16, 32, 51, 0.28);
}

.hero,
.page-hero {
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.94), rgba(16, 42, 67, 0.78) 52%, rgba(16, 42, 67, 0.2)),
    url("assets/hero-room.png") center right / cover no-repeat;
}

.hero-standard span,
.hero .status-note,
.impact-principle {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}

.section,
.content-band,
.experts,
.framework {
  background: var(--panel);
}

.split-section {
  background: var(--panel);
}

.section-alt,
.steps-band,
.pilot-section,
main > .split-section:first-of-type {
  background: var(--cream);
}

.impact-section,
.cta-band {
  background: var(--navy);
}

.card,
.panel,
.score-card,
.quick-answer article,
.framework-grid article,
.expert-grid article,
.partner-grid article,
.person-card,
.form-card,
.faq details,
.quality-map article,
.doi-list a {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.section-alt .card,
.section-alt .panel,
.section-alt .person-card,
.pilot-section .card,
.pilot-section .panel {
  background: rgba(255, 255, 255, 0.92);
}

.hero .quick-answer article {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.16);
}

.card-green,
.panel-green {
  background: linear-gradient(180deg, #eef4f0 0%, #f8faf7 100%);
  border-color: #cadbd2;
}

.doc-nav,
.framework-grid article,
.expert-grid article {
  background: var(--panel-tint);
}

.quality-map::before {
  background: linear-gradient(90deg, transparent, rgba(63, 102, 87, 0.34), transparent);
}

.quality-map span {
  color: var(--navy-soft);
}

.marked-list li::before {
  background: var(--green);
}

.muted-list li::before {
  background: #8f969b;
}

.pilot-image {
  box-shadow: var(--shadow);
}

.site-footer {
  background: var(--panel-tint);
  border-top-color: var(--line);
}

.footer-links a {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

@media (max-width: 760px) {
  .hero,
  .page-hero {
    background:
      linear-gradient(180deg, rgba(16, 42, 67, 0.95), rgba(16, 42, 67, 0.8)),
      url("assets/hero-room.png") 60% center / cover no-repeat;
  }
}

/* Typography polish pass */
.hero-kicker {
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 4.8vw, 5.1rem);
  font-weight: 650;
}

.hero p {
  max-width: 660px;
}

.impact-principle strong {
  font-family: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (max-width: 760px) {
  .hero-kicker {
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

/* Subpage typography and layout polish */
.doc-block > .eyebrow,
.cta-band > .eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.impact-section {
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
}

.impact-principle {
  grid-column: 2;
  max-width: none;
}

@media (max-width: 900px) {
  .impact-principle {
    grid-column: 1 / -1;
  }
}
