/*
  Jay Reeves for Minnesota State Auditor — 2026 redesign prototype
  No external framework, no external fonts, no third-party tracking.
*/

:root {
  --ink: #0a1730;
  --ink-soft: #243552;
  --navy: #071a33;
  --navy-2: #0d2d50;
  --blue: #1e6fa8;
  --blue-bright: #2f9bd3;
  --green: #0a8f62;
  --green-bright: #16c98d;
  --green-pale: #e5f8f1;
  --sky: #eaf7fd;
  --paper: #f6f9fc;
  --white: #ffffff;
  --line: #d9e4ec;
  --line-dark: rgba(255, 255, 255, 0.16);
  --gold: #f1b44c;
  --danger: #b82e3e;
  --muted: #5f6f84;
  --shadow-sm: 0 8px 24px rgba(7, 26, 51, 0.08);
  --shadow-md: 0 18px 55px rgba(7, 26, 51, 0.13);
  --shadow-lg: 0 32px 90px rgba(7, 26, 51, 0.2);
  --radius-sm: 0.65rem;
  --radius: 1rem;
  --radius-lg: 1.6rem;
  --radius-xl: 2.4rem;
  --container: 74rem;
  --header-height: 5.25rem;
  --transition: 180ms ease;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Arial Black", Impact, var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8.5rem;
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: var(--blue);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green);
}

p,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1,
h2 {
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6.35rem);
}

