:root {
  --navy-950: #0d2133;
  --navy-900: #17324d;
  --navy-800: #234762;
  --slate-blue: #476b87;
  --brass: #b08a3c;
  --gold: #c89b3c;
  --sage: #6e8767;
  --stone-50: #faf9f6;
  --stone-100: #f2f1ed;
  --stone-200: #e5e1d9;
  --stone-300: #d2cdc3;
  --charcoal: #37444e;
  --slate: #5b6670;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 48px));
  --shadow-soft: 0 28px 70px rgba(23, 50, 77, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--stone-50);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(200, 155, 60, 0.25);
  color: var(--navy-950);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 3px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.status-bar {
  position: relative;
  z-index: 20;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.status-bar-inner {
  display: flex;
  align-items: center;
  min-height: 38px;
  gap: 12px;
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.14);
}

.status-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.24);
}

.site-header {
  position: sticky;
  z-index: 15;
  top: 0;
  border-bottom: 1px solid rgba(23, 50, 77, 0.12);
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brand {
  display: block;
  flex: 0 1 300px;
}

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

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.primary-nav a {
  position: relative;
  padding-block: 32px;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 750px;
  background:
    linear-gradient(90deg, rgba(242, 241, 237, 0.98) 0%, rgba(242, 241, 237, 0.93) 54%, rgba(229, 225, 217, 0.78) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 97px, rgba(23, 50, 77, 0.04) 98px);
}

.hero::before {
  position: absolute;
  width: 660px;
  height: 660px;
  top: -340px;
  right: -180px;
  border: 1px solid rgba(176, 138, 60, 0.4);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -90px;
  bottom: -420px;
  border: 1px solid rgba(71, 107, 135, 0.26);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 750px;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: clamp(60px, 8vw, 128px);
  padding-block: 84px 100px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(58px, 6.6vw, 96px);
  line-height: 0.98;
}

.hero-lede {
  max-width: 720px;
  margin: 32px 0 0;
  color: var(--slate);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.015em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: var(--navy-800);
}

.button-secondary {
  border-color: rgba(23, 50, 77, 0.24);
  color: var(--navy-900);
}

.button-secondary:hover {
  border-color: var(--navy-900);
  background: rgba(255, 255, 255, 0.52);
}

.button-note {
  border-left: 1px solid rgba(23, 50, 77, 0.22);
  padding-left: 12px;
  color: var(--brass);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-architecture {
  position: relative;
  min-height: 510px;
  border: 1px solid rgba(23, 50, 77, 0.2);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
  padding: 26px 30px 28px;
}

.hero-architecture::before {
  position: absolute;
  width: 10px;
  height: 10px;
  top: -5px;
  right: 36px;
  background: var(--gold);
  content: "";
  transform: rotate(45deg);
}

.architecture-topline {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(23, 50, 77, 0.15);
  padding-bottom: 16px;
  color: var(--slate);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.architecture-core {
  position: relative;
  display: grid;
  height: 200px;
  place-items: center;
  overflow: hidden;
}

.architecture-ring {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(176, 138, 60, 0.52);
  border-radius: 50%;
  top: 40px;
}

.architecture-ring::before,
.architecture-ring::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.architecture-ring::before {
  inset: 28px;
  border: 1px solid rgba(71, 107, 135, 0.24);
}

.architecture-ring::after {
  inset: 58px;
  background: rgba(23, 50, 77, 0.055);
}

.architecture-mark {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 24px;
}

.architecture-mark strong {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 14px;
}

.architecture-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.architecture-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  border-top: 1px solid rgba(23, 50, 77, 0.12);
  padding: 10px 0;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 750;
}

.architecture-list li span {
  color: var(--brass);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.architecture-caption {
  margin: 16px 0 0;
  color: var(--slate);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.hero-rule {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold) 0 24%, var(--navy-900) 24% 100%);
}

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

.section-heading h2,
.why h2,
.method h2,
.support h2,
.partner h2,
.leadership h2,
.contact h2 {
  max-width: 860px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.06;
}

.declaration {
  background: var(--white);
}

.declaration-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.declaration-card {
  min-height: 380px;
  padding: clamp(38px, 5vw, 68px);
}

.mission-card {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.mission-card::after {
  position: absolute;
  width: 410px;
  height: 410px;
  right: -190px;
  bottom: -280px;
  border: 1px solid rgba(200, 155, 60, 0.6);
  border-radius: 50%;
  content: "";
}

.vision-card {
  border: 1px solid var(--stone-300);
  background: var(--stone-100);
  color: var(--navy-900);
}

.card-label {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vision-card .card-label {
  color: var(--brass);
}

.declaration-text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.28;
}

.why {
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(23, 50, 77, 0.04) 48% 48.1%, transparent 48.1%),
    var(--stone-50);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(64px, 10vw, 150px);
}

.why-body {
  padding-top: 42px;
  color: var(--slate);
  font-size: 18px;
}

.lead-paragraph {
  margin-top: 0;
  color: var(--charcoal);
  font-size: 21px;
  line-height: 1.65;
}

.why-body blockquote {
  position: relative;
  margin: 48px 0 0;
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 30px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 27px;
  font-style: italic;
  line-height: 1.4;
}

.why-body blockquote span {
  position: absolute;
  top: -35px;
  left: 20px;
  color: rgba(176, 138, 60, 0.2);
  font-size: 80px;
}

.capabilities {
  border-top: 1px solid var(--stone-200);
  background: var(--stone-100);
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 80px;
}

.split-heading > p {
  margin: 0 0 6px;
  color: var(--slate);
  font-size: 17px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--stone-300);
  background: var(--stone-300);
}

.capability-card {
  min-height: 330px;
  background: var(--white);
  padding: 32px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.capability-card:hover {
  position: relative;
  z-index: 1;
  background: var(--stone-50);
}

.capability-meta {
  display: flex;
  min-height: 50px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.status-chip {
  border: 1px solid rgba(110, 135, 103, 0.35);
  border-radius: 999px;
  padding: 5px 8px;
  color: #4d6649;
  font-size: 8px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.capability-card h3 {
  min-height: 66px;
  margin: 25px 0 18px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.25;
}

.capability-card p {
  margin: 0;
  color: var(--slate);
}

.method {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
}

.method::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 85px, rgba(255, 255, 255, 0.025) 86px),
    repeating-linear-gradient(90deg, transparent 0, transparent 85px, rgba(255, 255, 255, 0.025) 86px);
  content: "";
}

.method-orbit {
  position: absolute;
  border: 1px solid rgba(200, 155, 60, 0.22);
  border-radius: 50%;
}

.orbit-one {
  width: 720px;
  height: 720px;
  right: -420px;
  top: -230px;
}

.orbit-two {
  width: 420px;
  height: 420px;
  right: -200px;
  top: -80px;
}

.method-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
  gap: clamp(70px, 10vw, 150px);
}

.eyebrow-light {
  color: var(--gold);
}

.method h2,
.contact h2 {
  color: var(--white);
}

.method-copy > p:not(.eyebrow):not(.method-note) {
  max-width: 720px;
  font-size: 18px;
}

.method-note {
  margin-top: 34px;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.method-stages {
  display: grid;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-stages li {
  display: grid;
  align-items: center;
  grid-template-columns: 56px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 0;
}

.method-stages li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.method-stages span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.method-stages strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.support {
  background: var(--white);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: clamp(70px, 10vw, 140px);
}

.coming-soon-badge {
  display: inline-flex;
  margin-bottom: 28px;
  border: 1px solid rgba(176, 138, 60, 0.36);
  border-radius: 999px;
  background: rgba(200, 155, 60, 0.08);
  padding: 7px 12px;
  color: #7b5d20;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-copy > p:not(.eyebrow) {
  color: var(--slate);
}

.support-copy .lead-paragraph {
  color: var(--charcoal);
}

.support-journey {
  position: relative;
  display: grid;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-journey::before {
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 25px;
  width: 1px;
  background: var(--stone-300);
  content: "";
}

.support-journey li {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 17px 0;
}

.support-journey li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--stone-300);
  border-radius: 50%;
  background: var(--stone-50);
  color: var(--brass);
  font-size: 10px;
  font-weight: 800;
}

.support-journey strong,
.support-journey small,
.contact-option strong,
.contact-option small {
  display: block;
}

.support-journey strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 21px;
}

.support-journey small {
  color: var(--slate);
  font-size: 12px;
}

.partner {
  background: var(--stone-100);
}

.partner-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
  gap: clamp(70px, 9vw, 125px);
  border-top: 4px solid var(--gold);
  background: var(--white);
  padding: clamp(42px, 6vw, 78px);
  box-shadow: var(--shadow-soft);
}

