:root {
  --navy: #002352;
  --navy-deep: #001738;
  --navy-soft: #1a3a63;
  --teal: #007c82;
  --teal-deep: #006268;
  --teal-mist: #e7f4f5;
  --ink: #1c2430;
  --muted: #5c6773;
  --line: #dce3ea;
  --paper: #ffffff;
  --mist: #f3f6f8;
  --header-h: 84px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 8px 14px;
  font-size: 13px;
}

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

.container {
  width: min(var(--max), calc(100% - 56px));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 52px;
  width: auto;
}

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

.nav > a,
.nav-sub-toggle {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 12px;
  color: var(--navy);
  position: relative;
}

.nav > a.is-active,
.nav > a:hover,
.nav-sub-toggle:hover {
  color: var(--teal);
}

.nav > a.is-active::after,
.nav > a:hover::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
  background: var(--teal);
}

.nav-item {
  position: relative;
}

.nav-sub {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border-top: 3px solid var(--teal);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s var(--ease);
}

.nav-item:hover .nav-sub,
.nav-item:focus-within .nav-sub {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-sub a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  color: var(--navy);
}

.nav-sub a:hover {
  background: var(--teal-mist);
  color: var(--teal-deep);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--navy);
  transition: 0.3s var(--ease);
}

.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle span:nth-child(3) { top: 25px; }

body.nav-open .menu-toggle span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* Typography */

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.eyebrow.light {
  color: #8fd0d4;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 18ch;
}

.section-title.tight {
  margin-bottom: 40px;
}

.lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 4px;
}

.text-link::after {
  content: "→";
}

.text-link:hover {
  color: var(--navy);
  border-color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: 0.3s var(--ease);
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal);
}

.btn-teal {
  background: var(--teal);
  color: #fff;
}

.btn-teal:hover {
  background: #fff;
  color: var(--navy);
}

.btn-ghost {
  border: 1px solid var(--navy);
  color: var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--navy);
}

/* Reveals */

.reveal-line {
  display: block;
  overflow: hidden;
}

.reveal-text {
  display: block;
  transform: translateY(115%);
  transition: transform 1.05s var(--ease);
  transition-delay: var(--delay, 0ms);
}

[data-reveal="up"],
[data-reveal="scale"] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0ms);
}

[data-reveal="scale"] {
  transform: translateY(18px) scale(0.96);
}

.is-in .reveal-text,
.hero.is-ready .reveal-text {
  transform: translateY(0);
}

.is-in[data-reveal="up"],
.is-in[data-reveal="scale"],
.hero.is-ready [data-reveal="up"],
.hero.is-ready [data-reveal="scale"] {
  opacity: 1;
  transform: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 72px 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 85% 20%, rgba(0, 124, 130, 0.22), transparent 55%),
    linear-gradient(165deg, var(--navy) 0%, #001a40 48%, var(--navy-deep) 100%);
  color: #fff;
}

.hero-grid {
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-width: 0;
  container-type: inline-size;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 6.8cqi, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero h1 .h1-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 5.8vw;
  }
}

.hero-tagline {
  margin-top: 22px;
  font-size: 20px;
  font-weight: 500;
  color: #8fd0d4;
}

.hero-meta {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-lead {
  margin-top: 22px;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17.5px;
}

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

.hero-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  width: min(560px, 100%);
  height: 396px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #001226;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-band {
  position: relative;
  z-index: 2;
  background: #fff;
}

.hero-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hero-band article {
  padding: 28px 24px 32px;
  border-right: 1px solid var(--line);
}

.hero-band article:last-child {
  border-right: 0;
}

.hero-band strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-band span {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.4;
}

/* Identity */

.identity {
  padding: 88px 0;
  background: var(--mist);
}

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

.identity-grid article {
  background: #fff;
  padding: 32px 28px 36px;
  border-top: 4px solid var(--teal);
}

.identity-grid article:nth-child(2) {
  --delay: 90ms;
  border-top-color: var(--navy);
}