h2 {
  font-size: clamp(2.15rem, 4.6vw, 4.2rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

::selection {
  background: var(--green-bright);
  color: var(--navy);
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  font-weight: 800;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(calc(100% - 2rem), 52rem);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(4.8rem, 9vw, 8rem);
}

.section--compact {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.section:has(+ .section--compact) {
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section + .section--compact {
  padding-top: clamp(1.25rem, 3vw, 2.25rem);
}

.section--cta-end,
.section + .section--cta-end {
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

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

.section--sky {
  background: var(--sky);
}

.section--navy {
  background:
    radial-gradient(circle at 85% 12%, rgba(22, 201, 141, 0.18), transparent 28rem),
    linear-gradient(145deg, var(--navy), #0b3154 72%, #104a55);
  color: var(--white);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.section--navy a:not(.button) {
  color: #bfeaff;
}

.section__head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3.75rem);
}

.section__head--split {
  align-items: end;
}

.section__head > :last-child {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin: 0 0 0.9rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 0.17rem;
  border-radius: 99rem;
  background: currentColor;
  content: "";
}

.section--navy .eyebrow {
  color: #7ff2c5;
}

.lede {
  max-width: 44rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.section--navy .lede,
.page-hero .lede {
  color: rgba(255, 255, 255, 0.8);
}

.prose {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.prose > * + * {
  margin-top: 1.25rem;
}

.prose h2,
.prose h3 {
  margin-top: 2.5rem;
}

.prose li + li {
  margin-top: 0.6rem;
}

.kicker {
  color: var(--green);
  font-weight: 850;
}

.figure--flush {
  margin: 0;
}

.source-note--spaced {
  margin-top: 1rem;
}

.stack--tight {
  --stack-space: 1rem;
}

.status-section {
  display: grid;
  align-items: center;
  min-height: 65svh;
}

.status-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.status-title--thank-you {
  font-size: clamp(2.5rem, 7vw, 4.8rem);
}

.button-row--center {
  justify-content: center;
}

/* Announcement */
.announcement {
  position: relative;
  z-index: 1002;
  overflow: hidden;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
}

.announcement__marquee {
  overflow: hidden;
}

.announcement__track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.announcement__group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 0.9rem;
  min-height: 2.45rem;
  padding: 0.42rem 1.25rem;
  text-align: center;
  white-space: nowrap;
}

.announcement__group--clone {
  display: none;
}

.announcement__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
}

.announcement__status::before {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 0.22rem rgba(22, 201, 141, 0.16);
  content: "";
}

.announcement a {
  color: var(--white);
  font-weight: 800;
}

@keyframes announcement-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  border-color: rgba(10, 23, 48, 0.08);
  box-shadow: 0 10px 30px rgba(7, 26, 51, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand__mark {
  display: grid;
  place-items: center;
  position: relative;
  width: 2.95rem;
  height: 2.95rem;
  overflow: hidden;
  border-radius: 0.82rem;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: var(--white);
  box-shadow: 0 7px 18px rgba(7, 26, 51, 0.18);
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.brand__mark::after {
  position: absolute;
  right: -0.12rem;
  bottom: 0.45rem;
  width: 1.4rem;
  height: 0.25rem;
  transform: rotate(-32deg);
  border-radius: 99rem;
  background: var(--green-bright);
  box-shadow: 0 -0.55rem 0 rgba(22, 201, 141, 0.72);
  content: "";
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__name {
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.045em;
}

.brand__office {
  margin-top: 0.38rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav__link {
  position: relative;
  border-radius: 0.55rem;
  color: var(--ink-soft);
  padding: 0.62rem 0.66rem;
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.site-nav__link:hover,
.site-nav__link[aria-current] {
  background: var(--paper);
  color: var(--ink);
}

.site-nav__link[aria-current]::after {
  position: absolute;
  right: 0.68rem;
  bottom: 0.35rem;
  left: 0.68rem;
  height: 0.14rem;
  border-radius: 99rem;
  background: var(--green);
  content: "";
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 0.75rem;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 99rem;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle__lines {
  position: relative;
}

.nav-toggle__lines::before,
.nav-toggle__lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle__lines::before {
  top: -0.42rem;
}

.nav-toggle__lines::after {
  top: 0.42rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  border: 1px solid transparent;
  border-radius: 0.72rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.72rem 1.1rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(7, 26, 51, 0.13);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--navy-2);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(7, 26, 51, 0.2);
}

.button:active {
  transform: translateY(0);
}

.button--green {
  background: var(--green);
  box-shadow: 0 8px 24px rgba(10, 143, 98, 0.22);
}

.button--green:hover {
  background: #087a55;
}

.button--light {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.button--light:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.16);
}

.button--ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.button--ghost:hover {
  border-color: var(--ink);
  background: var(--paper);
  color: var(--ink);
}

.button--small {
  min-height: 2.45rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.88rem;
}

.button svg,
.text-link svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

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

.text-link svg {
  transition: transform var(--transition);
}

.text-link:hover svg {
  transform: translateX(0.2rem);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0 48%, rgba(255, 255, 255, 0.83) 60%, rgba(255, 255, 255, 0.35)),
    radial-gradient(circle at 78% 28%, rgba(22, 201, 141, 0.3), transparent 24rem),
    linear-gradient(135deg, var(--sky), #faffff 48%, #e9f8f0);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(7, 26, 51, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 51, 0.06) 1px, transparent 1px);
  background-size: 3.1rem 3.1rem;
  mask-image: linear-gradient(90deg, transparent, black 28%, black);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: -12rem;
  right: -9rem;
  width: 42rem;
  aspect-ratio: 1;
  border: 1px solid rgba(7, 26, 51, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(255, 255, 255, 0.26),
    0 0 0 8rem rgba(255, 255, 255, 0.15);
  content: "";
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 1.05fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  min-height: min(48rem, calc(100svh - 7.7rem));
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.hero__content {
  position: relative;
  z-index: 3;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(10, 143, 98, 0.24);
  border-radius: 99rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  padding: 0.52rem 0.76rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero__label svg {
  width: 1rem;
  height: 1rem;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.8vw, 4.1rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1.06;
  text-transform: uppercase;
}

.hero h1 .accent {
  color: var(--green);
  white-space: nowrap;
}

.hero__lede {
  max-width: 36rem;
  margin-bottom: 1.8rem;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.hero__credibility {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.15rem;
  margin: 1.75rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
  list-style: none;
}

.hero__credibility li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__credibility li::before {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--green-bright);
  content: "";
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
  min-height: 0;
}

.hero__portrait-wrap {
  position: relative;
  z-index: 2;
  width: min(36rem, 112%);
  margin-right: -1.5rem;
  margin-bottom: 0;
  filter: drop-shadow(0 28px 48px rgba(7, 26, 51, 0.22));
}

.hero__portrait-wrap::before {
  position: absolute;
  z-index: -1;
  inset: 10% -2% 4% 10%;
  border-radius: 48% 52% 42% 58% / 54% 36% 64% 46%;
  background:
    radial-gradient(circle at 42% 28%, rgba(22, 201, 141, 0.42), transparent 52%),
    linear-gradient(145deg, rgba(30, 111, 168, 0.22), rgba(22, 201, 141, 0.28));
  transform: rotate(-3deg);
  content: "";
}

.hero__portrait {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.word-band {
  overflow: hidden;
  border-block: 1px solid rgba(7, 26, 51, 0.08);
  background: var(--white);
}

.word-band__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  padding: 0.85rem 0;
  color: var(--ink);
  font-size: clamp(0.77rem, 1.3vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: word-band-marquee 32s linear infinite;
}

.word-band__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.word-band__group span {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.25rem;
  white-space: nowrap;
}

.word-band__group span::after {
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-bright);
  content: "";
}

@keyframes word-band-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Page hero */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 15%, rgba(22, 201, 141, 0.26), transparent 23rem),
    linear-gradient(135deg, var(--navy), #0a3658 68%, #10505c);
  color: var(--white);
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 3.25rem 3.25rem;
  mask-image: linear-gradient(90deg, transparent, black 35%, black);
  content: "";
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  align-items: center;
  gap: 3rem;
  min-height: 27rem;
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.page-hero h1 {
  max-width: 14ch;
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: clamp(2.65rem, 5.2vw, 4.5rem);
  font-family: var(--font-display);
  line-height: 1.05;
  text-transform: uppercase;
}

.page-hero__graphic {
  justify-self: end;
  position: relative;
  width: min(22rem, 100%);
  aspect-ratio: 1;
}

.page-hero__graphic::before,
.page-hero__graphic::after {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.page-hero__graphic::after {
  inset: 23%;
}

.page-hero__icon {
  position: absolute;
  inset: 28%;
  color: var(--green-bright);
}

/* Stats and role explainer */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.stat-card::after {
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  width: 8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(22, 201, 141, 0.08);
  content: "";
}

.stat-card__value {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green);
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1;
}

.stat-card__label {
  display: block;
  max-width: 18rem;
  color: var(--ink-soft);
  font-weight: 750;
  line-height: 1.35;
}

.role-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.role-visual {
  position: relative;
  min-height: 27rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 30% 22%, rgba(22, 201, 141, 0.28), transparent 12rem),
    linear-gradient(145deg, var(--navy), #0d4560);
  box-shadow: var(--shadow-lg);
}

.role-visual__map {
  position: absolute;
  inset: 11% 13%;
  color: rgba(255, 255, 255, 0.16);
}

.role-visual__panel {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  left: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.09);
  padding: 0.8rem;
  color: var(--white);
  backdrop-filter: blur(12px);
}

.role-visual__metric {
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.72rem;
}

.role-visual__metric span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-visual__metric strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 1.45rem 1fr;
  gap: 0.7rem;
  color: var(--ink-soft);
}

.check-list li::before {
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  content: "✓";
  font-size: 0.8rem;
  font-weight: 950;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: clamp(1.3rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 143, 98, 0.35);
  box-shadow: var(--shadow-md);
}

.feature-card__number {
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 1.25rem;
  border-radius: 0.72rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  border-radius: 0.85rem;
  background: var(--green-pale);
  color: var(--green);
}

.feature-card__icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.feature-card h3 {
  margin-bottom: 0.7rem;
}

.feature-card p:last-child {
  margin-bottom: 0;
}

.feature-card p {
  color: var(--ink-soft);
}

.feature-card__link {
  margin-top: 1rem;
}

.feature-card--dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.feature-card--dark h3 {
  color: var(--white);
}

.feature-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-card--dark:hover {
  border-color: rgba(127, 242, 197, 0.45);
  box-shadow: none;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  counter-reset: process;
}

.process__item {
  position: relative;
  padding: 0 1.25rem;
  counter-increment: process;
}

.process__item:first-child {
  padding-left: 0;
}

.process__item:last-child {
  padding-right: 0;
}

.process__item:not(:last-child)::after {
  position: absolute;
  top: 1.55rem;
  right: -1rem;
  width: 2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  content: "";
}

.process__number {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #8df0c8;
  font-weight: 950;
}

.process__item h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.process__item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
}

/* Bio */
.bio-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.bio-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--sky), var(--green-pale));
  box-shadow: var(--shadow-lg);
}

.bio-photo::after {
  position: absolute;
  z-index: 0;
  inset: auto -15% -30% 25%;
  height: 65%;
  border-radius: 50%;
  background: rgba(22, 201, 141, 0.17);
  content: "";
}

.bio-photo picture,
.bio-photo img {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.bio-photo img {
  object-fit: cover;
  object-position: center 14%;
}

.bio-note {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.bio-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.6rem 0;
  padding: 0;
  list-style: none;
}

.bio-facts li {
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--paper);
  padding: 0.8rem 0.9rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 760;
}

/* Timeline */
.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 1.1rem;
  width: 2px;
  background: linear-gradient(var(--green-bright), var(--blue-bright));
  content: "";
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 1.2rem;
  padding-block: 1rem 1.8rem;
}

.timeline__dot {
  z-index: 1;
  width: 2.25rem;
  height: 2.25rem;
  border: 0.45rem solid var(--white);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--line);
}

.timeline__content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.timeline__content h3 {
  margin-bottom: 0.4rem;
  font-size: 1.17rem;
}

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

.timeline__meta {
  margin-bottom: 0.35rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Values */
.value-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(8rem, 1fr));
  gap: 0.7rem;
}

.value-chip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem 0.85rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.value-chip__letter {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 950;
}

.value-chip strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.value-detail {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-block: 1.5rem;
}

.value-detail:last-child {
  border-bottom: 0;
}

.value-detail__letter {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: var(--green-pale);
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 950;
}

.value-detail h3 {
  margin-bottom: 0.55rem;
}

.value-detail p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

/* Updates, endorsements, events */
.update-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.update-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.update-card__top {
  display: grid;
  min-height: 8.5rem;
  align-content: end;
  padding: 1.25rem;
  background:
    linear-gradient(150deg, rgba(7, 26, 51, 0.96), rgba(13, 69, 96, 0.9)),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 2rem 2rem, 2rem 2rem;
  color: var(--white);
}

.update-card__type {
  color: #7ff2c5;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.update-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.update-card__date {
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.update-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.22rem;
}

.update-card p {
  color: var(--ink-soft);
}

.update-card .text-link {
  margin-top: auto;
}

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

.endorsement-card {
  display: grid;
  grid-template-columns: 9rem 1fr;
  align-items: center;
  gap: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: clamp(1rem, 3vw, 1.6rem);
  box-shadow: var(--shadow-sm);
}

.endorsement-card__logo {
  display: grid;
  place-items: center;
  min-height: 8rem;
  overflow: hidden;
  border-radius: 0.9rem;
  background: var(--paper);
  padding: 0.6rem;
}

.endorsement-card__logo img {
  max-height: 8rem;
  object-fit: contain;
}

.endorsement-card h3 {
  margin-bottom: 0.5rem;
}

.endorsement-card p {
  margin-bottom: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.events-list {
  display: grid;
  gap: 1rem;
}

.event-card {
  display: grid;
  grid-template-columns: 6.5rem 1fr auto;
  align-items: center;
  gap: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.event-card__date {
  display: grid;
  place-items: center;
  min-height: 5rem;
  border-radius: 0.9rem;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.event-card__date span {
  display: block;
  color: #8feac8;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-card__date strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1;
}

.event-card h3 {
  margin-bottom: 0.35rem;
}

.event-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 23rem;
  border: 1px dashed #b9cad7;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 15%, rgba(22, 201, 141, 0.12), transparent 14rem),
    var(--white);
  padding: 2rem;
  text-align: center;
}

.empty-state__icon {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  border-radius: 1.2rem;
  background: var(--green-pale);
  color: var(--green);
}

.empty-state__icon svg {
  width: 2.2rem;
  height: 2.2rem;
}

.empty-state h2,
.empty-state h3 {
  margin-bottom: 0.7rem;
}

.empty-state p {
  max-width: 34rem;
  margin-inline: auto;
  color: var(--muted);
}

/* Speech */
.speech-card {
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.speech-card__visual {
  display: grid;
  place-items: center;
  min-height: 27rem;
  background:
    radial-gradient(circle at 40% 35%, rgba(22, 201, 141, 0.25), transparent 12rem),
    linear-gradient(145deg, var(--navy), #0d4560);
  color: var(--white);
  padding: 2rem;
}

.speech-card__document {
  position: relative;
  width: min(13rem, 75%);
  aspect-ratio: 0.76;
  border-radius: 0.4rem;
  background: var(--white);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.27);
}

.speech-card__document::before {
  position: absolute;
  inset: 15% 13%;
  background: repeating-linear-gradient(to bottom, rgba(7, 26, 51, 0.22) 0 2px, transparent 2px 16px);
  content: "";
}

.speech-card__document::after {
  position: absolute;
  top: 9%;
  left: 13%;
  width: 48%;
  height: 0.4rem;
  border-radius: 99rem;
  background: var(--green);
  box-shadow: 0 0.8rem 0 rgba(7, 26, 51, 0.16);
  content: "";
}

.speech-card__body {
  display: grid;
  align-content: center;
  padding: clamp(1.5rem, 5vw, 3.8rem);
}

.speech-card__meta {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.speech-card h2 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.speech-card blockquote {
  margin: 0 0 1.25rem;
  border-left: 0.25rem solid var(--green-bright);
  color: var(--ink-soft);
  padding-left: 1rem;
  font-size: 1.08rem;
  font-style: italic;
}

/* Accordion */
.accordion {
  display: grid;
  gap: 0.75rem;
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  content: "+";
  font-size: 1.15rem;
  transition: transform var(--transition);
}

.accordion details[open] summary::after {
  transform: rotate(45deg);
}

.accordion__content {
  padding: 0 1.25rem 1.25rem;
  color: var(--ink-soft);
}

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

/* Forms */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.contact-card {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 10%, rgba(22, 201, 141, 0.22), transparent 14rem),
    linear-gradient(145deg, var(--navy), #0d4560);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}

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

.contact-card h2 {
  max-width: 12ch;
  margin-bottom: 0.85rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: start;
  gap: 0.7rem;
}

.contact-list__icon {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  color: #8feac8;
}

.contact-list__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.contact-list a {
  color: var(--white);
}

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  padding: clamp(1.3rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

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

.field {
  display: grid;
  gap: 0.42rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
fieldset legend {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #bac9d6;
  border-radius: 0.68rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.78rem 0.85rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(10, 143, 98, 0.12);
}

.field__help {
  color: var(--muted);
  font-size: 0.77rem;
}

.checkbox {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.checkbox input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.22rem;
  accent-color: var(--green);
}

.form-status {
  min-height: 1.4rem;
  color: var(--danger);
  font-size: 0.85rem;
  font-weight: 750;
}

.form-status[data-state="ok"] {
  color: var(--green);
}

/* CTA */
.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 10%, rgba(22, 201, 141, 0.28), transparent 18rem),
    linear-gradient(145deg, var(--navy), #0d4560);
  color: var(--white);
  padding: clamp(2rem, 6vw, 4.4rem);
  box-shadow: var(--shadow-lg);
}

.cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.44;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 2.6rem 2.6rem;
  mask-image: linear-gradient(90deg, transparent, black 45%);
  content: "";
}

.cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.cta h2 {
  max-width: 13ch;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.cta p {
  max-width: 43rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.cta .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

/* Social */
.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.social-link {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.72rem;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  background: var(--green-pale);
  color: var(--green);
}

.social-link svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* Footer */
.site-footer {
  background: #051426;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(15rem, 1.45fr) repeat(2, minmax(9rem, 0.72fr)) minmax(15rem, 1fr);
  gap: 2rem;
  padding-block: 4.5rem 3rem;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand__office {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__intro p {
  max-width: 30rem;
  margin-top: 1rem;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.site-footer__contact a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.footer-links a:hover,
.site-footer__contact a:hover {
  color: var(--white);
  text-decoration: underline;
}

.site-footer .social-link {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.site-footer .social-link:hover {
  border-color: rgba(127, 242, 197, 0.55);
  background: rgba(127, 242, 197, 0.12);
  color: #8feac8;
}

.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding-block: 1.5rem 2rem;
  font-size: 0.76rem;
}

.site-footer__legal p {
  margin-bottom: 0.35rem;
}

.site-footer__legal p:last-child {
  margin-bottom: 0;
}

.disclaimer {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

/* Utilities */
.cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.stack > * + * {
  margin-top: var(--stack-space, 1rem);
}

.center {
  text-align: center;
}

.center .eyebrow,
.center .lede {
  margin-inline: auto;
}

.divider {
  height: 1px;
  border: 0;
  background: var(--line);
}

.notice {
  border-left: 0.3rem solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--green-pale);
  color: var(--ink-soft);
  padding: 1rem 1.1rem;
}

.notice strong {
  color: var(--ink);
}

.source-note {
  color: var(--muted);
  font-size: 0.77rem;
}

.photo-caption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 5vw, 4rem);
}

.two-column--media-first {
  align-items: start;
}

@media (min-width: 58.01rem) {
  .two-column--media-first > :first-child {
    order: 2;
  }

  .two-column--media-first > :last-child {
    order: 1;
  }
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (min-width: 64rem) {
  .section__head--split {
    grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.65fr);
  }

  .section__head--split > :last-child {
    justify-self: end;
  }
}

@media (max-width: 70rem) {
  :root {
    --container: 66rem;
  }

  .site-nav__link {
    padding-inline: 0.48rem;
    font-size: 0.86rem;
  }

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

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

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

@media (max-width: 58rem) {
  html {
    scroll-padding-top: 7.5rem;
  }

  .announcement {
    font-size: 0.78rem;
  }

  .announcement__track {
    justify-content: flex-start;
    width: max-content;
    animation: announcement-marquee 22s linear infinite;
  }

  .announcement__group {
    justify-content: flex-start;
    padding-inline: 1.75rem;
  }

  .announcement__group--clone {
    display: inline-flex;
  }

  .announcement__marquee:hover .announcement__track,
  .announcement__marquee:focus-within .announcement__track {
    animation-play-state: paused;
  }

  /* A usable horizontal menu remains available when JavaScript fails. */
  .site-header__inner {
    flex-wrap: wrap;
    padding-block: 0.45rem;
  }

  .site-nav {
    order: 3;
    flex: 1 0 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: thin;
  }

  .site-nav__link,
  .site-nav .button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  /* The compact menu is applied only after its controller has loaded. */
  .nav-ready .site-header__inner {
    flex-wrap: nowrap;
    padding-block: 0;
  }

  .nav-ready .nav-toggle {
    display: grid;
  }

  .nav-ready .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0.625rem;
    left: 0.625rem;
    order: initial;
    display: grid;
    align-content: start;
    max-height: calc(100svh - var(--header-height) - 1rem);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    padding: 0.65rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem) scale(0.985);
    transform-origin: top;
    transition: opacity var(--transition), transform var(--transition);
  }

  .nav-ready .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav__link {
    padding: 0.9rem 0.85rem;
    font-size: 1rem;
  }

  .nav-ready .site-nav .button {
    margin-top: 0.4rem;
  }

  .hero__inner,
  .page-hero__inner,
  .role-grid,
  .bio-grid,
  .contact-grid,
  .speech-card,
  .cta__inner,
  .two-column {
    grid-template-columns: 1fr;
  }

  .page-hero__inner {
    min-height: auto;
    justify-items: center;
    text-align: center;
    gap: 0;
    padding-block: clamp(2.75rem, 7vw, 4.5rem);
  }

  .page-hero__inner > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .page-hero .eyebrow,
  .page-hero .lede {
    margin-inline: auto;
  }

  .page-hero h1 {
    max-width: 16ch;
    margin-inline: auto;
    font-size: clamp(2.15rem, 6.5vw, 3.35rem);
    line-height: 1.08;
    text-align: center;
  }

  .hero__inner {
    gap: 1.25rem;
    min-height: auto;
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
    justify-items: center;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 0.5rem;
    text-align: center;
  }

  .hero__label {
    justify-content: center;
    max-width: 100%;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    padding: 0.42rem 0.65rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.85rem, 7.2vw, 4.35rem);
    letter-spacing: -0.01em;
    line-height: 1.1;
    text-align: center;
  }

  .hero__lede {
    margin-inline: auto;
    text-align: center;
  }

  .hero__content .button-row {
    justify-content: center;
  }

  .hero__credibility {
    justify-content: center;
  }

  .hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .hero__portrait-wrap {
    width: min(28rem, 86%);
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
  }

  .page-hero__graphic {
    display: none;
  }

  .stats-grid,
  .update-grid,
  .card-grid--three {
    grid-template-columns: 1fr;
  }

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

  .process__item {
    padding-inline: 0;
  }

  .process__item:not(:last-child)::after {
    display: none;
  }

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

  .cta__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .cta h2 {
    max-width: 18ch;
    margin-inline: auto;
  }

  .cta p {
    max-width: 36rem;
    margin-inline: auto;
  }

  .cta .eyebrow {
    margin-inline: auto;
  }

  .cta__actions {
    justify-content: center;
    width: 100%;
  }

  .bio-photo {
    max-width: 28rem;
    margin-inline: auto;
    width: 100%;
  }

  .bio-photo img {
    object-position: center 12%;
  }
}

@media (max-width: 42rem) {
  :root {
    --header-height: 4.75rem;
  }

  .container,
  .container--narrow {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .brand__mark {
    width: 2.55rem;
    height: 2.55rem;
  }

  .brand__name {
    font-size: 0.88rem;
  }

  .brand__office {
    font-size: 0.52rem;
  }

  .hero__label {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    padding: 0.36rem 0.55rem;
    gap: 0.32rem;
  }

  .hero__label svg {
    width: 0.82rem;
    height: 0.82rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    letter-spacing: 0.01em;
    line-height: 1.08;
  }

  .page-hero__inner {
    padding-block: clamp(2.25rem, 6vw, 3.25rem);
  }

  .page-hero h1 {
    max-width: 18ch;
    font-size: clamp(1.9rem, 8vw, 2.65rem);
    line-height: 1.1;
  }

  .hero__visual {
    min-height: 0;
  }

  .hero__portrait-wrap {
    width: min(22rem, 82%);
    margin-bottom: 0;
  }

  .card-grid,
  .card-grid--four,
  .two-column,
  .form-grid,
  .bio-facts,
  .process,
  .site-footer__main {
    grid-template-columns: 1fr;
  }

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

  .value-detail {
    grid-template-columns: 3.2rem 1fr;
  }

  .value-detail__letter {
    width: 3rem;
    height: 3rem;
  }

  .endorsement-card {
    grid-template-columns: 1fr;
  }

  .endorsement-card__logo {
    min-height: 7rem;
  }

  .event-card {
    grid-template-columns: 5rem 1fr;
  }

  .event-card > :last-child {
    grid-column: 1 / -1;
  }

  .role-visual__panel {
    grid-template-columns: 1fr;
  }

  .role-visual__metric:nth-child(n+2) {
    display: none;
  }

  .bio-photo {
    max-width: 22rem;
  }

  .bio-photo img {
    object-position: center 10%;
  }

  .speech-card__visual {
    min-height: 18rem;
  }

  .speech-card__document {
    width: 8rem;
  }

  .button-row,
  .cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .cta__actions .button {
    width: 100%;
  }

  .cta p {
    font-size: 0.9rem;
  }

  .cta {
    padding: 1.75rem 1.25rem;
  }
}

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

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

  .announcement__track {
    animation: none !important;
    justify-content: center;
    width: 100%;
    transform: none !important;
  }

  .announcement__group--clone {
    display: none !important;
  }

  .word-band__track {
    animation: none !important;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    transform: none !important;
    gap: 0.75rem 1.25rem;
    padding-inline: 1rem;
  }

  .word-band__group[aria-hidden="true"] {
    display: none !important;
  }

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .announcement,
  .site-header,
  .site-footer,
  .button,
  .word-band {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .section,
  .page-hero__inner {
    padding-block: 1.5rem;
  }

  .page-hero,
  .section--navy,
  .contact-card,
  .cta {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  h1,
  h2,
  h3,
  .page-hero h1,
  .section--navy h2,
  .section--navy h3,
  .contact-card h2,
  .contact-card h3,
  .cta h2 {
    color: #000 !important;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 8pt;
  }
}