.partner-copy > p:not(.eyebrow) {
  color: var(--slate);
  font-size: 17px;
}

.partner-copy .partner-invitation {
  margin-top: 30px;
  color: var(--navy-900) !important;
  font-family: var(--serif);
  font-size: 22px !important;
  font-style: italic;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 850;
}

.text-link span {
  color: var(--brass);
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.partner-list {
  display: grid;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  border-bottom: 1px solid var(--stone-200);
  padding: 12px 0;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
}

.partner-list span {
  color: var(--brass);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.leadership {
  background: var(--stone-50);
}

.leadership-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(70px, 10vw, 150px);
}

.leadership-grid > div > p:not(.eyebrow) {
  color: var(--slate);
  font-size: 17px;
}

.leader-card {
  display: grid;
  align-items: start;
  grid-template-columns: 128px 1fr;
  gap: 34px;
  border: 1px solid var(--stone-300);
  background: var(--white);
  padding: 38px;
}

.leader-monogram {
  display: grid;
  width: 128px;
  height: 152px;
  place-items: end start;
  background:
    linear-gradient(135deg, transparent 48%, rgba(200, 155, 60, 0.3) 48.5% 49.5%, transparent 50%),
    var(--navy-900);
  padding: 18px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 30px;
}

.leader-card h3 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.2;
}

