:root {
  --navy: #0E3A87;
  --navy-ink: #071F4A;
  --navy-deep: #0A2C68;
  --green: #78C040;
  --green-press: #5EA82E;
  --green-ink: #14300A;
  --bg: #FFFFFF;
  --soft: #F7F8FA;
  --ink: #071F4A;
  --muted: #4B5568;
  --faint: #6B7280;
  --line: #E5E7EB;
  --max: 1120px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 12px 32px rgba(7, 31, 74, 0.06);
  --shadow-lg: 0 24px 60px rgba(7, 31, 74, 0.08);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.011em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
h1, h2, h3 { letter-spacing: -0.04em; line-height: 1.12; font-weight: 650; margin: 0; color: var(--navy-ink); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--navy-ink); color: #fff; padding: 8px 12px; z-index: 100; }
.skip:focus { left: 12px; top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--navy-ink); font-weight: 700; font-size: 15px;
}
.logo svg { flex-shrink: 0; display: block; }
.nav-links { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--navy-ink); }
.nav-links a[aria-current="page"] { color: var(--navy); font-weight: 650; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.get-sample { color: var(--navy); text-decoration: none; font-size: 14px; font-weight: 500; }
.get-sample:hover { color: var(--navy-ink); }
.get-sample[aria-current="page"] { font-weight: 650; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: var(--navy); font-weight: 600; text-decoration: none;
  border: 1px solid var(--navy); cursor: pointer; font-family: inherit;
  padding: 8px 12px; border-radius: var(--radius-sm); font-size: 13px;
}
.btn-ghost:hover { background: #EEF2FF; }
.nav-cta, .btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: var(--green-ink); font-weight: 700;
  text-decoration: none; border: 0; cursor: pointer; font-family: inherit;
  padding: 8px 14px; border-radius: 999px; font-size: 14px;
}
.nav-cta:hover, .btn-primary:hover { background: var(--green-press); color: #fff; }
.btn-primary { padding: 12px 18px; font-size: 15px; }
.btn-navy {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff; font-weight: 600; text-decoration: none;
  border: 0; cursor: pointer; font-family: inherit;
  padding: 12px 18px; border-radius: var(--radius-sm); font-size: 15px;
}
.btn-navy:hover { background: var(--navy-deep); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: var(--navy); font-weight: 600; text-decoration: none;
  border: 1px solid var(--navy); cursor: pointer; font-family: inherit;
  padding: 12px 18px; border-radius: var(--radius-sm); font-size: 15px;
}
.btn-secondary:hover { background: #EEF2FF; }
.btn-text { color: var(--navy); font-weight: 600; text-decoration: none; font-size: 15px; }
.btn-text:hover { text-decoration: underline; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--navy-ink); margin: 5px 0; }

.hero { padding: 72px 0 64px; }
.hero .wrap { display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(34px, 4.6vw, 52px); margin-bottom: 16px; max-width: 16ch; }
.hero-sub { color: var(--muted); font-size: 18px; margin: 0 0 24px; max-width: 44ch; }
.price-row { display: flex; align-items: baseline; gap: 10px; }
.price { font-size: 44px; font-weight: 750; letter-spacing: -0.05em; color: var(--navy-ink); }
.price-meta { color: var(--muted); font-size: 14px; }
.price-note { font-size: 13px; color: var(--faint); margin: 8px 0 24px; max-width: 42ch; }
.hero-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.micro-trust { display: flex; flex-wrap: wrap; gap: 8px 16px; list-style: none; margin: 0; padding: 0; color: var(--muted); font-size: 13px; }
.micro-trust li { display: flex; align-items: center; gap: 6px; }
.micro-trust li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--navy); }
.eyebrow {
  display: inline-flex; font-size: 12px; font-weight: 600; color: var(--navy);
  background: #EEF2FF; border: 1px solid #D9E2F8; border-radius: 99px;
  padding: 4px 10px; margin: 0 0 14px;
}

