:root {
  --bg: #ffffff;
  --bg-alt: #f4f8fb;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: #f7fbff;
  --surface-muted: #eef5fb;
  --ink: #0d2334;
  --ink-soft: #29485f;
  --muted: #586f80;
  --line: rgba(13, 35, 52, 0.12);
  --line-strong: rgba(13, 35, 52, 0.22);
  --accent: #0d2334;
  --accent-soft: rgba(13, 35, 52, 0.08);
  --navy: #0d2334;
  --navy-soft: #17374d;
  --shadow-sm: 0 12px 32px rgba(21, 39, 53, 0.08);
  --shadow-md: 0 24px 60px rgba(21, 39, 53, 0.12);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max: 1280px;
  --copy: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Open Sans", sans-serif;
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(95, 142, 178, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 42%, #ffffff 100%);
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

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

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header,
main,
.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 86px;
  margin-top: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(13, 35, 52, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 38px rgba(21, 39, 53, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 68px;
  object-fit: contain;
}

.site-nav,
.header-actions,
.hero-actions,
.card-actions,
.article-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-actions,
.card-actions,
.article-actions {
  flex-wrap: wrap;
  row-gap: 14px;
}

.site-nav {
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a,
.text-link,
.dynamic-link {
  color: var(--navy-soft);
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a {
  position: relative;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.text-link:hover,
.dynamic-link:hover {
  color: var(--navy);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  box-shadow: none;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--navy-soft);
  box-shadow: var(--shadow-sm);
}

.button-outline,
.button-ghost {
  border-color: rgba(13, 35, 52, 0.22);
  background: transparent;
  color: var(--navy);
}

.button-outline:hover,
.button-ghost:hover {
  background: var(--navy);
  color: #ffffff;
}

main {
  padding: 18px 0 84px;
}

.home-page main {
  padding-bottom: 0;
}

main > section + section {
  margin-top: 26px;
}

.home-hero-authority {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding:
    clamp(48px, 7vw, 80px)
    max(24px, calc((100vw - var(--max)) / 2 + 24px))
    clamp(72px, 9vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: end;
  min-height: calc(100svh - 132px);
  border-radius: 0 0 38px 38px;
  overflow: hidden;
  position: relative;
}

.hero-video-only {
  padding: 0;
  min-height: min(100svh - 132px, 920px);
}

.home-hero-authority::before,
.home-hero-authority::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-hero-authority::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 33, 0.86) 0%, rgba(7, 22, 33, 0.58) 34%, rgba(7, 22, 33, 0.18) 64%, rgba(7, 22, 33, 0.28) 100%);
}

.home-hero-authority::after {
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(7, 22, 33, 0) 0%, rgba(7, 22, 33, 0.68) 100%);
}

.hero-video-only::before,
.hero-video-only::after {
  display: none;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 3;
}

.hero-video-layer,
.hero-video-overlay {
  position: absolute;
  inset: 0;
}

.hero-video-layer {
  z-index: 0;
}

.hero-video-overlay {
  z-index: 2;
  background:
    radial-gradient(circle at 70% 18%, rgba(95, 142, 178, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(6, 20, 31, 0.28), rgba(6, 20, 31, 0.18));
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.mini-label,
.card-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.video-page-copy h1,
.section-heading h2,
.mission-grid h2,
.initiative-heading h2,
.connect-card h2,
.credibility-copy h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.hero-text,
.page-intro,
.mission-grid p,
.section-intro,
.housing-card p,
.housing-lab-copy p,
.pillar p,
.content-panel p,
.initiative-heading p,
.initiative-focus li,
.credibility-copy p,
.connect-card p,
.dynamic-card p,
.lead-story p,
.article-highlights li,
.article-body p,
.article-side p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.hero-text {
  max-width: 52ch;
  margin: 24px 0 30px;
  font-size: 1.08rem;
}

.authority-video,
.video-page-placeholder,
.image-placeholder,
.content-panel,
.housing-lab-card,
.initiative-stat,
.initiative-focus,
.initiative-callout,
.impact-card,
.dynamic-card,
.lead-story {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.authority-video {
  min-height: 620px;
  overflow: hidden;
}

.video-placeholder {
  height: 100%;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(10, 28, 41, 0.86), rgba(15, 37, 54, 0.94)),
    linear-gradient(135deg, rgba(95, 142, 178, 0.08), transparent 55%);
}

.video-chrome,
.video-page-topline,
.video-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(247, 251, 255, 0.72);
  font-size: 0.86rem;
}

.record-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cf5b4d;
  box-shadow: 0 0 0 7px rgba(207, 91, 77, 0.1);
}

.video-frame,
.video-page-screen {
  position: relative;
  display: grid;
  place-items: center;
  margin: 18px 0;
  border-radius: calc(var(--radius-md) - 6px);
  border: 1px solid rgba(16, 39, 58, 0.08);
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(13, 35, 52, 0.9), rgba(28, 53, 72, 0.84)),
    radial-gradient(circle at 22% 30%, rgba(65, 111, 148, 0.28), transparent 20%);
}

.authority-video-frame {
  min-height: 520px;
}

.video-page-screen {
  min-height: 420px;
}

.video-frame::before,
.video-page-screen::before,
.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 28%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 28px,
      rgba(255, 255, 255, 0.03) 28px,
      rgba(255, 255, 255, 0.03) 29px
    );
}

.play-badge {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.play-badge span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

.placeholder-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  z-index: 1;
  max-width: 42ch;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.video-timeline span {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(23, 61, 90, 0.9) 0 38%, rgba(255, 255, 255, 0.24) 38%);
}

.light-surface,
.content-panel,
.impact-card,
.dynamic-card,
.lead-story,
.initiative-section,
.sync-strip,
.research-controls,
.housing-data-platform,
.connect-card,
.housing-lab,
.mission-strip,
.page-hero,
.video-page-hero {
  position: relative;
  overflow: hidden;
}

.mission-strip,
.page-hero,
.video-page-hero,
.sync-strip,
.research-controls,
.content-panel,
.housing-lab,
.initiative-section,
.connect-card,
.lead-story,
.housing-data-platform,
.light-surface {
  padding: clamp(28px, 3.2vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

main > .page-hero:first-child,
main > .video-page-hero:first-child {
  margin-top: 36px;
}

.light-surface {
  background:
    linear-gradient(180deg, rgba(13, 35, 52, 0.9), rgba(10, 28, 42, 0.96)),
    linear-gradient(130deg, rgba(255, 255, 255, 0.03), transparent 38%);
}

.mission-grid,
.section-heading,
.initiative-heading,
.credibility-copy {
  max-width: 900px;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.mission-grid h2,
.section-heading h2,
.page-hero h1,
.video-page-copy h1,
.connect-card h2,
.initiative-heading h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.7rem);
}

.page-hero h1,
.video-page-copy h1 {
  max-width: 11ch;
}

.page-intro {
  max-width: var(--copy);
  margin: 18px 0 0;
}

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

.video-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 30px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(13, 35, 52, 0.9), rgba(10, 28, 42, 0.96)),
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.12), transparent 22%);
}

.video-page-copy {
  max-width: 620px;
}

.sync-strip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  padding-top: 18px;
  padding-bottom: 18px;
}

.housing-grid,
.content-grid.two-up,
.article-layout,
.housing-data-platform {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.housing-grid-fresh {
  align-items: start;
}

.home-data-video-panel {
  min-width: 0;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.section-intro {
  max-width: 54ch;
  margin: 0;
}

.housing-card-primary {
  min-height: 100%;
  padding: clamp(28px, 3vw, 36px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(13, 35, 52, 0.98), rgba(21, 47, 67, 0.95)),
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.2), transparent 24%);
  color: #fff;
}

.home-data-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-data-copy p {
  max-width: 34ch;
  margin: 0 0 20px;
  font-size: 1.08rem;
}

.housing-card-primary h3,
.housing-lab-card h3,
.pillar h3,
.content-panel h2,
.content-panel h3,
.dynamic-card h3,
.lead-story h2,
.initiative-focus h3,
.board-card h3,
.leader-profile h3 {
  margin: 0 0 12px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.housing-card-primary h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.housing-card-primary p,
.housing-card-primary .text-link {
  color: rgba(255, 255, 255, 0.8);
}

.housing-card-primary .button {
  background: #fff;
  color: var(--navy);
}

.housing-lab-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.housing-lab-track::-webkit-scrollbar {
  display: none;
}

.housing-lab-track.is-dragging {
  cursor: grabbing;
}

.housing-lab-card {
  min-height: 230px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(15, 37, 54, 0.96), rgba(11, 30, 45, 0.98)),
    linear-gradient(135deg, rgba(95, 142, 178, 0.06), transparent 60%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.housing-lab-card:hover,
.pillar:hover,
.dynamic-card:hover,
.initiative-stat:hover,
.initiative-focus:hover,
.board-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 39, 58, 0.18);
}

.housing-lab-card.is-featured {
  background:
    linear-gradient(180deg, rgba(13, 35, 52, 0.96), rgba(22, 47, 68, 0.96)),
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.2), transparent 22%);
  color: #fff;
}

.housing-lab-card.is-featured p {
  color: rgba(255, 255, 255, 0.76);
}

.housing-chip,
.dynamic-card-tag,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.live-chip {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.pillars-grid,
.impact-grid,
.content-grid.three-up,
.content-grid.stats-row,
.content-grid.board-grid,
.dynamic-grid {
  display: grid;
  gap: 18px;
}

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

.pillar {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(13, 35, 52, 0.7);
  box-shadow: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.pillar-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

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

.impact-card {
  padding: 28px;
  text-align: left;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(10, 28, 42, 0.92), rgba(14, 35, 50, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.impact-card strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.impact-card span {
  color: var(--muted);
  font-weight: 600;
  max-width: 22ch;
}

.impact-card-link {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 220px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.impact-card-link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.18);
}

.impact-card-link em {
  margin-top: auto;
  font-style: normal;
  color: rgba(247, 251, 255, 0.9);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.impact-card-link em::after {
  content: " →";
}

.get-involved-hero {
  background:
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(13, 35, 52, 0.92), rgba(9, 24, 37, 0.98));
  padding-top: clamp(44px, 5vw, 64px);
}

.get-involved-hero h1 {
  max-width: 9ch;
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  line-height: 0.98;
}

.involvement-grid {
  align-items: stretch;
}

.path-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
}

.path-card-slab {
  border-radius: 18px 18px 42px 18px;
  border-left: 4px solid rgba(255, 255, 255, 0.22);
}

.path-card-frame {
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(10, 28, 42, 0.94), rgba(12, 31, 46, 0.98)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 32%);
}

.path-card-featured {
  background:
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(13, 35, 52, 0.98), rgba(18, 42, 61, 0.96));
}

.path-list {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.path-list li + li {
  margin-top: 10px;
}

.funding-range {
  margin-top: auto;
  padding-top: 24px;
  color: rgba(247, 251, 255, 0.9);
}

.path-card .card-actions {
  margin-top: 24px;
  flex-wrap: wrap;
}

.donate-actions {
  margin-top: 24px;
}

.path-card .fine-print {
  margin-top: 18px;
}

.trust-strip {
  padding-top: 22px;
  padding-bottom: 22px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(13, 35, 52, 0.96), rgba(10, 28, 42, 0.98));
}

.trust-strip p {
  max-width: 78ch;
  margin: 0;
  color: rgba(247, 251, 255, 0.84);
  font-weight: 600;
}

.trust-strip-flat {
  border-radius: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 28%),
    linear-gradient(180deg, rgba(10, 28, 42, 0.88), rgba(8, 23, 35, 0.94));
}

.contact-section {
  align-items: start;
}

.contact-card,
.form-card {
  min-height: 100%;
}

.contact-card-editorial,
.form-card-editorial {
  border-radius: 22px;
}

.contact-card-editorial {
  background:
    linear-gradient(180deg, rgba(11, 28, 42, 0.98), rgba(13, 35, 52, 0.94)),
    linear-gradient(135deg, rgba(95, 142, 178, 0.08), transparent 42%);
}

.form-card-editorial {
  border-top-left-radius: 42px;
  border-bottom-right-radius: 42px;
  background:
    linear-gradient(180deg, rgba(14, 36, 53, 0.98), rgba(9, 25, 38, 0.98)),
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.12), transparent 26%);
}

.impact-band {
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(12, 30, 45, 0.98), rgba(10, 27, 40, 0.98)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 34%);
}

.impact-band-editorial {
  border-radius: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 0;
  background:
    linear-gradient(180deg, rgba(12, 30, 45, 0.96), rgba(8, 23, 35, 0.98)),
    linear-gradient(135deg, rgba(95, 142, 178, 0.08), transparent 42%);
}

.impact-band-editorial .section-heading {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-band-editorial .section-heading h2 {
  max-width: 10ch;
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
}

.impact-card-slab {
  border-radius: 16px 16px 34px 16px;
  border-left: 3px solid rgba(255, 255, 255, 0.18);
}

.impact-card-frame {
  border-radius: 16px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.08);
}

.impact-card-notch {
  border-radius: 16px;
  clip-path: none;
}

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

.contact-name,
.contact-role {
  margin: 0;
}

.contact-name {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-role {
  color: rgba(247, 251, 255, 0.76);
  font-weight: 600;
}

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

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: rgba(247, 251, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  outline: 0;
}

.field input {
  min-height: 54px;
  padding: 0 16px;
}

.field textarea {
  min-height: 160px;
  padding: 14px 16px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(16, 39, 58, 0.34);
  box-shadow: 0 0 0 4px rgba(16, 39, 58, 0.06);
}

.checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 251, 255, 0.84);
  font-weight: 600;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
}

.fine-print,
.form-legal {
  color: rgba(247, 251, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-legal {
  margin: 0;
}

.content-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  background: #ffffff;
  color: var(--navy);
  border-color: #ffffff;
}

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

.dynamic-card,
.lead-story {
  padding: 22px 22px 24px;
}

.dynamic-card-top,
.article-meta,
.results-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.dynamic-card-date,
.article-meta span,
.results-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.dynamic-card h3 {
  margin-top: 18px;
  font-size: 1.5rem;
}

.dynamic-card-title-link {
  color: inherit;
  text-decoration: none;
}

.dynamic-card-title-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.dynamic-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-weight: 700;
}

.dynamic-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.dynamic-link:hover::after {
  transform: translateX(4px);
}

.logo-ribbon {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.logo-ribbon span {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-weight: 700;
}

.connect-section,
.credibility-section {
  margin-top: 26px;
}

.connect-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(13, 35, 52, 0.98), rgba(18, 42, 61, 0.96)),
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.18), transparent 28%);
  color: #fff;
}

.connect-card > * {
  max-width: 760px;
}

.connect-card p,
.connect-card .button-ghost {
  color: rgba(255, 255, 255, 0.8);
}

.connect-card .button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
}

.connect-card .hero-actions {
  margin-top: 30px;
}

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

.research-visual-card {
  display: flex;
  flex-direction: column;
}

.card-media {
  position: relative;
  margin: -40px -40px 24px;
  min-height: 220px;
  overflow: hidden;
  border-radius: 30px 30px 18px 18px;
  background:
    linear-gradient(180deg, rgba(13, 35, 52, 0.22), rgba(13, 35, 52, 0.08)),
    linear-gradient(135deg, rgba(95, 142, 178, 0.18), rgba(13, 35, 52, 0.08));
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 33, 0.04), rgba(7, 22, 33, 0.42)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 36%);
  pointer-events: none;
}

.card-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.content-grid.stats-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-panel.placeholder-panel,
.image-placeholder {
  background:
    linear-gradient(135deg, rgba(13, 35, 52, 0.98), rgba(24, 48, 68, 0.94)),
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.2), transparent 24%);
  color: #fff;
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 28px;
  text-align: center;
  border-radius: calc(var(--radius-md) - 2px);
}

.image-placeholder.tall {
  min-height: 420px;
}

.image-placeholder p,
.placeholder-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.stat-panel {
  text-align: left;
}

.stat-number {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.stat-label {
  margin: 0;
}

.research-controls {
  display: grid;
  gap: 20px;
}

.research-finder {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: end;
}

.research-filter-block {
  display: grid;
  gap: 10px;
}

.featured-research-grid {
  align-items: stretch;
}

.featured-primary {
  min-height: 100%;
}

.featured-primary h3,
.featured-secondary-stack h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.featured-secondary-stack {
  display: grid;
  gap: 18px;
}

.featured-secondary-stack .content-panel h3 {
  font-size: 1.65rem;
}

.research-search {
  display: grid;
  gap: 10px;
}

.search-label {
  font-weight: 700;
}

.research-search input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  outline: 0;
}

.research-search input:focus {
  border-color: rgba(16, 39, 58, 0.34);
  box-shadow: 0 0 0 4px rgba(16, 39, 58, 0.06);
}

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

.housing-lab {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: start;
}

.initiative-jumpbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.initiatives-hero {
  background:
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(13, 35, 52, 0.96), rgba(8, 26, 40, 0.98));
}

.initiatives-hero h1 {
  max-width: 12ch;
}

.initiative-jumpbar-strong {
  padding: 8px 0 2px;
}

.initiative-jumpbar a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.initiative-jumpbar-strong a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.initiative-block {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.initiative-block-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.initiative-block-reverse .initiative-media-card {
  order: 2;
}

.initiative-block-reverse .initiative-copy-card {
  order: 1;
}

.initiative-media-card,
.initiative-copy-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.initiative-media-card {
  min-height: 560px;
  background:
    linear-gradient(180deg, rgba(7, 22, 33, 0.82), rgba(10, 28, 42, 0.5)),
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.14), transparent 24%);
}

.initiative-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 33, 0.18), rgba(7, 22, 33, 0.52)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 28%);
  pointer-events: none;
}

.initiative-media-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  background: #081a28;
}

.initiative-copy-card {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 3.4vw, 40px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(13, 35, 52, 0.96), rgba(10, 28, 42, 0.98)),
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.14), transparent 28%);
}

.initiative-copy-card h2 {
  margin: -6px 0 0;
  max-width: 12ch;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.initiative-summary {
  max-width: 42ch;
  margin: 0;
  color: rgba(247, 251, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.62;
}

.initiative-stats-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.initiative-stat-tile {
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.initiative-stat-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.initiative-stat-tile strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.initiative-stat-tile span {
  color: rgba(247, 251, 255, 0.74);
  line-height: 1.56;
}

.initiative-action {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-left: 3px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 18px 18px 0;
}

.initiative-action p {
  margin: 0;
  color: rgba(247, 251, 255, 0.82);
}

.initiative-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(13, 35, 52, 0.96), rgba(10, 28, 42, 0.98)),
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.14), transparent 28%);
}

.initiative-section .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.initiative-section .initiative-heading p,
.initiative-section .initiative-focus li,
.initiative-section .initiative-callout p,
.initiative-section .initiative-stat p {
  color: rgba(247, 251, 255, 0.76);
}

.initiative-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 22px;
  align-items: start;
}

.initiative-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.initiative-stat,
.initiative-callout,
.initiative-focus {
  padding: 22px;
}

.initiative-stat strong,
.initiative-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.initiative-list {
  margin: 0;
  padding-left: 18px;
}

.initiative-list li + li {
  margin-top: 10px;
}

.leadership-grid {
  align-items: stretch;
}

.leader-profile h2,
.board-card h3 {
  margin: 0 0 14px;
}

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

.board-card,
.leader-profile,
.related-panel,
.article-side,
.article-body {
  padding: 28px;
}

.article-layout {
  align-items: start;
}

.article-body-copy {
  max-width: 62ch;
}

.article-prose {
  display: grid;
  gap: 16px;
}

.article-prose p {
  margin: 0;
}

.article-highlights {
  margin: 0;
  padding-left: 18px;
}

.article-highlights li + li {
  margin-top: 10px;
}

.housing-platform-side {
  display: grid;
  gap: 18px;
}

.live-embed-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(7, 22, 33, 0.96), rgba(10, 28, 42, 0.98)),
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.14), transparent 24%);
  box-shadow: var(--shadow-md);
}

.embed-browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 255, 0.76);
  font-size: 0.9rem;
}

.embed-browser-bar a {
  color: #ffffff;
  font-weight: 700;
}

.live-embed-frame {
  display: block;
  width: 100%;
  min-height: 880px;
  border: 0;
  background: #ffffff;
}

.live-embed-video {
  background: #081a28;
  object-fit: cover;
}

.data-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: center;
}

.data-hero-fullscreen {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: calc(100svh - 132px);
  padding:
    clamp(44px, 7vw, 80px)
    max(24px, calc((100vw - var(--max)) / 2 + 24px))
    clamp(72px, 9vw, 110px);
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: end;
  border-radius: 0 0 38px 38px;
  overflow: hidden;
  position: relative;
}

.data-hero-fullscreen::before,
.data-hero-fullscreen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.data-hero-fullscreen::before {
  background:
    linear-gradient(90deg, rgba(7, 22, 33, 0.94) 0%, rgba(7, 22, 33, 0.72) 34%, rgba(7, 22, 33, 0.24) 66%, rgba(7, 22, 33, 0.46) 100%);
  z-index: 1;
}

.data-hero-fullscreen::after {
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(7, 22, 33, 0) 0%, rgba(7, 22, 33, 0.72) 100%);
  z-index: 1;
}

.data-hero-video-layer,
.data-hero-video-overlay {
  position: absolute;
  inset: 0;
}

.data-hero-video-layer {
  z-index: 0;
}

.data-hero-video-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 74% 20%, rgba(95, 142, 178, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(6, 20, 31, 0.34), rgba(6, 20, 31, 0.16));
}

.data-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.data-hero-copy,
.data-hero-demo {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3.4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(13, 35, 52, 0.9), rgba(10, 28, 42, 0.98)),
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.12), transparent 26%);
  box-shadow: var(--shadow-sm);
}

.data-hero-fullscreen .data-hero-copy {
  z-index: 3;
  max-width: 700px;
  padding: 28px 30px;
  border: 0;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(7, 22, 33, 0.52), rgba(7, 22, 33, 0.28));
  backdrop-filter: blur(6px);
  box-shadow: none;
}

.data-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.data-hero-copy .hero-actions {
  margin-top: 34px;
}

.data-demo-shell {
  box-shadow: none;
}

.article-actions {
  margin-top: 34px;
}

.article-body-copy > p:last-child {
  margin-bottom: 0;
}

.data-demo-frame {
  aspect-ratio: 16 / 9;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(7, 22, 33, 0.92), rgba(10, 28, 42, 0.98));
}

.home-data-demo-frame {
  aspect-ratio: 16 / 10;
  padding: 12px;
}

.data-demo-video {
  min-height: 100%;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: contain;
  background: #081a28;
}

.housing-preview {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(0, 1fr);
  grid-template-rows: minmax(180px, 1fr) auto;
  gap: 14px;
  width: 100%;
  height: 100%;
  min-height: 360px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #ffffff, #f5f9fb);
}

.housing-preview-map,
.housing-preview-chart,
.housing-preview-copy {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.housing-preview-map {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(47, 125, 132, 0.12), rgba(184, 137, 56, 0.08)),
    linear-gradient(180deg, #f8fbfd, #eef5f8);
}

.housing-preview-map::before {
  content: "";
  width: 66px;
  height: 170px;
  border-radius: 36px 44px 26px 18px;
  background:
    linear-gradient(180deg, rgba(47, 125, 132, 0.95), rgba(11, 33, 48, 0.88));
  transform: rotate(-13deg);
  box-shadow:
    26px 68px 0 -26px rgba(47, 125, 132, 0.72),
    10px 116px 0 -30px rgba(184, 137, 56, 0.72);
}

.housing-preview-map span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28);
}

.housing-preview-map span:nth-child(1) { top: 26%; left: 44%; }
.housing-preview-map span:nth-child(2) { top: 38%; left: 51%; }
.housing-preview-map span:nth-child(3) { top: 53%; left: 47%; }
.housing-preview-map span:nth-child(4) { top: 67%; left: 55%; }
.housing-preview-map span:nth-child(5) { top: 78%; left: 59%; }

.housing-preview-chart {
  display: grid;
  grid-template-rows: 1fr 0.82fr;
  gap: 16px;
  padding: 18px;
}

.preview-chart-line {
  position: relative;
  min-height: 120px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent 24%, rgba(11, 33, 48, 0.06) 24% 25%, transparent 25% 49%, rgba(11, 33, 48, 0.06) 49% 50%, transparent 50% 74%, rgba(11, 33, 48, 0.06) 74% 75%, transparent 75%);
}

.preview-chart-line::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 2%;
  bottom: 22%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  transform: skewY(-9deg);
  transform-origin: left bottom;
}

.preview-chart-bars {
  display: flex;
  align-items: end;
  gap: 12px;
}

.preview-chart-bars span {
  flex: 1;
  min-height: 28px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--accent), rgba(184, 137, 56, 0.42));
}

.housing-preview-copy {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
}

.housing-preview-copy strong {
  color: var(--navy);
}

.housing-preview-copy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.conference-hero,
.conference-intro-strip,
.conference-copy-panel,
.conference-media-panel,
.conference-timeline {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.conference-hero {
  padding: clamp(34px, 4vw, 54px);
  background:
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(13, 35, 52, 0.94), rgba(8, 26, 40, 0.98));
}

.conference-hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.conference-hero .page-intro {
  max-width: 56ch;
}

.conference-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 24px;
  align-items: center;
}

.conference-feature-grid-alt {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.conference-media-panel,
.conference-copy-panel {
  padding: clamp(26px, 3vw, 36px);
  background:
    linear-gradient(180deg, rgba(13, 35, 52, 0.9), rgba(10, 28, 42, 0.98)),
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.14), transparent 26%);
}

.conference-copy-panel h2 {
  margin: 0 0 16px;
  max-width: 10ch;
  font-size: clamp(1.9rem, 3.2vw, 3.05rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.conference-copy-panel p {
  max-width: 44ch;
}

.conference-subhead {
  margin: -4px 0 0;
  color: rgba(247, 251, 255, 0.92);
  font-size: 1.1rem;
  font-weight: 700;
}

.conference-video-shell {
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(7, 22, 33, 0.96);
  aspect-ratio: 16 / 9;
}

.conference-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #081a28;
}

.conference-media-stack {
  display: grid;
  gap: 18px;
  align-content: center;
}

.conference-image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(7, 22, 33, 0.96);
  box-shadow: var(--shadow-md);
}

.conference-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conference-image-large {
  min-height: 320px;
}

.conference-image-large img {
  min-height: 320px;
}

.conference-image-small {
  min-height: 220px;
}

.conference-image-small img {
  min-height: 220px;
}

.conference-link-list {
  display: grid;
  gap: 10px;
}

.conference-link-list .dynamic-link {
  margin-top: 0;
}

.conference-why-grid .content-panel {
  min-height: auto;
}

.conference-why-grid .content-panel h3 {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.timeline-list {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.timeline-item h3 {
  margin: 0 0 8px;
}

.timeline-item p {
  margin: 0;
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-weight: 800;
}

.callout-cta .hero-actions {
  justify-content: flex-start;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 40px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
  max-width: 42ch;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

[data-reveal="left"] {
  transform: translateX(28px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Light brand theme refinements */
.mission-strip,
.page-hero,
.video-page-hero,
.sync-strip,
.research-controls,
.content-panel,
.housing-lab,
.initiative-section,
.connect-card,
.lead-story,
.housing-data-platform,
.light-surface,
.housing-card-primary,
.housing-lab-card,
.housing-lab-card.is-featured,
.pillar,
.impact-card,
.dynamic-card,
.contact-card-editorial,
.form-card-editorial,
.impact-band,
.impact-band-editorial,
.path-card-frame,
.path-card-featured,
.get-involved-hero,
.initiatives-hero,
.initiative-copy-card,
.data-hero-copy,
.data-hero-demo,
.conference-hero,
.conference-copy-panel,
.conference-media-panel,
.conference-timeline {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98)),
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.1), transparent 30%);
  color: var(--ink);
}

.content-panel,
.housing-card-primary,
.housing-lab-card,
.pillar,
.impact-card,
.dynamic-card,
.lead-story,
.initiative-stat,
.initiative-focus,
.initiative-callout,
.conference-copy-panel,
.conference-media-panel,
.conference-timeline,
.data-hero-copy,
.data-hero-demo,
.live-embed-shell {
  border-color: var(--line);
}

.pillar {
  box-shadow: var(--shadow-sm);
}

.pillar-index,
.housing-chip,
.dynamic-card-tag,
.filter-chip,
.initiative-jumpbar a,
.timeline-year {
  border-color: rgba(13, 35, 52, 0.12);
  background: var(--surface-muted);
  color: var(--navy);
}

.filter-chip:hover,
.filter-chip.is-active,
.initiative-jumpbar-strong a:hover,
.live-chip {
  border-color: var(--navy);
  background: var(--navy);
  color: #ffffff;
}

.housing-card-primary p,
.housing-card-primary .text-link,
.housing-lab-card.is-featured p,
.impact-card span,
.impact-card-link em,
.path-list,
.funding-range,
.trust-strip p,
.contact-role,
.field span,
.checkbox-field,
.fine-print,
.form-legal,
.connect-card p,
.connect-card .button-ghost,
.initiative-summary,
.initiative-stat-tile span,
.initiative-action p,
.initiative-section .initiative-heading p,
.initiative-section .initiative-focus li,
.initiative-section .initiative-callout p,
.initiative-section .initiative-stat p,
.conference-subhead {
  color: var(--muted);
}

.impact-card strong,
.contact-name,
.initiative-stat-tile strong {
  color: var(--navy);
}

.path-card-slab,
.impact-card-slab {
  border-left-color: rgba(13, 35, 52, 0.22);
}

.impact-band-editorial {
  border-top-color: var(--line);
}

.impact-band-editorial .section-heading {
  border-bottom-color: var(--line);
}

.impact-card-frame,
.path-card-frame {
  box-shadow:
    inset 0 0 0 1px rgba(13, 35, 52, 0.08),
    0 10px 24px rgba(21, 39, 53, 0.08);
}

.field input,
.field textarea,
.research-search input {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.content-panel.placeholder-panel,
.image-placeholder {
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.98), rgba(238, 245, 251, 0.98)),
    radial-gradient(circle at top right, rgba(95, 142, 178, 0.12), transparent 28%);
  color: var(--ink);
}