.leader-card p:last-child {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 14px;
}

.contact {
  background: var(--stone-50);
  padding-top: 0;
}

.contact-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: clamp(70px, 10vw, 140px);
  background: var(--navy-900);
  padding: clamp(48px, 7vw, 88px);
  color: rgba(255, 255, 255, 0.7);
}

.contact-panel::after {
  position: absolute;
  width: 540px;
  height: 540px;
  right: -360px;
  bottom: -320px;
  border: 1px solid rgba(200, 155, 60, 0.42);
  border-radius: 50%;
  content: "";
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel > div:first-child > p:not(.eyebrow) {
  font-size: 17px;
}

.contact-options {
  display: grid;
  align-content: center;
}

.contact-option {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 22px 0;
}

.contact-option:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-option > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
}

.contact-option strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
}

.contact-option small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.transparency {
  border-top: 1px solid var(--stone-200);
  background: var(--stone-100);
  padding-block: 38px;
}

.transparency-inner {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 48px;
}

.transparency-inner .card-label {
  margin: 2px 0 0;
  color: var(--brass);
}

.transparency-inner > p:last-child {
  margin: 0;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.7;
}

.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.64);
  padding-block: 72px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.7fr) minmax(120px, 0.5fr) minmax(120px, 0.5fr);
  gap: 70px;
}

.footer-brand img {
  width: min(390px, 100%);
  height: auto;
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.footer-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-legal {
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 24px;
}

.footer-legal > p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  :root {
    --shell: min(100% - 40px, 920px);
  }

  .header-inner {
    gap: 24px;
  }

  .brand img {
    width: 230px;
  }

  .primary-nav {
    gap: 16px;
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr 380px;
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(54px, 7vw, 78px);
  }

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

  .method-inner,
  .support-grid,
  .leadership-grid {
    gap: 70px;
  }

  .partner-panel {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .section {
    padding-block: 82px;
  }

  .status-bar-inner {
    min-height: 34px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .header-inner {
    display: block;
    padding-top: 14px;
  }

  .brand img {
    width: 210px;
  }

  .primary-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .primary-nav a {
    padding-block: 14px 18px;
  }

  .primary-nav a::after {
    bottom: 11px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid,
  .declaration-grid,
  .why-grid,
  .split-heading,
  .method-inner,
  .support-grid,
  .partner-panel,
  .leadership-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 58px;
    padding-block: 72px 84px;
  }

  .hero-architecture {
    width: min(100%, 520px);
    min-height: 490px;
  }

  .declaration-card {
    min-height: auto;
  }

  .why {
    background: var(--stone-50);
  }

  .why-grid,
  .method-inner,
  .support-grid,
  .partner-panel,
  .leadership-grid,
  .contact-panel {
    gap: 54px;
  }

  .why-body {
    padding-top: 0;
  }

  .split-heading {
    gap: 28px;
  }

  .method-stages {
    max-width: 560px;
  }

  .support-journey {
    max-width: 560px;
  }

  .partner-panel {
    padding: 42px;
  }

  .contact {
    padding-bottom: 0;
  }

  .contact-panel {
    width: 100%;
  }

  .transparency-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.6fr 0.6fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 130px;
  }

  .status-divider,
  .status-bar-inner span:last-child {
    display: none;
  }

  .primary-nav {
    gap: 14px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-lede,
  .lead-paragraph {
    font-size: 18px;
  }

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

  .button {
    justify-content: space-between;
  }

  .hero-architecture {
    min-height: 470px;
    padding-inline: 22px;
  }

  .architecture-core {
    height: 180px;
  }

  .architecture-ring {
    width: 220px;
    height: 220px;
  }

  .architecture-mark {
    font-size: 20px;
  }

  .section-heading h2,
  .why h2,
  .method h2,
  .support h2,
  .partner h2,
  .leadership h2,
  .contact h2 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .declaration-card {
    padding: 34px 28px;
  }

  .declaration-text {
    font-size: 27px;
  }

  .why-body blockquote {
    padding-left: 22px;
    font-size: 23px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 280px;
    padding: 28px;
  }

  .capability-card h3 {
    min-height: auto;
    font-size: 24px;
  }

  .partner-panel {
    width: calc(100% + 28px);
    margin-left: -14px;
    padding: 38px 28px;
  }

  .leader-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .leader-monogram {
    width: 104px;
    height: 118px;
  }

  .contact-panel {
    padding: 44px 28px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand img {
    width: 280px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
