/* ---------------------------------- */
/* Design Tokens */
/* ---------------------------------- */

:root {
  --bg: #0a1f86;
  --bg-deep: #07196f;
  --surface: rgba(5, 21, 98, 0.72);
  --surface-raised: rgba(8, 26, 112, 0.76);
  --surface-line: rgba(208, 243, 255, 0.18);
  --text: #f6f8ff;
  --muted: #ccdcff;
  --accent: #78d7ee;
  --accent-line: rgba(120, 215, 238, 0.34);
  --gold-line: rgba(231, 193, 114, 0.76);
  --nav-bg: #f6f5f2;
  --nav-text: #1c3d78;
  --nav-pill-bg: #c6ebfa;
  --nav-divider: #79d8ee;
  --nav-border: rgba(28, 61, 120, 0.1);
  --border: rgba(146, 194, 238, 0.2);
  --shadow: none;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --shell: min(1180px, calc(100vw - 36px));
  --shell-wide: min(1180px, calc(100vw - 36px));
  --measure: 660px;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 6.75rem;
  --space-4xl: 8.5rem;
  --header-height: 108px;
  --focus-ring: 2px solid var(--accent);
  --font-heading: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------------------------------- */
/* Base */
/* ---------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 4px);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text);
  background: linear-gradient(180deg, #081b73 0%, #0a217f 38%, #081e73 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1, "calt" 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

sup {
  font-size: 0.5em;
  line-height: 0;
}

button {
  font: inherit;
}

:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #031019;
  font-weight: 700;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.shell--wide {
  width: var(--shell-wide);
}

.section-shell {
  max-width: var(--measure);
}

.page-main > .section:first-child {
  border-top: none;
}

.page-main--vision {
  background: linear-gradient(180deg, #eef3f8 0%, #f7f7f3 46%, #eef4fa 100%);
}

.page-main--research {
  background: linear-gradient(180deg, #eef3f8 0%, #f8f8f4 48%, #edf4fa 100%);
}

.page-main--opportunity {
  background: linear-gradient(180deg, #eef3f8 0%, #f8f8f4 48%, #edf4fa 100%);
}

.interior-hero {
  padding: 0;
  background: linear-gradient(180deg, #04155c 0%, #04124f 100%);
}

.interior-hero__frame {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(120, 215, 238, 0.2);
  border-radius: 30px;
  background: rgba(6, 22, 88, 0.22);
}

.interior-hero__frame--vision {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  border: none;
  border-radius: 0;
  background: none;
}

.interior-hero__frame--research {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  border: none;
  border-radius: 0;
  background: none;
}

.interior-hero__frame--opportunity {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  border: none;
  border-radius: 0;
  background: none;
}

.interior-hero__copy {
  position: relative;
  padding: 4.2rem 3.5rem 3.8rem;
  background: linear-gradient(180deg, #082281 0%, #04175d 100%);
}

.interior-hero--vision .interior-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  justify-content: center;
  padding:
    4.45rem
    clamp(2rem, 4vw, 4.5rem)
    4.45rem
    max(20px, calc((100vw - 1180px) / 2 + 18px));
  background: transparent;
}

.interior-hero--research .interior-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  justify-content: center;
  padding:
    4.45rem
    clamp(2rem, 4vw, 4.5rem)
    4.45rem
    max(20px, calc((100vw - 1180px) / 2 + 18px));
  background: transparent;
}

.interior-hero--opportunity .interior-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  justify-content: center;
  padding:
    4.45rem
    clamp(2rem, 4vw, 4.5rem)
    4.45rem
    max(20px, calc((100vw - 1180px) / 2 + 18px));
  background: transparent;
}

.interior-hero__copy-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin-block: auto;
  background: transparent;
}

.interior-hero__copy::after {
  content: "";
  position: absolute;
  top: -8%;
  right: -86px;
  width: 180px;
  height: 116%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(120, 215, 238, 0.18), rgba(120, 215, 238, 0.04));
  opacity: 0.45;
}

.interior-hero--vision .interior-hero__copy::after {
  display: none;
}

.interior-hero--research .interior-hero__copy::after {
  display: none;
}

.interior-hero--opportunity .interior-hero__copy::after {
  display: none;
}

.interior-hero--vision .interior-hero__copy::before {
  display: none;
}

.interior-hero--research .interior-hero__copy::before {
  display: none;
}

.interior-hero--opportunity .interior-hero__copy::before {
  display: none;
}

.interior-hero__kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  color: rgba(207, 233, 255, 0.84);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.interior-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 8ch;
  color: #f8fbff;
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 5.4vw, 4.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.interior-hero__text {
  position: relative;
  z-index: 1;
  max-width: 35.5rem;
  margin: 1.45rem 0 0;
  color: rgba(233, 242, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.84;
  letter-spacing: -0.012em;
}

.interior-hero__text--strong {
  font-weight: 700;
}

.interior-hero__media {
  padding: 1rem;
  background: linear-gradient(180deg, #f4f6f9 0%, #ebf1f6 100%);
}

.interior-hero--vision .interior-hero__media {
  display: flex;
  align-self: stretch;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0;
  background: transparent;
}

.interior-hero--research .interior-hero__media {
  display: flex;
  align-self: stretch;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0;
  background: transparent;
}

.interior-hero--opportunity .interior-hero__media {
  display: flex;
  align-self: stretch;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0;
  background: transparent;
}

.interior-hero__image {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center bottom;
}

.interior-hero__image--opportunity {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center bottom;
}

.interior-media {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 300px;
  overflow: hidden;
  isolation: isolate;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(28, 61, 120, 0.12);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(8, 27, 73, 0.08);
}

.interior-media--image {
  padding: 0;
  background: #dfe7ef;
}

.interior-media--support {
  justify-content: center;
  align-items: center;
  padding: 0;
  background: linear-gradient(135deg, #2a6785 0%, #1e4f74 46%, #143b64 100%);
}

.interior-media--support-research {
  min-height: 295px;
}

.opportunity-support-visual {
  min-height: 295px;
}

.interior-media__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.interior-media__feature-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: min(52%, 172px);
  height: auto;
  object-fit: contain;
}

.interior-media--hero {
  min-height: 100%;
  background: linear-gradient(135deg, #2b6f8d 0%, #195387 58%, #133e72 100%);
}

.interior-media--block-one {
  background: linear-gradient(135deg, #3f7897 0%, #2d6284 44%, #173c66 100%);
}

.interior-media--block-two {
  background: linear-gradient(135deg, #2e6786 0%, #225572 44%, #16395f 100%);
}

.interior-media--block-three {
  background: linear-gradient(135deg, #2f6d87 0%, #21577a 42%, #133c66 100%);
}

.interior-media__shape {
  position: absolute;
  z-index: 0;
  display: block;
}

.interior-media__shape--panel {
  left: 10%;
  bottom: 14%;
  width: 46%;
  height: 38%;
  border-radius: 30px;
  background: rgba(8, 31, 102, 0.24);
}

.interior-media__shape--circle {
  right: -7%;
  bottom: -11%;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(239, 192, 113, 0.9);
}

.interior-media__shape--glow {
  top: 10%;
  right: 11%;
  width: 24%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 243, 220, 0.92) 0%, rgba(255, 243, 220, 0.44) 34%, rgba(255, 243, 220, 0) 72%);
}

.interior-media__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(247, 250, 255, 0.96);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.content-band {
  padding: 4.8rem 0;
}

.content-band--mist {
  background: #f4f7fb;
}

.content-band--ivory {
  background: #f3f0e8;
}

.content-band--sky {
  background: #edf4fa;
}

.content-band__grid {
  display: grid;
  align-items: start;
}

.content-band__grid--three {
  grid-template-columns: 92px minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 2.25rem;
}

.content-band__grid--split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 2.6rem;
}

.content-band__grid--home-standard {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 2.6rem;
}

.content-band__grid--home-reverse {
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
  gap: 2.6rem;
}

.content-band__aside {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.content-band__icon {
  display: flex;
  align-self: start;
  justify-content: center;
}

.content-band__icon--stacked {
  justify-content: flex-start;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 2px solid rgba(27, 75, 131, 0.4);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f6fb 100%);
  color: #1b4b83;
  box-shadow: 0 14px 28px rgba(10, 32, 66, 0.08);
}

.icon-badge__svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content-band__copy h2 {
  margin: 0 0 1rem;
  color: #143257;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 1.83rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.038em;
}

.content-band__subsection-title {
  margin-top: 2rem !important;
}

.rule-band-framework__grid {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 2.25rem;
}

.rule-band-framework__title {
  margin-top: 0 !important;
}

.content-band__copy p {
  margin: 0;
  max-width: 39rem;
  color: #506a86;
  font-size: 1rem;
  line-height: 1.82;
  letter-spacing: -0.012em;
}

.content-band__copy-followup {
  margin-top: 1rem !important;
}

.approach-subhead--interior {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #4f7aa2;
}

.opportunity-approach-grid {
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 0.35rem;
}

.opportunity-band-full__inner {
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1.4rem;
}

.opportunity-rule-full {
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: start;
}

.opportunity-rule-copy {
  grid-column: 1 / -1;
  max-width: none;
  margin-top: 0.6rem;
}

.opportunity-rule-copy p {
  max-width: none;
}

.opportunity-rule-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin-top: 1.2rem;
}

.opportunity-impact-wrap {
  margin-top: 1.8rem;
}

.content-band__media .interior-media {
  min-height: 295px;
}

.content-band__media .research-media__scene--band {
  min-height: 295px;
  border: 1px solid rgba(28, 61, 120, 0.12);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(8, 27, 73, 0.08);
}

.page-main--home {
  background: #000c41;
}

.home-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 0.62rem;
}

.home-band__eyebrow,
.home-contact__eyebrow {
  margin: 0;
  color: #627f99;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.home-band__headline {
  margin: 0;
  color: #143257;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 1.83rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.038em;
}

.home-band__description {
  margin: 0.2rem 0 0;
  color: #143257;
  font-size: 1rem;
  line-height: 1.72;
  letter-spacing: -0.012em;
}

.home-band__copy > .home-band__eyebrow {
  margin-bottom: -0.1rem;
}

.home-mission-section {
  padding-top: 3.4rem;
  padding-bottom: 1.2rem;
}

.home-mission-card {
  width: 100%;
  padding: 1.65rem 1.8rem;
  border: 2px solid rgba(27, 75, 131, 0.58);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(8, 27, 73, 0.06);
}

.home-mission-card__title {
  display: block;
  margin: 0 0 1rem;
  color: #143257;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 1.83rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.038em;
}

.home-mission-card__text {
  margin: 0.8rem 0 0;
  color: #143257;
  font-size: 1.05rem;
  line-height: 1.85;
  letter-spacing: -0.012em;
}

.home-band__actions {
  margin-top: 0.2rem;
}

.home-band__list,
.content-band__list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #506a86;
  font-size: 1rem;
  line-height: 1.72;
  letter-spacing: -0.012em;
}

.home-band__list li,
.content-band__list li {
  position: relative;
  padding-left: 1.1rem;
}

.home-band__list li::before,
.content-band__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2b7ea4;
}

.content-band__list--framework {
  margin-left: 0.75rem;
}

.content-band__list--framework li {
  padding-left: 1rem;
}

.home-band__callout,
.content-band__callout {
  color: #143257 !important;
  font-weight: 700;
}

.interior-media--contain {
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, #e8eef4 0%, #dce6ef 100%);
}

.interior-media--contain .interior-media__image {
  min-height: auto;
  object-fit: contain;
}

.content-band--home-cta {
  padding: 4.9rem 0 5.1rem;
  background: linear-gradient(180deg, #062178 0%, #04175d 100%);
}

.home-contact {
  max-width: 760px;
  display: grid;
  justify-items: center;
  gap: 0.95rem;
  text-align: center;
}

.home-contact__eyebrow {
  color: rgba(218, 233, 255, 0.86);
}

.home-contact h2 {
  margin: 0;
  color: #f8fbff;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.home-contact p:last-of-type {
  max-width: 40rem;
  margin: 0;
  color: rgba(233, 242, 255, 0.92);
  font-size: 1rem;
  line-height: 1.78;
  letter-spacing: -0.012em;
}

.home-contact__button {
  margin-top: 0.35rem;
}

/* ---------------------------------- */
/* Header / Navigation */
/* ---------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  backdrop-filter: blur(8px);
  background: rgba(246, 245, 242, 0.98);
  border-bottom: 1px solid var(--nav-divider);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  flex: 0 0 auto;
  min-width: 0;
}

.logo-mark {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: calc(55px * 1.4283);
  height: 55px;
}

.logo-mark__base,
.logo-mark__ray {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-mark__base {
  opacity: 0;
  transform: translateY(8px);
  animation: logoReveal 820ms cubic-bezier(0.2, 0.7, 0.2, 1) 80ms forwards;
}

.logo-mark__ray {
  opacity: 0;
  transform: translateY(2px);
  animation: rayReveal 260ms ease-out forwards;
}

.logo-mark__ray:nth-child(2) {
  animation-delay: 700ms;
}

.logo-mark__ray:nth-child(3) {
  animation-delay: 760ms;
}

.logo-mark__ray:nth-child(4) {
  animation-delay: 820ms;
}

.logo-mark__ray:nth-child(5) {
  animation-delay: 880ms;
}

.logo-mark__ray:nth-child(6) {
  animation-delay: 940ms;
}

.logo-mark__ray:nth-child(7) {
  animation-delay: 1000ms;
}

.logo-mark__ray:nth-child(8) {
  animation-delay: 1060ms;
}

.logo-mark__ray:nth-child(9) {
  animation-delay: 1120ms;
}

.logo-mark__ray:nth-child(10) {
  animation-delay: 1180ms;
}

.logo-mark__ray:nth-child(11) {
  animation-delay: 1240ms;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.brand-title,
.brand-tagline {
  display: block;
  line-height: 1;
}

.brand-title {
  color: var(--nav-text);
  max-width: 11.5rem;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0.02em;
  white-space: normal;
}

.brand-tagline {
  color: #58aeca;
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.18rem;
}

.site-nav a {
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  color: var(--nav-text);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--nav-text);
  background: var(--nav-pill-bg);
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rayReveal {
  from {
    opacity: 0;
    transform: translateY(2px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--nav-border);
  border-radius: 999px;
  background: transparent;
  color: var(--nav-text);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.menu-toggle:hover {
  background: var(--nav-pill-bg);
  border-color: rgba(23, 55, 98, 0.12);
  color: var(--nav-text);
}

.menu-toggle__lines {
  display: inline-grid;
  gap: 4px;
}

.menu-toggle__lines span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

/* ---------------------------------- */
/* Typography / Shared Section Styles */
/* ---------------------------------- */

.eyebrow,
.section-kicker,
.panel-topline,
.card-index {
  margin: 0 0 0.95rem;
  color: #d9ebff;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-header h1,
.section-header h2,
.editorial-panel h2,
.approach-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.section {
  padding: 4rem 0 3.85rem;
  border-top: 1px solid rgba(121, 216, 238, 0.4);
}

.section--tight {
  padding-top: 3.4rem;
  padding-bottom: 3.2rem;
}

.section--feature {
  padding-top: 4rem;
  padding-bottom: 4.15rem;
}

.section--approach {
  padding-top: 4rem;
  padding-bottom: 4.25rem;
}

.section--opportunity {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.section[data-section] {
  scroll-margin-top: 0;
}

.section-header {
  margin-bottom: 0.95rem;
}

.section-header--compact {
  margin-bottom: 0.9rem;
}

.section-header--wide {
  margin-bottom: 1.35rem;
}

.section-header h1,
.section-header h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  line-height: 1.05;
}

.section-body,
.panel-copy p,
.approach-card p,
.impact-list li,
.hero-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  letter-spacing: -0.006em;
}

.section-stack {
  display: grid;
  gap: 0.75rem;
}

#vision.section--tight {
  padding-top: 3.3rem;
  padding-bottom: 2.9rem;
  background: #031357;
}