.image-placeholder p,
.placeholder-panel p {
  color: var(--muted);
}

.connect-card .button-ghost {
  border-color: rgba(13, 35, 52, 0.22);
  background: transparent;
}

.connect-card .button-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #ffffff;
}

.header-actions .button-outline {
  border-color: var(--navy);
  background: var(--navy);
  color: #ffffff;
}

.header-actions .button-outline:hover {
  background: var(--navy-soft);
}

.initiative-stat-tile,
.initiative-action,
.timeline-item {
  border-color: var(--line);
  background: rgba(13, 35, 52, 0.04);
}

.initiative-stat-tile:hover {
  border-color: rgba(13, 35, 52, 0.18);
  background: rgba(13, 35, 52, 0.06);
}

.initiative-section .eyebrow {
  color: var(--accent);
}

.live-embed-shell,
.conference-video-shell,
.conference-image-card {
  border-color: var(--line);
  background: #ffffff;
}

.embed-browser-bar {
  border-bottom-color: var(--line);
  color: var(--muted);
}

.embed-browser-bar a {
  color: var(--navy);
}

.data-demo-frame {
  background: var(--surface-muted);
}

.data-hero-fullscreen .data-hero-copy {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(7, 22, 33, 0.58), rgba(7, 22, 33, 0.34));
}

.data-hero-fullscreen .data-hero-copy p,
.data-hero-fullscreen .data-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.data-hero-fullscreen .button {
  background: #ffffff;
  color: var(--navy);
}

.data-hero-fullscreen .button:hover {
  background: var(--surface-muted);
}

.data-hero-fullscreen .button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #ffffff;
}

.data-hero-fullscreen .button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.news-hero {
  padding-top: 46px;
  padding-bottom: 46px;
}

.news-hero h1 {
  max-width: 10ch;
  font-size: 4.3rem;
  letter-spacing: 0;
  line-height: 1;
}

.news-hero .page-intro {
  max-width: 58ch;
  font-size: 1.08rem;
}

.news-hero .hero-actions {
  margin-top: 28px;
}

.news-status-strip {
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 24px;
}

.news-status-strip .eyebrow {
  margin-bottom: 6px;
}

.news-status-strip p {
  margin: 0;
}

.news-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
}

.news-lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 0;
  min-height: 430px;
  padding: 0;
}

.news-lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.news-lead-copy .dynamic-card-top {
  margin-bottom: 18px;
}

.news-lead-story h2 {
  max-width: 16ch;
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.news-lead-story p:not(.eyebrow) {
  max-width: 58ch;
}

.news-source {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.news-lead-media,
.news-card-media {
  display: block;
  overflow: hidden;
  background: var(--surface-muted);
}

.news-lead-media img,
.news-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-lead-media img {
  min-height: 430px;
}

.news-editorial-note {
  display: grid;
  align-content: start;
  gap: 24px;
}

.news-type-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-type-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.news-type-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.news-archive-section .section-heading {
  margin-bottom: 18px;
}

.news-archive-section {
  scroll-margin-top: 132px;
}

.news-toolbar {
  align-items: flex-start;
}

.news-archive-grid {
  gap: 22px;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  min-height: 260px;
  padding: 0;
  overflow: hidden;
}

.news-card-no-media {
  grid-template-columns: 1fr;
}

.news-card-media img {
  min-height: 260px;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.news-card h3 {
  margin-top: 16px;
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.news-card .dynamic-link {
  margin-top: auto;
  padding-top: 20px;
}

@media (max-width: 1180px) {
  .site-header {
    border-radius: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .video-page-hero,
  .mission-grid,
  .data-hero,
  .housing-grid,
  .housing-lab,
  .initiative-block,
  .initiative-block-reverse,
  .research-finder,
  .initiative-layout,
  .housing-data-platform,
  .content-grid.two-up,
  .article-layout,
  .conference-feature-grid,
  .conference-feature-grid-alt,
  .connect-card {
    grid-template-columns: 1fr;
  }

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

  .dynamic-grid,
  .content-grid.three-up,
  .content-grid.stats-row,
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .news-feature-grid,
  .news-lead-story {
    grid-template-columns: 1fr;
  }

  .news-lead-media {
    order: -1;
  }

  .news-lead-media img {
    max-height: 420px;
  }

}

@media (max-width: 840px) {
  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    top: 8px;
    gap: 14px;
    padding: 12px;
  }

  .brand {
    padding: 8px 10px;
  }

  .brand-logo {
    height: 58px;
  }

  .site-nav,
  .header-actions,
  .hero-actions,
  .card-actions,
  .article-actions,
  .content-toolbar {
    flex-wrap: wrap;
  }

  .home-hero-authority {
    min-height: auto;
    padding:
      44px
      max(18px, calc((100vw - var(--max)) / 2 + 18px))
      56px;
    border-radius: 0 0 28px 28px;
  }

  .data-hero-fullscreen {
    min-height: auto;
    padding:
      44px
      max(18px, calc((100vw - var(--max)) / 2 + 18px))
      56px;
    border-radius: 0 0 28px 28px;
  }

  .hero h1,
  .page-hero h1,
  .video-page-copy h1,
  .mission-grid h2,
  .section-heading h2,
  .connect-card h2,
  .initiative-heading h2 {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .authority-video,
  .authority-video-frame,
  .video-page-screen,
  .image-placeholder.tall {
    min-height: 360px;
  }

  .dynamic-grid,
  .archive-grid,
  .content-grid.three-up,
  .content-grid.stats-row,
  .impact-grid,
  .initiative-stats-compact,
  .form-grid,
  .initiative-stat-grid,
  .pillars-grid,
  .board-grid,
  .logo-ribbon {
    grid-template-columns: 1fr;
  }

  .initiative-block-reverse .initiative-media-card,
  .initiative-block-reverse .initiative-copy-card {
    order: initial;
  }

  .initiative-media-card,
  .initiative-media-video {
    min-height: 320px;
  }

  .card-media {
    margin: -22px -22px 20px;
    min-height: 200px;
    border-radius: 24px 24px 16px 16px;
  }

  .card-video {
    min-height: 200px;
  }

  .news-hero {
    padding-top: 30px;
    padding-bottom: 32px;
  }

  .news-hero h1 {
    font-size: 3.15rem;
  }

  .news-status-strip {
    gap: 12px;
  }

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

  .news-card-media img {
    min-height: 220px;
  }

  .news-lead-story h2 {
    font-size: 2.05rem;
  }

  .news-lead-copy,
  .news-card-body {
    padding: 22px;
  }

  .news-archive-section {
    scroll-margin-top: 430px;
  }

  .conference-video {
    min-height: 320px;
  }

  .data-demo-frame {
    aspect-ratio: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .housing-lab-track {
    grid-auto-columns: minmax(85%, 1fr);
  }

  .sync-strip,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    border-radius: 22px;
  }

  .site-nav a,
  .text-link,
  .button {
    width: 100%;
    justify-content: center;
  }

  .button,
  .button-outline,
  .button-ghost {
    min-height: 46px;
  }

  .page-hero,
  .video-page-hero,
  .mission-strip,
  .content-panel,
  .housing-lab,
  .initiative-section,
  .connect-card,
  .research-controls,
  .housing-data-platform,
  .sync-strip {
    padding: 22px;
    border-radius: 24px;
  }

  .placeholder-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px;
  }
}

/* FPP 2026 design pass */
:root {
  --bg: #ffffff;
  --bg-alt: #f4f8fa;
  --surface: #ffffff;
  --surface-strong: #f8fbfd;
  --surface-muted: #edf4f7;
  --ink: #0b2130;
  --ink-soft: #2a4859;
  --muted: #5b6f7a;
  --line: rgba(11, 33, 48, 0.14);
  --line-strong: rgba(11, 33, 48, 0.24);
  --accent: #b88938;
  --accent-soft: rgba(184, 137, 56, 0.13);
  --teal: #2f7d84;
  --coral: #b95d4c;
  --navy: #0b2130;
  --navy-soft: #18384d;
  --shadow-sm: 0 10px 28px rgba(11, 33, 48, 0.07);
  --shadow-md: 0 22px 54px rgba(11, 33, 48, 0.12);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

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

body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9fb 46%, #ffffff 100%);
  color: var(--ink);
  font-feature-settings: "liga" 1, "kern" 1;
  text-rendering: optimizeLegibility;
}

a,
button,
input,
textarea {
  letter-spacing: 0;
}

.site-header,
main,
.site-footer {
  width: min(calc(100% - 48px), var(--max));
}

.site-header {
  top: 0;
  min-height: 78px;
  margin-top: 0;
  padding: 12px clamp(14px, 2vw, 24px);
  border: 0;
  border-bottom: 1px solid rgba(11, 33, 48, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(11, 33, 48, 0.08);
}

.brand {
  padding: 0;
}

.brand-logo {
  height: 54px;
}

.site-nav {
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 750;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--surface-muted);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #ffffff;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0;
}

.button:hover {
  background: var(--navy-soft);
  box-shadow: var(--shadow-sm);
}

.button-ghost,
.button-outline {
  border-color: var(--line-strong);
  background: #ffffff;
  color: var(--navy);
}

.button-ghost:hover,
.button-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #ffffff;
}

main {
  padding: 28px 0 96px;
}

main > section + section {
  margin-top: 72px;
}

.home-hero-authority {
  width: min(calc(100% - 48px), var(--max));
  min-height: 650px;
  margin: 26px auto 0;
  padding: 56px;
  border: 1px solid rgba(11, 33, 48, 0.16);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.hero-video-only {
  min-height: min(72svh, 720px);
}

.hero-video-only::before,
.hero-video-only::after {
  display: block;
}

.hero-video-only::before {
  background:
    linear-gradient(90deg, rgba(6, 22, 34, 0.88) 0%, rgba(6, 22, 34, 0.68) 44%, rgba(6, 22, 34, 0.2) 100%);
}

.hero-video-only::after {
  height: 42%;
  background: linear-gradient(180deg, rgba(6, 22, 34, 0) 0%, rgba(6, 22, 34, 0.66) 100%);
}

.hero-video-overlay {
  background:
    linear-gradient(180deg, rgba(6, 22, 34, 0.08), rgba(6, 22, 34, 0.26));
}

.home-hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.52fr);
  gap: 36px;
  align-items: end;
  width: 100%;
  min-height: inherit;
}

.home-hero-card {
  max-width: 760px;
}

.home-hero-card h1,
.hero h1,
.page-hero h1,
.video-page-copy h1,
.section-heading h2,
.mission-grid h2,
.initiative-heading h2,
.connect-card h2,
.credibility-copy h2,
.conference-hero h1,
.data-hero-copy h1 {
  letter-spacing: 0;
}

.home-hero-card h1,
.hero h1 {
  max-width: 12ch;
  color: #ffffff;
  font-size: 4.75rem;
  line-height: 0.98;
}

.home-hero-card .hero-text {
  max-width: 58ch;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-proof-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  list-style: none;
  font-weight: 700;
}

.hero-proof-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-proof-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(184, 137, 56, 0.18);
}

.home-hero-signal {
  justify-self: end;
  width: min(100%, 360px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.home-hero-signal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.home-hero-signal strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.05rem;
}

.mission-strip,
.page-hero,
.video-page-hero,
.light-surface,
.housing-lab,
.initiative-section {
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

main > .page-hero:first-child,
main > .video-page-hero:first-child {
  margin-top: 54px;
}

.page-hero {
  max-width: 980px;
}

.page-hero h1,
.video-page-copy h1,
.conference-hero h1 {
  max-width: 13ch;
  font-size: 3.8rem;
  line-height: 1.04;
}

.page-intro,
.section-intro,
.mission-grid p,
.content-panel p,
.dynamic-card p,
.lead-story p,
.article-body p,
.article-side p,
.pillar p,
.connect-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.eyebrow,
.mini-label,
.card-kicker {
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
}

.mission-strip {
  padding: 16px 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mission-grid {
  max-width: none;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 56px;
}

.mission-grid h2,
.section-heading h2,
.connect-card h2,
.initiative-heading h2 {
  font-size: 3rem;
  line-height: 1.05;
}

.section-heading {
  max-width: 820px;
  gap: 10px;
  margin-bottom: 28px;
}

.content-panel,
.dynamic-card,
.lead-story,
.pillar,
.impact-card,
.housing-lab-card,
.initiative-stat,
.initiative-focus,
.initiative-callout,
.board-card,
.leader-profile,
.article-body,
.article-side,
.conference-copy-panel,
.conference-media-panel,
.data-hero-copy,
.data-hero-demo {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.content-panel,
.dynamic-card,
.lead-story {
  padding: 26px;
}

.content-panel h2,
.content-panel h3,
.dynamic-card h3,
.lead-story h2,
.pillar h3,
.board-card h3,
.leader-profile h2,
.conference-copy-panel h2 {
  color: var(--navy);
  letter-spacing: 0;
  line-height: 1.12;
}

.content-grid.three-up,
.dynamic-grid,
.pillars-grid,
.impact-grid,
.content-grid.board-grid {
  gap: 20px;
}

.pillar {
  min-height: 230px;
  padding: 24px;
}

.pillar-index {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: #765319;
  font-size: 0.84rem;
}

.dynamic-link {
  color: var(--teal);
}

.dynamic-link::after {
  color: var(--accent);
}

.card-media {
  margin: -26px -26px 22px;
  border-radius: 12px 12px 8px 8px;
}

.housing-card-primary {
  min-height: auto;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(11, 33, 48, 0.98), rgba(24, 56, 77, 0.96));
}

.housing-card-primary p,
.housing-card-primary .text-link {
  color: rgba(255, 255, 255, 0.78);
}

.research-controls,
.sync-strip,
.connect-card,
.trust-strip,
.conference-hero,
.get-involved-hero,
.initiatives-hero,
.data-hero-fullscreen .data-hero-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.research-controls,
.sync-strip,
.trust-strip {
  background: var(--surface-strong);
}

.connect-card,
.conference-hero,
.get-involved-hero,
.initiatives-hero {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(11, 33, 48, 0.98), rgba(24, 56, 77, 0.96));
  color: #ffffff;
}

.connect-card .eyebrow,
.conference-hero .eyebrow,
.get-involved-hero .eyebrow,
.initiatives-hero .eyebrow {
  color: rgba(244, 214, 164, 0.9);
}

.connect-card h2,
.conference-hero h1,
.get-involved-hero h1,
.initiatives-hero h1,
.connect-card p,
.conference-hero .page-intro,
.get-involved-hero .page-intro,
.initiatives-hero .page-intro {
  color: #ffffff;
}

.page-hero.get-involved-hero h1,
.page-hero.initiatives-hero h1,
.conference-hero h1,
.connect-card h2 {
  color: #ffffff;
}

.connect-card p,
.conference-hero .page-intro,
.get-involved-hero .page-intro,
.initiatives-hero .page-intro {
  color: rgba(255, 255, 255, 0.78);
}

.connect-card .button,
.conference-hero .button,
.get-involved-hero .button,
.initiatives-hero .button {
  background: #ffffff;
  color: var(--navy);
}

.connect-card .button-ghost,
.conference-hero .button-ghost,
.get-involved-hero .button-ghost,
.initiatives-hero .button-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #ffffff;
}

.filter-chip,
.dynamic-card-tag,
.housing-chip {
  min-height: 32px;
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  color: var(--navy);
  font-size: 0.78rem;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
}

.research-search input,
.field input,
.field textarea {
  border-radius: var(--radius-sm);
}

.initiative-jumpbar a {
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  color: var(--navy);
}

.initiative-block {
  gap: 20px;
}

.initiative-media-card,
.initiative-copy-card {
  border-radius: var(--radius-md);
}

.initiative-copy-card {
  background: #ffffff;
}

.initiative-copy-card h2 {
  max-width: 14ch;
  font-size: 2.8rem;
  letter-spacing: 0;
}

.initiative-stat-tile,
.initiative-action {
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
}

.initiative-action {
  border-left-color: var(--accent);
}

.data-hero-fullscreen {
  min-height: min(74svh, 760px);
  border-radius: 18px;
}

.data-hero-fullscreen .data-hero-copy {
  max-width: 720px;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(6, 22, 34, 0.64);
}

.data-hero-copy h1 {
  font-size: 4.2rem;
}

.conference-feature-grid,
.conference-feature-grid-alt {
  align-items: stretch;
}

.conference-copy-panel,
.conference-media-panel {
  background: #ffffff;
}

.conference-copy-panel h2 {
  max-width: 14ch;
  font-size: 2.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

[data-reveal] {
  transform: translateY(18px);
}

.editorial-panel {
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 100%;
  border-left: 4px solid var(--accent);
}

.editorial-panel strong {
  display: block;
  max-width: 16ch;
  color: var(--navy);
  font-size: 2.3rem;
  line-height: 1.06;
}

.leader-mark {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
}

.profile-list {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.6;
}

.profile-list li {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: grid;
    order: 2;
  }

  .site-nav {
    display: none;
    order: 4;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .site-header.nav-open .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-actions {
    margin-left: auto;
  }

  .home-hero-layout,
  .mission-grid,
  .housing-grid,
  .housing-lab,
  .research-finder,
  .content-grid.two-up,
  .article-layout,
  .conference-feature-grid,
  .conference-feature-grid-alt,
  .initiative-block,
  .initiative-block-reverse,
  .data-hero,
  .housing-data-platform,
  .news-feature-grid,
  .news-lead-story {
    grid-template-columns: 1fr;
  }

  .home-hero-signal {
    justify-self: start;
  }

  .initiative-block-reverse .initiative-media-card,
  .initiative-block-reverse .initiative-copy-card {
    order: initial;
  }
}

@media (max-width: 840px) {
  .site-header,
  main,
  .site-footer,
  .home-hero-authority {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    gap: 12px;
  }

  .brand-logo {
    height: 46px;
  }

  .home-hero-authority {
    min-height: auto;
    padding: 34px 24px;
  }

  .home-hero-card h1,
  .hero h1,
  .page-hero h1,
  .video-page-copy h1,
  .conference-hero h1,
  .data-hero-copy h1 {
    font-size: 3rem;
  }

  .mission-grid h2,
  .section-heading h2,
  .connect-card h2,
  .initiative-heading h2 {
    font-size: 2.35rem;
  }

  main > section + section {
    margin-top: 54px;
  }

  .dynamic-grid,
  .archive-grid,
  .content-grid.three-up,
  .content-grid.stats-row,
  .impact-grid,
  .initiative-stats-compact,
  .form-grid,
  .initiative-stat-grid,
  .pillars-grid,
  .board-grid,
  .logo-ribbon {
    grid-template-columns: 1fr;
  }

  .site-header.nav-open .site-nav {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: center;
  }

  .header-actions {
    width: auto;
  }

  .header-actions .button {
    width: auto;
    padding-inline: 14px;
  }

  .button,
  .text-link {
    width: 100%;
    justify-content: center;
  }

  .home-hero-card h1,
  .hero h1,
  .page-hero h1,
  .conference-hero h1,
  .data-hero-copy h1 {
    font-size: 2.45rem;
  }

  .content-panel,
  .dynamic-card,
  .lead-story,
  .connect-card,
  .conference-hero,
  .get-involved-hero,
  .initiatives-hero,
  .research-controls,
  .sync-strip {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Final homepage and readability refinements */
[data-reveal],
[data-reveal="left"],
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.home-hero-authority {
  width: 100vw;
  min-height: clamp(640px, calc(100svh - 78px), 920px);
  margin: -18px 0 0 calc(50% - 50vw);
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  display: grid;
  background: #061622;
}

.home-hero-authority .hero-video-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background:
    linear-gradient(90deg, rgba(6, 22, 34, 0.82), rgba(6, 22, 34, 0.16)),
    url("./assets/images/florida-city-with-beach.jpg") center / cover no-repeat,
    #061622;
}

.home-hero-authority .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  object-fit: cover;
  object-position: center;
}

.home-hero-authority::before,
.home-hero-authority::after {
  display: none;
}

.home-hero-authority .hero-video-overlay {
  z-index: 1;
  display: none;
}

.home-hero-layout {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 56px), var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 136px) 0 clamp(48px, 8vw, 92px);
  display: flex;
  align-items: flex-end;
}

.home-hero-card {
  max-width: 760px;
  padding: 0;
  color: #ffffff;
}

.home-hero-card h1,
.hero h1,
.page-hero h1,
.video-page-copy h1,
.section-heading h2,
.mission-grid h2,
.initiative-heading h2,
.connect-card h2,
.credibility-copy h2,
.conference-hero h1,
.data-hero-copy h1,
.content-panel h2,
.content-panel h3,
.dynamic-card h3,
.lead-story h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.home-hero-card h1,
.hero h1 {
  max-width: 12.5ch;
  color: #ffffff;
  font-size: clamp(3.6rem, 7vw, 6rem);
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.36);
}

.home-hero-card .hero-text {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.6vw, 1.26rem);
  line-height: 1.62;
}

.home-hero-card .button-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.home-hero-card .button-ghost:hover,
.home-hero-card .button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.18);
}

.hero-proof-list {
  max-width: 760px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  color: rgba(255, 255, 255, 0.86);
}

.home-hero-signal {
  position: absolute;
  right: 0;
  bottom: clamp(48px, 7vw, 80px);
  width: min(360px, 31vw);
  margin: 0;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.mission-grid h2,
.section-heading h2,
.page-hero h1 {
  color: var(--navy);
}

.mission-grid p,
.page-intro,
.section-intro {
  color: var(--ink-soft);
}

.research-controls,
.sync-strip {
  color: var(--ink-soft);
}

@media (max-width: 1080px) {
  .home-hero-authority {
    min-height: calc(100svh - 68px);
  }

  .home-hero-authority .hero-video-layer {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .home-hero-layout {
    width: min(calc(100% - 40px), var(--max));
    min-height: inherit;
    padding: clamp(68px, 16vw, 118px) 0 42px;
    display: block;
  }

  .home-hero-card {
    padding: 0;
  }

  .home-hero-signal {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 520px);
    margin: 30px 0 0;
  }
}

@media (max-width: 840px) {
  .home-hero-card h1,
  .hero h1,
  .page-hero h1,
  .video-page-copy h1,
  .conference-hero h1,
  .data-hero-copy h1 {
    font-size: clamp(2.9rem, 12vw, 3.8rem);
  }

  .home-hero-card .hero-actions {
    align-items: stretch;
    width: min(100%, 320px);
  }

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

  .home-hero-signal {
    display: none;
  }

  .housing-preview {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .housing-preview-map,
  .housing-preview-chart {
    min-height: 190px;
  }

  .housing-preview-copy {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Initiatives cleanup */
.page-hero.initiatives-hero {
  width: 100%;
  margin: 18px auto 0;
  padding: clamp(28px, 4.8vw, 52px) 0 clamp(18px, 3vw, 32px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: var(--navy);
}

main > .page-hero.initiatives-hero:first-child {
  width: 100%;
  max-width: var(--max);
  margin: 18px auto 0;
  padding: clamp(28px, 4.8vw, 52px) 0 clamp(18px, 3vw, 32px);
}

.initiatives-hero .eyebrow {
  color: var(--accent);
}

.page-hero.initiatives-hero h1 {
  max-width: 15ch;
  color: var(--navy);
  font-size: clamp(3.7rem, 7.5vw, 6.4rem);
  line-height: 0.96;
}

.page-hero.initiatives-hero .page-intro {
  max-width: 64ch;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 1.14rem;
}

.initiative-jumpbar-strong {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
}

.initiative-jumpbar-strong a {
  min-height: 154px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.initiative-jumpbar-strong a:hover,
.initiative-jumpbar-strong a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 125, 132, 0.42);
  background: var(--surface-strong);
}

.initiative-jumpbar-strong span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.initiative-jumpbar-strong strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
}

.initiative-jumpbar-strong small {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
}

.initiative-block,
.initiative-block-reverse {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: clamp(38px, 6vw, 70px) 0;
  border-top: 1px solid var(--line);
}

.initiative-block-reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.initiative-media-card {
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.initiative-media-card::after {
  background:
    linear-gradient(180deg, rgba(7, 22, 33, 0.04), rgba(7, 22, 33, 0.28));
}

.initiative-media-video {
  min-height: 0;
  height: 100%;
  object-fit: cover;
}

.initiative-copy-card {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.initiative-copy-card .eyebrow {
  margin-bottom: 18px;
}

.initiative-copy-card h2 {
  max-width: 16ch;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.initiative-summary {
  max-width: 58ch;
  margin: 20px 0 26px;
  color: var(--ink-soft);
}

.initiative-stats-compact {
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
}

.initiative-stat-tile {
  min-height: 132px;
  padding: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.initiative-stat-tile:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.initiative-stat-tile:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.initiative-stat-tile:hover {
  transform: none;
  border-color: var(--line);
  background: transparent;
  box-shadow: none;
}

.initiative-stat-tile strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  letter-spacing: 0;
}

.initiative-stat-tile span {
  color: var(--muted);
  font-size: 0.9rem;
}

.initiative-action {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
}

.initiative-action .mini-label {
  color: var(--accent);
}

.initiative-action p {
  color: var(--ink-soft);
}

.initiative-copy-card .article-actions {
  margin-top: 22px;
}

@media (max-width: 1180px) {
  .initiative-jumpbar-strong {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .initiative-block,
  .initiative-block-reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .initiative-block-reverse .initiative-media-card,
  .initiative-block-reverse .initiative-copy-card {
    order: initial;
  }
}

@media (max-width: 840px) {
  .page-hero.initiatives-hero {
    width: 100%;
    margin-top: 12px;
    padding: 24px 0 8px;
  }

  main > .page-hero.initiatives-hero:first-child {
    width: 100%;
    max-width: var(--max);
    margin-top: 12px;
    padding: 24px 0 8px;
  }

  .page-hero.initiatives-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .page-hero.initiatives-hero .page-intro {
    font-size: 1rem;
  }

  .initiative-jumpbar-strong {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .initiative-jumpbar-strong a {
    min-height: 0;
    gap: 8px;
  }

  .initiative-block,
  .initiative-block-reverse {
    padding: 36px 0;
  }

  .initiative-media-card {
    aspect-ratio: 16 / 10;
  }

  .initiative-copy-card h2 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  .initiative-stats-compact {
    grid-template-columns: 1fr;
  }

  .initiative-stat-tile {
    min-height: 0;
    border-right: 0;
  }

  .initiative-stat-tile:nth-child(odd) {
    border-right: 0;
  }

  .initiative-stat-tile + .initiative-stat-tile {
    border-top: 1px solid var(--line);
  }
}

/* Conferences cleanup */
.conference-hero-live {
  width: 100vw;
  min-height: clamp(620px, calc(100svh - 78px), 860px);
  margin: -18px 0 0 calc(50% - 50vw);
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  display: grid;
  overflow: hidden;
  background: #061622;
  color: #ffffff;
}

.conference-hero-media,
.conference-hero-shade {
  position: absolute;
  inset: 0;
}

.conference-hero-media {
  z-index: 0;
}

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

.conference-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 18, 29, 0.88) 0%, rgba(5, 18, 29, 0.68) 42%, rgba(5, 18, 29, 0.2) 74%, rgba(5, 18, 29, 0.54) 100%),
    linear-gradient(180deg, rgba(5, 18, 29, 0.12) 0%, rgba(5, 18, 29, 0.78) 100%);
}

.conference-hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
  align-self: end;
  padding: clamp(74px, 10vw, 130px) 0 clamp(52px, 8vw, 92px);
}

.conference-hero-live .eyebrow {
  color: rgba(244, 214, 164, 0.96);
}

.conference-hero-live h1 {
  max-width: 11.5ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: 0.92;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.36);
}

.conference-hero-live .page-intro {
  max-width: 58ch;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
}

.conference-hero-live .button {
  background: #ffffff;
  color: var(--navy);
}

.conference-hero-live .button-ghost {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

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

.conference-path {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.conference-path:hover,
.conference-path:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 125, 132, 0.42);
  background: var(--surface-strong);
}

.conference-path span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.conference-path strong {
  display: block;
  max-width: 18ch;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.conference-path small {
  max-width: 44ch;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.conference-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 6vw, 78px) 0;
  border-top: 1px solid var(--line);
}

.conference-showcase-alt {
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
}

.conference-showcase-copy {
  max-width: 620px;
}

.conference-showcase-copy h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 3.85vw, 3.85rem);
  line-height: 1.02;
}

.conference-showcase-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.conference-showcase-copy .conference-date-note {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(178, 124, 48, 0.28);
  border-radius: 999px;
  background: rgba(178, 124, 48, 0.08);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}

.conference-bullets {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.conference-bullets li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.45;
}

.conference-showcase-copy .article-actions {
  margin-top: 26px;
}

.conference-showcase-media {
  min-width: 0;
}

.conference-showcase .conference-video-shell,
.conference-fav-image,
.conference-photo-grid {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #071621;
  box-shadow: var(--shadow-md);
}

.conference-showcase .conference-video-shell {
  aspect-ratio: 16 / 10;
}

.conference-fav-image {
  margin: 0;
  aspect-ratio: 16 / 10;
}

.conference-showcase .conference-video {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
}

.conference-photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #ffffff;
}