.identity-grid article:nth-child(3) { --delay: 180ms; }

.steps li:nth-child(2) { --delay: 60ms; }
.steps li:nth-child(3) { --delay: 120ms; }
.steps li:nth-child(4) { --delay: 180ms; }
.steps li:nth-child(5) { --delay: 80ms; }
.steps li:nth-child(6) { --delay: 140ms; }
.steps li:nth-child(7) { --delay: 200ms; }
.steps li:nth-child(8) { --delay: 260ms; }

.index-num {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--teal);
  margin-bottom: 16px;
}

.identity-grid h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 1.6vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}

.identity-grid p {
  color: var(--muted);
  font-size: 15.5px;
}

/* Question band */

.question {
  background:
    radial-gradient(ellipse 80% 70% at 0% 100%, rgba(0, 124, 130, 0.28), transparent 50%),
    var(--navy);
  color: #fff;
  padding: 120px 0;
  position: relative;
}

.question-inner {
  max-width: 920px;
}

.question blockquote {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.8vw, 56px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.question-note {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.band-dark {
  background: var(--navy);
  color: #fff;
}

.band-dark .section-title,
.band-dark .lead {
  color: #fff;
}

.band-dark .split-copy p,
.band-dark .reco-list p,
.band-dark .contact-details p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.band-dark .text-link {
  color: #8fd0d4;
  border-color: #8fd0d4;
}

.band-dark .text-link:hover {
  color: #fff;
  border-color: #fff;
}

.band-teal {
  background: var(--teal-mist);
}

.band-mist {
  background: var(--mist);
}

/* Splits */

.about-snap,
.principles,
.cosdip,
.process,
.status,
.partners,
.recognition,
.support,
.contact,
.page-hero,
.page-section {
  padding: 112px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.split-sticky {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.split-copy p + p {
  margin-top: 18px;
}

.split-copy p {
  color: var(--muted);
}

.split-copy .lead {
  color: var(--ink);
}

/* How we work */

.principles {
  background: var(--navy);
  color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.work-head {
  text-align: center;
  margin-bottom: 56px;
}

.work-head .eyebrow {
  color: #8fd0d4;
  margin-bottom: 0;
  font-size: 13px;
}

.work-flow {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 8px;
}

.work-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: start;
  padding: 0 0 40px;
}

.work-flow li:last-child {
  padding-bottom: 0;
}

.work-flow li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 1px;
  background: rgba(0, 124, 130, 0.45);
}

.work-flow span {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  border: 1px solid var(--teal);
  color: #8fd0d4;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
  flex-shrink: 0;
}

.work-flow li > div {
  padding-top: 10px;
}

.work-flow h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 8px;
}

.work-flow p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  max-width: 48ch;
}

@media (max-width: 640px) {
  .work-flow {
    padding-left: 0;
  }

  .work-flow li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding-bottom: 32px;
  }

  .work-flow li:not(:last-child)::before {
    left: 23px;
    top: 48px;
  }

  .work-flow span {
    width: 48px;
    height: 48px;
  }

  .work-flow li > div {
    padding-top: 6px;
  }

  .work-flow h3 {
    font-size: 22px;
  }
}

/* CoSDIP */

.cosdip {
  background: var(--paper);
}

.cosdip-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.cosdip-intro {
  color: var(--muted);
  padding-bottom: 6px;
}

.cosdip-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel {
  padding: 36px 36px 40px;
}

.panel-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.panel h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.panel p + p {
  margin-top: 14px;
}

.panel p {
  color: var(--muted);
  font-size: 15.5px;
}

.panel-dark {
  background: var(--navy);
  color: #fff;
}

.panel-accent {
  background: var(--teal);
  color: #fff;
}

.panel-dark .panel-label,
.panel-accent .panel-label {
  color: #b7e4e6;
}

.panel-dark h3,
.panel-accent h3 {
  color: #fff;
}