#research.section--tight {
  padding-top: 3.2rem;
  padding-bottom: 3.8rem;
  background: #031357;
}

.vision-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 1.9rem;
  align-items: start;
}

.vision-copy {
  max-width: none;
}

#vision .section-body {
  max-width: 560px;
}

.vision-media {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.vision-media__frame {
  width: 100%;
  padding: 0.34rem;
  border: 1px solid rgba(120, 215, 238, 0.42);
  border-radius: 18px;
  background: rgba(10, 33, 127, 0.3);
}

.vision-media__scene {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 14px;
  background: #1a5d8f;
}

.vision-media__image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

#research .section-shell {
  max-width: 560px;
}

/* ---------------------------------- */
/* Hero */
/* ---------------------------------- */

.hero {
  background: #000c41;
  padding: calc(1.1rem + 40px) 0 1.9rem;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 1.8rem;
  align-items: center;
}

.hero-content {
  display: grid;
  gap: 1.15rem;
  max-width: 39rem;
  width: 100%;
  padding-top: 40px;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 0.12em;
  max-width: 24ch;
  font-size: clamp(1.45rem, 2.55vw, 2.15rem);
  line-height: 1;
  text-wrap: unset;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-support {
  display: grid;
  gap: 1rem;
  padding-bottom: 0;
}

.hero-text {
  max-width: 29rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  max-width: 406px;
}

.stat-card,
.approach-card,
.editorial-panel,
.impact-panel {
  position: relative;
  overflow: hidden;
  background: rgba(11, 32, 133, 0.48);
  border: 1px solid var(--border);
  box-shadow: none;
}

.stat-card::before,
.approach-card::before,
.editorial-panel::before,
.impact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid var(--surface-line);
  pointer-events: none;
}