.conference-photo-grid .conference-image-card {
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.conference-photo-grid .conference-image-card + .conference-image-card {
  border-top: 1px solid var(--line);
}

.conference-photo-grid .conference-image-large,
.conference-photo-grid .conference-image-small {
  min-height: 0;
}

.conference-fav-image img,
.conference-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
}

.conference-photo-grid .conference-image-large img {
  aspect-ratio: 16 / 8.5;
}

.conference-photo-grid .conference-image-small img {
  aspect-ratio: 16 / 7.5;
}

.conference-model {
  padding: clamp(42px, 6vw, 76px) 0;
  border-top: 1px solid var(--line);
}

.conference-model .section-heading {
  max-width: 760px;
}

.conference-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.conference-model-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.conference-model-grid span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.conference-model-grid h3 {
  margin: 34px 0 12px;
  max-width: 12ch;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 2.3vw, 2.35rem);
  line-height: 1;
}

.conference-model-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .conference-showcase,
  .conference-showcase-alt {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .conference-hero-live {
    min-height: calc(100svh - 68px);
  }

  .conference-hero-inner {
    width: min(calc(100% - 40px), var(--max));
    padding: clamp(68px, 16vw, 116px) 0 42px;
  }

  .conference-hero-live h1 {
    font-size: clamp(3.1rem, 13vw, 4.7rem);
  }

  .conference-paths,
  .conference-model-grid {
    grid-template-columns: 1fr;
  }

  .conference-path {
    min-height: 0;
  }

  .conference-showcase {
    padding: 38px 0;
  }

  .conference-showcase-copy h2 {
    font-size: clamp(2.1rem, 8.6vw, 3.05rem);
  }

  .conference-photo-grid img {
    min-height: 190px;
  }

  .conference-model-grid article {
    min-height: 0;
  }
}

/* News archive editorial index */
.news-archive-section .section-heading,
.news-toolbar,
.news-archive-grid {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

.news-toolbar {
  justify-content: space-between;
  gap: 14px 20px;
  margin-bottom: 18px;
}

.news-archive-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.news-archive-grid .news-card {
  display: grid;
  grid-template-columns: clamp(144px, 17vw, 188px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 0;
  padding: 16px;
  overflow: hidden;
  border-radius: 8px;
}

.news-archive-grid .news-card:hover {
  transform: translateY(-2px);
}

.news-archive-grid .news-card-media {
  display: block;
  width: 100%;
  height: 148px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-muted);
}

.news-archive-grid .news-card-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.news-archive-grid .news-card-media-fallback {
  display: grid;
  place-items: center;
  text-decoration: none;
}

.news-archive-grid .news-card-media-fallback span {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.news-archive-grid .news-card-body {
  min-width: 0;
  padding: 4px 4px 4px 0;
}

.news-card-meta {
  gap: 8px 10px;
  margin: 0;
}

.news-card-meta .dynamic-card-tag {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 0.74rem;
}

.news-card .dynamic-card-date,
.news-card .news-source {
  max-width: 24ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.86rem;
}

.news-card .news-source {
  max-width: 20ch;
}

.news-card h3 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(1.22rem, 1.45vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.news-card p {
  display: -webkit-box;
  max-width: 64ch;
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-card .dynamic-link {
  margin-top: 14px;
  padding-top: 0;
}

@media (max-width: 840px) {
  .news-toolbar {
    align-items: flex-start;
  }

  .news-archive-grid .news-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .news-archive-grid .news-card-media {
    height: 96px;
  }

  .news-card h3 {
    margin-top: 8px;
    font-size: 1.08rem;
    line-height: 1.14;
  }

  .news-card p {
    margin-top: 8px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .news-card .dynamic-link {
    margin-top: 10px;
    font-size: 0.92rem;
  }
}

@media (max-width: 560px) {
  .news-archive-grid .news-card {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .news-archive-grid .news-card-media {
    height: 78px;
  }

  .news-card-meta {
    gap: 6px 8px;
  }

  .news-card-meta .dynamic-card-tag {
    min-height: 26px;
    padding: 0 8px;
    font-size: 0.7rem;
  }

  .news-card .dynamic-card-date,
  .news-card .news-source {
    max-width: 14ch;
    font-size: 0.78rem;
  }

  .news-card .news-source,
  .news-card p {
    display: none;
  }

  .news-card h3 {
    font-size: 1rem;
    line-height: 1.1;
  }

  .news-card .dynamic-link {
    display: none;
  }
}

/* Get Involved movement page */
.movement-page {
  --movement-gold: #d0a24a;
  --movement-teal: #3a8f98;
  --movement-coral: #c96b56;
  --movement-dark: #071622;
  padding-bottom: 0;
}

.movement-page > section + section {
  margin-top: 0;
}

.movement-page .movement-hero.get-involved-hero {
  width: 100vw;
  min-height: clamp(540px, 74svh, 760px);
  margin: -18px 0 0 calc(50% - 50vw);
  padding: 0;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0 0 18px 18px;
  background: var(--movement-dark);
  box-shadow: none;
  color: #ffffff;
}

.movement-hero-image,
.movement-hero-shade,
.movement-final-image,
.movement-final-shade {
  position: absolute;
  inset: 0;
}

.movement-hero-image,
.movement-final-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.movement-hero-image {
  object-position: center 38%;
}

.movement-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 18, 29, 0.9) 0%, rgba(5, 18, 29, 0.72) 42%, rgba(5, 18, 29, 0.24) 78%),
    linear-gradient(180deg, rgba(5, 18, 29, 0.1) 0%, rgba(5, 18, 29, 0.78) 100%);
}

.movement-hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
  padding: clamp(88px, 11vw, 138px) 0 clamp(52px, 8vw, 84px);
}

.movement-hero-content h1,
.movement-final-copy h2,
.movement-why h2,
.movement-section-heading h2,
.movement-path h3,
.movement-form h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.movement-hero-content h1 {
  max-width: 10ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(4rem, 8.6vw, 7.5rem);
  line-height: 0.9;
  text-wrap: balance;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
}

.movement-hero-content p {
  max-width: 61ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
  line-height: 1.58;
}

.movement-page .hero-actions {
  margin-top: 30px;
}

.movement-page .movement-hero .button,
.movement-final .button {
  background: #ffffff;
  color: var(--navy);
}

.movement-page .movement-hero .button-ghost,
.movement-final .button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.movement-page .movement-hero .button:hover,
.movement-final .button:hover {
  background: #f4f8fb;
}

.movement-page .movement-hero .button-ghost:hover,
.movement-final .button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.18);
}

.movement-why {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(64px, 8vw, 108px) 0;
}

.movement-label {
  margin: 0 0 18px;
  color: var(--movement-coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.movement-why h2,
.movement-section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5.55rem);
  line-height: 0.95;
  text-wrap: balance;
}

.movement-why p:not(.movement-label) {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.66;
}

.movement-why-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--movement-dark);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 11;
}

.movement-why-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.movement-stats {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(58, 143, 152, 0.18), transparent 34%, rgba(201, 107, 86, 0.14)),
    var(--movement-dark);
  color: #ffffff;
}

.movement-stat-track {
  display: flex;
  width: max-content;
  animation: movementTicker 34s linear infinite;
}

.movement-stat-group {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: 24px clamp(28px, 5vw, 64px);
}

.movement-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  font-weight: 800;
}

.movement-stat strong {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 0.9;
}

@keyframes movementTicker {
  from {
    transform: translateX(0);
  }

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

.movement-paths-section {
  padding: clamp(68px, 8vw, 112px) 0;
}

.movement-section-heading {
  max-width: 780px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.movement-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.movement-path {
  min-height: 285px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.movement-path::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--movement-teal), var(--movement-gold), var(--movement-coral));
  opacity: 0.86;
}

.movement-path:hover,
.movement-path:focus-within {
  transform: translateY(-4px);
  border-color: rgba(58, 143, 152, 0.36);
  box-shadow: var(--shadow-md);
  background: var(--surface-strong);
}

.movement-path span {
  color: var(--movement-coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.movement-path h3 {
  max-width: 12ch;
  margin: 34px 0 12px;
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 0.98;
}

.movement-path p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.movement-path .dynamic-link {
  margin-top: auto;
  color: var(--navy);
}

.movement-path-featured {
  grid-column: 1 / -1;
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
  gap: 0;
  padding: 0;
}

.movement-path-featured::before {
  display: none;
}

.movement-path-media {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  background: var(--movement-dark);
}

.movement-path-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 700ms ease;
}

.movement-path-featured:hover .movement-path-media img {
  transform: scale(1.035);
}

.movement-path-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 4.4vw, 58px);
}

.movement-path-featured h3 {
  max-width: 9ch;
  margin-top: 42px;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 0.92;
}

.movement-path-featured p {
  max-width: 48ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.movement-final {
  width: 100vw;
  min-height: clamp(640px, 80svh, 860px);
  margin-left: calc(50% - 50vw);
  padding:
    clamp(56px, 8vw, 96px)
    max(24px, calc((100vw - var(--max)) / 2 + 24px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.58fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--movement-dark);
  color: #ffffff;
}

.movement-final-image {
  object-position: center;
}

.movement-final-shade {
  background:
    linear-gradient(90deg, rgba(5, 18, 29, 0.92) 0%, rgba(5, 18, 29, 0.78) 42%, rgba(5, 18, 29, 0.46) 100%),
    linear-gradient(180deg, rgba(5, 18, 29, 0.16), rgba(5, 18, 29, 0.88));
}

.movement-final-copy,
.movement-form {
  position: relative;
  z-index: 2;
}

.movement-final-copy h2 {
  max-width: 9ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.8rem, 7.5vw, 7rem);
  line-height: 0.9;
  text-wrap: balance;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
}

.movement-final-copy p {
  max-width: 58ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
  line-height: 1.6;
}

.movement-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  color: var(--ink);
}

.movement-form h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: clamp(1.9rem, 2.7vw, 2.6rem);
  line-height: 1;
}

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

.movement-form .field span,
.movement-form .checkbox-field,
.movement-form .form-legal {
  color: var(--muted);
}

.movement-form .field input,
.movement-form .field textarea,
.movement-form .field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  outline: 0;
}

.movement-form .field input,
.movement-form .field select {
  min-height: 50px;
  padding: 0 14px;
}

.movement-form .field textarea {
  min-height: 118px;
  padding: 12px 14px;
  resize: vertical;
}

.movement-form .field input:focus,
.movement-form .field textarea:focus,
.movement-form .field select:focus {
  border-color: rgba(58, 143, 152, 0.5);
  box-shadow: 0 0 0 4px rgba(58, 143, 152, 0.11);
}

.movement-form .checkbox-field {
  align-items: flex-start;
}

.movement-form .button {
  width: 100%;
  background: var(--navy);
  color: #ffffff;
}

.movement-form .button:hover {
  background: var(--navy-soft);
}

.movement-form .text-link {
  color: var(--navy);
}

.movement-page [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 1080px) {
  .movement-why,
  .movement-final {
    grid-template-columns: 1fr;
  }

  .movement-why-media {
    order: -1;
  }

  .movement-final {
    min-height: auto;
  }
}

@media (max-width: 840px) {
  .movement-hero-content {
    width: min(calc(100% - 40px), var(--max));
    padding: clamp(76px, 18vw, 118px) 0 42px;
  }

  .movement-hero-content h1,
  .movement-final-copy h2 {
    font-size: clamp(3.15rem, 14vw, 5rem);
  }

  .movement-why h2,
  .movement-section-heading h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .movement-paths {
    grid-template-columns: 1fr;
  }

  .movement-path-featured {
    grid-template-columns: 1fr;
  }

  .movement-path-media img {
    min-height: 250px;
  }

  .movement-path-featured h3 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .movement-final {
    padding:
      52px
      max(20px, calc((100vw - var(--max)) / 2 + 20px));
  }
}

@media (max-width: 560px) {
  .movement-page .movement-hero.get-involved-hero {
    min-height: clamp(540px, 70svh, 700px);
  }

  .movement-hero-content h1 {
    max-width: 7.5ch;
    font-size: clamp(3rem, 12vw, 3.8rem);
  }

  .movement-hero-content p {
    max-width: 32ch;
  }

  .movement-hero-content p,
  .movement-final-copy p {
    font-size: 1rem;
  }

  .movement-why {
    padding: 48px 0;
  }

  .movement-paths-section {
    padding: 52px 0;
  }

  .movement-path {
    min-height: 0;
    padding: 20px;
  }

  .movement-path-copy {
    padding: 24px 20px;
  }

  .movement-path h3 {
    margin-top: 26px;
  }

  .movement-form-grid {
    grid-template-columns: 1fr;
  }

  .movement-stat-group {
    padding: 18px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .movement-stat-track {
    animation: none;
  }

  .movement-page [data-reveal],
  .movement-page [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

/* News media hub */
.news-page {
  background:
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 34%, #eef6f8 100%);
}

.news-page main > section + section {
  margin-top: 46px;
}

.news-page .section-heading,
.news-section-heading {
  max-width: 760px;
}

.news-page .section-heading h2,
.news-page h1,
.news-page h2,
.news-page h3 {
  letter-spacing: 0;
}

.news-media-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(22px, 3.6vw, 54px);
  align-items: center;
  width: 100vw;
  min-height: min(760px, calc(100svh - 116px));
  margin: 0 0 0 calc(50% - 50vw);
  padding:
    clamp(56px, 6.6vw, 88px)
    max(24px, calc((100vw - var(--max)) / 2 + 24px))
    clamp(82px, 9vw, 118px);
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  background: #031626 url("./assets/images/news-hero-background.png") center / cover no-repeat;
  color: #ffffff;
  box-shadow: 0 34px 80px rgba(5, 20, 36, 0.18);
}

.news-media-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.news-media-hero::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 14, 26, 0.1) 0%, rgba(3, 14, 26, 0) 54%);
}

.news-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.news-hero-kicker {
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 30px;
  color: #3d85ff;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-hero-kicker::after {
  content: "";
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.news-hero-copy h1 {
  max-width: 16ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.8rem, 6.1vw, 6.15rem);
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
}

.news-hero-copy p:not(.news-hero-kicker) {
  max-width: 48ch;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.55;
}

.news-hero-button {
  gap: 18px;
  min-height: 58px;
  margin-top: 38px;
  padding: 0 24px 0 28px;
  border-color: rgba(92, 166, 255, 0.56);
  border-radius: 8px;
  background: linear-gradient(135deg, #2377ff 0%, #1658d8 100%);
  color: #ffffff;
  box-shadow: 0 20px 42px rgba(7, 69, 180, 0.36);
}

.news-hero-button:hover,
.news-hero-button:focus-visible {
  border-color: rgba(132, 195, 255, 0.72);
  background: linear-gradient(135deg, #3188ff 0%, #1c66ea 100%);
  color: #ffffff;
}

.news-hero-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  transition: transform 180ms ease;
}

.news-hero-button:hover svg,
.news-hero-button:focus-visible svg {
  transform: translateY(3px);
}

.news-lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  min-height: 620px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 35, 52, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(21, 39, 53, 0.14);
}

.news-lead-media,
.news-card-media,
.news-spotlight-media {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13, 35, 52, 0.92), rgba(47, 125, 132, 0.72));
}

.news-lead-media {
  min-height: 620px;
}

.news-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 18, 29, 0) 48%, rgba(5, 18, 29, 0.42) 100%);
}

.news-lead-media img,
.news-card-media img,
.news-spotlight-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.news-lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}

.news-kicker-row,
.news-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 11px;
}

.news-lead-story h1 {
  max-width: 13.5ch;
  margin: 22px 0 18px;
  color: var(--navy);
  font-size: 3.55rem;
  line-height: 1;
  font-weight: 800;
  overflow-wrap: normal;
}

.news-lead-story p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.news-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.news-source {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.news-ticker {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-block: 1px solid rgba(13, 35, 52, 0.12);
  overflow: hidden;
}

.news-media-hero + .news-ticker {
  position: relative;
  z-index: 4;
  margin-top: -34px;
  padding: 18px 22px;
  border: 1px solid rgba(13, 35, 52, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(11, 33, 48, 0.14);
}

.news-ticker-label {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-ticker-viewport {
  min-width: 0;
  overflow: hidden;
}

.news-ticker-list {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-width: max-content;
  animation: newsTicker 34s linear 1.5s infinite;
}

.news-ticker-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.news-ticker-list span {
  color: var(--teal);
  font-size: 0.76rem;
  text-transform: uppercase;
}

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

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

.news-spotlight-card,
.news-newsletter {
  overflow: hidden;
  border: 1px solid rgba(13, 35, 52, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(21, 39, 53, 0.08);
}

.news-spotlight-card {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.news-spotlight-card:hover,
.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 125, 132, 0.3);
  box-shadow: 0 26px 58px rgba(21, 39, 53, 0.14);
}

.news-spotlight-card:hover img,
.news-card:hover img,
.news-lead-story:hover .news-lead-media img {
  transform: scale(1.045);
}

.news-spotlight-media,
.news-card-media {
  aspect-ratio: 16 / 9;
}

.news-spotlight-copy,
.news-card-body {
  padding: 24px;
}

.news-spotlight-card h3,
.news-card h3 {
  margin: 14px 0 0;
  color: var(--navy);
  line-height: 1.08;
  font-weight: 800;
}

.news-spotlight-card h3 {
  font-size: 1.75rem;
}

.news-spotlight-card p,
.news-card p,
.news-newsletter p {
  color: var(--muted);
  line-height: 1.58;
}

.news-spotlight-card p,
.news-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-archive-section {
  scroll-margin-top: 130px;
}

.news-archive-section .section-heading,
.news-toolbar,
.news-archive-grid {
  max-width: none;
}

.news-toolbar {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.news-toolbar .filter-chips {
  gap: 10px;
}

.news-page .filter-chip,
.news-page .dynamic-card-tag {
  min-height: 32px;
  padding: 0 12px;
  border-color: rgba(13, 35, 52, 0.12);
  border-radius: 999px;
  background: #eef6f8;
  color: var(--navy);
  font-size: 0.76rem;
}

.news-page .filter-chip:hover,
.news-page .filter-chip.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
}

.news-page .results-meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-archive-grid .news-card {
  display: flex;
  min-height: 0;
  padding: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.news-archive-grid .news-card-media {
  width: 100%;
  height: auto;
  min-width: 0;
  border: 0;
  border-radius: 0;
}

.news-card-media-fallback {
  display: grid;
  place-items: center;
}

.news-card-media-fallback span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.4rem;
  font-weight: 700;
}

.news-archive-grid .news-card-body {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 22px;
}

.news-card h3 {
  font-size: 1.32rem;
}

.news-card .dynamic-card-date,
.news-card .news-source {
  max-width: 22ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-card .dynamic-link,
.news-spotlight-card .dynamic-link {
  margin-top: auto;
  padding-top: 18px;
}

.news-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f2fafb 100%);
}

.news-newsletter h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--navy);
  font-size: 2.6rem;
  line-height: 1;
}

.news-newsletter p {
  max-width: 56ch;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.newsletter-form input {
  min-width: 0;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(13, 35, 52, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  font-size: 0.98rem;
}

.newsletter-status {
  grid-column: 1 / -1;
  min-height: 1.3em;
  margin: 0;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .news-media-hero {
    grid-template-columns: 1fr;
    min-height: 680px;
  }

  .news-hero-copy {
    max-width: 760px;
  }

  .news-lead-story,
  .news-newsletter {
    grid-template-columns: 1fr;
  }

  .news-lead-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .news-lead-copy {
    padding: 34px;
  }

  .news-lead-story h1 {
    max-width: 14ch;
    font-size: 3.25rem;
  }

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

@media (max-width: 840px) {
  .news-page main > section + section {
    margin-top: 36px;
  }

  .news-media-hero {
    min-height: 620px;
    margin-top: 16px;
    padding:
      64px
      max(24px, calc((100vw - var(--max)) / 2 + 24px))
      84px;
  }

  .news-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(3.2rem, 11vw, 4.7rem);
  }

  .news-hero-copy p:not(.news-hero-kicker) {
    font-size: 1.04rem;
  }

  .news-hero-button {
    max-width: 100%;
  }

  .news-media-hero + .news-ticker {
    margin-top: -26px;
    padding: 16px;
  }

  .news-lead-story {
    min-height: 0;
  }

  .news-lead-copy,
  .news-spotlight-copy,
  .news-card-body,
  .news-newsletter {
    padding: 22px;
  }

  .news-lead-story h1 {
    font-size: 2.55rem;
  }

  .news-spotlight-grid,
  .news-archive-grid {
    grid-template-columns: 1fr;
  }

  .news-toolbar {
    align-items: flex-start;
  }

  .news-page .results-meta {
    width: 100%;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .news-media-hero {
    min-height: 570px;
    padding: 54px 20px 78px;
  }

  .news-hero-kicker {
    gap: 13px;
    margin-bottom: 24px;
    font-size: 0.72rem;
  }

  .news-hero-copy h1 {
    font-size: 3rem;
  }

  .news-hero-button {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding: 0 18px 0 20px;
  }

  .news-ticker {
    align-items: flex-start;
  }

  .news-ticker-label {
    margin-top: 2px;
  }

  .news-lead-story h1 {
    font-size: 2.2rem;
  }

  .news-newsletter h2 {
    font-size: 2rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .news-ticker-list {
    animation: none;
  }

  .news-lead-media img,
  .news-card-media img,
  .news-spotlight-media img {
    transition: none;
  }
}

/* About page story redesign */
.about-page {
  --about-teal: #2f7d84;
  --about-coral: #c96b56;
  --about-gold: #c99a3f;
  --about-ink: #071622;
  --about-paper: #f7fbfd;
  background:
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 34%, #f2f7f9 100%);
}

.about-page main > section + section {
  margin-top: clamp(34px, 4vw, 58px);
}

.about-page h1,
.about-page h2,
.about-page h3 {
  letter-spacing: 0;
}

.about-kicker,
.about-role {
  margin: 0 0 14px;
  color: var(--about-coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-hero {
  width: min(calc(100vw - 48px), var(--max));
  min-height: min(680px, 65svh);
  margin: 22px auto 0;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 22, 34, 0.16);
  border-radius: 8px;
  background: var(--about-ink);
  box-shadow: 0 32px 90px rgba(14, 39, 56, 0.18);
  color: #ffffff;
}

.about-hero + .about-story {
  margin-top: clamp(24px, 3vw, 34px);
}

.about-hero-media,
.about-hero-shade,
.about-matters-media,
.about-matters-shade,
.about-final-media,
.about-final-shade {
  position: absolute;
  inset: 0;
}

.about-hero-video,
.about-matters-media video,
.about-final-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-video {
  object-position: center;
}

.about-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 18, 29, 0.92) 0%, rgba(5, 18, 29, 0.72) 44%, rgba(5, 18, 29, 0.24) 100%),
    linear-gradient(180deg, rgba(5, 18, 29, 0.08) 0%, rgba(5, 18, 29, 0.78) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  padding: clamp(36px, 5vw, 58px);
}

.about-hero-copy {
  max-width: 850px;
}

.about-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.4rem, 5.6vw, 5.15rem);
  line-height: 0.96;
  font-weight: 800;
  text-wrap: balance;
  text-shadow: 0 20px 52px rgba(0, 0, 0, 0.38);
}

.about-hero p {
  max-width: 62ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

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

.about-hero .button {
  background: #ffffff;
  color: var(--navy);
}

.about-hero .button:hover {
  background: #eff5f7;
}

.about-hero .button-ghost,
.about-matters .button-ghost,
.about-final-cta .button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.about-hero .button-ghost:hover,
.about-matters .button-ghost:hover,
.about-final-cta .button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.18);
}

.about-hero-proof {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.about-hero-proof span {
  display: flex;
  align-items: center;
  min-height: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-hero-proof span:last-child {
  border-bottom: 0;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(220px, 0.42fr) minmax(320px, 0.92fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
}

.about-story-copy h2,
.about-section-heading h2,
.about-method-copy h2,
.about-matters-copy h2,
.about-final-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
  font-weight: 800;
  text-wrap: balance;
}

.about-lede,
.about-story-copy p,
.about-section-heading p:not(.about-kicker),
.about-method-copy > p,
.about-matters-copy p,
.about-final-copy p,
.about-timeline-list p,
.about-governance p {
  color: var(--muted);
  line-height: 1.66;
}

.about-story-copy p:not(.about-kicker) {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.06rem;
}

.about-change-list {
  display: grid;
  gap: 10px;
}

.about-change-list span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-left: 4px solid var(--about-teal);
  background: #ffffff;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(21, 39, 53, 0.06);
}

.about-change-list span:nth-child(2n) {
  border-left-color: var(--about-coral);
}

.about-story-media,
.about-method-media,
.about-leader-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--about-ink);
}

.about-story-media {
  position: relative;
  min-height: 480px;
  box-shadow: var(--shadow-md);
}

.about-story-media video,
.about-story-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-method-media img,
.about-leader-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-numbers {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding:
    clamp(28px, 4vw, 46px)
    max(24px, calc((100vw - var(--max)) / 2 + 24px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--about-ink);
  color: #ffffff;
}

.about-numbers article {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(47, 125, 132, 0.16), rgba(201, 107, 86, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.about-numbers strong {
  display: block;
  max-width: 100%;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 0.9;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.about-numbers .about-stat-label {
  font-size: clamp(2.35rem, 3.1vw, 3.2rem);
  line-height: 0.98;
}

.about-numbers span:last-child {
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
  font-weight: 700;
}

.about-section-heading {
  max-width: 860px;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.about-focus-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.about-focus-card {
  grid-column: span 3;
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 22, 34, 0.12);
  border-radius: 8px;
  background: var(--about-ink);
  box-shadow: var(--shadow-sm);
}

.about-focus-card-wide {
  grid-column: span 6;
  min-height: 360px;
}

.about-focus-card video,
.about-focus-card .vimeo-background-embed,
.about-focus-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.about-focus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 18, 29, 0.02) 0%, rgba(5, 18, 29, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 18, 29, 0.58), rgba(5, 18, 29, 0.08));
}

.about-focus-card:hover video,
.about-focus-card:hover .vimeo-background-embed,
.about-focus-card:hover img {
  transform: scale(1.045);
}

.about-focus-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: clamp(22px, 3vw, 34px);
  color: #ffffff;
}

.about-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.about-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-focus-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1;
}

.about-focus-card p {
  max-width: 44ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
}

.about-method {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 4.5vw, 58px);
  align-items: stretch;
}

.about-method-media {
  min-height: clamp(520px, 48vw, 680px);
  height: 100%;
  box-shadow: var(--shadow-md);
}

.about-method-media img {
  min-height: 100%;
}

.about-method-copy {
  align-self: center;
  min-width: 0;
}

.about-method-copy h2 {
  font-size: clamp(2.9rem, 4.8vw, 4.35rem);
  line-height: 1;
}

.about-method-copy > p {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.06rem;
}

.about-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.about-method-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(21, 39, 53, 0.06);
}

.about-method-grid span,
.about-timeline-list span {
  color: var(--about-teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-method-grid h3,
.about-timeline-list h3,
.about-leader-copy h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  line-height: 1.05;
}

.about-method-grid h3 {
  font-size: 1.45rem;
}

.about-method-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.about-team-grid {
  display: grid;
  gap: 18px;
}

.about-leader-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid rgba(7, 22, 34, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.about-leader-card-reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.about-leader-card-reverse figure {
  order: 2;
}

.about-leader-card figure {
  min-height: 560px;
  border-radius: 0;
}

.about-leader-card-reverse figure {
  background: #f5f7f8;
}

.about-leader-card-reverse img {
  object-position: center top;
}

.about-leader-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(28px, 4.5vw, 58px);
}

.about-role {
  color: var(--about-teal);
}

.about-leader-copy h3 {
  margin-top: 0;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.92;
}

.about-leader-copy p:not(.about-role) {
  max-width: 58ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.62;
}

.about-leader-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 4px;
}

.about-leader-tags span {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(13, 35, 52, 0.12);
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.about-governance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(7, 22, 34, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #eef7f8 100%);
  box-shadow: var(--shadow-sm);
}

.about-governance p {
  max-width: 68ch;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.about-timeline {
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(7, 22, 34, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f3fafb 100%);
  box-shadow: var(--shadow-sm);
}

.about-timeline-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(13, 35, 52, 0.12);
}

.about-timeline-list article {
  min-height: 250px;
  padding: clamp(20px, 3vw, 30px);
  background: #ffffff;
}

.about-timeline-list h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.about-timeline-list p {
  margin: 0;
}

.about-matters,
.about-final-cta {
  width: min(calc(100vw - 48px), var(--max));
  min-height: 560px;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--about-ink);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.about-matters-shade,
.about-final-shade {
  background:
    linear-gradient(90deg, rgba(5, 18, 29, 0.88) 0%, rgba(5, 18, 29, 0.68) 46%, rgba(5, 18, 29, 0.24) 100%),
    linear-gradient(180deg, rgba(5, 18, 29, 0.04) 0%, rgba(5, 18, 29, 0.82) 100%);
}

.about-matters-copy,
.about-final-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: clamp(34px, 5vw, 68px);
}