.panel-dark p,
.panel-accent p {
  color: rgba(255, 255, 255, 0.86);
}

/* Process */

.process {
  background: var(--navy-deep);
  color: #fff;
}

.process .section-title,
.process .eyebrow {
  color: #fff;
}

.process .eyebrow {
  color: #8fd0d4;
}

.process-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.process-head .section-title {
  max-width: 22ch;
  margin-inline: auto;
}

.process-head p:last-child {
  margin-top: 20px;
  margin-inline: auto;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.64);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.steps li {
  background: #012047;
  padding: 28px 24px 32px;
  min-height: 168px;
}

.steps span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin-bottom: 18px;
}

.steps p {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

/* Status / stats */

.status {
  background: var(--mist);
}

.stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats article {
  background: #fff;
  padding: 28px 24px 32px;
  border-top: 4px solid var(--teal);
}

.stats article:nth-child(even) {
  border-top-color: var(--navy);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 22ch;
}

.status-head {
  max-width: 760px;
  margin: 0 auto 8px;
  text-align: center;
}

.status-head .section-title {
  max-width: 20ch;
  margin-inline: auto;
}

.status-head p:last-of-type {
  margin-top: 20px;
  margin-inline: auto;
  max-width: 62ch;
  color: var(--muted);
}

/* Partners */

.partners {
  background: var(--paper);
}

.partners-head {
  max-width: 760px;
  margin: 0 auto 8px;
  text-align: center;
}

.partners-head .section-title {
  max-width: 18ch;
  margin-inline: auto;
}

.section-note {
  max-width: 72ch;
  margin: 36px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
}

.partner-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0 24px;
}

.partner-stack article,
.partner-grid article {
  padding: 32px;
  background: var(--mist);
  border-left: 4px solid var(--teal);
}

.partner-stack article:last-child,
.partner-grid article:nth-child(even) {
  border-left-color: var(--navy);
}

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

.partner-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.partner-stack h3,
.partner-grid h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.partner-stack p,
.partner-grid p {
  color: var(--muted);
  font-size: 14.5px;
}

/* Recognition */

.reco-list {
  display: grid;
  gap: 0;
}

.reco-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.reco-list li:first-child {
  border-top: 1px solid var(--line);
}

.reco-list span {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--teal);
  font-weight: 500;
}

.band-dark .reco-list li,
.band-dark .reco-list li:first-child {
  border-color: rgba(255, 255, 255, 0.14);
}

.band-dark .reco-list span {
  color: #8fd0d4;
}

.band-dark .contact .meta {
  color: #8fd0d4;
}

.band-dark .contact-details article {
  background: rgba(255, 255, 255, 0.06);
  padding: 20px 22px;
  border-left: 3px solid var(--teal);
}

/* Support */

.support {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(255, 255, 255, 0.12), transparent 50%),
    var(--teal);
  color: #fff;
}

.support .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.support .section-title,
.support .lead,
.support-points p {
  color: #fff;
}

.support .lead {
  margin: 22px 0 0;
}

.support-inner {
  max-width: 760px;
}

.support-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0 40px;
}

.support-points p {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 14.5px;
  font-weight: 500;
}

.support .btn-primary {
  background: #fff;
  color: var(--navy);
}

.support .btn-primary:hover {
  background: var(--navy);
  color: #fff;
}

/* Contact */

.contact {
  background: #fff;
  padding-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.contact-details {
  display: grid;
  gap: 16px;
  padding-top: 8px;
}

.contact-details article {
  background: var(--mist);
  padding: 22px 24px;
  border-left: 4px solid var(--teal);
}

.contact .meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.contact-details p:last-child {
  color: var(--muted);
}

.contact > .container > div > p:last-of-type {
  color: var(--muted);
  margin-top: 16px;
  max-width: 46ch;
}

/* Footer */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.62);
  padding: 72px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
  padding: 8px 12px;
  background: #fff;
}

.footer-brand p {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: #fff;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-cols p {
  color: #8fd0d4;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-cols a {
  display: block;
  font-size: 14.5px;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-cols a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  font-size: 13px;
}