.stat-card {
  width: 200px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.78rem 0.6rem;
  border-radius: var(--radius-md);
  background: rgba(8, 30, 123, 0.72);
  text-align: center;
}

.stat-value {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--nav-pill-bg);
}

.stat-label {
  margin: 0.3rem 0 0;
  color: #d2def7;
  font-size: 0.46rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-top: 40px;
}

.hero-media__frame {
  width: 100%;
  max-width: 100%;
  padding: 0.34rem;
  border: 2px solid var(--gold-line);
  border-radius: 18px;
  background: rgba(237, 201, 127, 0.08);
}

.hero-media__scene {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border-radius: 14px;
  background: #1a5d8f;
}

.hero-media__image {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center;
}

/* ---------------------------------- */
/* Editorial Panels / Cards */
/* ---------------------------------- */

.section--research {
  padding-bottom: 4.2rem;
}

.research-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 1.9rem;
  align-items: start;
}

.research-media {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.research-copy {
  max-width: none;
}

.research-media__frame {
  width: 100%;
  padding: 0.34rem;
  border: 1px solid rgba(120, 215, 238, 0.42);
  border-radius: 18px;
  background: rgba(10, 33, 127, 0.3);
}

.research-media__scene {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, #0a2d72, #08245e);
  opacity: 0.9;
  transform: translateY(10px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.research-media__scene.is-animated {
  opacity: 1;
  transform: translateY(0);
}

.research-graphic {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.research-graphic__bg {
  fill: rgba(4, 22, 82, 0.985);
}

.research-graphic__grid {
  fill: url(#research-grid);
  stroke: rgba(214, 235, 255, 0.32);
  stroke-width: 1.5;
}

.research-label {
  fill: rgba(230, 241, 255, 0.8);
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

.research-label--title {
  fill: rgba(243, 249, 255, 0.92);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.research-label--axis-x,
.research-label--axis-y {
  fill: rgba(232, 242, 255, 0.86);
  font-size: 15px;
  font-weight: 600;
}

.research-label--callout {
  fill: rgba(242, 247, 255, 0.92);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: researchNodeReveal 0.8s ease-out 2.55s forwards;
  animation-play-state: paused;
}

.research-bars rect {
  fill: rgba(226, 241, 255, 0.14);
  animation: researchBars 5.6s ease-in-out infinite;
  animation-play-state: paused;
}

.research-bars rect:nth-child(2) {
  animation-delay: 0.3s;
}

.research-bars rect:nth-child(3) {
  animation-delay: 0.6s;
}

.research-bars rect:nth-child(4) {
  animation-delay: 0.9s;
}

.research-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.research-line--primary {
  stroke: url(#research-primary);
  stroke-width: 5;
  animation:
    researchDraw 2.8s ease-out forwards,
    researchPulse 4.6s ease-in-out 2.8s infinite;
  animation-play-state: paused, paused;
}

.research-line--secondary {
  stroke: url(#research-secondary);
  stroke-width: 2.5;
  opacity: 0.72;
  animation:
    researchDraw 2.4s ease-out 0.25s forwards,
    researchFloat 6.4s ease-in-out 2.7s infinite;
  animation-play-state: paused, paused;
}

.research-node {
  transform-origin: center;
}

.research-node--primary {
  fill: #d8f6ff;
  opacity: 0;
  animation: researchNodeReveal 0.8s ease-out 2.2s forwards;
  animation-play-state: paused;
}

.research-node--accent {
  fill: rgba(238, 208, 141, 0.95);
  opacity: 0;
  animation:
    researchNodeReveal 0.8s ease-out 2.35s forwards,
    researchAccentPulse 4.8s ease-in-out 3s infinite;
  animation-play-state: paused, paused;
}

.research-nodes .research-node:nth-child(2) {
  animation-delay: 2.35s;
}

.research-nodes .research-node:nth-child(3) {
  animation-delay: 2.5s;
}

.research-callout__line {
  fill: none;
  stroke: rgba(238, 208, 141, 0.72);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
  animation:
    researchDraw 0.9s ease-out 2.4s forwards,
    researchNodeReveal 0.2s linear 2.4s forwards;
  animation-play-state: paused, paused;
}

.research-media__scene.is-animated .research-bars rect,
.research-media__scene.is-animated .research-line--primary,
.research-media__scene.is-animated .research-line--secondary,
.research-media__scene.is-animated .research-node--primary,
.research-media__scene.is-animated .research-node--accent,
.research-media__scene.is-animated .research-callout__line,
.research-media__scene.is-animated .research-label--callout {
  animation-play-state: running;
}

@keyframes researchDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes researchPulse {
  0%,
  100% {
    opacity: 0.92;
  }

  50% {
    opacity: 1;
  }
}

@keyframes researchFloat {
  0%,
  100% {
    opacity: 0.48;
  }

  50% {
    opacity: 0.78;
  }
}

@keyframes researchNodeReveal {
  to {
    opacity: 1;
  }
}

@keyframes researchAccentPulse {
  0%,
  100% {
    opacity: 0.88;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes researchBars {
  0%,
  100% {
    opacity: 0.16;
  }

  50% {
    opacity: 0.28;
  }
}

.opportunity-intro {
  max-width: none;
}

.opportunity-panel-wrap {
  margin-top: 1.35rem;
}

.opportunity-approach {
  margin-top: 2rem;
}

.approach-subhead {
  margin: 0 0 0.95rem;
  color: #d9ebff;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#opportunity.section--opportunity {
  background: #000c41;
}

#opportunity .section-body {
  max-width: 760px;
}

.editorial-panel {
  padding: 1.6rem 1.7rem 1.75rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(10, 44, 152, 0.42), rgba(7, 27, 112, 0.34)),
    rgba(6, 26, 117, 0.76);
  border-color: var(--accent-line);
  box-shadow: none;
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 1.9rem;
  align-items: start;
}

.panel-heading h2 {
  max-width: 10ch;
  font-size: clamp(1.6rem, 3vw, 2.05rem);
  line-height: 1.04;
}

.panel-copy {
  display: grid;
  gap: 0.8rem;
  max-width: 40rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.approach-card {
  min-height: 100%;
  padding: 1rem 0.95rem 1.05rem;
  border-radius: 10px;
  background: rgba(8, 31, 126, 0.56);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
  box-shadow: none;
}

.approach-card:hover {
  border-color: rgba(126, 216, 238, 0.28);
  background: rgba(10, 36, 141, 0.62);
  box-shadow: none;
}

.opportunity-approach-grid .approach-card {
  background: linear-gradient(180deg, rgba(3, 19, 87, 0.96), rgba(0, 12, 65, 0.96));
  border-color: rgba(120, 215, 238, 0.22);
}

.opportunity-approach-grid .approach-card:hover {
  background: linear-gradient(180deg, rgba(6, 26, 117, 0.98), rgba(3, 19, 87, 0.98));
  border-color: rgba(120, 215, 238, 0.32);
}

.opportunity-approach-grid .approach-card h3,
.opportunity-approach-grid .approach-card p {
  color: #edf4ff;
}

.opportunity-approach-grid .approach-card p {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.62;
}

.approach-card:nth-child(2) {
  padding-top: 1rem;
  padding-bottom: 1.05rem;
}

.approach-card:nth-child(3) {
  padding-top: 1rem;
}

.card-index {
  margin-bottom: 0.65rem;
  color: #dce7ff;
  font-size: 0.62rem;
}

.approach-card h3 {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.rule-framework {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(120, 215, 238, 0.2);
}

.rule-framework__header {
  display: grid;
  gap: 0.8rem;
  max-width: 760px;
}

.rule-framework__header h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.rule-framework__intro {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.rule-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.55rem;
}

.rule-panel {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 100%;
  padding: 1.6rem 1.2rem 1.35rem;
  border-radius: 16px;
  border: 1px solid transparent;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.rule-panel--rehearse {
  background: linear-gradient(180deg, rgba(98, 27, 54, 0.96), rgba(77, 18, 43, 0.94));
  border-color: rgba(223, 144, 178, 0.34);
}

.rule-panel--analyze {
  background: linear-gradient(180deg, rgba(10, 40, 136, 0.96), rgba(8, 29, 109, 0.94));
  border-color: rgba(123, 196, 255, 0.34);
}

.rule-panel--produce {
  background: linear-gradient(180deg, rgba(10, 86, 102, 0.96), rgba(8, 67, 81, 0.94));
  border-color: rgba(120, 232, 223, 0.32);
}

.rule-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.rule-panel--rehearse:hover {
  border-color: rgba(239, 172, 203, 0.52);
}

.rule-panel--analyze:hover {
  border-color: rgba(161, 220, 255, 0.52);
}

.rule-panel--produce:hover {
  border-color: rgba(152, 244, 233, 0.5);
}

.rule-panel__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 180ms ease;
}

.rule-panel:hover .rule-panel__icon {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.12));
}

.rule-panel h4 {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.rule-panel p {
  margin: 0;
  color: rgba(240, 246, 255, 0.9);
  font-size: 0.76rem;
  line-height: 1.55;
}

.impact-panel {
  padding: 1.25rem 1.4rem 1.35rem;
  border-radius: 12px;
  background: rgba(8, 31, 126, 0.6);
  box-shadow: none;
}

.opportunity-impact-wrap .impact-panel {
  background: linear-gradient(180deg, rgba(4, 21, 92, 0.98), rgba(4, 18, 79, 0.98));
  border-color: rgba(120, 215, 238, 0.22);
}

.impact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem;
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
}

.impact-list li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.76rem;
  line-height: 1.45;
}

.impact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
}

/* ---------------------------------- */
/* Contact / Footer */
/* ---------------------------------- */

.contact-section {
  padding-top: 4.25rem;
  padding-bottom: 4.6rem;
}

.contact-shell {
  max-width: 520px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.contact-header {
  margin-bottom: 0.55rem;
}

.contact-text {
  max-width: 28rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 0.9rem;
  padding: 0 1rem;
  border: 1px solid rgba(126, 216, 232, 0.28);
  border-radius: 999px;
  background: rgba(120, 215, 238, 0.06);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  background: rgba(120, 215, 238, 0.12);
  border-color: rgba(126, 216, 232, 0.42);
  box-shadow: none;
}

.button--band {
  min-height: 40px;
  margin-top: 0;
  padding: 0 1.15rem;
  border-color: rgba(22, 60, 104, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: #143257;
}

.button--band:hover {
  background: #e8f5fb;
  border-color: rgba(43, 126, 164, 0.22);
}

.site-footer {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.site-footer--contact {
  border-top: 1px solid rgba(244, 247, 255, 0.26);
  background: linear-gradient(180deg, #04155c 0%, #04124f 100%);
}

.footer-shell {
  padding-top: 2.1rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(190px, 0.75fr) minmax(0, 1.1fr);
  gap: 2rem 2.4rem;
  align-items: start;
}

.footer-brand__lockup {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: center;
}

.footer-brand__logo {
  width: 80px;
  height: auto;
}

.footer-brand__logo--yellow {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.14));
}

.footer-brand__wordmark {
  display: grid;
  gap: 0.14rem;
}

.footer-brand__name,
.footer-brand__subname {
  display: block;
  color: #f6f8ff;
}

.footer-brand__name {
  font-family: var(--font-heading);
  font-size: 1.52rem;
  font-weight: 700;
  line-height: 1;
}

.footer-brand__subname {
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.05;
}

.footer-brand__copy,
.footer-contact__copy {
  margin: 1.35rem 0 0;
  max-width: 23rem;
  color: rgba(246, 248, 255, 0.9);
  font-size: 0.94rem;
  line-height: 1.68;
}

.footer-heading {
  margin: 0 0 0.95rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.footer-projects {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.footer-projects__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  color: #f6f8ff;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.4;
}

.footer-projects__link:hover,
.footer-projects__link:focus-visible,
.footer-email:hover,
.footer-email:focus-visible {
  color: #ffd84c;
}

.footer-projects__link--external::after {
  content: "↗";
  font-size: 0.92em;
  line-height: 1;
}

.footer-contact__title {
  margin: 0;
  max-width: 12ch;
  color: #f6f8ff;
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 3.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.footer-contact__copy {
  max-width: 29rem;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  margin-top: 1.45rem;
  color: #f6f8ff;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.footer-email__icon {
  width: 26px;
  height: 19px;
  flex: 0 0 auto;
}

.footer-bar {
  border-top: 1px solid rgba(244, 247, 255, 0.18);
}

.footer-bar__inner {
  padding-top: 0.78rem;
  padding-bottom: 0.92rem;
}

.footer-bar__inner p {
  margin: 0;
  color: rgba(246, 248, 255, 0.95);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

/* ---------------------------------- */
/* Responsive */
/* ---------------------------------- */

@media (max-width: 1100px) {
  :root {
    --space-4xl: 7rem;
  }

  .interior-hero__frame,
  .content-band__grid--three,
  .content-band__grid--split,
  .content-band__grid--home-standard,
  .content-band__grid--home-reverse,
  .content-band__aside,
  .hero-layout,
  .vision-layout,
  .panel-grid,
  .approach-grid,
  .rule-panels,
  .impact-list {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 1.5rem;
  }

  .panel-heading h2 {
    max-width: 12ch;
  }

  .research-layout {
    grid-template-columns: 1fr;
  }

  .interior-hero__copy {
    padding: 3rem 2.3rem 2.6rem;
  }

  .interior-hero__frame--vision {
    min-height: auto;
  }

  .interior-hero--vision .interior-hero__copy {
    padding: 3rem max(20px, calc((100vw - 1180px) / 2 + 18px));
  }

  .interior-hero--research .interior-hero__copy {
    padding: 3rem max(20px, calc((100vw - 1180px) / 2 + 18px));
  }

  .interior-hero--opportunity .interior-hero__copy {
    padding: 3rem max(20px, calc((100vw - 1180px) / 2 + 18px));
  }

  .interior-hero__copy::after {
    display: none;
  }

  .interior-hero--vision .interior-hero__copy::before {
    display: none;
  }

  .interior-hero--research .interior-hero__copy::before {
    right: 0;
    height: 120px;
  }

  .interior-hero--opportunity .interior-hero__copy::before {
    right: 0;
    height: 120px;
  }

  .interior-hero__media {
    padding: 1rem;
  }

  .interior-hero--vision .interior-hero__media {
    min-height: 0;
  }

  .interior-hero--research .interior-hero__media {
    min-height: 0;
    padding: 0;
  }

  .interior-hero--opportunity .interior-hero__media {
    min-height: 0;
    padding: 0;
  }

  .interior-hero__image {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: 480px;
  }

  .interior-hero__image--opportunity {
    width: 100%;
    max-height: 480px;
  }

  .content-band__icon,
  .content-band__icon--stacked {
    justify-content: center;
  }

  .content-band__grid--split .content-band__aside {
    order: 1;
  }

  .content-band__grid--split .content-band__media {
    order: 2;
  }

  .content-band__copy p {
    max-width: none;
  }

  .home-band__list,
  .content-band__list {
    max-width: none;
  }

  .research-media,
  .vision-media,
  .hero-media {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 102px;
    --shell: min(100vw - 20px, 1240px);
    --shell-wide: min(100vw - 20px, 1380px);
    --space-3xl: 5rem;
    --space-4xl: 6.5rem;
  }

  .header-inner {
    position: relative;
    gap: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(260px, calc(100vw - 20px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.55rem;
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    background: rgba(245, 245, 241, 0.98);
    box-shadow: 0 10px 28px rgba(4, 11, 18, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.8rem 0.95rem;
    font-size: 1.15rem;
  }

  .logo-mark {
    width: calc(45px * 1.4283);
    height: 45px;
  }

  .brand-copy {
    gap: 0.04rem;
  }

  .brand-title {
    font-size: 0.98rem;
  }

  .brand-tagline {
    font-size: 0.94rem;
  }

  .page-main--vision {
    background: linear-gradient(180deg, #eef3f8 0%, #f8f8f4 52%, #eef4fa 100%);
  }

  .page-main--opportunity {
    background: linear-gradient(180deg, #eef3f8 0%, #f8f8f4 52%, #eef4fa 100%);
  }

  .interior-hero {
    padding: 0 0 2.55rem;
  }

  .interior-hero__copy {
    padding: 2.1rem 1.3rem 1.95rem;
  }

  .interior-hero--vision .interior-hero__copy {
    padding: 2.25rem 20px;
  }

  .interior-hero--research .interior-hero__copy {
    padding: 2.25rem 20px;
  }

  .interior-hero--opportunity .interior-hero__copy {
    padding: 2.25rem 20px;
  }

  .interior-hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
  }

  .interior-hero__text {
    margin-top: 1.1rem;
    font-size: 0.94rem;
    line-height: 1.74;
  }

  .interior-media--hero {
    min-height: 280px;
  }

  .interior-hero--vision .interior-hero__media {
    min-height: 0;
  }

  .interior-hero--research .interior-hero__media {
    min-height: 0;
    padding: 0;
  }

  .interior-hero--opportunity .interior-hero__media {
    min-height: 0;
    padding: 0;
  }

  .interior-hero__image {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: 360px;
  }

  .interior-hero__image--opportunity {
    max-height: 320px;
  }

  .content-band {
    padding: 3rem 0;
  }

  .content-band__grid--three,
  .content-band__grid--split,
  .content-band__grid--home-standard,
  .content-band__grid--home-reverse {
    gap: 1.3rem;
  }

  .content-band__aside {
    gap: 1rem;
  }

  .content-band__copy h2 {
    font-size: 1.5rem;
  }

  .content-band__copy p {
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .home-band__eyebrow,
  .home-contact__eyebrow {
    font-size: 0.88rem;
  }

  .home-mission-card__title {
    font-size: 1.5rem;
  }

  .home-band__headline {
    font-size: 1.5rem;
  }

  .home-band__description {
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .home-mission-section {
    padding-top: 2.7rem;
    padding-bottom: 0.9rem;
  }

  .home-mission-card {
    padding: 1.3rem 1.2rem;
    border-radius: 20px;
  }

  .home-mission-card__text {
    font-size: 0.96rem;
    line-height: 1.74;
  }

  .home-band__list,
  .content-band__list {
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .opportunity-impact-wrap {
    margin-top: 1.3rem;
  }

  .icon-badge {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .icon-badge__svg {
    width: 32px;
    height: 32px;
  }

  .icon-badge__image {
    width: 100%;
    height: 100%;
  }

  .content-band__media .interior-media {
    min-height: 220px;
  }

  .interior-media--contain .interior-media__image {
    max-height: 220px;
  }

  .interior-media__label {
    min-height: 30px;
    padding: 0 0.75rem;
    font-size: 0.56rem;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: auto;
    padding-top: calc(1rem + 40px);
    padding-bottom: 1.5rem;
  }

  .hero-layout {
    gap: 1rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(0.9rem, 4.2vw, 1.22rem);
    line-height: 1.04;
  }

  .hero-content {
    gap: 0.9rem;
    max-width: none;
    padding-top: 40px;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-text {
    max-width: none;
    font-size: 0.84rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .rule-panels {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .rule-panel {
    padding: 1.25rem 1rem 1.15rem;
  }

  .rule-panel__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.8rem;
  }

  .vision-media__scene {
    min-height: 220px;
  }

  .vision-media__image {
    min-height: 220px;
  }

  .hero-media__scene {
    min-height: 180px;
  }

  .hero-media__image {
    min-height: 180px;
  }

  .editorial-panel,
  .impact-panel {
    padding: 1.2rem;
  }

  .section {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }

  #vision.section--tight {
    padding-top: 2.5rem;
    padding-bottom: 2.3rem;
  }

  #research.section--tight {
    padding-top: 2.4rem;
    padding-bottom: 2.9rem;
  }

  .section--feature,
  .section--approach,
  .section--opportunity,
  .contact-section {
    padding-top: 3rem;
    padding-bottom: 3.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .footer-shell {
    padding-top: 1.75rem;
    padding-bottom: 1.7rem;
  }

  .footer-brand__logo {
    width: 72px;
  }

  .footer-contact__title {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .footer-brand__copy,
  .footer-contact__copy,
  .footer-projects__link,
  .footer-email {
    font-size: 0.92rem;
  }
}

@media (max-width: 420px) {
  .interior-hero--vision .interior-hero__copy {
    padding-top: 3rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .research-media__scene {
    opacity: 1;
    transform: none;
  }

  .research-line {
    stroke-dashoffset: 0;
  }

  .research-node--primary,
  .research-node--accent {
    opacity: 1;
  }

  .research-callout__line {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  .research-label--callout {
    opacity: 1;
  }

  .logo-mark__base,
  .logo-mark__ray {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