.about-matters-copy .about-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.about-matters-copy h2,
.about-final-copy h2 {
  color: #ffffff;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.about-matters-copy p,
.about-final-copy p {
  max-width: 58ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.about-final-copy .hero-actions {
  margin-top: 30px;
}

.about-final-cta .button {
  background: #ffffff;
  color: var(--navy);
}

.about-final-cta .button:hover {
  background: #eff5f7;
}

.about-page [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 1180px) {
  .about-hero-inner,
  .about-story,
  .about-method,
  .about-leader-card,
  .about-leader-card-reverse {
    grid-template-columns: 1fr;
  }

  .about-hero-proof {
    max-width: 460px;
  }

  .about-story-media,
  .about-method-media,
  .about-leader-card figure {
    min-height: 420px;
  }

  .about-leader-card-reverse figure {
    order: initial;
  }

  .about-numbers,
  .about-timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .about-page main > section + section {
    margin-top: 46px;
  }

  .about-hero,
  .about-matters,
  .about-final-cta {
    width: min(calc(100vw - 28px), var(--max));
  }

  .about-hero {
    min-height: 620px;
  }

  .about-hero-inner {
    padding: 30px 24px;
  }

  .about-hero h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .about-story-copy h2,
  .about-section-heading h2,
  .about-method-copy h2,
  .about-matters-copy h2,
  .about-final-copy h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .about-focus-grid,
  .about-method-grid,
  .about-numbers,
  .about-timeline-list {
    grid-template-columns: 1fr;
  }

  .about-focus-card,
  .about-focus-card-wide {
    grid-column: auto;
    min-height: 360px;
  }

  .about-governance {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-matters,
  .about-final-cta {
    min-height: 500px;
  }
}

@media (max-width: 560px) {
  .about-hero {
    min-height: 660px;
    margin-top: 18px;
  }

  .about-hero h1 {
    max-width: 8ch;
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .about-hero p,
  .about-story-copy p:not(.about-kicker),
  .about-method-copy > p,
  .about-leader-copy p:not(.about-role),
  .about-matters-copy p,
  .about-final-copy p {
    font-size: 1rem;
  }

  .about-story-media,
  .about-method-media,
  .about-leader-card figure {
    min-height: 320px;
  }

  .about-method-grid article,
  .about-timeline,
  .about-timeline-list article,
  .about-governance,
  .about-leader-copy,
  .about-matters-copy,
  .about-final-copy {
    padding: 22px;
  }

  .about-leader-copy h3 {
    font-size: clamp(2.55rem, 14vw, 3.6rem);
  }

  .about-numbers article {
    min-height: 145px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page [data-reveal],
  .about-page [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }

  .about-focus-card video,
  .about-focus-card img,
  .about-leader-card img {
    transition: none;
  }
}

/* Housing Data Project product page */
.housing-product-page {
  --housing-dark: #061823;
  --housing-dark-2: #0a2331;
  --housing-panel: #0d2a3a;
  --housing-line: rgba(255, 255, 255, 0.16);
  --housing-teal: #1fb7aa;
  --housing-gold: #d8a84a;
  --housing-coral: #d9664f;
  --housing-blue: #3f80c2;
  --housing-paper: #f8fbfd;
  padding-bottom: 0;
  color: var(--ink);
}

.housing-product-page h1,
.housing-product-page h2,
.housing-product-page h3,
.housing-product-page p {
  letter-spacing: 0;
}

.housing-command-hero {
  position: relative;
  display: grid;
  align-items: end;
  width: 100vw;
  min-height: clamp(560px, calc(100svh - 108px), 820px);
  margin: -18px 0 0 calc(50% - 50vw);
  padding:
    clamp(76px, 10vw, 128px)
    max(24px, calc((100vw - var(--max)) / 2 + 24px))
    clamp(58px, 7vw, 88px);
  overflow: hidden;
  background: var(--housing-dark);
  color: #ffffff;
}

.housing-command-media {
  background: #153454;
}

.housing-command-media,
.housing-command-media::after,
.housing-command-grid {
  position: absolute;
  inset: 0;
}

.housing-command-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 24, 35, 0.94) 0%, rgba(6, 24, 35, 0.82) 38%, rgba(6, 24, 35, 0.48) 70%, rgba(6, 24, 35, 0.62) 100%),
    linear-gradient(180deg, rgba(6, 24, 35, 0.18) 0%, rgba(6, 24, 35, 0.78) 100%);
}

.housing-command-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.72;
  filter: saturate(0.82) contrast(1.05);
  transform: scale(1.02);
}

.housing-command-grid {
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 68% 34%, rgba(31, 183, 170, 0.18), transparent 18%);
  background-size: 72px 72px, 72px 72px, auto;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18));
}

.housing-command-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.housing-command-copy,
.housing-command-panel {
  min-width: 0;
}

.housing-command-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 6.3vw, 6.2rem);
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 20px 56px rgba(0, 0, 0, 0.38);
}

.housing-command-copy p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  line-height: 1.58;
}

.housing-command-copy .hero-actions {
  margin-top: 32px;
}

.housing-command-hero .button {
  background: var(--housing-teal);
  color: #04202b;
  box-shadow: 0 18px 48px rgba(31, 183, 170, 0.24);
}

.housing-command-hero .button-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.housing-command-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(6, 24, 35, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.housing-command-panel span {
  display: block;
  color: var(--housing-teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.housing-command-panel strong {
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 0.92;
}

.housing-command-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.housing-tool-stage,
.housing-stat-command,
.housing-why-section,
.housing-feature-section,
.housing-callout-section,
.housing-dashboard-section,
.housing-audience-section,
.housing-research-section,
.housing-video-story,
.housing-final-cta,
.housing-related-research {
  position: relative;
  width: min(calc(100vw - 48px), 1480px);
  margin-left: calc(50% - 50vw + 24px);
}

@media (min-width: 1529px) {
  .housing-tool-stage,
  .housing-stat-command,
  .housing-why-section,
  .housing-feature-section,
  .housing-callout-section,
  .housing-dashboard-section,
  .housing-audience-section,
  .housing-research-section,
  .housing-video-story,
  .housing-final-cta,
  .housing-related-research {
    margin-left: calc(50% - 740px);
  }
}

.housing-command-hero[data-reveal],
.housing-command-hero[data-reveal].is-visible,
.housing-tool-stage[data-reveal],
.housing-tool-stage[data-reveal].is-visible,
.housing-stat-command[data-reveal],
.housing-stat-command[data-reveal].is-visible,
.housing-why-section[data-reveal],
.housing-why-section[data-reveal].is-visible,
.housing-feature-section[data-reveal],
.housing-feature-section[data-reveal].is-visible,
.housing-callout-section[data-reveal],
.housing-callout-section[data-reveal].is-visible,
.housing-dashboard-section[data-reveal],
.housing-dashboard-section[data-reveal].is-visible,
.housing-audience-section[data-reveal],
.housing-audience-section[data-reveal].is-visible,
.housing-research-section[data-reveal],
.housing-research-section[data-reveal].is-visible,
.housing-video-story[data-reveal],
.housing-video-story[data-reveal].is-visible,
.housing-final-cta[data-reveal],
.housing-final-cta[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.housing-tool-stage {
  margin-top: clamp(34px, 5vw, 72px);
  padding: clamp(22px, 3vw, 38px);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #071b28 0%, #0a2230 100%);
  color: #ffffff;
  box-shadow: 0 26px 80px rgba(6, 24, 35, 0.22);
}

.housing-stage-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.housing-stage-heading h2,
.housing-stage-heading p {
  margin: 0;
}

.housing-stage-heading h2 {
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1;
}

.housing-stage-heading p {
  max-width: 760px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.62;
}

.housing-tool-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: #061823;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.housing-tool-chrome {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.housing-tool-chrome strong {
  min-width: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 0.94rem;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.housing-window-controls {
  display: flex;
  gap: 8px;
}

.housing-window-controls span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.housing-window-controls span:nth-child(1) {
  background: var(--housing-coral);
}

.housing-window-controls span:nth-child(2) {
  background: var(--housing-gold);
}

.housing-window-controls span:nth-child(3) {
  background: var(--housing-teal);
}

.housing-tool-frame {
  position: relative;
  min-height: clamp(620px, 68vw, 900px);
  background:
    linear-gradient(135deg, rgba(31, 183, 170, 0.12), transparent 36%),
    #04121b;
}

.housing-tool-preview-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: #04121b;
  object-fit: contain;
}

.housing-report-iframe {
  min-height: inherit;
}

.housing-iframe-fallback {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--housing-teal);
  color: #04202b;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(6, 24, 35, 0.2);
}

.housing-tool-label {
  position: absolute;
  z-index: 3;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(6, 24, 35, 0.82);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.housing-tool-label-one {
  top: 420px;
  right: 34px;
}

.housing-tool-label-two {
  bottom: 96px;
  left: 34px;
}

.housing-tool-label-three {
  right: 34px;
  bottom: 96px;
}

.housing-stat-command {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: var(--housing-dark);
  color: #ffffff;
  box-shadow: 0 22px 62px rgba(6, 24, 35, 0.16);
}

.housing-stat-command article {
  display: grid;
  min-height: 148px;
  align-content: center;
  justify-items: center;
  padding: 26px 18px;
  background:
    linear-gradient(180deg, rgba(9, 35, 50, 0.98), rgba(6, 24, 35, 0.98));
  text-align: center;
}

.housing-stat-value {
  display: block;
  color: #ffffff;
  font-size: clamp(1.9rem, 3.3vw, 3.5rem);
  line-height: 1;
  font-weight: 800;
}

.housing-stat-command p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.housing-why-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(52px, 8vw, 96px) 0;
}

.housing-why-copy h2,
.housing-feature-section h2,
.housing-callout-copy h2,
.housing-dashboard-copy h2,
.housing-audience-section h2,
.housing-research-copy h2,
.housing-video-copy h2,
.housing-final-cta h2,
.housing-related-research h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 1.02;
  text-wrap: balance;
}

.housing-why-copy > p,
.housing-dashboard-copy p,
.housing-research-copy p,
.housing-video-copy p,
.housing-final-cta p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.housing-human-list {
  color: var(--navy) !important;
  font-size: clamp(1.25rem, 2.1vw, 1.75rem) !important;
  font-weight: 800;
  line-height: 1.35 !important;
}

.housing-why-metrics {
  display: grid;
  gap: 14px;
}

.housing-why-metrics div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.housing-why-metrics span {
  display: block;
  color: var(--housing-coral);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  font-weight: 800;
}

.housing-why-metrics p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.housing-feature-section {
  padding: clamp(48px, 7vw, 78px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.housing-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.housing-feature-card {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.housing-feature-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--housing-teal);
}

.housing-feature-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.housing-feature-card:nth-child(2) .housing-feature-icon,
.housing-feature-card:nth-child(5) .housing-feature-icon {
  color: var(--housing-coral);
}

.housing-feature-card:nth-child(4) .housing-feature-icon,
.housing-feature-card:nth-child(6) .housing-feature-icon {
  color: var(--housing-blue);
}

.housing-feature-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.16;
}

.housing-feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.housing-callout-section,
.housing-dashboard-section,
.housing-research-section,
.housing-video-story,
.housing-final-cta {
  display: grid;
  grid-template-columns: minmax(320px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(46px, 7vw, 82px) clamp(24px, 4vw, 52px);
  border-radius: 12px;
}

.housing-callout-section,
.housing-video-story {
  background: var(--housing-paper);
}

.housing-callout-copy p {
  max-width: 42ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.68;
}

.housing-insight-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background:
    radial-gradient(circle at 70% 24%, rgba(31, 183, 170, 0.18), transparent 18%),
    linear-gradient(180deg, #071b28, #061823);
  box-shadow: 0 24px 68px rgba(6, 24, 35, 0.2);
}

.housing-preview-map-large {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
}

.housing-preview-map-large::before {
  content: "";
  position: absolute;
  inset: 10% 20% 8% 26%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 48% 42% 34% 58%;
  background:
    linear-gradient(135deg, rgba(31, 183, 170, 0.84), rgba(216, 168, 74, 0.72) 52%, rgba(217, 102, 79, 0.86));
  clip-path: polygon(38% 0, 62% 8%, 74% 23%, 70% 39%, 82% 56%, 74% 78%, 91% 100%, 64% 91%, 49% 66%, 38% 47%, 22% 33%, 25% 13%);
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.32));
}

.housing-preview-map-large span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.14),
    0 0 30px rgba(31, 183, 170, 0.7);
}

.housing-preview-map-large span:nth-child(1) { top: 24%; left: 48%; }
.housing-preview-map-large span:nth-child(2) { top: 36%; left: 57%; }
.housing-preview-map-large span:nth-child(3) { top: 52%; left: 55%; }
.housing-preview-map-large span:nth-child(4) { top: 66%; left: 61%; }
.housing-preview-map-large span:nth-child(5) { top: 78%; left: 68%; }

.housing-preview-panel {
  padding: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 18, 27, 0.74);
  color: #ffffff;
}

.housing-preview-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.housing-preview-panel strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.housing-preview-panel .deficit {
  margin: 14px 0 24px;
  color: var(--housing-coral);
  font-weight: 800;
  text-transform: uppercase;
}

.housing-preview-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.housing-preview-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.housing-preview-panel dt,
.housing-preview-panel dd {
  margin: 0;
}

.housing-preview-panel dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.housing-preview-panel dd {
  color: #ffffff;
  font-weight: 800;
}

.housing-dashboard-section {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.58fr);
  background:
    linear-gradient(180deg, #071b28, #061823);
  color: #ffffff;
}

.housing-demo-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #061823;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.26);
}

.housing-demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #04121b;
  object-fit: contain;
}

.housing-dashboard-copy h2,
.housing-dashboard-copy p {
  color: #ffffff;
}

.housing-dashboard-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.housing-dashboard-copy .dynamic-link {
  color: var(--housing-teal);
}

.housing-audience-section {
  padding: clamp(44px, 7vw, 74px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.housing-audience-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.housing-audience-grid span {
  display: grid;
  min-height: 104px;
  place-items: center;
  padding: 16px;
  background: #ffffff;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.housing-research-section {
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  background: #ffffff;
  border: 1px solid var(--line);
}

.housing-research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.housing-research-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
}

.housing-research-grid img {
  display: block;
  width: min(180px, 100%);
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.housing-research-grid strong {
  display: flex;
  align-items: center;
  min-height: 54px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.housing-research-grid h3 {
  margin: 30px 0 0;
  color: var(--navy);
  font-size: 1.18rem;
}

.housing-research-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.housing-video-story {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.58fr);
}

.housing-video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #061823;
  box-shadow: var(--shadow-md);
}

.housing-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #04121b;
  object-fit: contain;
}

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

.housing-related-research {
  padding-top: clamp(36px, 6vw, 72px);
}

.housing-final-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  background:
    linear-gradient(135deg, #071b28, #0b3140);
  color: #ffffff;
}

.housing-final-cta h2,
.housing-final-cta p {
  color: #ffffff;
}

.housing-final-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.housing-final-cta .hero-actions {
  justify-content: flex-end;
}

.housing-final-cta .button {
  background: var(--housing-teal);
  color: #04202b;
}

.housing-final-cta .button-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #ffffff;
}

@media (max-width: 1180px) {
  .housing-command-content,
  .housing-stage-heading,
  .housing-why-section,
  .housing-callout-section,
  .housing-dashboard-section,
  .housing-research-section,
  .housing-video-story,
  .housing-final-cta {
    grid-template-columns: 1fr;
  }

  .housing-stage-heading {
    align-items: start;
  }

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

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

  .housing-final-cta .hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 840px) {
  .housing-command-hero {
    min-height: auto;
    padding: 72px 20px 48px;
  }

  .housing-command-copy h1 {
    max-width: 8.2ch;
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .housing-command-copy p {
    font-size: 1.02rem;
  }

  .housing-product-page .housing-command-content,
  .housing-product-page .housing-command-copy,
  .housing-product-page .housing-command-panel {
    width: 100%;
    max-width: 100%;
  }

  .housing-product-page .housing-command-copy p {
    width: min(100%, 22rem);
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .housing-product-page .housing-command-copy .hero-actions,
  .housing-product-page .housing-command-hero .button,
  .housing-product-page .housing-command-panel {
    width: min(100%, 22rem);
    max-width: 22rem;
  }

  .housing-tool-stage,
  .housing-stat-command,
  .housing-why-section,
  .housing-feature-section,
  .housing-callout-section,
  .housing-dashboard-section,
  .housing-audience-section,
  .housing-research-section,
  .housing-video-story,
  .housing-final-cta,
  .housing-related-research {
    width: min(calc(100vw - 28px), 1480px);
    margin-left: calc(50% - 50vw + 14px);
  }

  .housing-tool-frame {
    min-height: clamp(420px, 82vw, 660px);
  }

  .housing-tool-chrome {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .housing-tool-chrome > span {
    display: none;
  }

  .housing-tool-label {
    display: none;
  }

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

  .housing-feature-grid,
  .housing-research-grid {
    grid-template-columns: 1fr;
  }

  .housing-feature-card {
    min-height: auto;
  }

  .housing-insight-preview {
    grid-template-columns: 1fr;
  }

  .housing-preview-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

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

  .housing-callout-section,
  .housing-dashboard-section,
  .housing-research-section,
  .housing-video-story,
  .housing-final-cta {
    padding: 28px 20px;
  }
}

@media (max-width: 560px) {
  .housing-command-copy .hero-actions,
  .housing-stage-heading .button,
  .housing-final-cta .hero-actions {
    align-items: stretch;
    width: 100%;
  }

  .housing-command-hero .button,
  .housing-tool-stage .button,
  .housing-final-cta .button {
    width: 100%;
  }

  .housing-tool-stage {
    padding: 14px;
  }

  .housing-tool-frame {
    min-height: 360px;
  }

  .housing-iframe-fallback {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
  }

  .housing-stat-command {
    grid-template-columns: 1fr;
  }

  .housing-audience-grid {
    grid-template-columns: 1fr;
  }

  .housing-preview-map-large {
    min-height: 320px;
  }

  .housing-why-copy h2,
  .housing-feature-section h2,
  .housing-callout-copy h2,
  .housing-dashboard-copy h2,
  .housing-audience-section h2,
  .housing-research-copy h2,
  .housing-video-copy h2,
  .housing-final-cta h2,
  .housing-related-research h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .housing-command-grid {
    background-position: 0 0;
  }
}

/* Housing Data Project minimal frame refresh */
.housing-data-page {
  background: #ffffff;
}

.housing-product-page {
  --housing-accent: #1d74a7;
  --housing-accent-soft: rgba(29, 116, 167, 0.1);
  --housing-green: #2c8d72;
  --housing-surface: #f7fafc;
  --housing-line-soft: rgba(13, 35, 52, 0.1);
  --housing-shadow: 0 24px 70px rgba(13, 35, 52, 0.1);
  display: grid;
  gap: clamp(44px, 7vw, 88px);
  padding: clamp(54px, 7vw, 92px) 0 clamp(76px, 9vw, 118px);
  background: #ffffff;
}

.housing-product-page h1,
.housing-product-page h2,
.housing-product-page h3,
.housing-product-page p,
.housing-product-page a,
.housing-product-page span,
.housing-product-page strong {
  letter-spacing: 0;
}

.housing-hero,
.housing-tool-stage,
.housing-research-section,
.housing-final-cta {
  width: 100%;
  margin: 0;
}

.housing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  min-height: min(720px, calc(100svh - 156px));
}

.housing-hero-copy {
  max-width: 680px;
}

.housing-hero-copy h1,
.housing-section-heading h2,
.housing-final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Open Sans", sans-serif;
  font-size: clamp(3.6rem, 7vw, 6.7rem);
  line-height: 0.96;
  font-weight: 800;
  text-wrap: balance;
}

.housing-hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.16rem, 1.8vw, 1.48rem);
  line-height: 1.58;
}

.housing-product-page .hero-actions {
  margin-top: 30px;
  gap: 12px;
}

.housing-product-page .button {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.96rem;
  letter-spacing: 0;
  box-shadow: none;
}

.housing-product-page .button:hover {
  background: #17374d;
  box-shadow: 0 14px 34px rgba(13, 35, 52, 0.14);
}

.housing-product-page .button-outline {
  border-color: rgba(13, 35, 52, 0.18);
  background: #ffffff;
  color: var(--navy);
}

.housing-product-page .button-outline:hover {
  background: var(--housing-surface);
  color: var(--navy);
}

.housing-hero-visual {
  min-width: 0;
}

.housing-hero-map-panel {
  position: relative;
  min-height: clamp(380px, 42vw, 520px);
  overflow: hidden;
  border: 1px solid var(--housing-line-soft);
  border-radius: 18px;
  background:
    radial-gradient(circle at 72% 18%, rgba(29, 116, 167, 0.13), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f2f7fb 100%);
  box-shadow: var(--housing-shadow);
}

.housing-hero-map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.54;
  background-image:
    linear-gradient(rgba(13, 35, 52, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 35, 52, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.16));
}

.housing-state-shape {
  position: absolute;
  inset: 15% 22% 12% 26%;
  border: 1px solid rgba(13, 35, 52, 0.12);
  border-radius: 46% 40% 35% 56%;
  background:
    linear-gradient(145deg, rgba(29, 116, 167, 0.96), rgba(44, 141, 114, 0.82) 58%, rgba(13, 35, 52, 0.96));
  clip-path: polygon(36% 0, 62% 8%, 77% 25%, 70% 42%, 82% 57%, 74% 77%, 92% 100%, 64% 91%, 50% 66%, 38% 48%, 20% 32%, 25% 12%);
  filter: drop-shadow(0 22px 40px rgba(13, 35, 52, 0.2));
  animation: housingFloat 8s ease-in-out infinite;
}

.housing-state-shape::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(115deg, transparent 0 22%, rgba(255, 255, 255, 0.52) 22% 23%, transparent 23% 100%),
    linear-gradient(18deg, transparent 0 35%, rgba(255, 255, 255, 0.34) 35% 36%, transparent 36% 100%),
    linear-gradient(74deg, transparent 0 48%, rgba(255, 255, 255, 0.34) 48% 49%, transparent 49% 100%);
}

.housing-state-shape span {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.2),
    0 0 24px rgba(255, 255, 255, 0.65);
}

.housing-state-shape span:nth-child(1) { top: 18%; left: 46%; }
.housing-state-shape span:nth-child(2) { top: 32%; left: 58%; }
.housing-state-shape span:nth-child(3) { top: 49%; left: 51%; }
.housing-state-shape span:nth-child(4) { top: 65%; left: 62%; }
.housing-state-shape span:nth-child(5) { top: 79%; left: 70%; }

.housing-mini-card,
.housing-chart-card {
  position: absolute;
  border: 1px solid rgba(13, 35, 52, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(13, 35, 52, 0.12);
}

.housing-mini-card {
  min-width: 148px;
  padding: 16px 18px;
}

.housing-mini-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 800;
}

.housing-mini-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.housing-mini-card-top {
  top: 34px;
  right: 34px;
}

.housing-mini-card-bottom {
  left: 36px;
  bottom: 36px;
}

.housing-chart-card {
  right: 38px;
  bottom: 40px;
  display: grid;
  grid-template-columns: repeat(4, 18px);
  align-items: end;
  gap: 8px;
  height: 96px;
  padding: 18px;
}

.housing-chart-card span {
  display: block;
  width: 18px;
  border-radius: 999px 999px 4px 4px;
  background: var(--housing-accent);
}

.housing-chart-card span:nth-child(1) { height: 30px; opacity: 0.34; }
.housing-chart-card span:nth-child(2) { height: 46px; opacity: 0.48; }
.housing-chart-card span:nth-child(3) { height: 62px; opacity: 0.72; }
.housing-chart-card span:nth-child(4) { height: 40px; background: var(--housing-green); }

.housing-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--housing-line-soft);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 42px rgba(13, 35, 52, 0.06);
}

.housing-stat-row article {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--housing-line-soft);
}

.housing-stat-row article:last-child {
  border-right: 0;
}

.housing-stat-row strong,
.housing-stat-row span {
  display: block;
}

.housing-stat-row strong {
  color: var(--navy);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.1;
  font-weight: 800;
}

.housing-stat-row span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.housing-tool-stage {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--housing-line-soft);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--housing-shadow);
}

.housing-section-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.housing-section-label {
  margin: 0 0 12px;
  color: var(--housing-accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.housing-section-heading h2,
.housing-final-cta h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.8rem);
}

.housing-section-heading p:not(.housing-section-label) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.housing-tool-shell {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 72vw, 910px);
  border: 1px solid rgba(13, 35, 52, 0.12);
  border-radius: 14px;
  background: var(--housing-surface);
}

.housing-report-iframe {
  display: block;
  width: 100%;
  height: clamp(620px, 72vw, 910px);
  border: 0;
  background: #ffffff;
}

.housing-iframe-fallback {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(13, 35, 52, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(13, 35, 52, 0.12);
}

.housing-research-section {
  display: block;
  padding: clamp(4px, 2vw, 18px) 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

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

.housing-research-card {
  min-width: 0;
}

.housing-research-card a {
  display: grid;
  height: 100%;
  padding: 14px;
  border: 1px solid var(--housing-line-soft);
  border-radius: 14px;
  background: #ffffff;
  color: inherit;
  box-shadow: 0 14px 34px rgba(13, 35, 52, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.housing-research-card a:hover {
  border-color: rgba(29, 116, 167, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(13, 35, 52, 0.1);
}

.housing-research-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  object-fit: cover;
  background: var(--housing-surface);
}

.housing-research-card span {
  margin-top: 18px;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.22;
}

.housing-research-card p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.52;
}

.housing-research-card strong {
  align-self: end;
  color: var(--housing-accent);
  font-size: 0.86rem;
  font-weight: 800;
}

.housing-final-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--housing-line-soft);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(29, 116, 167, 0.08), rgba(44, 141, 114, 0.06)),
    #ffffff;
}

.housing-final-cta h2 {
  max-width: 760px;
}

.housing-final-cta .hero-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
  margin-top: 0;
}

@keyframes housingFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }

  50% {
    transform: translate3d(0, -8px, 0) rotate(-1deg);
  }
}

@media (max-width: 1040px) {
  .housing-hero,
  .housing-final-cta {
    grid-template-columns: 1fr;
  }

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

  .housing-final-cta {
    display: grid;
  }

  .housing-final-cta .hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .housing-product-page {
    gap: 28px;
    padding-top: 44px;
  }

  .housing-hero-copy h1 {
    font-size: clamp(3.15rem, 13vw, 4.7rem);
  }

  .housing-hero-map-panel {
    min-height: 240px;
  }

  .housing-stat-row,
  .housing-research-grid {
    grid-template-columns: 1fr;
  }

  .housing-stat-row article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--housing-line-soft);
  }

  .housing-stat-row article:last-child {
    border-bottom: 0;
  }

  .housing-tool-stage {
    padding: 16px;
  }

  .housing-tool-shell,
  .housing-report-iframe {
    min-height: 560px;
    height: 560px;
  }
}

@media (max-width: 560px) {
  .housing-hero-copy p {
    font-size: 1.05rem;
  }

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

  .housing-mini-card {
    min-width: 122px;
    padding: 13px 14px;
  }

  .housing-mini-card strong {
    font-size: 1.55rem;
  }

  .housing-mini-card-top {
    top: 18px;
    right: 18px;
  }

  .housing-mini-card-bottom {
    left: 18px;
    bottom: 18px;
  }

  .housing-chart-card {
    right: 18px;
    bottom: 18px;
    height: 76px;
    padding: 14px;
  }

  .housing-state-shape {
    inset: 17% 19% 16% 20%;
  }

  .housing-iframe-fallback {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
  }

  .housing-final-cta {
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .housing-state-shape {
    animation: none;
  }
}

/* Research intelligence hub */
.research-page main {
  padding-top: 0;
}

.research-page main > section + section {
  margin-top: clamp(42px, 6vw, 76px);
}

.research-hero {
  position: relative;
  width: 100vw;
  min-height: clamp(560px, calc(100svh - 98px), 720px);
  margin: 0 0 0 calc(50% - 50vw);
  padding:
    clamp(44px, 5vw, 70px)
    max(24px, calc((100vw - var(--max)) / 2 + 24px))
    clamp(32px, 4vw, 48px);
  display: grid;
  align-content: center;
  gap: clamp(24px, 3.4vw, 42px);
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(65, 140, 220, 0.24);
  border-radius: 0;
  background:
    radial-gradient(circle at 74% 16%, rgba(39, 119, 219, 0.24), transparent 30%),
    linear-gradient(135deg, #031827 0%, #06233a 48%, #020b14 100%);
  color: #ffffff;
  box-shadow: none;
}

.research-hero::before,
.research-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.research-hero::before {
  background:
    linear-gradient(90deg, rgba(2, 11, 20, 0.98) 0%, rgba(3, 22, 38, 0.88) 42%, rgba(3, 22, 38, 0.34) 76%, rgba(2, 10, 18, 0.72) 100%),
    linear-gradient(180deg, rgba(4, 21, 36, 0.26) 0%, rgba(2, 10, 18, 0.84) 100%);
}

.research-hero::after {
  background:
    linear-gradient(rgba(64, 143, 229, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 143, 229, 0.04) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 78%, transparent 100%);
  opacity: 0.4;
}

.research-hero-media,
.research-hero-image {
  position: absolute;
  inset: 0;
}

.research-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 54%;
  border: 0;
  filter: grayscale(1) saturate(0.7) contrast(1.12);
  opacity: 0.22;
}

.research-data-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.5;
  pointer-events: none;
}

