:root {
  --navy-1000: #03101f;
  --navy-950: #06172c;
  --navy-900: #071b33;
  --navy-850: #0a2646;
  --navy-800: #0d3158;
  --navy-700: #154a79;
  --red-800: #8f0c18;
  --red-700: #aa0f1d;
  --red-600: #c31324;
  --red-500: #dd2434;
  --ink: #111827;
  --slate: #596473;
  --line: #d9dee5;
  --paper: #f6f4ef;
  --ice: #eef3f7;
  --white: #ffffff;
  --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 28px 80px rgba(3, 16, 31, .17);
  --shadow-soft: 0 16px 45px rgba(3, 16, 31, .1);
  --header-height: 92px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 124px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { padding-right: 0 !important; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--red-600); color: #fff; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 99999;
  padding: .75rem 1rem;
  color: #fff;
  background: var(--navy-950);
  border: 2px solid #fff;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 3px solid #f5b942;
  outline-offset: 3px;
}

.container-xxl { max-width: 1440px; }
.section-pad { padding: clamp(5rem, 8vw, 8.75rem) 0; }
.section-label,
.modal-kicker {
  margin: 0 0 1rem;
  color: var(--red-700);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.25;
  text-transform: uppercase;
}
.section-label-light { color: #ff6672; }
.section-label::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 2px;
  margin-right: .75rem;
  vertical-align: middle;
  background: currentColor;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  color: var(--navy-950);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -.035em;
  text-wrap: balance;
}
p { text-wrap: pretty; }
.btn {
  min-height: 48px;
  padding: .72rem 1.15rem;
  border-radius: 0;
  font-weight: 800;
  letter-spacing: .015em;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-ciag-red { color: #fff; background: var(--red-600); border-color: var(--red-600); box-shadow: 0 10px 30px rgba(195, 19, 36, .22); }
.btn-ciag-red:hover, .btn-ciag-red:focus { color: #fff; background: var(--red-800); border-color: var(--red-800); }
.btn-navy { color: #fff; background: var(--navy-900); border-color: var(--navy-900); }
.btn-navy:hover, .btn-navy:focus { color: #fff; background: var(--navy-700); border-color: var(--navy-700); }
.btn-outline-navy { color: var(--navy-900); border-color: var(--navy-900); }
.btn-outline-navy:hover, .btn-outline-navy:focus { color: #fff; background: var(--navy-900); border-color: var(--navy-900); }
.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding-bottom: .25rem;
  border-bottom: 2px solid var(--red-600);
  color: var(--navy-900);
  font-weight: 900;
}
.editorial-link:hover { color: var(--red-700); }
.editorial-button {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--red-500);
  font-weight: 900;
  text-align: left;
}
.editorial-button:hover { color: #ff8992; }

/* Utility bar and navigation */
.utility-bar {
  position: relative;
  z-index: 1040;
  padding: .55rem 0;
  color: #dce6f0;
  background: var(--navy-1000);
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .76rem;
}
.utility-notice { display: flex; align-items: center; gap: .55rem; }
.utility-notice i { color: #73d29c; }
.utility-links { align-items: center; gap: 1.25rem; white-space: nowrap; }
.utility-links a { color: #fff; font-weight: 700; }
.utility-links a:hover { color: #ff7a84; }

.navbar {
  min-height: var(--header-height);
  padding: 0;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(3,16,31,.12);
  box-shadow: 0 6px 24px rgba(3,16,31,.06);
  backdrop-filter: blur(16px);
  transition: min-height .25s ease, box-shadow .25s ease;
}
.navbar.scrolled { min-height: 76px; box-shadow: 0 10px 35px rgba(3,16,31,.12); }
.navbar-brand { display: flex; align-items: center; margin-right: 2rem; }
.navbar-brand img { width: 270px; height: 75px; object-fit: contain; object-position: left center; transition: height .25s ease, width .25s ease; }
.navbar.scrolled .navbar-brand img { width: 225px; height: 60px; }
.navbar-nav { gap: .1rem; }
.nav-link {
  position: relative;
  padding: 1.95rem .72rem !important;
  color: var(--navy-950) !important;
  font-size: .92rem;
  font-weight: 800;
  white-space: nowrap;
}
.navbar.scrolled .nav-link { padding-block: 1.45rem !important; }
.nav-link::after {
  content: "";
  position: absolute;
  right: .72rem;
  bottom: 1.25rem;
  left: .72rem;
  height: 3px;
  background: var(--red-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.navbar.scrolled .nav-link::after { bottom: .95rem; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: .55rem; }
.nav-actions .btn { min-height: 42px; padding: .55rem .9rem; font-size: .84rem; }
.dropdown-menu {
  min-width: 390px;
  padding: 1rem;
  border: 0;
  border-top: 4px solid var(--red-600);
  border-radius: 0;
  box-shadow: var(--shadow);
}
.dropdown-header { padding: .4rem .65rem .75rem; color: var(--red-700); font-size: .7rem; font-weight: 900; letter-spacing: .18em; }
.dropdown-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem .7rem;
  border-bottom: 1px solid #e6eaf0;
  white-space: normal;
}
.dropdown-item > span {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--navy-900);
  font-family: var(--serif);
  font-weight: 700;
}
.dropdown-item strong, .dropdown-item small { display: block; }
.dropdown-item strong { color: var(--navy-950); font-size: .95rem; }
.dropdown-item small { color: var(--slate); font-size: .78rem; }
.dropdown-item:hover { background: var(--ice); }
.navbar-toggler {
  display: grid;
  gap: 5px;
  width: 48px;
  height: 48px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 0;
}
.navbar-toggler-line { display: block; width: 23px; height: 2px; background: var(--navy-950); }

.offcanvas { width: min(430px, 92vw) !important; }
.offcanvas-header { min-height: 90px; border-bottom: 1px solid var(--line); }
.mobile-logo { width: 235px; height: 75px; object-fit: contain; object-position: left center; }
.mobile-nav-label { color: var(--red-700); font-size: .72rem; font-weight: 900; letter-spacing: .18em; }
.mobile-links { display: grid; }
.mobile-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
}
.mobile-nav-actions { display: grid; gap: .75rem; margin-top: 2rem; }

/* Hero */
.hero-section {
  position: relative;
  min-height: min(900px, calc(100svh - 40px));
  color: #fff;
  background: var(--navy-950);
  overflow: hidden;
}
.hero-video,
.hero-image-fallback,
.hero-overlay,
.hero-stripes { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image-fallback {
  z-index: 0;
  background-image: url("https://commons.wikimedia.org/wiki/Special:FilePath/United%20States%20Capitol%20-%20west%20front%20edit.jpg?width=2000");
  background-position: center;
  background-size: cover;
}
.hero-video { z-index: 1; object-fit: cover; opacity: .82; }
.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3,16,31,.98) 0%, rgba(3,16,31,.93) 40%, rgba(3,16,31,.66) 68%, rgba(3,16,31,.48) 100%),
    linear-gradient(0deg, rgba(3,16,31,.83), rgba(3,16,31,.08) 55%);
}
.hero-stripes {
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(255,255,255,.08) 72% 72.2%, transparent 72.2%),
    linear-gradient(90deg, transparent 0 88%, rgba(195,19,36,.75) 88% 88.55%, transparent 88.55%);
}
.hero-content { z-index: 4; }
.hero-row { min-height: min(900px, calc(100svh - 40px)); padding: 5rem 0 7rem; }
.hero-dateline {
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,.64);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.4rem;
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-kicker span { width: 42px; height: 4px; background: var(--red-500); }
.hero-section h1 {
  max-width: 980px;
  margin-bottom: 1.4rem;
  color: #fff;
  font-size: clamp(3.4rem, 6.7vw, 7rem);
  line-height: .97;
  letter-spacing: -.055em;
}
.hero-lead {
  max-width: 760px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-actions .btn { display: inline-flex; align-items: center; gap: .6rem; min-height: 56px; padding: .9rem 1.25rem; }
.hero-jurisdictions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 880px;
  margin-top: 3.8rem;
  border-top: 1px solid rgba(255,255,255,.3);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.hero-jurisdictions > div { position: relative; padding: 1.15rem 1rem 1.25rem 0; }
.hero-jurisdictions > div + div { padding-left: 1.25rem; border-left: 1px solid rgba(255,255,255,.18); }
.hero-jurisdictions span, .hero-jurisdictions strong, .hero-jurisdictions small { display: block; }
.hero-jurisdictions span { color: #ff6772; font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.hero-jurisdictions strong { color: #fff; font-family: var(--serif); font-size: 1.15rem; }
.hero-jurisdictions small { color: rgba(255,255,255,.58); font-size: .76rem; }
.policy-brief {
  max-width: 380px;
  margin-left: auto;
  background: rgba(255,255,255,.96);
  border-top: 7px solid var(--red-600);
  box-shadow: var(--shadow);
}
.policy-brief-header { padding: 1.35rem 1.4rem 1rem; border-bottom: 1px solid var(--line); }
.policy-brief-header span, .policy-brief-header strong { display: block; }
.policy-brief-header span { color: var(--red-700); font-size: .68rem; font-weight: 900; letter-spacing: .18em; }
.policy-brief-header strong { margin-top: .25rem; color: var(--navy-950); font-family: var(--serif); font-size: 1.25rem; }
.policy-brief ol { margin: 0; padding: 0; list-style: none; }
.policy-brief li { display: grid; grid-template-columns: 44px 1fr; align-items: stretch; border-bottom: 1px solid var(--line); }
.policy-brief li span { display: grid; place-items: center; color: #fff; background: var(--navy-900); font-family: var(--serif); font-size: 1.15rem; font-weight: 700; }
.policy-brief li a { padding: 1.1rem; color: var(--navy-950); font-weight: 800; line-height: 1.25; }
.policy-brief li:hover a { color: var(--red-700); background: #f7f8fa; }
.policy-brief-footer { padding: 1.25rem 1.4rem 1.4rem; }
.policy-brief-footer p { margin: 0 0 .65rem; color: var(--slate); font-style: italic; }
.policy-brief-footer a { color: var(--navy-900); font-size: .82rem; font-weight: 900; }
.scroll-cue {
  position: absolute;
  right: 2.5rem;
  bottom: 1.8rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-cue span { width: 1px; height: 44px; background: #fff; animation: scrollCue 1.9s ease-in-out infinite; }
@keyframes scrollCue { 0%,100% { opacity:.3; transform:scaleY(.55); transform-origin:top; } 50% { opacity:1; transform:scaleY(1); } }

.priority-rail { color: #fff; background: var(--red-600); }
.priority-rail-grid { display: grid; grid-template-columns: 190px 1fr; align-items: stretch; }
.priority-label { display: flex; align-items: center; padding: 1rem 1rem 1rem 0; border-right: 1px solid rgba(255,255,255,.35); font-size: .72rem; font-weight: 900; letter-spacing: .15em; }
.priority-items { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; padding: 1rem 0 1rem 1.2rem; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.priority-items i { opacity: .55; }

/* Mission */
.mandate-section { background: var(--paper); }
.mandate-section h2,
.image-ledger-header h2,
.agenda-heading h2,
.founder-copy h2,
.contact-section h2 { font-size: clamp(2.5rem, 5vw, 5.2rem); line-height: 1.04; }
.lead-copy { color: var(--slate); font-size: 1.18rem; }
.mandate-statement { padding: 0 0 1.4rem 2rem; border-left: 6px solid var(--navy-900); }
.mandate-statement p { font-family: var(--serif); font-size: clamp(1.35rem, 2.3vw, 2rem); line-height: 1.42; }
.mandate-statement .statement-rule { color: var(--red-700); font-weight: 700; }
.principles-table { margin-top: 1.5rem; border-top: 2px solid var(--navy-950); }
.principles-table > div { display: grid; grid-template-columns: 54px 1fr; gap: 1.1rem; padding: 1.05rem 0; border-bottom: 1px solid #cfd4da; }
.principles-table span { color: var(--red-700); font-size: .76rem; font-weight: 900; letter-spacing: .12em; }
.principles-table strong { display: block; color: var(--navy-950); font-family: var(--serif); font-size: 1.08rem; }
.principles-table p { margin: .15rem 0 0; color: var(--slate); }

/* Image carousel */
.image-ledger { padding-top: clamp(4rem, 7vw, 7rem); color: #fff; background: var(--navy-1000); }
.image-ledger-header { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .55fr); column-gap: 4rem; align-items: end; padding-bottom: 2.5rem; }
.image-ledger-header .section-label { grid-column: 1 / -1; color: #ff6672; }
.image-ledger-header h2 { margin: 0; color: #fff; }
.image-ledger-header > p:last-child { margin: 0; color: rgba(255,255,255,.65); }
.carousel-item { height: clamp(620px, 76vh, 880px); }
.carousel-item img { width: 100%; height: 100%; object-fit: cover; }
.carousel-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,16,31,.93), rgba(3,16,31,.24) 76%), linear-gradient(0deg, rgba(3,16,31,.75), transparent 58%); }
.carousel-caption { right: 0; bottom: 50%; left: 0; transform: translateY(50%); padding-inline: 1.5rem; }
.carousel-caption .slide-index { margin-bottom: 1.5rem; color: rgba(255,255,255,.55); font-size: .74rem; font-weight: 900; letter-spacing: .18em; }
.carousel-caption > p { margin-bottom: .8rem; color: #ff7a84; font-size: .76rem; font-weight: 900; letter-spacing: .17em; }
.carousel-caption h3 { max-width: 1050px; margin-bottom: 1.8rem; color: #fff; font-size: clamp(2.3rem, 5vw, 5.5rem); line-height: 1.03; }
.carousel-control-prev, .carousel-control-next { width: 7%; }
.carousel-indicators { justify-content: flex-end; margin-right: max(1.5rem, calc((100vw - 1410px) / 2)); margin-left: max(1.5rem, calc((100vw - 1410px) / 2)); }
.carousel-indicators [data-bs-target] { width: 54px; height: 4px; }

/* Platform */
.platform-section { color: #fff; background: var(--navy-950); }
.platform-header { padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,.18); }
.platform-header h2 { color: #fff; font-size: clamp(2.7rem, 5vw, 5.6rem); line-height: 1.02; }
.platform-header p { color: rgba(255,255,255,.62); }
.pillar-row {
  position: relative;
  display: grid;
  grid-template-columns: 100px minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.pillar-row-reverse { grid-template-columns: 100px minmax(0, .94fr) minmax(0, 1.06fr); }
.pillar-row-reverse .pillar-image-wrap { order: 3; }
.pillar-row-reverse .pillar-copy { order: 2; }
.pillar-number { align-self: start; color: rgba(255,255,255,.15); font-family: var(--serif); font-size: clamp(4rem, 8vw, 8rem); font-weight: 700; line-height: .85; }
.pillar-image-wrap { position: relative; min-height: 490px; overflow: hidden; }
.pillar-image-wrap::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.25); pointer-events: none; }
.pillar-image-wrap img { width: 100%; height: 100%; min-height: 490px; object-fit: cover; filter: saturate(.8) contrast(1.05); transition: transform .6s ease; }
.pillar-row:hover .pillar-image-wrap img { transform: scale(1.035); }
.pillar-copy .pillar-name { margin-bottom: .85rem; color: #72a8d5; font-size: .76rem; font-weight: 900; letter-spacing: .14em; }
.pillar-copy h3 { color: #fff; font-size: clamp(2.2rem, 4vw, 4.2rem); line-height: 1.05; }
.pillar-copy > p:not(.pillar-name) { color: rgba(255,255,255,.67); font-size: 1.05rem; }
.pillar-copy ul { margin: 1.5rem 0 1.7rem; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.pillar-copy li { position: relative; padding: .8rem 0 .8rem 1.6rem; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.83); }
.pillar-copy li::before { content: ""; position: absolute; top: 1.25rem; left: 0; width: 8px; height: 8px; background: var(--red-500); }

/* Legislative agenda */
.agenda-section { background: #fff; }
.agenda-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .55fr); align-items: end; gap: 4rem; margin-bottom: 4rem; }
.agenda-heading > p { color: var(--slate); }
.agenda-layout { display: grid; grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr); border-top: 3px solid var(--navy-950); border-bottom: 3px solid var(--navy-950); }
.agenda-nav { border-right: 1px solid var(--line); }
.agenda-item {
  display: grid;
  grid-template-columns: 88px 1fr 30px;
  gap: 1rem;
  align-items: center;
  width: 100%;
  min-height: 94px;
  padding: 1.15rem 1.2rem;
  color: var(--navy-950);
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.agenda-item:last-child { border-bottom: 0; }
.agenda-item span { color: var(--red-700); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.agenda-item strong { font-family: var(--serif); font-size: 1.08rem; line-height: 1.25; }
.agenda-item i { transition: transform .2s ease; }
.agenda-item:hover, .agenda-item.active { color: #fff; background: var(--navy-900); }
.agenda-item:hover span, .agenda-item.active span { color: #ff7983; }
.agenda-item:hover i, .agenda-item.active i { transform: translateX(4px); }
.agenda-detail { display: flex; flex-direction: column; justify-content: center; min-height: 470px; padding: clamp(2rem, 5vw, 5rem); background: var(--paper); }
.agenda-detail-mark { display: grid; place-items: center; width: 82px; height: 82px; margin-bottom: 2rem; color: #fff; background: var(--red-600); font-size: 2.2rem; }
.agenda-detail-title { margin-bottom: .5rem; color: var(--red-700); font-size: .75rem; font-weight: 900; letter-spacing: .14em; }
.agenda-detail h3 { font-size: clamp(2rem, 4vw, 4.2rem); }
.agenda-detail > p:not(.agenda-detail-title) { max-width: 780px; color: var(--slate); font-size: 1.08rem; }
.agenda-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.agenda-tags span { padding: .38rem .7rem; color: var(--navy-900); background: #fff; border: 1px solid var(--line); font-size: .74rem; font-weight: 800; }
.agenda-metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 3rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.agenda-metrics > div { padding: 1.5rem; text-align: center; }
.agenda-metrics > div + div { border-left: 1px solid var(--line); }
.metric-number { display: block; color: var(--red-700); font-family: var(--serif); font-size: 3.5rem; font-weight: 700; line-height: 1; }
.agenda-metrics p { margin: .45rem 0 0; color: var(--slate); font-weight: 700; }

/* Process */
.process-section { color: #fff; background: var(--navy-1000); }
.process-section h2 { color: #fff; font-size: clamp(2.6rem, 5vw, 5.4rem); line-height: 1.04; }
.process-section .col-lg-5 > p:not(.section-label) { color: rgba(255,255,255,.64); }
.policy-process { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.policy-process li { display: grid; grid-template-columns: 86px 1fr; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.policy-process > li > span { color: #ff707b; font-family: var(--serif); font-size: 1.55rem; font-weight: 700; }
.policy-process h3 { margin: 0 0 .25rem; color: #fff; font-size: 1.55rem; }
.policy-process p { margin: 0; color: rgba(255,255,255,.62); }

/* Founder */
.founder-section { background: var(--paper); }
.founder-layout { display: grid; grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.founder-media { position: relative; }
.founder-photo { position: relative; min-height: 650px; background: var(--navy-900); overflow: hidden; }
.founder-photo::before { content: ""; position: absolute; inset: 20px; z-index: 1; border: 1px solid rgba(255,255,255,.28); pointer-events: none; }
.founder-photo img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; }
.founder-video-button {
  position: absolute;
  right: -2rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 330px;
  padding: 1rem 1.2rem;
  color: #fff;
  background: var(--red-600);
  border: 0;
  box-shadow: var(--shadow);
  text-align: left;
}
.founder-video-button > i { display: grid; place-items: center; flex: 0 0 46px; width: 46px; height: 46px; color: var(--red-700); background: #fff; border-radius: 50%; font-size: 1.35rem; }
.founder-video-button strong, .founder-video-button small { display: block; }
.founder-video-button strong { font-family: var(--serif); font-size: 1rem; }
.founder-video-button small { color: rgba(255,255,255,.76); font-size: .72rem; }
.founder-copy blockquote { margin: 1.5rem 0 1.6rem; padding-left: 1.5rem; border-left: 5px solid var(--red-600); color: var(--navy-900); font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 2rem); font-style: italic; line-height: 1.45; }
.founder-copy > p:not(.section-label) { color: var(--slate); font-size: 1.04rem; }
.founder-values { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem 1rem; margin-top: 1.6rem; }
.founder-values span { color: var(--navy-900); font-weight: 800; }
.founder-values i { margin-right: .45rem; color: var(--red-600); }
.founder-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; margin-top: 2rem; }

/* Transparency */
.transparency-section { color: #fff; background: var(--navy-850); }
.transparency-section h2 { color: #fff; font-size: clamp(2.5rem, 5vw, 5.2rem); line-height: 1.03; }
.transparency-section .col-lg-6 > p:not(.section-label) { color: rgba(255,255,255,.64); }
.transparency-image { position: relative; min-height: 560px; overflow: hidden; }
.transparency-image img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; filter: saturate(.7) contrast(1.05); }
.transparency-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,16,31,.72), transparent 55%); }
.image-caption { position: absolute; right: 1.5rem; bottom: 1.5rem; left: 1.5rem; z-index: 2; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.4); color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .06em; }
.integrity-list { margin-top: 2rem; border-top: 1px solid rgba(255,255,255,.25); }
.integrity-list > div { display: grid; grid-template-columns: 54px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.integrity-list span { color: #ff727d; font-family: var(--serif); font-weight: 700; }
.integrity-list p { margin: 0; color: rgba(255,255,255,.83); }

/* Resources */
.resources-section { background: #fff; }
.resources-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 2rem; align-items: end; margin-bottom: 3rem; }
.resources-heading h2 { font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1.03; }
.resource-list { border-top: 3px solid var(--navy-950); }
.resource-list article { display: grid; grid-template-columns: 70px 1fr 56px; gap: 1.2rem; align-items: center; min-height: 135px; padding: 1.3rem 0; border-bottom: 1px solid var(--line); transition: background .2s ease, padding .2s ease; }
.resource-list article:hover { padding-inline: 1rem; background: var(--paper); }
.resource-list article > span { color: var(--red-700); font-family: var(--serif); font-size: 1.5rem; font-weight: 700; }
.resource-list article p { margin: 0 0 .25rem; color: var(--red-700); font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.resource-list article h3 { margin: 0; font-size: clamp(1.25rem, 2.5vw, 2rem); }
.resource-list article small { display: block; margin-top: .35rem; color: var(--slate); }
.resource-list article > a { display: grid; place-items: center; width: 48px; height: 48px; color: #fff; background: var(--navy-900); font-size: 1.15rem; }
.resource-list article:hover > a { background: var(--red-600); }

/* Forms */
.take-action-section { color: #fff; background: var(--red-700); }
.action-layout { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); background: #fff; box-shadow: var(--shadow); }
.action-copy { padding: clamp(2rem, 4vw, 4rem); color: #fff; background: var(--navy-950); }
.action-copy h2 { color: #fff; font-size: clamp(2.5rem, 4.5vw, 4.8rem); line-height: 1.04; }
.action-copy > p:not(.section-label) { color: rgba(255,255,255,.65); }
.action-copy ul { margin: 1.5rem 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.action-copy li { padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.action-form-wrap { padding: clamp(2rem, 4vw, 4rem); color: var(--ink); background: #fff; }
.form-label { color: var(--navy-950); font-size: .82rem; font-weight: 900; }
.form-control, .form-select { min-height: 52px; border: 1px solid #aeb7c2; border-radius: 0; }
textarea.form-control { min-height: auto; }
.form-control:focus, .form-select:focus { border-color: var(--navy-800); box-shadow: 0 0 0 .2rem rgba(13,49,88,.12); }
.form-check-label { color: var(--slate); font-size: .82rem; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form-actions > span { color: var(--slate); font-size: .76rem; }
.form-success { padding: 2rem; color: var(--navy-950); background: var(--ice); border-left: 6px solid #198754; }
.form-success > i { color: #198754; font-size: 2.2rem; }
.form-success h3 { margin-top: .6rem; }

.briefing-section { color: #fff; background: var(--navy-900); border-top: 7px solid var(--red-600); }
.briefing-section .container-xxl { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 3rem; }
.briefing-section p { margin: 0 0 .35rem; color: #8fb4d4; font-size: .72rem; font-weight: 900; letter-spacing: .15em; }
.briefing-section h2 { margin: 0; color: #fff; font-size: clamp(1.8rem, 3.3vw, 3.4rem); }
.contact-section { background: var(--paper); }
.contact-section > .container-xxl > .row > .col-lg-5 > p:not(.section-label) { color: var(--slate); }
.contact-routes { margin-top: 2rem; border-top: 2px solid var(--navy-950); }
.contact-routes > div { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; padding: 1rem 0; border-bottom: 1px solid #cfd4da; }
.contact-routes i { color: var(--red-600); font-size: 1.45rem; }
.contact-routes strong, .contact-routes small { display: block; }
.contact-routes strong { color: var(--navy-950); font-family: var(--serif); }
.contact-routes small { margin-top: .2rem; color: var(--slate); }
.contact-form { padding: clamp(1.7rem, 4vw, 3.5rem); background: #fff; border-top: 6px solid var(--navy-900); box-shadow: var(--shadow-soft); }

/* Footer */
.site-footer { color: #aeb9c7; background: var(--navy-1000); }
.footer-rule { display: grid; grid-template-columns: 1fr 1fr 1fr; height: 7px; }
.footer-rule span:nth-child(1) { background: var(--navy-700); }
.footer-rule span:nth-child(2) { background: #fff; }
.footer-rule span:nth-child(3) { background: var(--red-600); }
.footer-main { padding-block: 5rem 2.5rem; }
.footer-logo { width: 330px; height: 110px; margin-bottom: 1.25rem; object-fit: contain; object-position: left center; background: #fff; }
.site-footer h3 { color: #fff; font-family: var(--sans); font-size: .78rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.site-footer a, .footer-button { display: block; width: fit-content; margin: .55rem 0; padding: 0; color: #aeb9c7; background: transparent; border: 0; text-align: left; }
.site-footer a:hover, .footer-button:hover { color: #fff; }
.social-row { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.25rem; }
.social-row a { display: grid; place-items: center; width: 42px; height: 42px; margin: 0; border: 1px solid rgba(255,255,255,.25); }
.social-row a:hover { color: #fff; background: var(--red-600); border-color: var(--red-600); }
.footer-legal { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.14); color: #8190a2; font-size: .75rem; }
.footer-legal > div { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }

/* Modals */
.modal-content { border: 0; border-radius: 0; }
.modal-header { padding: 1.5rem 1.75rem; border-bottom: 1px solid var(--line); }
.modal-body { padding: 2rem; }
.modal-footer { padding: 1rem 1.75rem; }
.video-modal-content { color: #fff; background: var(--navy-1000); }
.video-modal-content .modal-header { border-color: rgba(255,255,255,.16); }
.video-modal-content .modal-title { color: #fff; }
.video-modal-content .modal-kicker { margin-bottom: .3rem; color: #ff707b; }
.video-modal-content .modal-footer { justify-content: flex-start; border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.6); }
.video-modal-content code { color: #fff; }
.support-modal-content .modal-title { font-size: clamp(1.6rem, 3vw, 2.7rem); }
.support-options { display: grid; gap: .7rem; margin-top: 1.2rem; }
.support-options a { display: grid; grid-template-columns: 46px 1fr; gap: .9rem; align-items: center; padding: .9rem; border: 1px solid var(--line); }
.support-options a:hover { border-color: var(--red-600); background: #fff7f7; }
.support-options i { color: var(--red-600); font-size: 1.5rem; }
.support-options strong, .support-options small { display: block; }
.support-options strong { color: var(--navy-950); }
.support-options small { color: var(--slate); }
.support-warning { height: 100%; padding: 1.5rem; color: #fff; background: var(--navy-950); }
.support-warning > i { color: #ff707b; font-size: 2rem; }
.support-warning h3 { margin-top: 1rem; color: #fff; }
.pillar-modal .modal-header { color: #fff; background: var(--navy-950); border: 0; }
.pillar-modal .modal-title { color: #fff; }
.pillar-modal .modal-kicker { margin-bottom: .25rem; color: #ff707b; }
.modal-roman { padding-right: 1.25rem; border-right: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.3); font-family: var(--serif); font-size: 3.5rem; font-weight: 700; }
.pillar-modal .modal-body h3 { margin-top: 1.4rem; color: var(--navy-950); }
.brief-box { position: sticky; top: 0; padding: 1.5rem; background: var(--ice); border-left: 6px solid var(--red-600); }

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1030;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--red-600);
  border: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .2s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.mobile-action-dock { display: none; }

@media (max-width: 1399.98px) {
  .navbar-brand img { width: 235px; }
  .nav-link { padding-inline: .55rem !important; font-size: .86rem; }
  .nav-link::after { right: .55rem; left: .55rem; }
  .nav-actions .btn { padding-inline: .7rem; }
}

@media (max-width: 1199.98px) {
  :root { --header-height: 80px; }
  .navbar-brand img { width: 245px; height: 66px; }
  .navbar.scrolled .navbar-brand img { width: 220px; height: 58px; }
  .hero-section, .hero-row { min-height: 820px; }
  .hero-section h1 { font-size: clamp(3.3rem, 8vw, 6.2rem); }
  .pillar-row, .pillar-row-reverse { grid-template-columns: 75px minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 991.98px) {
  html { scroll-padding-top: 92px; }
  .utility-notice { font-size: .71rem; }
  .hero-section, .hero-row { min-height: 800px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(3,16,31,.98), rgba(3,16,31,.8)), linear-gradient(0deg, rgba(3,16,31,.8), transparent 58%); }
  .hero-stripes { opacity: .4; }
  .hero-jurisdictions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-jurisdictions > div:nth-child(3) { border-left: 0; }
  .hero-jurisdictions > div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.18); }
  .priority-rail-grid { grid-template-columns: 1fr; }
  .priority-label { padding-bottom: .3rem; border-right: 0; }
  .priority-items { padding: .3rem 0 1rem; }
  .image-ledger-header, .agenda-heading, .resources-heading { grid-template-columns: 1fr; gap: 1.25rem; }
  .pillar-row, .pillar-row-reverse { grid-template-columns: 70px 1fr; gap: 2rem; }
  .pillar-image-wrap, .pillar-row-reverse .pillar-image-wrap { grid-column: 2; order: 2; }
  .pillar-copy, .pillar-row-reverse .pillar-copy { grid-column: 2; order: 3; }
  .pillar-number { grid-row: 1 / 4; }
  .agenda-layout { grid-template-columns: 1fr; }
  .agenda-nav { border-right: 0; border-bottom: 1px solid var(--line); }
  .agenda-detail { min-height: 400px; }
  .founder-layout { grid-template-columns: 1fr; }
  .founder-media { max-width: 700px; }
  .founder-video-button { right: 1.5rem; }
  .action-layout { grid-template-columns: 1fr; }
  .briefing-section .container-xxl { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 767.98px) {
  body { padding-bottom: 67px; }
  .section-pad { padding: 4.5rem 0; }
  .utility-bar { padding: .45rem 0; }
  .utility-notice { align-items: flex-start; line-height: 1.35; }
  .navbar { min-height: 72px; }
  .navbar-brand img, .navbar.scrolled .navbar-brand img { width: 205px; height: 58px; }
  .hero-section, .hero-row { min-height: 780px; }
  .hero-row { padding: 4.5rem 0 5rem; }
  .hero-dateline { line-height: 1.5; }
  .hero-section h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-jurisdictions { margin-top: 2.4rem; }
  .hero-jurisdictions > div { padding: .85rem .75rem .9rem 0; }
  .hero-jurisdictions > div + div { padding-left: .75rem; }
  .scroll-cue { display: none; }
  .priority-items { gap: .45rem .7rem; font-size: .68rem; }
  .mandate-statement { padding-left: 1.25rem; border-left-width: 4px; }
  .image-ledger-header { padding-bottom: 1.75rem; }
  .carousel-item { height: 620px; }
  .carousel-caption { bottom: 42%; }
  .carousel-caption h3 { font-size: 2.35rem; }
  .carousel-control-prev, .carousel-control-next { width: 12%; }
  .carousel-indicators { justify-content: center; }
  .platform-header { padding-bottom: 2rem; }
  .pillar-row, .pillar-row-reverse { grid-template-columns: 1fr; gap: 1.5rem; padding: 3.5rem 0; }
  .pillar-number { grid-row: auto; font-size: 4.2rem; }
  .pillar-image-wrap, .pillar-row-reverse .pillar-image-wrap, .pillar-copy, .pillar-row-reverse .pillar-copy { grid-column: 1; order: initial; }
  .pillar-image-wrap, .pillar-image-wrap img { min-height: 340px; }
  .agenda-item { grid-template-columns: 68px 1fr 24px; min-height: 86px; }
  .agenda-detail { min-height: auto; padding: 2rem 1.35rem; }
  .agenda-detail-mark { width: 64px; height: 64px; }
  .agenda-metrics { grid-template-columns: 1fr; }
  .agenda-metrics > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .policy-process li { grid-template-columns: 56px 1fr; gap: .8rem; }
  .founder-photo, .founder-photo img { min-height: 520px; }
  .founder-video-button { right: 1rem; bottom: 1rem; left: 1rem; max-width: none; }
  .founder-values { grid-template-columns: 1fr; }
  .transparency-image, .transparency-image img { min-height: 420px; }
  .resource-list article { grid-template-columns: 48px 1fr 42px; gap: .7rem; }
  .resource-list article > a { width: 40px; height: 40px; }
  .action-copy, .action-form-wrap, .contact-form { padding: 1.6rem; }
  .briefing-section .container-xxl { padding-block: 2.2rem; }
  .footer-logo { width: 280px; }
  .footer-legal > div { display: grid; }
  .mobile-action-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1025;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 67px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(3,16,31,.12);
  }
  .mobile-action-dock a, .mobile-action-dock button {
    display: grid;
    place-items: center;
    align-content: center;
    gap: .1rem;
    color: var(--navy-950);
    background: #fff;
    border: 0;
    border-right: 1px solid var(--line);
    font-size: .72rem;
    font-weight: 800;
  }
  .mobile-action-dock i { color: var(--red-600); font-size: 1.15rem; }
  .back-to-top { right: .8rem; bottom: 78px; }
}

@media (max-width: 479.98px) {
  .navbar-brand img, .navbar.scrolled .navbar-brand img { width: 175px; }
  .hero-section h1 { font-size: clamp(2.7rem, 15vw, 4rem); }
  .hero-kicker { align-items: flex-start; font-size: .7rem; line-height: 1.5; }
  .hero-kicker span { margin-top: .5rem; }
  .hero-jurisdictions strong { font-size: 1rem; }
  .hero-jurisdictions small { font-size: .7rem; }
  .carousel-item { height: 570px; }
  .carousel-caption h3 { font-size: 2rem; }
  .pillar-image-wrap, .pillar-image-wrap img { min-height: 285px; }
  .agenda-item { grid-template-columns: 58px 1fr 20px; padding-inline: .75rem; }
  .agenda-item strong { font-size: .95rem; }
  .founder-photo, .founder-photo img { min-height: 450px; }
  .founder-video-button small { display: none; }
  .resource-list article small { display: none; }
  .modal-header { padding: 1.1rem; }
  .modal-body { padding: 1.25rem; }
  .modal-roman { font-size: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-video { display: none; }
}

@media (prefers-contrast: more) {
  .utility-bar, .hero-overlay, .platform-section, .process-section, .site-footer { background-color: #000; }
  .section-label, .modal-kicker { color: #d60000; }
}