/* About page — distinct from homepage */

.about-banner {
  position: relative;
  min-height: 78vh;
  display: block;
  overflow: hidden;
  background: var(--navy);
}

.about-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.about-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 19, 56, 0.94) 0%, rgba(0, 35, 82, 0.72) 42%, rgba(0, 35, 82, 0.22) 100%);
}

.about-banner-copy {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  padding: 140px 0 88px;
  text-align: left;
}

.about-banner h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 600;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  max-width: 14ch;
}

.about-banner-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 46ch;
}

.about-block {
  padding: 100px 0;
  background: #fff;
}

.about-block--navy {
  background: var(--navy);
  color: #fff;
}

.about-block--mist {
  background: var(--mist);
}

.about-block--teal {
  background: var(--teal);
  color: #fff;
}

.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 28px;
}

.about-block--navy .about-heading,
.about-block--teal .about-heading {
  color: #fff;
}

.about-center {
  text-align: center;
}

.about-origin {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.about-origin-year span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.about-origin-year strong {
  font-family: var(--font-serif);
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.85;
  color: var(--navy);
  font-weight: 600;
}

.about-origin-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--navy);
  margin: 0 0 20px;
  font-weight: 600;
}

.about-origin-copy p {
  color: var(--muted);
  margin-bottom: 16px;
}

.about-duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 48px;
}

.about-duo article {
  padding: 8px 0;
}

.about-duo article p:first-child {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8fd0d4;
  margin-bottom: 12px;
}

.about-duo h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}

.about-duo article p:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15.5px;
}

.about-duo-mark {
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--teal);
  padding-top: 28px;
}

.about-quote {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.about-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 24px;
}

.about-quote p:last-child {
  color: var(--muted);
  max-width: 62ch;
  margin-inline: auto;
}

.about-purpose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-purpose article {
  background: rgba(255, 255, 255, 0.06);
  padding: 40px 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-purpose .eyebrow {
  color: #8fd0d4;
}

.about-purpose .about-heading {
  margin-bottom: 20px;
  font-size: clamp(24px, 2.4vw, 32px);
  color: #fff;
}

.about-purpose p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
  font-size: 15.5px;
  line-height: 1.65;
}

.about-purpose p:last-child {
  margin-bottom: 0;
}

.about-vision-list {
  display: grid;
  gap: 10px;
  margin: 8px 0 20px;
}

.about-vision-list li {
  padding-left: 16px;
  border-left: 2px solid var(--teal);
  color: #fff;
  font-size: 15.5px;
  line-height: 1.5;
}

.about-is {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-is article {
  padding: 36px 32px;
  background: #fff;
}

.about-is article:first-child {
  background: var(--navy);
  color: #fff;
}

.about-is h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin-bottom: 14px;
  font-weight: 600;
}

.about-is article:last-child h3 {
  color: var(--navy);
}

.about-is p {
  font-size: 15.5px;
  line-height: 1.65;
}

.about-is article:last-child p {
  color: var(--muted);
}

.about-principles {
  display: grid;
  gap: 0;
  max-width: 720px;
  margin: 40px auto 0;
  border-top: 1px solid var(--line);
}

.about-principles li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
}

.about-principles b {
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.about-directors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  max-width: 900px;
  margin-inline: auto;
}

.about-directors article p:first-child {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8fd0d4;
  margin-bottom: 10px;
}

.about-directors h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  margin-bottom: 8px;
}

.about-directors article p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.about-board {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.about-board-num {
  font-family: var(--font-serif);
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.85;
  color: var(--teal);
  font-weight: 600;
}

.about-board p:last-child {
  color: var(--muted);
}

.about-teams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.about-teams h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 10px;
  padding-top: 16px;
  border-top: 3px solid var(--teal);
}

.about-teams article:nth-child(2) h3 {
  border-top-color: var(--navy);
}