.research-data-overlay::before,
.research-data-overlay::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.research-data-overlay::before {
  top: 14%;
  left: 42%;
  width: min(28vw, 390px);
  height: min(22vw, 300px);
  background:
    linear-gradient(180deg, rgba(38, 128, 243, 0.32), rgba(38, 128, 243, 0)) 8% 72% / 8% 34% no-repeat,
    linear-gradient(180deg, rgba(38, 128, 243, 0.42), rgba(38, 128, 243, 0)) 18% 62% / 8% 44% no-repeat,
    linear-gradient(180deg, rgba(38, 128, 243, 0.5), rgba(38, 128, 243, 0)) 28% 50% / 8% 56% no-repeat,
    linear-gradient(180deg, rgba(38, 128, 243, 0.38), rgba(38, 128, 243, 0)) 38% 66% / 8% 40% no-repeat,
    linear-gradient(180deg, rgba(38, 128, 243, 0.56), rgba(38, 128, 243, 0)) 48% 42% / 8% 64% no-repeat,
    radial-gradient(circle at center, rgba(52, 143, 255, 0.55) 1.5px, transparent 2px);
  background-size:
    8% 34%,
    8% 44%,
    8% 56%,
    8% 40%,
    8% 64%,
    12px 12px;
  mask-image: linear-gradient(90deg, #000 0%, #000 70%, transparent 100%);
}

.research-data-overlay::after {
  top: 25%;
  left: 49%;
  width: min(25vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(49, 137, 235, 0.26);
  border-radius: 50%;
  background:
    conic-gradient(from 30deg, rgba(49, 137, 235, 0.45) 0 28%, transparent 28% 45%, rgba(49, 137, 235, 0.18) 45% 68%, transparent 68% 100%);
  mask-image: radial-gradient(circle, transparent 0 45%, #000 46% 100%);
  opacity: 0.56;
}

.research-data-overlay span {
  position: absolute;
  left: 48%;
  width: min(42vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, rgba(48, 137, 239, 0), rgba(48, 137, 239, 0.78), rgba(255, 255, 255, 0));
  transform: rotate(-28deg);
  transform-origin: left;
}

.research-data-overlay span:nth-child(1) {
  top: 20%;
}

.research-data-overlay span:nth-child(2) {
  top: 32%;
  left: 56%;
}

.research-data-overlay span:nth-child(3) {
  top: 50%;
  left: 50%;
}

.research-data-overlay span:nth-child(4) {
  top: 64%;
  left: 60%;
}

.research-data-overlay span:nth-child(5) {
  top: 78%;
  left: 46%;
}

.research-hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 4vw, 68px);
  align-items: center;
  width: 100%;
}

.research-hero-copy {
  max-width: 720px;
}

.research-hero-eyebrow {
  position: relative;
  width: fit-content;
  margin: 0 0 clamp(30px, 4vw, 42px);
  color: #338bff;
  font-size: clamp(0.76rem, 1vw, 0.92rem);
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.research-hero-eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 64px;
  height: 3px;
  background: #338bff;
}

.research-hero h1 {
  max-width: 13.5ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.25rem, 5.2vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
}

.research-hero h1 span {
  display: block;
}

.research-page[data-research-category="better-government"] .research-hero h1 {
  max-width: 14.2ch;
  font-size: clamp(3.05rem, 4.8vw, 5.25rem);
}

.research-hero .page-intro {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.32vw, 1.2rem);
  line-height: 1.58;
}

.research-hero .hero-actions {
  margin-top: 28px;
  gap: 16px;
}

.research-hero .button {
  min-height: 56px;
  padding-inline: 26px;
  border-color: rgba(71, 148, 249, 0.5);
  background: linear-gradient(135deg, #2f83ff, #1754c7);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(16, 86, 199, 0.36);
}

.research-hero .button span {
  margin-left: 14px;
  font-size: 1.26em;
  line-height: 1;
}

.research-hero .button-ghost {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(2, 15, 28, 0.28);
  color: #ffffff;
  box-shadow: none;
}

.research-hero .button:hover,
.research-hero .button-ghost:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--navy);
}

.research-hero-visual {
  position: relative;
  min-height: clamp(330px, 32vw, 460px);
}

.research-chart-hud {
  position: absolute;
  top: 6%;
  left: -4%;
  z-index: 2;
  width: min(29vw, 390px);
  aspect-ratio: 1.14;
  opacity: 0.55;
}

.research-chart-hud::before,
.research-chart-hud::after,
.research-chart-hud span {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
}

.research-chart-hud::before {
  inset: 22% 16% 16% 8%;
  border: 1px solid rgba(54, 139, 248, 0.28);
  border-radius: 50%;
  background: conic-gradient(from 15deg, rgba(54, 139, 248, 0.58) 0 24%, rgba(54, 139, 248, 0.12) 24% 62%, transparent 62% 100%);
  mask-image: radial-gradient(circle, transparent 0 49%, #000 50%);
}

.research-chart-hud::after {
  top: 0;
  right: 0;
  width: 64%;
  height: 54%;
  background:
    linear-gradient(180deg, rgba(56, 144, 255, 0.14), rgba(56, 144, 255, 0)) 0 100% / 11% 44% no-repeat,
    linear-gradient(180deg, rgba(56, 144, 255, 0.22), rgba(56, 144, 255, 0)) 17% 100% / 11% 62% no-repeat,
    linear-gradient(180deg, rgba(56, 144, 255, 0.32), rgba(56, 144, 255, 0)) 34% 100% / 11% 76% no-repeat,
    linear-gradient(180deg, rgba(56, 144, 255, 0.2), rgba(56, 144, 255, 0)) 51% 100% / 11% 54% no-repeat,
    linear-gradient(180deg, rgba(56, 144, 255, 0.38), rgba(56, 144, 255, 0)) 68% 100% / 11% 82% no-repeat,
    linear-gradient(180deg, rgba(56, 144, 255, 0.46), rgba(56, 144, 255, 0)) 85% 100% / 11% 96% no-repeat;
}

.research-chart-hud span {
  width: 56%;
  height: 1px;
  background: linear-gradient(90deg, rgba(60, 145, 248, 0), rgba(60, 145, 248, 0.64), rgba(60, 145, 248, 0));
  transform-origin: left;
}

.research-chart-hud span:nth-child(1) {
  top: 11%;
  left: 44%;
  transform: rotate(128deg);
}

.research-chart-hud span:nth-child(2) {
  top: 22%;
  left: 74%;
  transform: rotate(116deg);
}

.research-chart-hud span:nth-child(3) {
  top: 37%;
  left: 86%;
  transform: rotate(148deg);
}

.research-report-scene {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.research-report-stack {
  position: absolute;
  top: 6%;
  right: 3%;
  width: min(24vw, 310px);
  aspect-ratio: 0.74;
  transform: rotate(-8deg);
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.42));
}

.research-report-sheet {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: linear-gradient(145deg, #f7f9fb, #c8d0dc);
}

.research-report-sheet-back {
  transform: translate(34px, 28px) rotate(4deg);
  opacity: 0.7;
}

.research-report-sheet-front {
  display: grid;
  align-content: start;
  gap: clamp(10px, 1.2vw, 18px);
  padding: clamp(24px, 3.3vw, 46px);
  color: #0b2441;
  box-shadow:
    inset 14px 0 22px rgba(8, 28, 48, 0.08),
    inset -1px 0 0 rgba(255, 255, 255, 0.8);
}

.research-report-sheet-front img {
  width: min(58%, 210px);
  height: auto;
}

.research-report-label,
.research-report-kicker {
  color: #1d5f9e;
  font-size: clamp(0.56rem, 0.8vw, 0.78rem);
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.research-report-sheet-front strong {
  max-width: 13ch;
  color: #0b2441;
  font-size: clamp(1.04rem, 1.45vw, 1.55rem);
  line-height: 1.08;
}

.research-report-rule {
  display: block;
  width: 86%;
  height: 1px;
  background: rgba(11, 36, 65, 0.28);
}

.florida-dot-map {
  justify-self: end;
  width: min(48%, 190px);
  aspect-ratio: 0.72;
  margin-top: auto;
  background: radial-gradient(circle, #2197dc 1.7px, transparent 2px) 0 0 / 10px 10px;
  clip-path: polygon(5% 0, 66% 2%, 60% 16%, 72% 26%, 71% 44%, 82% 53%, 88% 71%, 96% 89%, 85% 100%, 72% 91%, 64% 72%, 48% 61%, 41% 43%, 24% 43%, 18% 30%, 0 28%);
}

.research-coffee {
  position: absolute;
  top: 3%;
  right: 1%;
  width: clamp(78px, 8vw, 118px);
  aspect-ratio: 1;
  border: 3px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #01070d 0 52%, transparent 54%),
    radial-gradient(circle at 45% 46%, #0c1d2d 0 63%, #111822 64% 100%);
  box-shadow: 0 26px 36px rgba(0, 0, 0, 0.34);
}

.research-coffee::after {
  content: "";
  position: absolute;
  top: 28%;
  right: -19%;
  width: 34%;
  height: 40%;
  border: 12px solid #111822;
  border-left: 0;
  border-radius: 0 999px 999px 0;
  transform: rotate(14deg);
}

.research-pen {
  position: absolute;
  right: 4%;
  bottom: 10%;
  width: 18px;
  height: clamp(130px, 14vw, 190px);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.52), transparent 36%),
    linear-gradient(180deg, #07111d 0 55%, #1a2430 55% 100%);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.28);
  transform: rotate(-8deg);
}

.research-hero-brief {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: grid;
  gap: 12px;
  width: min(32vw, 390px);
  min-width: 260px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(3, 18, 31, 0.76);
  color: #ffffff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.research-brief-label {
  color: #6eb2ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.research-hero-brief strong {
  color: #ffffff;
  font-size: clamp(1.05rem, 1.36vw, 1.2rem);
  line-height: 1.2;
}

.research-hero-brief p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.research-hero-metrics {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: calc(var(--max) - 48px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(191, 215, 245, 0.22);
  border-radius: 8px;
  background: rgba(2, 18, 33, 0.54);
  backdrop-filter: blur(16px);
}

.research-hero-metrics article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 116px;
  padding: 22px clamp(18px, 3vw, 34px);
}

.research-hero-metrics article + article {
  border-left: 1px solid rgba(191, 215, 245, 0.22);
}

.research-metric-icon {
  position: relative;
  display: block;
  width: 58px;
  aspect-ratio: 1;
  border: 1px solid rgba(180, 212, 255, 0.74);
  border-radius: 50%;
  background: rgba(32, 92, 171, 0.2);
}

.research-metric-icon::before,
.research-metric-icon::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 4px;
}

.research-metric-icon::after {
  inset: 25px 18px 17px;
  border-top: 0;
}

.research-hero-metrics article:nth-child(2) .research-metric-icon::before {
  inset: 18px 12px 22px;
  border-radius: 999px 999px 4px 4px;
}

.research-hero-metrics article:nth-child(2) .research-metric-icon::after {
  inset: 16px 24px 24px 12px;
  border-radius: 50%;
}

.research-hero-metrics article:nth-child(3) .research-metric-icon::before {
  inset: 26px 14px 16px;
  border-radius: 2px;
}

.research-hero-metrics article:nth-child(3) .research-metric-icon::after {
  inset: 15px 20px 30px;
  border-radius: 50% 50% 0 0;
  border-bottom: 0;
}

.research-hero-metrics strong {
  display: block;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.research-hero-metrics p {
  max-width: 26ch;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.research-hero + .research-intel-strip {
  margin-top: clamp(28px, 4vw, 48px);
}

.research-intel-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.research-intel-strip span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.research-intel-strip strong {
  color: var(--navy);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.35;
}

.research-feature-section,
.research-grid-section,
.research-sourced-section {
  padding-block: 4px;
}

.research-grid-section {
  scroll-margin-top: 224px;
}

.research-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 20px;
  align-items: stretch;
}

.featured-report-card,
.research-report-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.featured-report-card:hover,
.research-report-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 125, 132, 0.32);
  box-shadow: var(--shadow-md);
}

.featured-report-card.is-primary {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 460px;
  background:
    linear-gradient(135deg, rgba(7, 25, 38, 0.98), rgba(20, 52, 74, 0.98));
  color: #ffffff;
}

.featured-report-card.is-primary .featured-report-copy {
  align-self: end;
}

.featured-secondary-stack {
  display: grid;
  gap: 20px;
}

.featured-report-media,
.research-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--surface-muted);
}

.featured-report-media.is-empty,
.research-card-media.is-empty {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(224, 233, 239, 0.78)),
    var(--surface-muted);
}

.featured-report-media {
  min-height: 100%;
}

.featured-secondary-stack .featured-report-media,
.research-card-media {
  aspect-ratio: 16 / 9;
}

.featured-report-media img,
.research-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease;
}

.featured-report-media img[src*="crop-veteran-reports-1-bef83358"],
.research-card-media img[src*="crop-veteran-reports-1-bef83358"] {
  object-position: center top;
  transform-origin: center top;
}

.featured-report-card:hover .featured-report-media img,
.research-report-card:hover .research-card-media img {
  transform: scale(1.045);
}

.featured-report-copy,
.research-card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.featured-report-card.is-primary .featured-report-copy {
  padding: clamp(28px, 4vw, 44px);
}

.featured-report-card.is-primary .dynamic-card-tag {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.featured-report-card.is-primary .dynamic-card-date,
.featured-report-card.is-primary p {
  color: rgba(255, 255, 255, 0.78);
}

.featured-report-card h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.55rem, 2.7vw, 2.85rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.featured-secondary-stack .featured-report-card h3 {
  font-size: 1.35rem;
  line-height: 1.14;
}

.featured-report-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.research-sticky-bar {
  position: sticky;
  top: 88px;
  z-index: 30;
  display: grid;
  grid-template-columns:
    minmax(240px, 0.95fr)
    minmax(300px, 1fr)
    minmax(300px, 0.95fr)
    auto;
  gap: 10px 14px;
  align-items: end;
  padding: 12px 16px;
  border: 1px solid rgba(13, 35, 52, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(11, 33, 48, 0.08);
}

.research-sticky-bar .research-topic-nav,
.research-sticky-bar .research-search,
.research-sticky-bar .research-type-nav,
.research-sticky-bar .content-toolbar {
  grid-column: auto;
  min-width: 0;
}

.research-sticky-bar .research-filter-block,
.research-sticky-bar .research-search {
  gap: 6px;
}

.research-sticky-bar .mini-label,
.research-sticky-bar .search-label {
  margin: 0;
  font-size: 0.66rem;
  line-height: 1;
  letter-spacing: 0.11em;
}

.research-sticky-bar .filter-chips {
  gap: 6px;
}

.research-sticky-bar .content-toolbar {
  justify-content: flex-end;
  align-self: end;
  margin-bottom: 0;
}

.research-sticky-bar .results-meta {
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  white-space: nowrap;
  font-size: 0.82rem;
}

.research-page .filter-chip {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.76rem;
}

.research-page .filter-chip:hover,
.research-page .filter-chip.is-active {
  transform: translateY(-1px);
  border-color: var(--navy);
  background: var(--navy);
  color: #ffffff;
}

.research-page .filter-chip[data-category="Insurance"].is-active,
.research-page .filter-chip[data-category="Insurance"]:hover {
  border-color: var(--teal);
  background: var(--teal);
}

.research-search input {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.92rem;
}

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

.research-report-card {
  display: grid;
  padding: 0;
}

.research-report-card.is-lead {
  grid-column: span 2;
  grid-row: span 2;
}

.research-report-card.is-lead .research-card-body {
  padding: 28px;
}

.research-report-card.is-lead h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.55rem);
}

.research-report-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.research-report-card p {
  margin: 0;
  display: -webkit-box;
  color: var(--muted);
  line-height: 1.56;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.research-card-body .dynamic-link {
  margin-top: 2px;
}

.research-stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(8, 28, 42, 0.98), rgba(22, 58, 79, 0.96));
  color: #ffffff;
}

.research-stat-band article {
  min-height: 190px;
  padding: clamp(22px, 3vw, 32px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

.stat-value {
  display: block;
  margin-bottom: 16px;
  color: #f4d6a4;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 0.95;
}

.research-stat-band p {
  max-width: 22ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.research-insight-band {
  padding: clamp(36px, 6vw, 72px);
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(237, 244, 247, 0.96), rgba(255, 255, 255, 0.98));
}

.research-insight-band h2 {
  max-width: 860px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.research-insight-band p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.66;
}

.research-video-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 10px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.research-video-copy h2,
.research-newsletter h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.research-video-copy p:not(.eyebrow),
.research-newsletter p {
  color: var(--muted);
  line-height: 1.66;
}

.research-video-frame {
  overflow: hidden;
  border-radius: 10px;
  background: #081b29;
  box-shadow: var(--shadow-md);
}

.research-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.research-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #081b29;
}

.research-sourced-section {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.sourced-grid-compact .research-report-card.is-lead {
  grid-row: auto;
}

.research-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.68fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(8, 28, 42, 0.98), rgba(22, 58, 79, 0.96));
  color: #ffffff;
}

.research-newsletter .eyebrow,
.research-newsletter h2 {
  color: #ffffff;
}

.research-newsletter p {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.78);
}

.research-newsletter .newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.research-newsletter .newsletter-form input {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  outline: 0;
}

.research-newsletter .newsletter-form input:focus {
  border-color: #f4d6a4;
  box-shadow: 0 0 0 4px rgba(244, 214, 164, 0.16);
}

.research-newsletter .newsletter-form .button {
  background: #ffffff;
  color: var(--navy);
}

.research-newsletter .newsletter-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

@media (max-width: 1220px) {
  .research-sticky-bar {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  }

  .research-sticky-bar .research-topic-nav,
  .research-sticky-bar .content-toolbar {
    grid-column: 1 / -1;
  }

  .research-sticky-bar .content-toolbar {
    justify-content: flex-start;
  }

  .research-sticky-bar .results-meta {
    flex-direction: row;
    align-items: center;
    white-space: normal;
  }
}

@media (max-width: 1080px) {
  .research-hero-content,
  .research-feature-layout,
  .featured-report-card.is-primary,
  .research-video-feature,
  .research-newsletter {
    grid-template-columns: 1fr;
  }

  .research-hero {
    min-height: auto;
    padding-top: clamp(52px, 8vw, 72px);
  }

  .research-hero-copy {
    max-width: 760px;
  }

  .research-hero-visual {
    width: min(100%, 760px);
    min-height: 430px;
    justify-self: center;
  }

  .research-hero-brief {
    right: auto;
    left: 0;
    width: min(48vw, 380px);
    max-width: 520px;
  }

  .research-report-stack {
    right: 3%;
    width: min(54vw, 430px);
  }

  .research-chart-hud {
    width: min(44vw, 360px);
  }

  .research-hero-metrics {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .research-hero-metrics article + article {
    border-top: 1px solid rgba(191, 215, 245, 0.22);
    border-left: 0;
  }

  .featured-report-media {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

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

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

  .research-stat-band article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 840px) {
  .research-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: auto;
    padding: 46px 24px 30px;
    border-radius: 0;
  }

  .research-hero h1 {
    max-width: 8.6ch;
    font-size: clamp(3.1rem, 13vw, 5.4rem);
  }

  .research-page[data-research-category="better-government"] .research-hero h1 {
    max-width: 10.5ch;
    font-size: clamp(3rem, 12vw, 4.6rem);
  }

  .research-hero .page-intro {
    max-width: 42rem;
  }

  .research-hero-visual {
    display: grid;
    gap: 24px;
    min-height: auto;
  }

  .research-chart-hud {
    display: none;
  }

  .research-report-scene {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    min-height: 390px;
  }

  .research-report-stack {
    top: 13%;
    right: 8%;
    width: min(70vw, 350px);
  }

  .research-coffee {
    top: 2%;
    right: 2%;
    width: 86px;
  }

  .research-pen {
    display: none;
  }

  .research-hero-brief {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .research-intel-strip,
  .research-sticky-bar {
    grid-template-columns: 1fr;
  }

  .research-grid-section {
    scroll-margin-top: 96px;
  }

  .research-sticky-bar {
    position: relative;
    top: auto;
  }

  .research-sticky-bar .research-topic-nav,
  .research-sticky-bar .content-toolbar {
    grid-column: auto;
  }

  .research-magazine-grid,
  .research-stat-band {
    grid-template-columns: 1fr;
  }

  .research-report-card.is-lead {
    grid-column: auto;
    grid-row: auto;
  }

  .research-stat-band article,
  .research-stat-band article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .research-stat-band article:last-child {
    border-bottom: 0;
  }

  .research-newsletter .newsletter-form {
    grid-template-columns: 1fr;
  }

  .research-newsletter .newsletter-form .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .research-hero,
  .research-video-feature,
  .research-sourced-section,
  .research-newsletter,
  .research-insight-band {
    padding: 22px;
  }

  .research-hero {
    padding: 38px 18px 24px;
  }

  .research-hero-eyebrow {
    margin-bottom: 28px;
    font-size: 0.72rem;
  }

  .research-hero-eyebrow::after {
    bottom: -14px;
    width: 54px;
  }

  .research-hero h1 {
    max-width: 8.3ch;
    font-size: clamp(2.78rem, 15vw, 4.35rem);
  }

  .research-page[data-research-category="better-government"] .research-hero h1 {
    max-width: 9.2ch;
    font-size: clamp(2.55rem, 14vw, 3.75rem);
  }

  .research-hero .hero-actions {
    gap: 12px;
  }

  .research-report-scene {
    min-height: 310px;
  }

  .research-report-stack {
    right: 7%;
    width: min(78vw, 285px);
  }

  .research-report-sheet-front {
    padding: 22px;
  }

  .research-coffee {
    width: 70px;
  }

  .research-hero-brief,
  .featured-report-copy,
  .research-card-body {
    padding: 20px;
  }

  .research-hero-metrics article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .research-metric-icon {
    width: 46px;
  }

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

  .research-intel-strip {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-report-media img,
  .research-card-media img {
    transition: none;
  }
}

/* Cinematic initiatives page */
.initiatives-page {
  --initiative-dark: #07141d;
  --initiative-blue: #123246;
  --initiative-teal: #69d0c6;
  --initiative-gold: #d5a54d;
  --initiative-coral: #c86854;
  --initiative-mist: #eef5f6;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 34%, #ffffff 100%);
}

.initiatives-main {
  padding-top: 0;
}

.initiatives-main > section + section,
.initiatives-main > nav + section {
  margin-top: 0;
}

.initiatives-cinematic-hero {
  position: relative;
  width: 100vw;
  min-height: clamp(760px, calc(100svh - 86px), 940px);
  margin: 0 0 0 calc(50% - 50vw);
  padding:
    clamp(74px, 8vw, 122px)
    max(24px, calc((100vw - var(--max)) / 2 + 24px))
    150px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 410px);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
  overflow: hidden;
  border-radius: 0;
  background: var(--initiative-dark);
  color: #ffffff;
}

.initiatives-hero-media,
.initiatives-hero-grid,
.initiatives-florida-map,
.initiatives-hero-media::after,
.initiatives-cinematic-hero::before {
  position: absolute;
  inset: 0;
}

.initiatives-cinematic-hero::before {
  content: "";
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 34%, rgba(105, 208, 198, 0.2), transparent 18%),
    linear-gradient(90deg, rgba(4, 15, 24, 0.9) 0%, rgba(5, 18, 28, 0.74) 38%, rgba(5, 18, 28, 0.38) 68%, rgba(5, 18, 28, 0.74) 100%),
    linear-gradient(180deg, rgba(5, 18, 28, 0.2) 0%, rgba(5, 18, 28, 0.82) 100%);
}

.initiatives-hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 15, 24, 0.55), transparent 42%, rgba(4, 15, 24, 0.42)),
    linear-gradient(180deg, rgba(4, 15, 24, 0.1), rgba(4, 15, 24, 0.8));
}

.initiatives-hero-video,
.initiatives-hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

.initiatives-hero-grid {
  z-index: 2;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(rgba(255, 255, 255, 0.095) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.095) 1px, transparent 1px);
  background-size: clamp(54px, 5vw, 80px) clamp(54px, 5vw, 80px);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.86) 62%, rgba(0, 0, 0, 0.3) 100%);
}

.initiative-reference-hero {
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.initiatives-florida-map {
  z-index: 3;
  inset: 3% 3% 14% auto;
  width: min(40vw, 560px);
  height: min(66vw, 720px);
  opacity: 0.36;
  pointer-events: none;
}

.initiatives-florida-map::before,
.initiatives-florida-map::after {
  content: "";
  position: absolute;
  inset: 0;
}

.initiatives-florida-map::before {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 1px, transparent 1.4px),
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 8px 8px, 46px 46px, 46px 46px;
  clip-path: polygon(32% 0, 50% 5%, 55% 14%, 58% 28%, 66% 36%, 73% 47%, 82% 53%, 92% 66%, 100% 82%, 93% 100%, 84% 88%, 78% 76%, 69% 68%, 60% 59%, 48% 57%, 39% 48%, 26% 50%, 15% 39%, 20% 24%, 12% 12%);
}

.initiatives-florida-map::after {
  inset: 9% 11% 9% 9%;
  border: 1px dashed rgba(255, 255, 255, 0.52);
  clip-path: polygon(32% 0, 50% 5%, 55% 14%, 58% 28%, 66% 36%, 73% 47%, 82% 53%, 92% 66%, 100% 82%, 93% 100%, 84% 88%, 78% 76%, 69% 68%, 60% 59%, 48% 57%, 39% 48%, 26% 50%, 15% 39%, 20% 24%, 12% 12%);
}

.initiatives-hero-content {
  position: relative;
  z-index: 5;
  max-width: 790px;
}

.initiatives-hero-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  color: var(--initiative-teal);
  font-size: clamp(0.82rem, 1.1vw, 1rem);
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.initiatives-hero-kicker span,
.initiatives-hero-rule,
.initiatives-hero-rail strong::after {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--initiative-teal);
}

.initiatives-hero-rule {
  margin-top: clamp(18px, 2vw, 28px);
}

.initiatives-hero-content h1 {
  max-width: 16ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(4.4rem, 6.4vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 850;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.32);
}

.initiatives-hero-content h1 span {
  display: block;
}

.initiatives-hero-content h1 span:last-child {
  white-space: nowrap;
}

.initiatives-hero-content h1 em {
  color: var(--initiative-teal);
  font-style: normal;
}

.initiatives-hero-content p {
  max-width: 47ch;
  margin: clamp(20px, 2.4vw, 28px) 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  line-height: 1.52;
}

.initiatives-hero-content p span {
  display: block;
}

.initiatives-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.initiatives-cinematic-hero .button,
.initiatives-hero-actions .button {
  min-width: 246px;
  background: #ffffff;
  color: var(--navy);
}

.initiatives-cinematic-hero .button:hover,
.initiatives-hero-actions .button:hover {
  background: var(--initiative-mist);
}

.initiatives-cinematic-hero .button-ghost,
.initiatives-hero-actions .button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.initiatives-cinematic-hero .button-ghost:hover,
.initiatives-hero-actions .button-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.initiatives-hero-actions .button span {
  margin-left: auto;
  font-size: 1.5rem;
  line-height: 0;
}

.initiatives-proof-list {
  position: relative;
  z-index: 5;
  display: grid;
  align-self: center;
  justify-self: end;
  width: min(100%, 408px);
  color: #ffffff;
}

.initiatives-proof-list article {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 142px;
  padding: 14px 0;
}

.initiatives-proof-list article + article {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.initiatives-proof-list article::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 92px;
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%);
}

.proof-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: var(--initiative-teal);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.proof-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.initiatives-proof-list strong,
.initiatives-proof-list b {
  display: block;
  color: #ffffff;
  font-size: clamp(1.22rem, 1.7vw, 1.6rem);
  line-height: 1.15;
}

.initiatives-proof-list strong {
  font-weight: 850;
}

.initiatives-proof-list b {
  margin-top: 4px;
  font-weight: 800;
}

.initiatives-proof-list p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.96rem, 1.2vw, 1.12rem);
  line-height: 1.4;
}

.mission-jumpbar.initiatives-hero-rail {
  position: absolute;
  inset: auto 0 0;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0;
  padding:
    0
    max(24px, calc((100vw - var(--max)) / 2 + 24px));
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(8, 34, 53, 0.96), rgba(4, 21, 34, 0.96)),
    rgba(4, 21, 34, 0.96);
  box-shadow: 0 -22px 54px rgba(0, 0, 0, 0.2);
}