.demo {
  border: 1px solid var(--line); border-radius: 16px; padding: 10px;
  background: var(--soft); box-shadow: var(--shadow-lg);
}
.demo-chrome {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
}
.demo-titlebar {
  display: flex; align-items: center; gap: 10px;
  background: #F3F4F6; border-bottom: 1px solid var(--line);
  padding: 8px 12px; min-height: 36px;
}
.demo-dots { display: flex; gap: 6px; }
.demo-dots i { width: 8px; height: 8px; border-radius: 50%; display: block; }
.demo-dots i:nth-child(1) { background: #FF5F57; }
.demo-dots i:nth-child(2) { background: #FEBC2E; }
.demo-dots i:nth-child(3) { background: #28C840; }
.demo-title { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: -0.01em; }
.demo-toolbar {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 10px 12px; border-bottom: 1px solid var(--line);
}
.demo-search {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 8px;
  padding: 6px 10px; min-width: 148px; background: #fff; font-size: 12px; color: var(--ink);
  min-height: 32px;
}
.demo-search svg { flex-shrink: 0; color: var(--faint); }
.demo-query { min-width: 1ch; }
.demo-caret {
  width: 1px; height: 14px; background: var(--navy);
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.demo-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--line); background: #fff; color: var(--muted);
  border-radius: 99px; padding: 5px 10px; font-size: 11px; font-weight: 600;
  font-family: inherit; cursor: default;
}
.chip.is-on { border-color: #C7D4F0; background: #EEF2FF; color: var(--navy); }
.demo-actions { display: flex; gap: 6px; margin-left: auto; }
.demo-btn {
  border: 1px solid var(--line); background: #fff; color: var(--navy-ink);
  border-radius: 8px; padding: 5px 10px; font-size: 11px; font-weight: 600;
  font-family: inherit; cursor: default;
}
.demo-btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.demo-body { position: relative; min-height: 292px; }
.demo-table-wrap { overflow: auto; }
.demo-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.demo-table th {
  text-align: left; font-weight: 600; color: var(--faint); font-size: 10px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 8px 10px; border-bottom: 1px solid var(--line); background: #fff;
}
.demo-table td { padding: 8px 10px; border-bottom: 1px solid #F3F4F6; color: var(--ink); white-space: nowrap; }
.demo-table tbody tr { transition: opacity .35s ease, background .35s ease; }
.demo-table tbody tr.is-out { opacity: .22; }
.demo-table tbody tr.is-match { background: #F4F8EE; }
.demo-table tbody tr.is-selected { background: #EEF2FF; box-shadow: inset 2px 0 0 var(--navy); }
.demo-peek {
  position: absolute; top: 0; right: 0; bottom: 0; width: 188px;
  border-left: 1px solid var(--line); padding: 12px; background: #fff;
  opacity: 0; transform: translateX(12px); pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  box-shadow: -12px 0 24px rgba(7,31,74,.06);
}
.demo-peek.is-open { opacity: 1; transform: none; pointer-events: auto; }
.demo-peek h3 { font-size: 13px; margin: 0 0 6px; }
.demo-peek p { margin: 0 0 8px; font-size: 11px; color: var(--muted); line-height: 1.45; }
.email-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #EEF2FF; color: var(--navy); border: 1px solid #D9E2F8;
  border-radius: 99px; padding: 4px 8px; font-size: 11px; font-weight: 650;
}
.email-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.page-hero { padding: 40px 0 8px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 12px; max-width: 20ch; }
.page-hero .lead { color: var(--muted); font-size: 18px; margin: 0 0 20px; max-width: 52ch; }
.tight-hero { padding: 28px 0 0; }
.tight-hero h1 { font-size: clamp(28px, 3.6vw, 36px); margin-bottom: 10px; }

.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-row { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-row span {
  padding: 16px 8px; text-align: center; font-size: 13px; font-weight: 600; color: var(--muted);
  border-right: 1px solid var(--line);
}
.trust-row span:last-child { border-right: 0; }

.stats { padding: 28px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 16px; background: #fff; }
.stat b { display: block; font-size: 26px; letter-spacing: -0.04em; color: var(--navy-ink); }
.stat span { color: var(--muted); font-size: 13px; }

.band { padding: 72px 0; }
.band-soft { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kicker { font-size: 12px; font-weight: 600; color: var(--navy); letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 10px; }
h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 14px; }
.section-lead { color: var(--muted); max-width: 52ch; margin: 0 0 28px; }

.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pillar {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  background: #fff;
}
.pillar:hover { box-shadow: var(--shadow); }
.pillar h3 { font-size: 18px; margin-bottom: 8px; }
.pillar p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.pillar ul { margin: 0 0 18px; padding: 0 0 0 18px; color: var(--muted); font-size: 14px; }
.pillar li { margin: 0 0 6px; }
.badge {
  display: inline-flex; font-size: 11px; font-weight: 650; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--navy); background: #EEF2FF;
  border-radius: 99px; padding: 3px 8px; margin-bottom: 10px;
}
.badge-green { color: var(--green-ink); background: #F1F8E8; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff;
}
.card:hover { box-shadow: var(--shadow); }
.card h3 { font-size: 16px; margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; list-style: none; margin: 0; padding: 0; }
.fields li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 10px 12px; font-size: 14px;
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.step { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; background: #fff; }
.step b { display: block; font-size: 12px; color: var(--navy); margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.proof-grid { display: grid; grid-template-columns: 1.7fr .9fr; gap: 16px; margin-top: 28px; }
.quotes { display: grid; gap: 12px; }
.quote {
  display: grid; grid-template-columns: 40px 1fr; gap: 12px; margin: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px;
}
.initials {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.quote p { margin: 0 0 6px; font-size: 14px; }
.quote cite { font-style: normal; color: var(--muted); font-size: 12px; font-weight: 600; }
.accuracy { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.accuracy h3 { font-size: 18px; margin-bottom: 8px; }
.accuracy p { margin: 0; color: var(--muted); font-size: 14px; }

.sample-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.panel { border: 1px solid var(--line); border-radius: 16px; padding: 28px; background: #fff; }
.panel p { color: var(--muted); }
label { display: block; font-size: 13px; font-weight: 600; margin: 0 0 6px; color: var(--navy-ink); }
input, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 11px 12px; font: inherit; margin-bottom: 14px; background: #fff; color: var(--ink);
}
input:focus, textarea:focus { outline: 3px solid rgba(14,58,135,.22); border-color: var(--navy); }
.buy-price { font-size: 40px; font-weight: 750; letter-spacing: -0.05em; margin: 8px 0 4px; color: var(--navy-ink); }
.caption { font-size: 13px; color: var(--faint); margin: 0 0 20px; }

.turnstile {
  display: flex; align-items: center; justify-content: space-between;
  background: #fafafa; border: 1px solid #d3d3d3; border-radius: 3px;
  width: min(100%, 300px); min-height: 65px; padding: 8px 12px; margin: 4px 0 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,.08); color: #222;
}
.turnstile-check { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; }
.turnstile-check input { width: 24px; height: 24px; margin: 0; accent-color: #F38020; }
.cf-mark { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; color: #888; font-size: 10px; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; }
address { font-style: normal; color: var(--muted); line-height: 1.7; }
address a { font-weight: 600; }
textarea { min-height: 120px; resize: vertical; }
.hours { margin-top: 18px; }
.hours h3 { font-size: 15px; margin-bottom: 6px; }
.hours p { margin: 0; color: var(--muted); font-size: 14px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 20px; }

.site-footer { padding: 32px 0 24px; border-top: 1px solid var(--line); }
.foot-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 12px 18px; list-style: none; margin: 0; padding: 0; }
.foot-links a { color: var(--muted); text-decoration: none; font-size: 13px; }
.foot-links a:hover { color: var(--navy-ink); }
.copy { border-top: 1px solid var(--line); padding-top: 14px; font-size: 12px; color: var(--faint); }
.sister { margin: 0 0 8px; font-size: 13px; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .demo-caret { animation: none; opacity: 0; }
  .demo-table tbody tr, .demo-peek { transition: none; }
}

@media (max-width: 1100px) {
  .header-actions .btn-ghost { display: none; }
}

@media (max-width: 980px) {
  .hero .wrap, .proof-grid, .sample-grid, .contact-grid, .two-up { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-row span { border-right: 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 64px;
    background: #fff; flex-direction: column; padding: 12px 20px 18px;
    border-bottom: 1px solid var(--line); gap: 10px;
  }
  .nav-links.is-open { display: flex; }
  .header-inner { position: relative; }
  .demo-body { grid-template-columns: 1fr; }
  .demo-peek { border-left: 0; border-top: 1px solid var(--line); }
  .col-hide { display: none; }
}

@media (max-width: 560px) {
  .cards, .stats-row, .trust-row, .fields, .steps { grid-template-columns: 1fr; }
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .hero { padding: 40px 0 36px; }
  .hero h1 { max-width: none; }
  .header-actions .get-sample { display: none; }
  .band { padding: 48px 0; }
  .demo-actions { margin-left: 0; }
}

/* WordPress menu + content extras */
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--navy);
  font-weight: 650;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.entry { padding: 40px 0 72px; }
.entry-meta, .updated {
  color: var(--faint);
  font-size: 13px;
  margin: 0 0 20px;
}
.entry-content { max-width: 68ch; }
.entry-content p, .entry-content li { color: var(--muted); }
.entry-content h2 { margin-top: 32px; }
.entry-content a { font-weight: 600; }
.posts-list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.post-tease {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
}
.post-tease h2 { font-size: 22px; margin-bottom: 8px; }
.post-tease h2 a { color: var(--navy-ink); text-decoration: none; }
.post-tease h2 a:hover { color: var(--navy); }
.pagination { display: flex; gap: 12px; margin-top: 28px; }
.screen-reader-text, .sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.thanks-wrap { max-width: 560px; }
@media (max-width: 980px) {
  .resources-grid { grid-template-columns: 1fr; }
}

.hfc-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 0 0 16px; }
.hfc-table th, .hfc-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); }
.hfc-table th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--faint); }
.hfc-table td:nth-child(2), .hfc-table td:nth-child(3),
.hfc-table th:nth-child(2), .hfc-table th:nth-child(3) { text-align: right; }
.glossary-list { margin: 0; padding: 0; list-style: none; }
.glossary-list li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.glossary-list strong { display: block; color: var(--navy-ink); margin-bottom: 4px; }
.glossary-list span { color: var(--muted); font-size: 14px; }

.profile { padding: 32px 0 48px; }
.profile-bc { font-size: 13px; color: var(--faint); margin: 0 0 20px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.profile-bc a { color: var(--muted); text-decoration: none; }
.profile-bc a:hover { color: var(--navy); }
.profile-hero h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 10px; }
.profile-locator { margin: 0 0 8px; color: var(--navy); font-weight: 600; font-size: 15px; }
.profile-updated { margin: 0 0 16px; color: var(--faint); font-size: 13px; }
.profile-hero .lead { max-width: 68ch; color: var(--muted); margin: 0 0 28px; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.profile-address { font-style: normal; color: var(--ink); margin: 0 0 12px; line-height: 1.5; }
.profile-facts { margin: 0; display: grid; gap: 10px; }
.profile-facts div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.profile-facts dt { color: var(--faint); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.profile-facts dd { margin: 0; font-weight: 600; color: var(--navy-ink); text-align: right; }
.profile-block { margin: 28px 0; }
.profile-block h2, .profile .panel h2 { font-size: 20px; margin-bottom: 12px; }
.profile-chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.profile-chips li {
  background: var(--soft); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 12px; font-size: 13px; font-weight: 600; color: var(--navy);
}
.profile-people { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.person-card h3 { font-size: 17px; margin-bottom: 4px; }
.person-card .email-pill { margin-top: 10px; }
.profile-gate { margin: 28px 0; background: var(--soft); }
.profile-cta { margin-top: 28px; text-align: center; }
.profile-cta p { margin: 0 0 8px; }
.profile-social a { font-weight: 600; }
@media (max-width: 800px) {
  .profile-grid { grid-template-columns: 1fr; }
  .profile-facts div { grid-template-columns: 1fr; }
  .profile-facts dd { text-align: left; }
}


/* Fund profile template */
.profile-crumbs {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 13px; color: var(--faint); margin: 0 0 20px;
}
.profile-crumbs a { color: var(--muted); text-decoration: none; font-weight: 500; }
.profile-crumbs a:hover { color: var(--navy); }
.profile-hero { padding: 4px 0 8px; }
.profile-hero h1 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 14px; }
.profile-locator {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none; margin: 0 0 12px; padding: 0;
}
.profile-locator li {
  border: 1px solid #D9E2F8; background: #EEF2FF; color: var(--navy);
  border-radius: 99px; padding: 5px 12px; font-size: 13px; font-weight: 600;
}
.profile-updated { font-size: 13px; color: var(--faint); margin: 0 0 8px; }
.profile-lead { color: var(--muted); font-size: 18px; max-width: 62ch; margin: 8px 0 24px; }
.profile-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 0 28px; align-items: start; }
.profile-office h2, .profile-facts-card h2, .profile-strategies h2,
.profile-desc h2, .profile-leadership h2, .gated-panel h2,
.profile-faq h2, .profile-mid-cta h2 { font-size: 20px; margin-bottom: 12px; }
.profile-office address { color: var(--ink); margin: 0 0 14px; }
.profile-kv { margin: 0 0 8px; color: var(--ink); font-size: 14px; }
.profile-kv span { display: inline-block; min-width: 72px; color: var(--faint); font-size: 12px; font-weight: 650; text-transform: uppercase; letter-spacing: 0.04em; }
.profile-social { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; margin: 0 0 8px; }
.profile-social a { font-weight: 600; text-decoration: none; }
.profile-social a:hover { text-decoration: underline; }
.profile-soc-sep { min-width: 0; color: var(--faint); }
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; margin: 0; }
.facts-grid > div:last-child:nth-child(odd) { grid-column: 1 / -1; }
.facts-grid div { margin: 0; }
.facts-grid dt {
  font-size: 11px; font-weight: 650; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--faint);
}
.facts-grid dd { margin: 2px 0 0; font-weight: 600; color: var(--navy-ink); }
.profile-strategies, .profile-desc, .profile-leadership { margin: 0 0 28px; }
.profile-desc p { color: var(--muted); max-width: 68ch; margin: 0; }
.strategy-chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.profile-strategies .chip { padding: 5px 12px; font-size: 13px; }
.leader-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.leader-card { padding: 22px; }
.leader-card h3 { font-size: 17px; margin: 10px 0 4px; }
.leader-card p { margin: 0 0 12px; color: var(--muted); font-size: 14px; }
.leader-gates { display: flex; flex-wrap: wrap; gap: 8px; }
.gated-panel { background: var(--soft); margin: 0 0 28px; }
.gated-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 8px; }
.profile-mid-cta { margin: 0; }
.profile-mid-cta p { color: var(--ink); font-size: 18px; font-weight: 600; margin: 0; }
.profile-faq h3 { font-size: 16px; margin: 18px 0 6px; }
.profile-faq p { color: var(--muted); margin: 0; }
.profile-footer-cta { margin: 8px 0 0; }
@media (max-width: 980px) {
  .profile-two { grid-template-columns: 1fr; }
  .leader-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .facts-grid { grid-template-columns: 1fr; }
}
.profile-related { margin: 28px 0; }
.profile-related-list { list-style: none; margin: 0 0 8px; padding: 0; display: grid; gap: 8px; }
.profile-related-list a { font-weight: 600; text-decoration: none; }
.profile-related-list a:hover { color: var(--navy-ink); }

.band-tight { padding: 28px 0 72px; }
.narrow { max-width: 640px; }
.thanks-mark {
  width: 48px; height: 48px; border-radius: 50%;
  background: #F1F8E8; border: 1px solid #C8E6A0;
  display: grid; place-items: center; margin: 0 0 16px;
}
.thanks-mark::after {
  content: "";
  width: 14px; height: 8px;
  border-left: 3px solid var(--green-ink);
  border-bottom: 3px solid var(--green-ink);
  transform: rotate(-45deg) translate(1px, -2px);
}
.thanks-steps { margin: 0 0 20px; padding: 0 0 0 20px; color: var(--ink); }
.thanks-steps li { margin: 0 0 10px; }
.thanks-steps li:last-child { margin-bottom: 0; }
.thanks-wrap .panel h2 { font-size: 20px; margin-bottom: 14px; }
.thanks-wrap .panel p { margin: 0 0 18px; }
.thanks-wrap .btn-ghost { display: inline-flex; }
.hfc-table-text td:nth-child(2), .hfc-table-text td:nth-child(3),
.hfc-table-text th:nth-child(2), .hfc-table-text th:nth-child(3) { text-align: left; }
.panel .hfc-table { margin: 16px 0 24px; }