.about-teams p {
  color: var(--muted);
  font-size: 15px;
}

.about-fund {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.about-fund p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
}

@media (max-width: 960px) {
  .about-banner {
    min-height: 70vh;
  }

  .about-banner-shade {
    background: linear-gradient(180deg, rgba(0, 19, 56, 0.35) 0%, rgba(0, 19, 56, 0.92) 70%);
  }

  .about-banner-img {
    object-position: center 30%;
  }

  .about-origin,
  .about-duo,
  .about-purpose,
  .about-is,
  .about-directors,
  .about-board,
  .about-teams,
  .about-fund {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-duo-mark {
    display: none;
  }
}
  padding-top: 88px;
  padding-bottom: 96px;
  background:
    radial-gradient(ellipse 70% 80% at 90% 10%, rgba(0, 124, 130, 0.25), transparent 55%),
    var(--navy);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--navy);
  max-width: 14ch;
  letter-spacing: -0.025em;
}

.page-hero.band-dark h1 {
  color: #fff;
}

.page-hero .lead {
  margin-top: 24px;
  max-width: 58ch;
  color: var(--muted);
}

.page-hero.band-dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.page-section + .page-section {
  border-top: 0;
}

.prose {
  max-width: 72ch;
}

.prose p + p,
.prose ul + p,
.prose p + ul {
  margin-top: 16px;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--navy);
  margin-bottom: 18px;
  font-weight: 600;
}

.prose h3 {
  font-size: 18px;
  color: var(--navy);
  margin: 28px 0 10px;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 1px;
  background: var(--teal);
}

.directors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.director-card {
  padding: 32px;
  background: #fff;
  border-left: 4px solid var(--teal);
}

.directors article:last-child {
  border-left-color: var(--navy);
}

.director-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 8px;
}

.director-card p {
  color: var(--muted);
  font-size: 15px;
}

.structure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.structure-grid article {
  background: #fff;
  padding: 32px;
}

.structure-grid h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.funding-note {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--navy);
  color: #fff;
}

.funding-note p {
  color: rgba(255, 255, 255, 0.78) !important;
}

.funding-note strong {
  color: #fff;
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.coming-note {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--muted);
  font-style: italic;
}

/* Responsive */

@media (max-width: 1100px) {
  .partner-grid,
  .steps,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav > a,
  .nav-sub-toggle {
    padding: 10px 8px;
    font-size: 13px;
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 28px;
    gap: 0;
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav > a,
  .nav-sub-toggle {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    width: 100%;
    color: var(--navy);
  }

  .nav > a.is-active::after,
  .nav > a:hover::after {
    display: none;
  }

  .nav-sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    background: transparent;
    display: none;
    padding: 0 0 8px 12px;
  }

  .nav-sub a {
    color: var(--navy);
  }

  .hero-band-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-mark {
    align-items: stretch;
    justify-content: flex-start;
  }

  .hero-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 560 / 396;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .nav-item.is-open .nav-sub {
    display: block;
  }

  .hero-grid,
  .identity-grid,
  .split,
  .cosdip-head,
  .cosdip-panels,
  .partner-stack,
  .contact-grid,
  .directors,
  .structure-grid,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-sticky {
    position: static;
  }

  .support-points {
    grid-template-columns: 1fr;
  }

  .reco-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .container,
  .hero-grid,
  .header-inner {
    width: min(var(--max), calc(100% - 36px));
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 76px;
  }

  .brand img {
    height: 42px;
  }

  .hero-band-grid {
    grid-template-columns: 1fr;
  }

  .hero-band article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .identity-grid,
  .partner-grid,
  .steps,
  .stats,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .about-snap,
  .principles,
  .cosdip,
  .process,
  .status,
  .partners,
  .recognition,
  .support,
  .contact,
  .page-hero,
  .page-section {
    padding: 80px 0;
  }

  .hero {
    padding-top: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-text,
  [data-reveal="up"],
  [data-reveal="scale"],
  .hero-scroll i {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