.mission-jumpbar.initiatives-hero-rail a {
  display: grid;
  gap: 12px;
  min-height: 122px;
  padding: 26px clamp(14px, 2.4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #ffffff;
  backdrop-filter: none;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.mission-jumpbar.initiatives-hero-rail a:first-child {
  border-left: 0;
}

.mission-jumpbar.initiatives-hero-rail a:last-child {
  border-right: 0;
}

.mission-jumpbar.initiatives-hero-rail a:hover,
.mission-jumpbar.initiatives-hero-rail a:focus-visible {
  transform: none;
  background: rgba(255, 255, 255, 0.06);
}

.mission-jumpbar.initiatives-hero-rail span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.mission-jumpbar.initiatives-hero-rail strong {
  display: grid;
  gap: 16px;
  color: #ffffff;
  font-size: clamp(0.94rem, 1.25vw, 1.17rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mission-jumpbar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: -1px auto 0;
  overflow: hidden;
  border: 1px solid rgba(13, 35, 52, 0.1);
  border-radius: 8px;
  background: rgba(13, 35, 52, 0.1);
  box-shadow: 0 16px 42px rgba(14, 34, 48, 0.12);
}

.mission-jumpbar a {
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.mission-jumpbar a:hover,
.mission-jumpbar a:focus-visible {
  transform: translateY(-2px);
  background: var(--navy);
  color: #ffffff;
}

.mission-jumpbar span {
  color: var(--initiative-coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.mission-jumpbar strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.future-context,
.featured-initiative,
.initiative-video-strip,
.impact-timeline {
  padding:
    clamp(58px, 8vw, 110px)
    max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.future-context {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.future-context-copy h2,
.featured-initiative-copy h2,
.campaign-copy h2,
.initiative-video-strip .section-heading h2,
.impact-timeline .section-heading h2,
.final-cta-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.future-context-copy h2 {
  max-width: 16ch;
  font-size: clamp(2.9rem, 4.4vw, 4.75rem);
  line-height: 1;
}

.future-context-copy p:not(.eyebrow) {
  max-width: 62ch;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.68;
}

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

.future-pressure-grid article {
  min-height: 176px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 125, 132, 0.1), transparent 46%),
    #ffffff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.future-pressure-grid span {
  color: var(--initiative-coral);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.future-pressure-grid strong {
  color: var(--navy);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.18;
}

.future-pressure-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.52;
}

.featured-initiative {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(47, 125, 132, 0.18), transparent 40%, rgba(213, 165, 77, 0.12)),
    var(--initiative-dark);
  color: #ffffff;
}

.featured-initiative .eyebrow,
.campaign-section .eyebrow,
.initiative-video-strip .eyebrow {
  color: var(--initiative-gold);
}

.featured-initiative-copy h2 {
  color: #ffffff;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.92;
}

.featured-initiative-copy p:not(.eyebrow) {
  max-width: 50ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.66;
}

.featured-initiative-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.featured-initiative .button {
  background: #ffffff;
  color: var(--navy);
}

.featured-initiative .button-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.housing-data-preview {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.housing-map-panel,
.housing-metrics-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(160deg, rgba(21, 54, 72, 0.94), rgba(6, 20, 30, 0.98));
  background-size: 44px 44px, 44px 44px, auto;
}

.housing-map-panel::before {
  content: "";
  position: absolute;
  inset: 12% 18% 8% 20%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 48% 36% 42% 52%;
  transform: rotate(16deg);
  background:
    linear-gradient(140deg, rgba(47, 125, 132, 0.28), rgba(213, 165, 77, 0.1)),
    rgba(255, 255, 255, 0.05);
  clip-path: polygon(30% 0, 54% 8%, 62% 24%, 70% 38%, 88% 54%, 78% 78%, 92% 100%, 58% 88%, 47% 66%, 28% 72%, 12% 52%, 18% 28%);
}

.map-dot,
.map-line {
  position: absolute;
  z-index: 2;
}

.map-dot {
  width: 14px;
  height: 14px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--initiative-gold);
  box-shadow: 0 0 0 10px rgba(213, 165, 77, 0.14);
}

.map-dot-tampa {
  left: 42%;
  top: 54%;
}

.map-dot-orlando {
  left: 52%;
  top: 40%;
}

.map-dot-miami {
  left: 67%;
  top: 78%;
}

.map-dot-jax {
  left: 57%;
  top: 22%;
}

.map-line {
  height: 2px;
  background: rgba(255, 255, 255, 0.36);
  transform-origin: left center;
}

.map-line-one {
  left: 43%;
  top: 55%;
  width: 180px;
  transform: rotate(-24deg);
}

.map-line-two {
  left: 54%;
  top: 43%;
  width: 208px;
  transform: rotate(48deg);
}

.housing-metrics-panel {
  display: grid;
  align-content: end;
  padding: 28px;
}

.housing-metrics-panel span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.housing-metrics-panel strong {
  margin-top: 14px;
  color: #ffffff;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
}

.housing-metrics-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.56;
}

.metric-bars {
  height: 96px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  margin-top: 28px;
}

.metric-bars i {
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--initiative-gold), var(--initiative-teal));
}

.initiative-missions {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.campaign-section {
  --campaign-text: var(--navy);
  --campaign-copy: var(--ink-soft);
  --campaign-rule: rgba(13, 35, 52, 0.12);
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
  padding:
    clamp(34px, 4.4vw, 58px)
    max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: #ffffff;
  color: var(--campaign-text);
  scroll-margin-top: 96px;
}

.campaign-section:nth-child(even) {
  background: #f2f6f7;
}

.campaign-section:nth-child(odd) {
  --campaign-text: #ffffff;
  --campaign-copy: rgba(255, 255, 255, 0.78);
  --campaign-rule: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 42%),
    var(--initiative-dark);
}

.campaign-reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
}

.campaign-reverse .campaign-media {
  order: 2;
}

.campaign-reverse .campaign-copy {
  order: 1;
}

.campaign-media {
  position: relative;
  width: 100%;
  min-height: clamp(380px, 39vw, 520px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--initiative-dark);
  box-shadow: 0 28px 80px rgba(9, 24, 36, 0.24);
}

.campaign-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 16, 24, 0.02), rgba(5, 16, 24, 0.46)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 34%);
}

.campaign-media video,
.campaign-media img,
.campaign-media .vimeo-background-embed,
.video-preview-grid video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms ease;
}

.campaign-media video,
.campaign-media img,
.campaign-media .vimeo-background-embed {
  position: absolute;
  inset: 0;
}

.campaign-section:hover .campaign-media video,
.campaign-section:hover .campaign-media img,
.campaign-section:hover .campaign-media .vimeo-background-embed,
.video-preview-grid article:hover video {
  transform: scale(1.045);
}

.campaign-media-label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: #ffffff;
}

.campaign-media-label span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.campaign-media-label strong {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 0.95;
}

.campaign-copy {
  max-width: 720px;
  padding-top: clamp(2px, 0.5vw, 8px);
}

.campaign-copy h2 {
  max-width: 18ch;
  color: var(--campaign-text);
  font-size: clamp(2.55rem, 3.7vw, 3.45rem);
  line-height: 1.02;
}

.campaign-copy > p:not(.eyebrow) {
  max-width: 58ch;
  margin: 20px 0 0;
  color: var(--campaign-copy);
  font-size: 1.04rem;
  line-height: 1.62;
}

.campaign-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.campaign-stats div {
  min-height: 110px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--campaign-rule);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.campaign-section:nth-child(odd) .campaign-stats div {
  background: rgba(255, 255, 255, 0.075);
}

.campaign-stats strong {
  color: var(--campaign-text);
  font-size: clamp(1.16rem, 1.5vw, 1.42rem);
  line-height: 1;
  letter-spacing: 0;
}

.campaign-stats span {
  color: var(--campaign-copy);
  font-size: 0.88rem;
  line-height: 1.38;
}

.featured-report {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--campaign-rule);
}

.featured-report span {
  color: var(--initiative-coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-report a {
  color: var(--campaign-text);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.initiative-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--campaign-text);
  font-weight: 800;
}

.initiative-link span {
  display: inline-block;
  transition: transform 180ms ease;
}

.campaign-section:hover .initiative-link span,
.initiative-link:hover span {
  transform: translateX(4px);
}

.initiative-video-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background:
    linear-gradient(90deg, rgba(200, 104, 84, 0.16), transparent 34%, rgba(47, 125, 132, 0.18)),
    #0a1822;
  color: #ffffff;
}

.initiative-video-strip .section-heading {
  max-width: var(--max);
  margin: 0 auto 28px;
}

.initiative-video-strip .section-heading h2 {
  max-width: 14ch;
  color: #ffffff;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.video-preview-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.video-preview-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.video-preview-grid video {
  aspect-ratio: 16 / 10;
}

.video-preview-grid h3,
.video-preview-grid p {
  margin-right: 20px;
  margin-left: 20px;
}

.video-preview-grid h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.2rem;
}

.video-preview-grid p {
  margin-top: 0;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.impact-timeline {
  background: #ffffff;
}

.impact-timeline .section-heading {
  margin-bottom: 32px;
}

.impact-timeline .section-heading h2 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: 0.94;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.timeline-track article {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 28px 24px 0 0;
}

.timeline-track article::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--initiative-coral);
}

.timeline-track span {
  color: var(--initiative-coral);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.timeline-track strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.timeline-track p {
  max-width: 28ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.initiatives-final-cta {
  position: relative;
  width: 100vw;
  min-height: clamp(520px, 68svh, 720px);
  margin-left: calc(50% - 50vw);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
}

.final-cta-media,
.final-cta-shade {
  position: absolute;
  inset: 0;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

.final-cta-shade {
  background:
    linear-gradient(90deg, rgba(5, 16, 24, 0.86), rgba(5, 16, 24, 0.56) 48%, rgba(5, 16, 24, 0.2)),
    linear-gradient(180deg, rgba(5, 16, 24, 0.1), rgba(5, 16, 24, 0.74));
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 128px) 0 clamp(54px, 8vw, 88px);
}

.final-cta-copy h2 {
  max-width: 10ch;
  color: #ffffff;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 0.9;
}

.final-cta-copy p {
  max-width: 58ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.62;
}

.final-cta-copy .hero-actions {
  margin-top: 30px;
}

.final-cta-copy .button {
  background: #ffffff;
  color: var(--navy);
}

.final-cta-copy .button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

@media (max-width: 1180px) {
  .mission-jumpbar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
  }

  .initiatives-cinematic-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 34px;
  }

  .initiatives-proof-list {
    width: min(100%, 360px);
  }

  .mission-jumpbar.initiatives-hero-rail a {
    padding-right: clamp(12px, 2vw, 24px);
    padding-left: clamp(12px, 2vw, 24px);
  }

  .future-context,
  .featured-initiative,
  .campaign-section,
  .campaign-reverse {
    grid-template-columns: 1fr;
  }

  .campaign-reverse .campaign-media,
  .campaign-reverse .campaign-copy {
    order: initial;
  }

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

  .housing-data-preview {
    min-height: 430px;
  }

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

@media (max-width: 840px) {
  .initiatives-cinematic-hero {
    min-height: auto;
    padding:
      84px
      max(18px, calc((100vw - var(--max)) / 2 + 18px))
      0;
    display: block;
  }

  .initiatives-hero-content h1 {
    max-width: 16ch;
    font-size: clamp(3.45rem, 13vw, 5.4rem);
  }

  .initiatives-florida-map {
    inset: 8% -12% 28% auto;
    width: min(78vw, 420px);
    height: min(108vw, 560px);
    opacity: 0.22;
  }

  .initiatives-proof-list {
    width: 100%;
    margin-top: 42px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .initiatives-proof-list article {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 20px 0;
  }

  .initiatives-proof-list article::after {
    display: none;
  }

  .proof-icon {
    width: 58px;
    height: 58px;
  }

  .proof-icon svg {
    width: 31px;
    height: 31px;
  }

  .mission-jumpbar.initiatives-hero-rail {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    margin-top: 26px;
    padding: 0;
    box-shadow: none;
  }

  .mission-jumpbar.initiatives-hero-rail a {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 74px;
    padding: 16px 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .mission-jumpbar.initiatives-hero-rail strong {
    gap: 10px;
  }

  .mission-jumpbar.initiatives-hero-rail strong::after {
    width: 40px;
    height: 2px;
  }

  .mission-jumpbar {
    grid-template-columns: 1fr;
  }

  .mission-jumpbar a {
    min-height: 0;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
  }

  .future-context,
  .featured-initiative,
  .initiative-video-strip,
  .impact-timeline {
    padding:
      clamp(46px, 12vw, 72px)
      max(18px, calc((100vw - var(--max)) / 2 + 18px));
  }

  .future-context-copy h2,
  .featured-initiative-copy h2,
  .campaign-copy h2,
  .initiative-video-strip .section-heading h2,
  .impact-timeline .section-heading h2,
  .final-cta-copy h2 {
    max-width: none;
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .future-pressure-grid,
  .housing-data-preview,
  .campaign-stats,
  .video-preview-grid,
  .timeline-track {
    grid-template-columns: 1fr;
  }

  .future-pressure-grid article {
    min-height: 0;
  }

  .housing-map-panel {
    min-height: 300px;
  }

  .campaign-section {
    padding:
      clamp(48px, 12vw, 74px)
      max(18px, calc((100vw - var(--max)) / 2 + 18px));
  }

  .campaign-media {
    min-height: 340px;
  }

  .campaign-stats div {
    min-height: 0;
  }

  .campaign-media-label {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-preview-grid {
    gap: 14px;
  }

  .timeline-track {
    gap: 0;
    border-top: 0;
  }

  .timeline-track article {
    padding: 22px 0 22px 24px;
    border-left: 1px solid var(--line-strong);
  }

  .timeline-track article::before {
    top: 30px;
    left: -6px;
  }

  .initiatives-final-cta {
    min-height: 620px;
  }
}

@media (max-width: 560px) {
  .future-context-copy h2 {
    font-size: 2.25rem;
    line-height: 1.05;
  }

  .initiatives-cinematic-hero {
    padding-top: 68px;
  }

  .initiatives-hero-content,
  .initiatives-proof-list,
  .mission-jumpbar.initiatives-hero-rail {
    max-width: 340px;
  }

  .initiatives-hero-kicker {
    margin-bottom: 18px;
    font-size: 0.74rem;
  }

  .initiatives-hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 13vw, 3.35rem);
    line-height: 1;
  }

  .initiatives-hero-content h1 span:last-child {
    white-space: normal;
  }

  .initiatives-hero-content p span {
    display: inline;
  }

  .initiatives-proof-list {
    grid-template-columns: 1fr;
  }

  .initiatives-hero-actions,
  .featured-initiative-actions,
  .final-cta-copy .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .initiatives-cinematic-hero .button,
  .initiatives-hero-actions .button,
  .featured-initiative .button,
  .final-cta-copy .button {
    min-width: 0;
    width: 100%;
  }

  .housing-metrics-panel {
    padding: 22px;
  }

  .campaign-media {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .initiative-reference-hero .initiatives-hero-image {
    object-position: 68% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .campaign-media video,
  .campaign-media img,
  .video-preview-grid video,
  .initiative-link span {
    transition: none;
  }

  .campaign-section:hover .campaign-media video,
  .campaign-section:hover .campaign-media img,
  .video-preview-grid article:hover video {
    transform: none;
  }
}

/* Homepage cinematic story arc */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 4vw, 42px);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(6, 20, 31, 0.42);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(6, 20, 31, 0.22);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.hero-scroll-cue::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.hero-scroll-cue:hover,
.hero-scroll-cue:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(6, 20, 31, 0.58);
  transform: translate(-50%, -2px);
}

.home-photo-rail {
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(12px, 1.6vw, 18px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #061622;
}

.photo-rail-banner {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(calc(100% - 48px), 900px);
  margin: 0;
  padding: 16px 22px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(6, 22, 34, 0.72);
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.photo-rail-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(230px, 24vw, 360px);
  gap: 12px;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2 + 18px));
  padding-bottom: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  scroll-padding-inline: max(18px, calc((100vw - var(--max)) / 2 + 18px));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  will-change: scroll-position;
}

.photo-rail-track.is-auto-scrolling {
  scroll-snap-type: none;
}

.photo-rail-track::-webkit-scrollbar {
  display: none;
  height: 0;
}

.photo-rail-track::-webkit-scrollbar-track {
  background: transparent;
}

.photo-rail-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.photo-rail-track:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.82);
  outline-offset: -6px;
}

.photo-rail-card {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 8px;
  background: #0b2130;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.photo-rail-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-rail-card-capitol img {
  object-position: 50% 34%;
}

.photo-rail-card figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(6, 22, 34, 0.78);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.photo-rail-card figcaption.sr-only {
  right: auto;
  bottom: auto;
  left: auto;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 1rem;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  backdrop-filter: none;
}

.home-hero-authority + .home-photo-rail,
.home-photo-rail + .home-goal-strip,
.home-hero-authority + .home-goal-strip,
.home-goal-strip + .home-why-matters {
  margin-top: 0;
}

.home-goal-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  min-height: clamp(300px, 28vw, 360px);
  background: #061622;
  color: #ffffff;
}

.goal-card {
  --goal-bg: #0b2130;
  --goal-deep: #061622;
  --goal-accent: var(--teal);
  --goal-accent-soft: rgba(47, 125, 132, 0.16);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(70px, auto) minmax(84px, 1fr) auto;
  row-gap: 20px;
  align-content: center;
  align-items: flex-start;
  min-height: clamp(300px, 28vw, 360px);
  padding: clamp(34px, 4vw, 54px);
  overflow: hidden;
  background: var(--goal-bg);
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.goal-card + .goal-card {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.goal-card::before,
.goal-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.goal-card::before {
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 18%, var(--goal-accent-soft), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18) 72%);
  opacity: 0.92;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.goal-card::after {
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 5px;
  background: var(--goal-accent);
  opacity: 0.82;
  transition: opacity 220ms ease;
}

.goal-card:hover,
.goal-card:focus-visible {
  transform: translateY(-4px);
  filter: saturate(1.06);
}

.goal-card:hover::before,
.goal-card:focus-visible::before {
  opacity: 1;
  transform: scale(1.03);
}

.goal-card:hover::after,
.goal-card:focus-visible::after {
  opacity: 1;
}

.goal-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.88);
  outline-offset: -8px;
}

.goal-card-research {
  --goal-bg: #071722;
  --goal-deep: #061622;
  --goal-accent: var(--teal);
  --goal-accent-soft: rgba(47, 125, 132, 0.2);
}

.goal-card-policy {
  --goal-bg: #102638;
  --goal-deep: #071722;
  --goal-accent: var(--accent);
  --goal-accent-soft: rgba(184, 137, 56, 0.22);
}

.goal-card-convening {
  --goal-bg: #0e2c39;
  --goal-deep: #071722;
  --goal-accent: var(--teal);
  --goal-accent-soft: rgba(47, 125, 132, 0.24);
}

.goal-card-action {
  --goal-bg: #132c3d;
  --goal-deep: #071722;
  --goal-accent: var(--coral);
  --goal-accent-soft: rgba(185, 93, 76, 0.2);
}

.goal-index {
  margin: 0;
  color: var(--goal-accent);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.goal-card h2 {
  align-self: end;
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 2.9vw, 3.45rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
  white-space: nowrap;
}

.goal-card p {
  max-width: 28ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1vw, 1.06rem);
  line-height: 1.56;
}

.goal-arrow {
  position: relative;
  display: block;
  align-self: end;
  width: 58px;
  height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
}

.goal-arrow::before,
.goal-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: currentColor;
  transform-origin: center;
}

.goal-arrow::before {
  left: 0;
  height: 3px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.goal-arrow::after {
  width: 15px;
  height: 15px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
}

.home-why-matters,
.home-housing-command,
.home-stat-band,
.founder-video-story,
.future-cta {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.home-why-matters {
  padding-top: clamp(96px, 12vw, 160px);
  padding-bottom: clamp(72px, 10vw, 128px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.why-layout h2,
.narrative-heading h2,
.housing-command-copy h2,
.summit-copy h2,
.featured-research-copy h2,
.people-copy h2,
.future-cta-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.why-layout h2 {
  max-width: 11ch;
  color: var(--navy);
  font-size: clamp(3.6rem, 7.6vw, 7.2rem);
  line-height: 0.92;
}

.why-copy {
  display: grid;
  gap: 22px;
  padding-top: clamp(6px, 1.2vw, 18px);
}

.why-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.26rem);
  line-height: 1.68;
}

.why-copy .why-lede {
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.18;
}

.why-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(42px, 6vw, 72px);
}

.why-signals span,
.research-proof-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.initiative-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(30px, 5vw, 58px);
  min-width: 0;
}

.initiative-showcase > *,
.initiative-cinema-block > *,
.summit-energy > *,
.featured-research-home > *,
.people-momentum > *,
.founder-video-story > * {
  min-width: 0;
}

.narrative-heading {
  max-width: 980px;
  margin-bottom: 0;
}

.narrative-heading h2 {
  max-width: 18ch;
  color: var(--navy);
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  line-height: 0.96;
}

.narrative-heading p {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}

.initiative-cinema-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
  align-items: stretch;
  min-height: clamp(520px, 68vw, 660px);
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.initiative-cinema-block-reverse {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.initiative-cinema-block-reverse .initiative-cinema-media {
  order: 2;
}

.initiative-cinema-block-reverse .initiative-cinema-copy {
  order: 1;
}

.initiative-cinema-block.is-dark {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(6, 22, 34, 0.98), rgba(18, 48, 66, 0.96));
  color: #ffffff;
}

.initiative-cinema-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #061622;
  background-image: var(--video-fallback-image, none);
  background-position: center;
  background-size: cover;
}

.initiative-cinema-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 22, 34, 0.02), rgba(6, 22, 34, 0.32));
  pointer-events: none;
}

.initiative-cinema-media video,
.initiative-cinema-media .vimeo-background-embed,
.initiative-cinema-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 800ms ease;
}

.initiative-cinema-media.has-video-fallback video {
  opacity: 0;
}

.initiative-cinema-media.has-video-fallback.is-video-ready video {
  opacity: 1;
}

.initiative-cinema-media.has-video-fallback.is-video-unavailable video {
  display: none;
}

.initiative-cinema-block:hover .initiative-cinema-media video,
.initiative-cinema-block:hover .initiative-cinema-media .vimeo-background-embed,
.initiative-cinema-block:hover .initiative-cinema-media img {
  transform: scale(1.035);
}

.initiative-cinema-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(18px, 3vw, 38px);
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 900;
}

.is-dark .section-number {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(244, 214, 164, 0.96);
}

.initiative-cinema-copy h3 {
  max-width: 100%;
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 4.6vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.initiative-cinema-copy p {
  max-width: 38ch;
  margin: 24px 0 30px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.65;
}

.is-dark .initiative-cinema-copy h3 {
  color: #ffffff;
}

.is-dark .initiative-cinema-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.is-dark .initiative-cinema-copy .button,
.home-housing-command .button,
.future-cta .button {
  background: #ffffff;
  color: var(--navy);
}

.is-dark .initiative-cinema-copy .button:hover,
.home-housing-command .button:hover,
.future-cta .button:hover {
  background: var(--surface-muted);
}

.home-fav-summit {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: stretch;
  margin-top: clamp(56px, 7vw, 84px);
  padding: clamp(42px, 6vw, 76px) max(24px, calc((100vw - var(--max)) / 2 + 24px));
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(6, 22, 34, 0.98) 0%, rgba(13, 45, 58, 0.96) 58%, rgba(35, 88, 91, 0.92) 100%);
  box-shadow: none;
  color: #ffffff;
}

.home-fav-summit-copy {
  display: grid;
  align-content: center;
  max-width: 840px;
}

.home-fav-summit .eyebrow {
  color: rgba(244, 214, 164, 0.94);
}

.home-fav-summit h2 {
  margin: 0;
  max-width: 17ch;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.9rem, 5.6vw, 5.8rem);
  line-height: 0.94;
  text-wrap: balance;
}

.home-fav-summit p:not(.eyebrow) {
  max-width: 56ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
  line-height: 1.68;
}

.home-fav-summit .button {
  justify-self: start;
  margin-top: 28px;
  background: #ffffff;
  color: var(--navy);
  white-space: nowrap;
}

.home-fav-summit .button:hover {
  background: var(--surface-muted);
}

.home-fav-summit-media {
  min-height: clamp(280px, 28vw, 420px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #061622;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.home-fav-summit-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.home-housing-command {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(360px, 0.92fr);
  gap: clamp(26px, 3.5vw, 48px);
  align-items: center;
  overflow: hidden;
  min-height: clamp(430px, 42vw, 540px);
  margin-top: clamp(64px, 8vw, 96px);
  padding-top: clamp(42px, 5vw, 64px);
  padding-bottom: clamp(42px, 5vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #061622;
  color: #ffffff;
}

.home-housing-command::before,
.home-housing-command::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.home-housing-command::before {
  background-image: url("./assets/images/florida-waterway-city.jpg");
  background-position: 58% 50%;
  background-size: cover;
  opacity: 0.18;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.035);
}

.home-housing-command::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 22, 34, 0.94) 0%, rgba(6, 22, 34, 0.82) 42%, rgba(6, 22, 34, 0.58) 100%),
    linear-gradient(180deg, rgba(6, 22, 34, 0.24) 0%, rgba(9, 35, 50, 0.92) 100%);
}

.home-housing-command > * {
  position: relative;
  z-index: 1;
}

.housing-command-copy {
  max-width: 500px;
}

.housing-command-copy .eyebrow,
.summit-energy .eyebrow,
.future-cta .eyebrow {
  color: rgba(244, 214, 164, 0.94);
}

.housing-command-copy h2 {
  max-width: 16ch;
  color: #ffffff;
  font-size: clamp(2.55rem, 3.2vw, 3.8rem);
  line-height: 1;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.housing-command-copy p {
  max-width: 38ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.58;
}

.housing-command-copy .hero-actions {
  margin-top: 26px;
}

.home-housing-command .button-ghost,
.future-cta .button-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.home-housing-command .button-ghost:hover,
.future-cta .button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.housing-command-screen {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 660px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(12px);
}

.housing-command-screen::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.command-topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 800;
}

.command-topbar a {
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.command-topbar a:hover {
  color: var(--accent);
}

.command-live-frame {
  position: relative;
  display: block;
  aspect-ratio: 2990 / 1488;
  overflow: hidden;
  background: #0a2b44;
}

.command-photo-link {
  color: inherit;
  text-decoration: none;
}

.command-photo-link:focus-visible {
  outline: 3px solid rgba(244, 214, 164, 0.95);
  outline-offset: -6px;
}

.command-preview-image,
.housing-report-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #17385a;
}

.command-preview-image {
  object-fit: cover;
  transition: transform 450ms ease;
}

.command-live-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(6, 22, 34, 0.5) 100%),
    linear-gradient(90deg, rgba(6, 22, 34, 0.08), transparent 42%);
  pointer-events: none;
}

.command-photo-link:hover .command-preview-image,
.command-photo-link:focus-visible .command-preview-image {
  transform: scale(1.015);
}

.summit-energy {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.summit-copy h2 {
  max-width: 10ch;
  color: var(--navy);
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  line-height: 0.94;
}

.summit-copy p {
  max-width: 44ch;
  margin: 20px 0 26px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.68;
}

.summit-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(180px, 0.84fr);
  grid-auto-rows: minmax(170px, 1fr);
  gap: 12px;
}

.summit-media-grid img,
.summit-media-grid video {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.summit-media-main {
  grid-row: span 2;
  min-height: 460px;
}

.featured-research-home {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: stretch;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff, #f5f9fb);
  box-shadow: var(--shadow-sm);
}

.featured-research-media {
  overflow: hidden;
  min-height: 520px;
  border-radius: 8px;
  background: #061622;
}

.featured-research-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.featured-research-home:hover .featured-research-media video {
  transform: scale(1.035);
}

.featured-research-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(18px, 3vw, 42px);
}

.featured-research-copy h2 {
  max-width: 10ch;
  color: var(--navy);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.94;
}

.featured-research-copy p {
  max-width: 42ch;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.68;
}

.research-proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
}

.home-stat-band {
  overflow: hidden;
  padding-top: clamp(46px, 7vw, 76px);
  padding-bottom: clamp(46px, 7vw, 76px);
  background:
    linear-gradient(90deg, #061622 0%, #0b2130 48%, #17384d 100%);
  color: #ffffff;
}

.stat-marquee {
  width: 100%;
  overflow: hidden;
}

.stat-marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(34px, 6vw, 76px);
  animation: statMarquee 28s linear infinite;
}

.stat-marquee-track span {
  color: rgba(255, 255, 255, 0.76);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  line-height: 1;
  white-space: nowrap;
}

@keyframes statMarquee {
  from {
    transform: translateX(0);
  }

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

.stat-grid-home {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-grid-home div {
  display: grid;
  gap: 10px;
  min-height: 178px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.06);
}

.stat-grid-home strong {
  color: #ffffff;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.88;
}

.stat-grid-home span:last-child {
  max-width: 18ch;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.people-momentum {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.people-copy h2 {
  max-width: 9ch;
  color: var(--navy);
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 0.94;
}

.people-copy p {
  max-width: 42ch;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.68;
}

.people-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(180px, 0.72fr);
  grid-auto-rows: minmax(190px, 1fr);
  gap: 12px;
}

.people-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-muted);
  box-shadow: var(--shadow-sm);
}

.people-frame-large {
  grid-row: span 2;
}

.people-frame-wide {
  grid-column: 2;
}

.people-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.people-frame:hover img {
  transform: scale(1.035);
}

.founder-video-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 58px;
  align-items: center;
  margin-top: clamp(78px, 9vw, 118px);
  padding-top: 98px;
  padding-bottom: 98px;
  background:
    linear-gradient(180deg, #071824 0%, #0b2130 100%);
  color: #ffffff;
}

.founder-video-quote {
  max-width: 640px;
}

.founder-video-quote .eyebrow {
  color: rgba(244, 214, 164, 0.94);
}

.founder-video-quote blockquote {
  margin: 0;
}

.founder-video-quote blockquote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 2rem;
  font-style: italic;
  line-height: 1.42;
}

.founder-video-quote cite {
  display: block;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.45rem;
  font-style: italic;
}

.founder-video-quote cite::before {
  content: "- ";
}

.founder-video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #000000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.founder-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.future-cta {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(620px, 82vw, 860px);
  overflow: hidden;
  margin-bottom: -36px;
  padding-top: clamp(80px, 10vw, 136px);
  padding-bottom: clamp(74px, 9vw, 118px);
  background: #061622;
  color: #ffffff;
}

.founder-video-story + .future-cta {
  margin-top: 0;
}

.future-cta-video,
.future-cta-shade {
  position: absolute;
  inset: 0;
}

.future-cta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.future-cta-shade {
  background:
    linear-gradient(90deg, rgba(5, 18, 29, 0.82) 0%, rgba(5, 18, 29, 0.6) 44%, rgba(5, 18, 29, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 18, 29, 0.04), rgba(5, 18, 29, 0.68));
}

.future-cta-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.future-cta-copy h2 {
  color: #ffffff;
  font-size: clamp(3.8rem, 7.5vw, 7.4rem);
  line-height: 0.92;
}

.future-cta-copy p {
  max-width: 58ch;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.68;
}

.home-goal-strip [data-reveal],
.home-why-matters [data-reveal],
.initiative-showcase [data-reveal],
.home-housing-command [data-reveal],
.summit-energy [data-reveal],
.featured-research-home [data-reveal],
.people-momentum [data-reveal],
.founder-video-story [data-reveal],
.future-cta [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.home-goal-strip [data-reveal].is-visible,
.home-why-matters [data-reveal].is-visible,
.initiative-showcase [data-reveal].is-visible,
.home-housing-command [data-reveal].is-visible,
.summit-energy [data-reveal].is-visible,
.featured-research-home [data-reveal].is-visible,
.people-momentum [data-reveal].is-visible,
.founder-video-story [data-reveal].is-visible,
.future-cta [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .home-goal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .goal-card:nth-child(3) {
    border-left: 0;
  }

  .goal-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .why-layout,
  .home-fav-summit,
  .home-housing-command,
  .summit-energy,
  .featured-research-home,
  .people-momentum,
  .founder-video-story,
  .initiative-cinema-block,
  .initiative-cinema-block-reverse {
    grid-template-columns: 1fr;
  }

  .initiative-cinema-block-reverse .initiative-cinema-media,
  .initiative-cinema-block-reverse .initiative-cinema-copy {
    order: initial;
  }

  .initiative-cinema-media,
  .featured-research-media {
    min-height: 420px;
  }

  .initiative-cinema-media video,
  .initiative-cinema-media img {
    min-height: 420px;
  }

  .housing-command-copy h2,
  .summit-copy h2,
  .featured-research-copy h2,
  .people-copy h2 {
    max-width: 13ch;
  }

  .housing-command-copy h2 {
    max-width: 16ch;
  }

  .housing-command-screen {
    justify-self: start;
  }

  .founder-video-story {
    gap: 36px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .founder-video-quote {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .hero-scroll-cue {
    display: none;
  }

  .photo-rail-track {
    grid-auto-columns: minmax(230px, 78vw);
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }

  .photo-rail-card figcaption {
    min-height: 32px;
    font-size: 0.7rem;
  }

  .photo-rail-banner {
    width: min(calc(100% - 28px), 520px);
    padding: 12px 14px;
    font-size: 1.35rem;
    line-height: 1.18;
  }

  .home-goal-strip {
    grid-template-columns: 1fr;
  }

  .goal-card {
    min-height: 228px;
    padding: 30px 22px;
  }

  .goal-card + .goal-card {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .goal-card h2 {
    font-size: clamp(2.25rem, 13vw, 3.5rem);
  }

  .goal-card p {
    max-width: 34ch;
  }

  .home-why-matters,
  .home-housing-command,
  .home-stat-band,
  .founder-video-story,
  .future-cta {
    padding-inline: 18px;
  }

  .home-why-matters {
    padding-top: 72px;
    padding-bottom: 70px;
  }

  .why-layout h2,
  .narrative-heading h2,
  .housing-command-copy h2,
  .summit-copy h2,
  .featured-research-copy h2,
  .people-copy h2,
  .future-cta-copy h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .why-copy .why-lede {
    font-size: 1.35rem;
  }

  .initiative-cinema-block,
  .featured-research-home {
    padding: 12px;
  }

  .initiative-cinema-copy,
  .featured-research-copy {
    padding: 14px 4px 4px;
  }

  .initiative-cinema-media,
  .featured-research-media,
  .initiative-cinema-media video,
  .initiative-cinema-media img {
    min-height: 300px;
  }

  .initiative-cinema-copy h3 {
    font-size: 2.85rem;
  }

  .home-housing-command {
    min-height: auto;
    margin-top: 72px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .home-fav-summit {
    margin-top: 72px;
    padding: 24px;
  }

  .home-fav-summit .button {
    justify-self: start;
  }

  .housing-command-copy h2 {
    max-width: 14ch;
    font-size: clamp(2.45rem, 11vw, 3.15rem);
  }

  .housing-command-copy p {
    font-size: 1rem;
  }

  .housing-command-copy .hero-actions {
    margin-top: 22px;
  }

  .command-topbar {
    min-height: 46px;
    padding: 11px 13px;
    font-size: 0.76rem;
  }

  .command-topbar a {
    font-size: 0.74rem;
  }

  .stat-grid-home,
  .people-collage {
    grid-template-columns: 1fr;
  }

  .summit-media-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(210px, auto);
  }

  .summit-media-main,
  .people-frame-large,
  .people-frame-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .founder-video-story {
    margin-top: 72px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .founder-video-quote blockquote p {
    font-size: 1.45rem;
    line-height: 1.5;
  }

  .founder-video-quote cite {
    margin-top: 24px;
    font-size: 1.16rem;
  }

  .stat-marquee-track span {
    font-size: clamp(2rem, 12vw, 3.3rem);
  }

  .stat-grid-home div {
    min-height: 126px;
  }

  .future-cta {
    min-height: 600px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue::before,
  .stat-marquee-track {
    animation: none;
  }

  .initiative-cinema-block:hover .initiative-cinema-media video,
  .initiative-cinema-block:hover .initiative-cinema-media img,
  .featured-research-home:hover .featured-research-media video,
  .people-frame:hover img {
    transform: none;
  }
}

.vimeo-embed {
  border: 0;
  display: block;
  background: #081b29;
}

.vimeo-background-embed {
  pointer-events: none;
}

.campaign-media .vimeo-background-embed,
.initiative-cinema-media .vimeo-background-embed,
.about-focus-card .vimeo-background-embed,
.hero-video-layer .vimeo-background-embed,
.research-hero-media .vimeo-background-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Final research-page specificity guard */
.research-page .research-hero h1,
.research-page .section-heading h2,
.research-page .featured-report-card h3,
.research-page .research-report-card h3,
.research-page .research-insight-band h2,
.research-page .research-video-copy h2,
.research-page .research-newsletter h2 {
  font-family: "Open Sans", sans-serif;
}

.research-page .featured-report-card.is-primary .featured-report-copy {
  align-self: center;
  align-content: center;
}

.research-page .research-feature-layout {
  grid-template-columns: 1fr;
  align-items: start;
}

.research-page .featured-secondary-stack {
  display: none;
}

.research-page .featured-report-card.is-primary {
  min-height: 420px;
}

.research-page .featured-report-card.is-primary .featured-report-media {
  min-height: 420px;
}

.research-page .featured-secondary-stack .featured-report-media {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.research-page .section-heading h2 {
  max-width: 18ch;
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
  line-height: 1.03;
}

.research-page .research-feature-section .section-heading h2 {
  max-width: 16ch;
}

.research-page .research-report-card.dynamic-card {
  padding: 0;
}

.research-page .research-report-card.dynamic-card h3 {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .research-page .featured-report-card.is-primary,
  .research-page .featured-report-card.is-primary .featured-report-media {
    min-height: 0;
  }
}

/* Research archive detail pages */
.article-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9fb 42%, #ffffff 100%);
}

.article-page main {
  width: min(calc(100% - 48px), 1360px);
  padding-top: 0;
}

.article-page main > section + section {
  margin-top: 42px;
}

.article-page main > .article-hero:first-child {
  margin-top: 42px;
}

.article-page .article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.56fr);
  gap: 54px;
  align-items: stretch;
  max-width: none;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}

.article-hero-copy {
  display: grid;
  align-content: center;
  min-height: 520px;
}

.article-page .article-hero h1 {
  max-width: 13ch;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5.35rem;
  line-height: 0.96;
  font-weight: 700;
  text-wrap: balance;
}

.article-page.article-report-detail .article-hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.article-page.article-report-detail .article-hero-copy {
  min-height: 0;
  padding-block: clamp(34px, 5vw, 82px);
}

.article-page.article-report-detail .article-hero h1 {
  max-width: none;
  font-size: clamp(2.75rem, 6vw, 5.8rem);
}

.article-page.article-report-detail .article-hero-media:not([hidden]) {
  min-height: clamp(280px, 34vw, 520px);
}

.article-page .article-hero .page-intro {
  max-width: 760px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.72;
}

.article-hero-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-muted);
  box-shadow: var(--shadow-sm);
}

.article-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-has-source-body .article-hero-media {
  background: #ffffff;
}

.article-page.article-report-detail.article-has-source-body .article-hero-media:not([hidden]) {
  display: flex;
  width: fit-content;
  max-width: min(100%, 940px);
  min-height: 0;
  margin-inline: auto;
  padding: clamp(12px, 2vw, 18px);
  align-items: center;
  justify-content: center;
}

.article-has-source-body .article-hero-media img {
  width: auto;
  max-width: min(100%, 900px);
  height: auto;
  max-height: min(56vh, 560px);
  padding: 0;
  object-fit: contain;
}

.article-page .article-meta {
  margin-top: 22px;
}

.article-page .article-meta span {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.article-page .article-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
  gap: 36px;
  align-items: start;
}

.article-page .article-body,
.article-page .article-side {
  border-radius: 8px;
  background: #ffffff;
}

.article-page .article-body {
  padding: 42px;
}

.article-page .article-body-copy {
  max-width: 880px;
}

.article-page .article-side {
  position: sticky;
  top: 104px;
  padding: 26px;
}

.article-page .article-body > .eyebrow,
.article-page .article-side > .eyebrow {
  margin-bottom: 22px;
}

.article-page .article-prose {
  display: block;
}

.article-page .article-prose > * {
  margin: 0;
}

.article-page .article-prose > * + * {
  margin-top: 18px;
}

.article-prose-lede {
  max-width: 34ch;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.32;
  font-weight: 700;
}

.article-page .article-prose p {
  max-width: 78ch;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.82;
}

.article-prose-heading {
  max-width: 24ch;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.15rem;
  line-height: 1.12;
  font-weight: 700;
}

.article-page .article-prose-heading {
  margin-top: 38px;
}

.article-prose-subheading {
  color: var(--navy);
  font-family: "Open Sans", sans-serif;
  font-size: 1.08rem;
  line-height: 1.34;
  font-weight: 850;
}

.article-page .article-prose-subheading {
  margin-top: 28px;
}

.article-prose-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}

.article-prose-list li {
  position: relative;
  min-height: 54px;
  padding: 14px 16px 14px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.66;
}

.article-prose-list li::before {
  content: "";
  position: absolute;
  top: 1.55em;
  left: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.article-prose-list strong {
  color: var(--navy);
  font-weight: 850;
}

.article-page .article-highlights {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-page .article-highlights li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.64;
}

.article-page .article-highlights li + li {
  margin-top: 0;
}

.article-page .article-highlights li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.article-page .article-actions {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-page .article-layout.is-source-article {
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 1040px);
  margin-inline: auto;
}

.article-page .article-layout.is-source-article .article-body {
  padding: clamp(24px, 4vw, 54px);
}

.article-page .article-layout.is-source-article .article-body-copy {
  max-width: none;
}

.article-source-html {
  color: var(--ink-soft);
}

.article-page .article-source-html > * + * {
  margin-top: 18px;
}

.article-page .article-source-html h2,
.article-page .article-source-html h3,
.article-page .article-source-html h4,
.article-page .article-source-html h5,
.article-page .article-source-html h6 {
  max-width: 82ch;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 850;
  line-height: 1.25;
}

.article-page .article-source-html h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.article-page .article-source-html h4,
.article-page .article-source-html h5 {
  font-size: 1.08rem;
}

.article-page .article-source-html h6 {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.75;
}

.article-page .article-source-html p,
.article-page .article-source-html li {
  max-width: 82ch;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.8;
}

.article-page .article-source-html p:has(img),
.article-page .article-source-html p:has(img) + p {
  max-width: none;
}

.article-page .article-source-html strong {
  color: var(--navy);
  font-weight: 850;
}

.article-page .article-source-html em {
  color: var(--ink-soft);
}

.article-page .article-source-html a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.article-page .article-source-html hr {
  height: 1px;
  margin: 30px 0;
  border: 0;
  background: var(--line);
}

.article-page .article-source-html ol,
.article-page .article-source-html ul {
  display: grid;
  gap: 10px;
  max-width: 82ch;
  margin: 16px 0 22px;
  padding-left: 1.45rem;
}

.article-page .article-source-html img {
  display: block;
  width: auto;
  max-width: min(100%, 860px);
  height: auto;
  max-height: min(70vh, 680px);
  margin: 22px auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
}

.article-page.article-news-detail main {
  width: min(calc(100% - 48px), 1240px);
}

.article-page.article-news-detail .article-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 4vw, 46px);
  align-items: center;
  padding-bottom: 38px;
}

.article-page.article-news-detail .article-hero-copy {
  min-height: 0;
  padding-block: clamp(18px, 3vw, 34px);
}

.article-page.article-news-detail .article-hero h1 {
  max-width: 900px;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(2.45rem, 4vw, 4.25rem);
  line-height: 1.04;
  font-weight: 800;
  text-wrap: balance;
}

.article-page.article-news-detail .article-hero .page-intro {
  max-width: 64ch;
  margin-top: 20px;
  font-size: 1.06rem;
  line-height: 1.68;
}

.article-page.article-news-detail .article-hero-media {
  min-height: 0;
  aspect-ratio: 4 / 3;
  align-self: center;
}

.article-page.article-news-detail .article-hero-media img {
  padding: 0;
  object-fit: cover;
}

.article-page.article-news-detail .article-hero-media.is-portrait-image {
  width: min(100%, 360px);
  aspect-ratio: 3 / 4;
  justify-self: end;
  background: #eef3f5;
}

.article-page.article-news-detail .article-hero-media.is-portrait-image img {
  object-fit: contain;
}

.article-page.article-news-detail .article-layout {
  grid-template-columns: minmax(0, 760px) minmax(280px, 340px);
  justify-content: center;
  gap: 28px;
}

.article-page.article-news-detail .article-body {
  padding: clamp(28px, 4vw, 44px);
}

.article-page.article-news-detail .article-prose-lede {
  max-width: none;
  color: var(--ink-soft);
  font-family: "Open Sans", sans-serif;
  font-size: 1.16rem;
  line-height: 1.72;
  font-weight: 500;
}

.article-page.article-news-detail .article-prose-heading {
  max-width: none;
  font-family: "Open Sans", sans-serif;
  font-size: 1.55rem;
  line-height: 1.22;
}

.article-page.article-news-detail .article-side {
  top: 116px;
}

@media (max-width: 1080px) {
  .article-page .article-hero,
  .article-page .article-layout {
    grid-template-columns: 1fr;
  }

  .article-hero-copy {
    min-height: 0;
  }

  .article-page .article-hero h1 {
    font-size: 4.35rem;
  }

  .article-hero-media {
    min-height: 360px;
  }

  .article-page.article-report-detail.article-has-source-body .article-hero-media:not([hidden]) {
    width: 100%;
  }

  .article-page .article-side {
    position: static;
  }
}

@media (max-width: 840px) {
  .article-page main {
    width: min(calc(100% - 28px), 1360px);
  }

  .article-page main > .article-hero:first-child {
    margin-top: 30px;
  }

  .article-page .article-hero {
    gap: 28px;
    padding-bottom: 34px;
  }

  .article-page .article-hero h1 {
    font-size: 3.35rem;
  }

  .article-page .article-hero .page-intro,
  .article-page .article-prose p {
    font-size: 1rem;
  }

  .article-page .article-body,
  .article-page .article-side {
    padding: 24px;
  }

  .article-prose-lede {
    max-width: none;
    font-size: 1.45rem;
  }

  .article-prose-heading {
    font-size: 1.72rem;
  }
}

@media (max-width: 560px) {
  .article-page .article-hero h1 {
    font-size: 2.55rem;
  }

  .article-hero-media {
    min-height: 230px;
  }

  .article-prose-list li {
    padding: 13px 14px 13px 36px;
  }

  .article-prose-list li::before {
    left: 14px;
  }

  .article-page .article-actions .button,
  .article-page .article-actions .button-ghost {
    width: 100%;
  }
}

@media (max-width: 1080px) {
  .article-page.article-news-detail .article-hero,
  .article-page.article-news-detail .article-layout {
    grid-template-columns: 1fr;
  }

  .article-page.article-news-detail .article-hero-media {
    width: 100%;
    max-width: 640px;
  }

  .article-page.article-news-detail .article-hero-media.is-portrait-image {
    width: min(100%, 360px);
    justify-self: center;
  }
}

@media (max-width: 840px) {
  .article-page.article-news-detail main {
    width: min(calc(100% - 28px), 1240px);
  }

  .article-page.article-news-detail .article-hero h1 {
    font-size: clamp(2.25rem, 9vw, 3.1rem);
  }

  .article-page.article-news-detail .article-hero .page-intro,
  .article-page.article-news-detail .article-prose-lede {
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .article-page.article-news-detail .article-hero-media.is-portrait-image {
    width: min(100%, 320px);
  }
}

/* Press & Media Center */
.press-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 34%, #fbfcf8 68%, #ffffff 100%);
}

.press-page .button {
  letter-spacing: 0;
}

.press-page main {
  width: min(calc(100% - 48px), 1360px);
}

.press-page main > section + section {
  margin-top: clamp(38px, 6vw, 78px);
}

.press-page main > section {
  scroll-margin-top: 126px;
}

.press-page .press-hero + .press-trust-strip {
  margin-top: 18px;
}

.press-hero {
  position: relative;
  min-height: clamp(500px, 62svh, 640px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  background: #0d2334;
  color: #ffffff;
}

.press-hero-media,
.press-hero-shade {
  position: absolute;
  inset: 0;
}

.press-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
}

.press-hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 20, 31, 0.92) 0%, rgba(6, 20, 31, 0.7) 42%, rgba(6, 20, 31, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 20, 31, 0.16) 0%, rgba(6, 20, 31, 0.72) 100%);
}

.press-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 460px);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  width: 100%;
  padding: clamp(44px, 6vw, 78px);
}

.press-hero-copy {
  max-width: 790px;
  min-width: 0;
}

.press-page .eyebrow {
  letter-spacing: 0;
}

.press-hero-copy h1,
.media-summary-copy h2,
.official-boilerplate h2,
.media-contact-panel h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  line-height: 1;
  font-weight: 700;
}

.press-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.7vw, 1.3rem);
  line-height: 1.7;
}

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

.press-hero .button-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.press-hero .button-ghost:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--navy);
}

.press-stat-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.press-stat-stack article {
  display: grid;
  gap: 4px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.press-stat-stack strong {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1;
}

.press-stat-stack span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.press-trust-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.press-trust-strip > span {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.press-logo-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: thin;
}

.press-logo-rail span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.press-action-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(13, 35, 52, 0.12);
  border-radius: 8px;
  background: rgba(13, 35, 52, 0.14);
  box-shadow: 0 18px 50px rgba(13, 35, 52, 0.08);
}

.press-action-bar article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 166px;
  padding: 24px;
  background: #ffffff;
}

.press-action-bar span,
.press-story-angle-grid span {
  color: #9c7427;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-action-bar strong {
  color: var(--navy);
  font-size: clamp(1.04rem, 1.4vw, 1.24rem);
  line-height: 1.35;
}

.press-action-bar .dynamic-link {
  margin-top: auto;
}

.media-summary-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 66px);
  align-items: start;
}

.media-summary-copy,
.media-summary-grid,
.press-story-angle-grid,
.press-assets-grid,
.press-release-grid,
.featured-report-list,
.press-events-grid,
.media-contact-panel > * {
  min-width: 0;
}

.media-summary-copy h2,
.official-boilerplate h2,
.media-contact-panel h2 {
  max-width: 11ch;
  color: var(--navy);
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
}

.media-summary-copy p:not(.eyebrow),
.official-boilerplate-copy p,
.media-contact-panel p {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.8;
}

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

.media-summary-grid article,
.press-asset-card,
.press-release-card,
.press-report-card,
.press-event-card,
.media-contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(13, 35, 52, 0.08);
}

.media-summary-grid article {
  display: grid;
  gap: 12px;
  min-height: 154px;
  padding: 22px;
}

.media-summary-grid span,
.press-asset-card span,
.press-event-card span,
.media-contact-card span {
  color: #357191;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.media-summary-grid strong {
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.68rem);
  line-height: 1.15;
}

.press-assets-section .section-heading,
.press-story-angle-section .section-heading,
.press-release-section .section-heading,
.featured-reports-section .section-heading,
.press-events-section .section-heading,
.impact-timeline .section-heading {
  max-width: 820px;
  margin: 0;
  text-align: left;
}

.press-page .section-heading h2 {
  max-width: 16ch;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 4.4rem);
  line-height: 1;
  font-weight: 700;
}

.press-page .section-intro {
  max-width: 740px;
}

.press-story-angle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.press-story-angle-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 294px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid #9c7427;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(13, 35, 52, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.press-story-angle-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(156, 116, 39, 0.38);
  box-shadow: 0 26px 70px rgba(13, 35, 52, 0.12);
}

.press-story-angle-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.14rem, 1.5vw, 1.36rem);
  line-height: 1.24;
}

.press-story-angle-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.press-story-angle-grid .dynamic-link {
  margin-top: auto;
}

.press-assets-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.media-kit-toolkit {
  position: relative;
}

.press-asset-card {
  display: grid;
  align-content: space-between;
  min-height: 246px;
  padding: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.press-asset-card h3,
.press-release-card h3,
.press-report-card h3,
.press-event-card h3 {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  line-height: 1.14;
}

.press-asset-card p,
.press-release-card p,
.press-report-card p,
.press-event-card p,
.media-contact-card small {
  color: var(--muted);
  line-height: 1.65;
}

.press-asset-card .dynamic-link {
  margin-top: 20px;
}

.press-asset-card:hover,
.press-release-card:hover,
.press-report-card:hover,
.press-event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 113, 145, 0.42);
  box-shadow: 0 26px 70px rgba(13, 35, 52, 0.12);
}

.press-asset-card-emphasis {
  background: #0d2334;
  color: #ffffff;
}

.press-asset-card-emphasis h3,
.press-asset-card-emphasis p,
.press-asset-card-emphasis .dynamic-link {
  color: #ffffff;
}

.official-boilerplate {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(13, 35, 52, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 100%);
}

.official-boilerplate h2 {
  max-width: 10ch;
  font-size: clamp(2.1rem, 3.5vw, 3.6rem);
}

.official-boilerplate-copy {
  display: grid;
  gap: 20px;
}

.official-boilerplate-copy p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.boilerplate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.boilerplate-copy-status {
  min-height: 1.4em;
  margin: 0;
  color: #357191;
  font-weight: 800;
}

.copy-boilerplate-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.press-release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.press-release-card {
  overflow: hidden;
}

.press-release-card.is-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.press-release-media,
.press-report-media,
.press-event-card img {
  display: block;
  overflow: hidden;
  background: var(--surface-muted);
}

.press-release-media {
  aspect-ratio: 16 / 10;
}

.press-release-card.is-featured .press-release-media {
  height: 100%;
  min-height: 390px;
  aspect-ratio: auto;
}

.press-release-media img,
.press-report-media img,
.press-event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.press-release-card:hover .press-release-media img,
.press-report-card:hover .press-report-media img,
.press-event-card:hover img {
  transform: scale(1.035);
}

.press-release-copy,
.press-report-copy,
.press-event-card div {
  padding: 24px;
}

.featured-report-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.press-report-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  overflow: hidden;
}

.press-report-media {
  min-height: 286px;
}

.press-report-copy {
  display: grid;
  align-content: center;
}

.press-events-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-top: 30px;
}

.press-event-card {
  overflow: hidden;
}

.press-event-card-large {
  grid-row: span 2;
}

.press-event-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.press-event-card-large img {
  aspect-ratio: 16 / 12;
}

.press-timeline-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 1fr);
  gap: 14px;
  margin-top: 30px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
}

.press-timeline-track article {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 248px;
  padding: 26px;
  border-top: 4px solid #357191;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(13, 35, 52, 0.08);
}

.press-timeline-track span {
  color: #357191;
  font-weight: 900;
  font-size: 0.92rem;
}

.press-timeline-track strong {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.2;
}

.press-timeline-track p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.media-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(32px, 6vw, 72px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 35, 52, 0.98), rgba(23, 55, 77, 0.94)),
    url("./assets/images/florida-leaders-talking.jpg") center / cover;
  color: #ffffff;
}

.media-contact-panel h2,
.media-contact-panel p {
  color: #ffffff;
}

.media-contact-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  font-style: normal;
}

.media-contact-card strong {
  color: var(--navy);
  font-size: 1.8rem;
}

.media-contact-card a {
  color: #1a6384;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.media-contact-card small {
  display: block;
}

@media (max-width: 1180px) {
  .press-hero-inner,
  .media-summary-section,
  .media-contact-panel {
    grid-template-columns: 1fr;
  }

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

  .press-assets-grid,
  .press-release-grid,
  .press-story-angle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press-release-card.is-featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .press-release-card.is-featured .press-release-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 840px) {
  .press-page main {
    width: min(calc(100% - 28px), 1360px);
  }

  .press-page main > section {
    scroll-margin-top: 96px;
  }

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

  .press-hero-inner {
    padding: 34px 22px;
  }

  .press-stat-stack,
  .media-summary-grid,
  .press-assets-grid,
  .press-release-grid,
  .press-events-grid,
  .press-action-bar,
  .press-story-angle-grid {
    grid-template-columns: 1fr;
  }

  .press-release-card.is-featured {
    grid-column: auto;
  }

  .press-trust-strip,
  .official-boilerplate,
  .press-report-card {
    grid-template-columns: 1fr;
  }

  .press-report-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .press-event-card-large {
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .press-hero-copy h1 {
    max-width: 8ch;
    font-size: 3rem;
    line-height: 1.02;
    text-wrap: balance;
  }

  .press-hero-inner {
    max-width: calc(100vw - 28px);
    overflow: hidden;
  }

  .press-hero-copy,
  .press-stat-stack {
    width: calc(100vw - 72px);
    max-width: calc(100vw - 72px);
  }

  .press-hero-copy p:not(.eyebrow),
  .press-hero .hero-actions,
  .press-hero .button {
    max-width: 100%;
  }

  .press-hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .press-hero .button,
  .media-contact-panel .button {
    width: 100%;
  }

  .media-summary-copy h2,
  .official-boilerplate h2,
  .media-contact-panel h2,
  .press-page .section-heading h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .press-asset-card,
  .press-release-copy,
  .press-report-copy,
  .press-event-card div,
  .media-contact-card,
  .press-action-bar article,
  .press-story-angle-grid article {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .press-asset-card,
  .press-release-card,
  .press-report-card,
  .press-event-card,
  .press-story-angle-grid article,
  .press-release-media img,
  .press-report-media img,
  .press-event-card img {
    transition: none;
  }
}

/* Simplified Press & Media Center */
.press-page {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 48%, #ffffff 100%);
}

.press-page main {
  width: 100%;
}

.press-page main > section + section {
  margin-top: clamp(44px, 7vw, 84px);
}

.press-page main > section:not(.press-hero) {
  width: min(calc(100% - 48px), 1180px);
  margin-right: auto;
  margin-left: auto;
}

#downloadable-assets,
#press-contact,
#press-releases,
#logos,
#headshots,
#bios {
  scroll-margin-top: 126px;
}

.press-page .section-heading {
  max-width: 760px;
  margin: 0 0 28px;
  text-align: left;
}

.press-page .section-heading h2 {
  max-width: 720px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.04;
  font-weight: 700;
}

.press-page .section-intro {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.press-page .eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-page .eyebrow::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 22px;
  background: var(--accent);
}

.press-hero {
  position: relative;
  min-height: clamp(620px, calc(100svh - 116px), 760px);
  align-items: center;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(135deg, var(--surface-strong) 0%, var(--surface-muted) 100%);
  color: var(--navy);
}

.press-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248, 251, 253, 0.98) 0%, rgba(248, 251, 253, 0.94) 35%, rgba(237, 244, 247, 0.38) 60%, rgba(237, 244, 247, 0) 100%);
  pointer-events: none;
}

.press-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  width: min(calc(100% - 96px), 1360px);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(70px, 8vw, 110px) 0;
}

.press-hero-copy {
  max-width: 560px;
}

.press-hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.5rem, 7.6vw, 7.75rem);
  line-height: 0.92;
  font-weight: 700;
}

.press-hero-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.18rem, 1.65vw, 1.42rem);
  line-height: 1.62;
}

.press-hero .hero-actions {
  margin-top: 40px;
}

.press-asset-button {
  gap: 14px;
  min-height: 70px;
  padding: 0 34px;
  border-color: var(--navy);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(11, 33, 48, 0.18);
}

.press-asset-button:hover,
.press-asset-button:focus-visible {
  border-color: #061622;
  background: linear-gradient(135deg, #061622 0%, var(--navy) 100%);
  color: #ffffff;
}

.press-asset-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.press-hero .button-ghost {
  border-color: rgba(13, 35, 52, 0.24);
  background: rgba(255, 255, 255, 0.42);
  color: var(--navy);
}

.press-hero .button-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #ffffff;
}

.press-hero-visual {
  position: absolute;
  inset: 0 0 0 54%;
  z-index: 0;
  overflow: hidden;
}

.press-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 62%;
  transform: scale(1.22);
  transform-origin: 58% 62%;
}

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

.quick-access-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(13, 35, 52, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.quick-access-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 125, 132, 0.36);
  box-shadow: 0 24px 58px rgba(13, 35, 52, 0.11);
}

.quick-access-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(47, 125, 132, 0.12);
  color: var(--teal);
}

.quick-access-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-access-card h3 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.18;
}

.quick-access-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.quick-access-card .dynamic-link {
  align-self: end;
  margin-top: auto;
}

.press-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(32px, 6vw, 62px);
  border: 1px solid rgba(13, 35, 52, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--surface-strong) 0%, var(--surface-muted) 100%);
}

.press-contact-panel h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 4.4vw, 4.3rem);
  line-height: 1;
}

.press-contact-card {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(13, 35, 52, 0.08);
  font-style: normal;
}

.press-contact-card strong {
  color: var(--navy);
  font-size: 1.75rem;
  line-height: 1.1;
}

.press-contact-card span {
  color: var(--muted);
  font-weight: 800;
}

.press-contact-card a:not(.button) {
  color: var(--teal);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.press-contact-card .button {
  justify-self: start;
  margin-top: 8px;
}

.asset-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(13, 35, 52, 0.08);
}

.asset-table {
  width: 100%;
  border-collapse: collapse;
}

.asset-table th,
.asset-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.asset-table thead th {
  background: var(--navy);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asset-table tbody tr:last-child td {
  border-bottom: 0;
}

.asset-table tbody td:first-child {
  color: var(--navy);
  font-weight: 900;
}

.asset-table tbody td:nth-child(2) {
  color: var(--muted);
  font-weight: 800;
}

.asset-table a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.asset-table a:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #ffffff;
}

.press-release-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.press-release-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.press-release-list h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.28;
}

.press-release-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.press-release-list a {
  color: var(--teal);
  font-weight: 900;
  white-space: nowrap;
}

.press-release-list a::after {
  content: " ->";
}

@media (max-width: 980px) {
  .press-hero-inner,
  .press-contact-panel {
    grid-template-columns: 1fr;
  }

  .press-hero-visual {
    inset: 0 0 0 32%;
    opacity: 0.36;
  }

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

@media (max-width: 700px) {
  .press-page main > section:not(.press-hero) {
    width: min(calc(100% - 28px), 1180px);
  }

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

  .press-hero-inner {
    width: min(calc(100% - 28px), 1180px);
    min-height: auto;
    padding: 54px 0 64px;
  }

  .press-hero-copy h1 {
    font-size: clamp(3.2rem, 17vw, 4.6rem);
  }

  .press-hero-visual {
    display: none;
  }

  .quick-access-grid {
    grid-template-columns: 1fr;
  }

  .quick-access-card {
    min-height: 0;
  }

  .press-contact-panel,
  .press-contact-card {
    padding: 22px;
  }

  .press-contact-card .button,
  .press-hero .button {
    width: 100%;
  }

  .asset-table thead {
    display: none;
  }

  .asset-table,
  .asset-table tbody,
  .asset-table tr,
  .asset-table td {
    display: block;
    width: 100%;
  }

  .asset-table tr {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .asset-table tbody tr:last-child {
    border-bottom: 0;
  }

  .asset-table td {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    padding: 7px 0;
    border-bottom: 0;
  }

  .asset-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .asset-table a {
    width: max-content;
  }

  .press-release-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .press-release-list a {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quick-access-card,
  .asset-table a {
    transition: none;
  }
}

/* Housing Data Project gateway */
.housing-data-page {
  background: #ffffff;
}

.housing-data-page .site-shell {
  background: #ffffff;
}

.housing-gateway-page {
  width: min(calc(100% - 48px), 1120px);
  padding: clamp(42px, 6vw, 66px) 0 clamp(46px, 7vw, 82px);
}

.housing-gateway-hero {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin: 0 auto;
}

.housing-gateway-label {
  margin: 0 0 14px;
  color: #47657a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.housing-gateway-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.housing-gateway-copy {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.68;
}

.housing-gateway-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.housing-launch-button {
  min-height: 52px;
  padding: 0 24px;
  gap: 8px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.98rem;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(13, 35, 52, 0.12);
}

.housing-launch-button span {
  font-size: 0.92em;
  line-height: 1;
}

.housing-gateway-partner {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.housing-platform-preview {
  display: block;
  width: min(85vw, 980px);
  max-width: 100%;
  margin-top: clamp(30px, 5vw, 48px);
}

.housing-platform-screenshot {
  display: block;
  width: 100%;
  border: 1px solid rgba(13, 35, 52, 0.1);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(13, 35, 52, 0.14);
}

.housing-data-page .site-footer {
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(13, 35, 52, 0.1);
}

@media (max-width: 820px) {
  .housing-gateway-page {
    width: min(calc(100% - 32px), 1120px);
    padding-top: 42px;
  }

  .housing-gateway-hero h1 {
    font-size: clamp(2.55rem, 11vw, 4.2rem);
  }

  .housing-platform-preview {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .housing-launch-button {
    width: 100%;
  }

  .housing-data-page .site-footer {
    display: grid;
    justify-items: center;
    text-align: center;
  }
}

/* Conferences reference hero */
.conferences-page {
  --conference-navy: #061622;
  --conference-navy-deep: #02101b;
  --conference-teal: #39d1c8;
  --conference-line: rgba(167, 212, 229, 0.28);
  background: #ffffff;
}

.conferences-page .site-shell {
  background: #ffffff;
}

.conferences-page main {
  padding-top: 0;
}

.conferences-page .conference-hero-live {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100vw;
  min-height: clamp(760px, calc(100svh - 98px), 930px);
  margin: 0 0 0 calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--conference-navy);
  box-shadow: none;
  color: #ffffff;
}

.conferences-page .conference-hero-media,
.conferences-page .conference-hero-shade,
.conferences-page .conference-hero-grid {
  position: absolute;
  inset: 0;
}

.conferences-page .conference-hero-media {
  z-index: 0;
}

.conferences-page .conference-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 61%;
  filter: saturate(0.92) contrast(1.06);
  transform: scale(1.015);
}

.conferences-page .conference-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 15, 26, 0.96) 0%, rgba(2, 15, 26, 0.9) 35%, rgba(2, 15, 26, 0.34) 68%, rgba(2, 15, 26, 0.56) 100%),
    linear-gradient(180deg, rgba(2, 15, 26, 0.1) 0%, rgba(2, 15, 26, 0.4) 54%, rgba(2, 15, 26, 0.88) 100%);
}

.conferences-page .conference-hero-grid {
  z-index: 2;
  width: min(46vw, 610px);
  height: 72%;
  background-image: radial-gradient(circle, rgba(57, 209, 200, 0.34) 1.5px, transparent 1.7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 78%);
  opacity: 0.34;
}

.conferences-page .conference-stage-mark {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: min(54vw, 780px);
  aspect-ratio: 690 / 716;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(2, 15, 26, 0.18), rgba(2, 15, 26, 0.02)),
    url("./assets/images/conference-stage-reference.png") center / cover;
  filter: saturate(0.92) contrast(1.04);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.74) 16%, #000000 100%);
  opacity: 0.94;
}

.conferences-page .conference-stage-mark img,
.conferences-page .conference-stage-mark svg {
  display: none;
}

.conferences-page .conference-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(calc(100% - 128px), 1408px);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(84px, 9vh, 112px) 0 28px;
}

.conferences-page .conference-hero-copy {
  max-width: 790px;
}

.conferences-page .conference-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 30px;
  color: var(--conference-teal);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.conferences-page .conference-hero-kicker span {
  display: inline-block;
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.conferences-page .conference-hero-live h1 {
  max-width: 8.9em;
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 5.7vw, 6.15rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.38);
}

.conferences-page .conference-hero-live h1 em {
  color: var(--conference-teal);
  font-style: normal;
}

.conferences-page .conference-hero-live .page-intro {
  max-width: 610px;
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.42vw, 1.34rem);
  line-height: 1.5;
}

.conferences-page .conference-hero-live .hero-actions {
  gap: 22px;
}

.conferences-page .conference-hero-live .button {
  min-height: 58px;
  padding: 0 26px;
  gap: 24px;
  border-radius: 7px;
  background: #ffffff;
  color: var(--navy);
  font-size: 1rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.conferences-page .conference-hero-live .button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.conferences-page .conference-hero-live .button-ghost {
  min-width: 212px;
  border-color: rgba(205, 231, 240, 0.48);
  background: rgba(3, 23, 38, 0.28);
  color: #ffffff;
  box-shadow: none;
}

.conferences-page .conference-hero-live .button:hover {
  background: #f1f8fb;
}

.conferences-page .conference-hero-live .button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.conferences-page .conference-proof-strip {
  display: grid;
  grid-template-columns: 0.95fr 1.06fr 1.02fr 1.08fr;
  gap: clamp(12px, 1.1vw, 18px);
  min-height: 180px;
  margin-top: clamp(42px, 5vh, 76px);
}

.conferences-page .conference-proof-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-width: 0;
  padding: 28px clamp(26px, 3.1vw, 44px);
  border: 1px solid var(--conference-line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5, 31, 50, 0.58), rgba(5, 31, 50, 0.72)),
    radial-gradient(circle at top left, rgba(57, 209, 200, 0.1), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.conferences-page .conference-proof-item svg {
  width: 48px;
  height: 48px;
  color: var(--conference-teal);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.conferences-page .conference-proof-item strong,
.conferences-page .conference-proof-item span {
  display: block;
}

.conferences-page .conference-proof-item strong {
  color: #ffffff;
  font-size: clamp(1.32rem, 1.65vw, 1.62rem);
  font-weight: 900;
  line-height: 1.08;
}

.conferences-page .conference-proof-item:first-child strong {
  font-size: clamp(1.9rem, 2.2vw, 2.28rem);
}

.conferences-page .conference-proof-item span {
  max-width: 21ch;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.93rem, 1.1vw, 1.05rem);
  font-weight: 500;
  line-height: 1.38;
}

.conferences-page .conference-paths {
  scroll-margin-top: 112px;
}

@media (max-width: 1360px) {
  .conferences-page .conference-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1240px) {
  .conferences-page .conference-hero-inner {
    width: min(calc(100% - 72px), 1408px);
  }

  .conferences-page .conference-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 1080px) {
  .conferences-page .conference-stage-mark {
    opacity: 0.46;
    width: min(58vw, 620px);
  }
}

@media (max-width: 820px) {
  .conferences-page .conference-hero-live {
    min-height: auto;
  }

  .conferences-page .conference-hero-image {
    object-position: center bottom;
  }

  .conferences-page .conference-stage-mark {
    display: none;
  }

  .conferences-page .conference-hero-grid {
    width: 78vw;
    height: 52%;
  }

  .conferences-page .conference-hero-inner {
    width: min(calc(100% - 40px), 1408px);
    min-height: auto;
    padding: 64px 0 24px;
  }

  .conferences-page .conference-hero-kicker {
    margin-bottom: 22px;
    font-size: 0.82rem;
  }

  .conferences-page .conference-hero-live h1 {
    max-width: 100%;
    font-size: clamp(3.1rem, 12.5vw, 4.9rem);
    line-height: 0.98;
  }

  .conferences-page .conference-hero-live .page-intro {
    max-width: 36rem;
    font-size: 1.03rem;
  }

  .conferences-page .conference-proof-strip {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .conferences-page .conference-proof-item {
    min-height: 136px;
  }

}

@media (max-width: 560px) {
  .conferences-page .conference-hero-live .hero-actions,
  .conferences-page .conference-hero-live .button,
  .conferences-page .conference-hero-live .button-ghost {
    width: 100%;
  }

  .conferences-page .conference-hero-live .button {
    justify-content: center;
    min-height: 54px;
  }

  .conferences-page .conference-proof-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 20px;
  }

  .conferences-page .conference-proof-item svg {
    width: 42px;
    height: 42px;
  }
}

/* Leadership page */
.leadership-page {
  --leadership-teal: #2f7d84;
  --leadership-coral: #c96b56;
  --leadership-gold: #c99a3f;
  --leadership-ink: #071622;
  background:
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 36%, #eff5f7 100%);
}

.leadership-page main > section + section {
  margin-top: 56px;
}

.leadership-page h1,
.leadership-page h2,
.leadership-page h3 {
  letter-spacing: 0;
}

.leadership-hero {
  width: min(calc(100vw - 48px), var(--max));
  min-height: 660px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: 42px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 58px;
  border: 1px solid rgba(7, 22, 34, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(7, 22, 34, 0.96) 0%, rgba(11, 42, 60, 0.94) 54%, rgba(47, 125, 132, 0.84) 100%);
  color: #ffffff;
  box-shadow: 0 32px 90px rgba(14, 39, 56, 0.18);
}

.leadership-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 74%);
  pointer-events: none;
}

.leadership-hero-copy,
.leadership-portrait-stack {
  position: relative;
  z-index: 2;
}

.leadership-hero .about-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.leadership-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: #ffffff;
  font-size: 4.85rem;
  line-height: 0.96;
  font-weight: 800;
  text-wrap: balance;
}

.leadership-hero p:not(.about-kicker) {
  max-width: 60ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.11rem;
  line-height: 1.64;
}

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

.leadership-hero .button {
  background: #ffffff;
  color: var(--navy);
}

.leadership-hero .button:hover {
  background: #eef5f7;
}

.leadership-hero .button-ghost {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.leadership-hero .button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.18);
}

.leadership-portrait-stack {
  display: grid;
  gap: 18px;
}

.leadership-mini-card {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  min-height: 202px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.leadership-mini-card-secondary {
  width: 100%;
  margin-left: 0;
}

.leadership-mini-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-mini-card-primary img {
  object-position: center 18%;
}

.leadership-mini-card-secondary img {
  object-position: center;
}

.leadership-mini-card div {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
}

.leadership-mini-card span {
  color: var(--leadership-teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.leadership-mini-card strong {
  display: block;
  margin-top: 10px;
  font-size: 2.35rem;
  line-height: 0.96;
}

.leadership-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(7, 22, 34, 0.12);
  border-radius: 8px;
  background: rgba(7, 22, 34, 0.12);
  box-shadow: var(--shadow-sm);
}

.leadership-proof article {
  min-height: 216px;
  padding: 28px;
  background: #ffffff;
}

.leadership-proof span {
  color: var(--leadership-coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.leadership-proof strong {
  display: block;
  margin-top: 28px;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.08;
}

.leadership-proof p {
  max-width: 34ch;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.leader-story {
  display: grid;
  grid-template-columns: minmax(330px, 0.74fr) minmax(0, 1.26fr);
  gap: 46px;
  align-items: stretch;
}

.leader-story-reverse {
  grid-template-columns: minmax(0, 1.26fr) minmax(330px, 0.74fr);
}

.leader-story-reverse .leader-portrait {
  order: 2;
}

.leader-portrait {
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.leader-portrait-dark {
  background: var(--leadership-ink);
}

.leader-portrait-light {
  background: #f8eef0;
}

.leader-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-portrait-dark img {
  object-position: center top;
}

.leader-portrait-light img {
  object-position: center top;
}

.leader-story-copy {
  align-self: center;
  min-width: 0;
}

.leader-story-copy h2 {
  max-width: 10ch;
  margin: 0;
  color: var(--navy);
  font-size: 4.55rem;
  line-height: 0.92;
  font-weight: 800;
}

.leader-lede {
  max-width: 62ch;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.64;
}

.leader-bio {
  display: grid;
  gap: 16px;
  max-width: 74ch;
  margin-top: 28px;
}

.leader-bio p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.leader-bio cite {
  font-style: italic;
}

.leadership-connect {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  padding: 42px;
  border: 1px solid rgba(7, 22, 34, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #eef7f8 100%);
  box-shadow: var(--shadow-sm);
}

.leadership-connect h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--navy);
  font-size: 3.35rem;
  line-height: 0.98;
  font-weight: 800;
}

.leadership-connect p:not(.about-kicker) {
  max-width: 66ch;
  margin: 20px 0 0;
  color: var(--ink-soft);
  line-height: 1.66;
}

.leadership-connect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  flex: 0 0 auto;
}

@media (max-width: 1080px) {
  .site-header .header-actions {
    order: 2;
    margin-left: auto;
  }

  .site-header .nav-toggle {
    order: 3;
    flex: 0 0 auto;
  }

  .leadership-hero,
  .leader-story,
  .leader-story-reverse {
    grid-template-columns: 1fr;
  }

  .leader-story-reverse .leader-portrait {
    order: initial;
  }

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

  .leadership-portrait-stack {
    max-width: 680px;
  }

  .leader-portrait {
    min-height: 520px;
  }

  .leader-story-copy h2 {
    max-width: 100%;
  }

  .leadership-connect {
    align-items: flex-start;
    flex-direction: column;
  }

  .leadership-connect-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 840px) {
  .leadership-hero,
  .leadership-page main,
  .leadership-page .site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .leadership-hero {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 34px 24px;
  }

  .leadership-hero h1 {
    max-width: 10ch;
    font-size: 3.35rem;
  }

  .leadership-proof {
    grid-template-columns: 1fr;
  }

  .leadership-proof article {
    min-height: 168px;
  }

  .leader-story {
    gap: 28px;
  }

  .leader-story-copy h2 {
    font-size: 3.25rem;
  }

  .leader-lede {
    font-size: 1.06rem;
  }

  .leadership-connect {
    padding: 28px;
  }

  .leadership-connect h2 {
    max-width: 100%;
    font-size: 2.75rem;
  }
}

@media (max-width: 560px) {
  .leadership-page main,
  .leadership-page .site-footer {
    width: calc(100vw - 56px);
    max-width: var(--max);
  }

  .site-header {
    padding: 10px 12px;
  }

  .site-header .header-actions .button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .site-header .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .leadership-hero h1 {
    max-width: 9ch;
    font-size: 2.75rem;
  }

  .leadership-hero p:not(.about-kicker),
  .leader-lede,
  .leader-bio p,
  .leadership-connect p:not(.about-kicker) {
    font-size: 1rem;
  }

  .leadership-mini-card,
  .leadership-mini-card-secondary {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 168px;
  }

  .leadership-mini-card div {
    padding: 18px;
  }

  .leadership-mini-card strong {
    font-size: 1.65rem;
  }

  .leader-portrait {
    min-height: 380px;
  }

  .leader-story-copy h2 {
    font-size: 2.65rem;
  }

  .leadership-proof article,
  .leadership-connect {
    padding: 22px;
  }

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

/* FPP review updates */
.site-nav .nav-dropdown {
  min-width: 246px;
}

.pillar-index-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.pillar-index-grid a {
  display: grid;
  gap: 12px;
  min-height: 122px;
  padding: 20px;
  background: #ffffff;
  color: var(--navy);
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.pillar-index-grid a:hover,
.pillar-index-grid a:focus-visible {
  background: var(--navy);
  color: #ffffff;
}

.pillar-index-grid span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.pillar-index-grid strong {
  max-width: 14ch;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.16;
}

.home-fav-summit .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-fav-summit .button {
  margin-top: 0;
}

.home-fav-summit .button-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.home-fav-summit .button-ghost:hover,
.home-fav-summit .button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.mission-jumpbar.initiatives-hero-rail {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pillar-resource-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pillar-resource-panel a {
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 180px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.pillar-resource-panel a:hover,
.pillar-resource-panel a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.pillar-resource-panel span {
  color: var(--initiative-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.pillar-resource-panel strong {
  max-width: 15ch;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.05;
}

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

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

.about-mission-vision article {
  min-height: 360px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(7, 22, 34, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 125, 132, 0.12), transparent 54%),
    #ffffff;
  box-shadow: var(--shadow-sm);
}

.about-mission-vision article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(201, 107, 86, 0.12), transparent 54%),
    #ffffff;
}

.about-mission-vision h2 {
  max-width: 16ch;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1;
}

.about-mission-vision p:not(.about-kicker) {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.66;
}

.leader-photo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background:
    linear-gradient(145deg, rgba(47, 125, 132, 0.2), rgba(201, 107, 86, 0.14)),
    #edf5f7;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 850;
  letter-spacing: 0;
}

.about-leader-card-pending figure,
.leader-portrait-placeholder {
  background: #edf5f7;
}

.leadership-mini-card .leader-photo-placeholder {
  min-height: 202px;
  font-size: 2.45rem;
}

.board-member-photo,
.board-profile-photo {
  background:
    linear-gradient(180deg, #edf5f7 0%, #dce9ec 100%);
}

.board-member-photo img,
.board-profile-photo img {
  object-position: center top;
}

.other-data-resources {
  width: 100%;
  margin-top: clamp(44px, 6vw, 70px);
  padding-top: clamp(36px, 5vw, 58px);
  border-top: 1px solid rgba(13, 35, 52, 0.1);
  text-align: left;
}

.other-data-resources .section-heading {
  max-width: 760px;
}

.data-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.data-resource-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 240px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.data-resource-grid span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.data-resource-grid strong {
  color: var(--navy);
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 1.08;
}

.data-resource-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.case-support-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  margin-bottom: clamp(56px, 7vw, 92px);
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(7, 22, 34, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(58, 143, 152, 0.12), transparent 46%, rgba(201, 107, 86, 0.12)),
    #ffffff;
  box-shadow: var(--shadow-sm);
}

.case-support-copy h2 {
  max-width: 15ch;
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.95;
}

.case-support-copy p:not(.movement-label),
.case-support-card p {
  max-width: 62ch;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.66;
}

.case-support-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.case-support-pillars span {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
}

.case-support-card {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 8px;
  background: var(--movement-dark);
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(5, 18, 29, 0.18);
}

.case-support-card strong {
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.case-support-card p {
  color: rgba(255, 255, 255, 0.78);
}

.case-support-card .button {
  margin-top: 26px;
  background: #ffffff;
  color: var(--navy);
}

.case-support-card .dynamic-link {
  margin-top: 18px;
  color: #ffffff;
}

@media (max-width: 1180px) {
  .video-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .pillar-index-grid,
  .about-mission-vision,
  .data-resource-grid,
  .case-support-section {
    grid-template-columns: 1fr;
  }

  .mission-jumpbar.initiatives-hero-rail,
  .pillar-resource-panel {
    grid-template-columns: 1fr;
  }

  .about-mission-vision article,
  .case-support-section {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .pillar-resource-panel {
    gap: 10px;
  }

  .video-preview-grid {
    grid-template-columns: 1fr;
  }

  .case-support-section {
    padding: 22px;
  }
}

/* About navigation */
.site-nav .nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav .nav-group::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 12px;
}

.site-nav .nav-group > .nav-parent {
  padding-right: 34px;
}

.site-nav .nav-parent::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  bottom: auto;
  left: auto;
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: transparent;
  transform: translateY(-64%) rotate(45deg);
  transform-origin: center;
}

.site-nav .nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 246px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.site-nav .nav-group:hover .nav-dropdown,
.site-nav .nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav .nav-dropdown a {
  justify-content: flex-start;
  min-height: 40px;
  width: 100%;
  padding-inline: 12px;
  white-space: nowrap;
}

/* Board page */
.board-page main > section + section {
  margin-top: clamp(34px, 4vw, 54px);
}

.board-simple-hero {
  max-width: 760px;
  margin-top: clamp(34px, 5vw, 56px);
  padding-bottom: clamp(22px, 3vw, 30px);
  border-bottom: 1px solid var(--line);
}

.board-simple-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.1rem, 7vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.board-simple-hero .page-intro {
  max-width: 58ch;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.board-roster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.board-member-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.board-member-card:hover,
.board-member-card:focus-within {
  border-color: rgba(47, 125, 132, 0.34);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.board-member-photo {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-muted);
}

.board-member-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.board-member-card:hover .board-member-photo img,
.board-member-card:focus-within .board-member-photo img {
  transform: scale(1.035);
}

.board-member-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.board-member-role {
  margin: 0;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.board-member-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2vw, 1.88rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.board-member-body p:not(.board-member-role) {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.board-member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.board-member-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
}

.board-member-body .dynamic-link {
  width: fit-content;
  margin-top: 2px;
  font-weight: 850;
}

.board-profile-page main {
  padding-bottom: clamp(72px, 8vw, 108px);
}

.board-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-top: clamp(34px, 5vw, 66px);
  padding-bottom: clamp(36px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
}

.board-profile-copy {
  max-width: 760px;
}

.board-profile-back {
  display: inline-flex;
  width: fit-content;
  margin-bottom: clamp(28px, 4vw, 44px);
  font-weight: 850;
}

.board-profile-copy h1 {
  max-width: 10ch;
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(3.25rem, 8.4vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.board-profile-lede {
  max-width: 60ch;
  margin: clamp(20px, 3vw, 30px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.7;
}

.board-profile-copy .board-member-tags {
  margin-top: clamp(22px, 3vw, 32px);
}

.board-profile-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  box-shadow: var(--shadow-md);
}

.board-profile-photo::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: calc(var(--radius-md) - 6px);
  pointer-events: none;
}

.board-profile-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.board-profile-content {
  display: grid;
  grid-template-columns: 220px minmax(0, var(--copy));
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  max-width: 1000px;
}

.board-profile-meta {
  display: grid;
  gap: 10px;
  padding-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.board-profile-meta span {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.board-profile-bio {
  display: grid;
  gap: 18px;
}

.board-profile-bio p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.2vw, 1.13rem);
  line-height: 1.82;
}

.board-profile-bio em {
  color: var(--ink);
}

.board-profile-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding-top: clamp(8px, 2vw, 18px);
  border-top: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .site-nav .nav-group {
    display: grid;
    width: 100%;
  }

  .site-nav .nav-group::before,
  .site-nav .nav-parent::after {
    display: none;
  }

  .site-nav .nav-group > .nav-parent {
    padding-right: 10px;
  }

  .site-nav .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 4px 0 0 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav .nav-dropdown a {
    min-height: 36px;
    padding-inline: 12px;
  }

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

  .board-profile-hero {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    align-items: center;
  }

  .board-profile-copy h1 {
    font-size: clamp(3rem, 9vw, 5.6rem);
  }

  .board-profile-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .board-profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-top: 0;
  }

  .board-profile-meta span {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .board-roster-grid {
    grid-template-columns: 1fr;
  }

  .board-member-body {
    padding: 20px;
  }

  .board-profile-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .board-profile-copy h1 {
    max-width: 100%;
    font-size: clamp(2.72rem, 14vw, 4.4rem);
  }

  .board-profile-photo {
    max-width: 420px;
  }

  .board-profile-nav .button {
    width: 100%;
  }
}

/* Shared polished footer and policy pages */
.site-footer,
.housing-data-page .site-footer,
.leadership-page .site-footer {
  display: block;
  width: 100%;
  max-width: none;
  margin: 72px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, #0b2232 0%, #061622 100%);
  color: rgba(247, 251, 255, 0.76);
  font-size: 0.95rem;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-footer p {
  max-width: none;
}

.footer-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 58px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.55fr);
  gap: 56px;
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-logo-link {
  display: inline-flex;
  width: min(330px, 100%);
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.98;
}

.footer-brand-block p {
  margin: 0;
  max-width: 48ch;
  color: rgba(247, 251, 255, 0.72);
  line-height: 1.72;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 800;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.footer-button:hover {
  transform: translateY(-1px);
  background: #edf5fb;
}

.footer-button-outline {
  background: transparent;
  color: #ffffff;
}

.footer-button-outline:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.footer-link-group {
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer-heading {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-link-group a,
.footer-credit a {
  color: rgba(247, 251, 255, 0.74);
  line-height: 1.36;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.footer-link-group a:hover,
.footer-credit a:hover {
  color: #ffffff;
}

.site-footer a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(247, 251, 255, 0.58);
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  display: inline-flex;
  gap: 0.38rem;
  align-items: baseline;
}

.footer-credit a {
  color: #ffffff;
  font-weight: 800;
}

.home-page .site-footer {
  margin-top: 0;
}

.policy-page main {
  padding-bottom: 0;
}

.policy-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 390px;
  margin-top: 36px;
  padding: 48px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #061622;
  color: #ffffff;
}

.policy-hero img,
.policy-hero-shade {
  position: absolute;
  inset: 0;
}

.policy-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.policy-hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 22, 34, 0.92), rgba(6, 22, 34, 0.54) 48%, rgba(6, 22, 34, 0.18)),
    linear-gradient(180deg, rgba(6, 22, 34, 0.08), rgba(6, 22, 34, 0.72));
}

.policy-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.policy-kicker {
  margin: 0 0 14px;
  color: rgba(247, 251, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.policy-hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

.policy-hero-copy p:last-child {
  margin: 20px 0 0;
  max-width: 62ch;
  color: rgba(247, 251, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.7;
}

.policy-content {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  margin-top: 34px;
}

.policy-summary {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
}

.policy-summary p,
.policy-summary strong {
  margin: 0;
}

.policy-summary p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-summary strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.policy-document {
  display: grid;
  gap: 28px;
}

.policy-section {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.policy-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-section h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.18;
}

.policy-section p,
.policy-section li {
  color: var(--ink-soft);
  line-height: 1.78;
}

.policy-section p {
  margin: 0;
}

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

.policy-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2rem;
}

@media (max-width: 1080px) {
  .footer-top,
  .policy-content {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 42px;
  }

  .policy-summary {
    position: static;
  }

  .policy-hero-copy h1 {
    font-size: 3.65rem;
  }
}

@media (max-width: 720px) {
  .footer-inner {
    width: min(calc(100% - 32px), var(--max));
    padding: 46px 0 26px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-hero {
    min-height: 330px;
    margin-top: 22px;
    padding: 30px 24px;
    border-radius: 20px;
  }

  .policy-hero-copy h1 {
    font-size: 2.82rem;
  }

  .policy-hero-copy p:last-child {
    font-size: 1rem;
  }

  .policy-content {
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .housing-data-page .site-footer,
  .leadership-page .site-footer,
  .site-footer {
    display: block;
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .footer-logo-link {
    width: min(280px, 100%);
  }

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

  .policy-summary {
    padding-left: 16px;
  }
}
