/* Lightweight, dependency-free presentation for the one-page directory. */
:root {
  --ink: #10213f;
  --ink-soft: #3f4c62;
  --paper: #fbfaf6;
  --paper-deep: #f1eee6;
  --white: #ffffff;
  --blue: #1d5d8f;
  --blue-dark: #154568;
  --rust: #bd552d;
  --line: #d9d6cd;
  --focus: #ffbf47;
  --shadow: 0 18px 40px rgba(16, 33, 63, 0.08);
  --shell: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.12;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 750px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-150%);
  background: var(--focus);
  color: #111111;
  font-weight: 800;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.96);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 700;
}

nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 140px) 0 100px;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border: 76px solid rgba(29, 93, 143, 0.07);
  border-radius: 50%;
  content: "";
  right: -180px;
  top: -190px;
}

.hero-grid {
  display: grid;
  align-items: end;
  gap: clamp(48px, 8vw, 110px);
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.75fr);
}

.eyebrow,
.summary-kicker {
  margin-bottom: 18px;
  color: var(--rust);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lede {
  max-width: 710px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.company-search {
  max-width: 780px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.company-search label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.search-row {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.search-row input {
  min-width: 0;
  min-height: 54px;
  padding: 0 16px;
  border: 2px solid #6b7280;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.search-row input::placeholder {
  color: #647084;
}

.search-row button {
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.search-row button:hover {
  background: var(--blue-dark);
}

.company-search > p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.trust-note {
  display: flex;
  max-width: 760px;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.trust-note span {
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--ink-soft);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

.trust-note p {
  margin: 0;
}

.register-summary {
  position: relative;
  padding: 34px;
  background: var(--ink);
  color: var(--white);
}

.register-summary::before {
  position: absolute;
  width: 42px;
  height: 5px;
  background: var(--rust);
  content: "";
  left: 34px;
  top: 0;
}

.register-summary .summary-kicker {
  margin-bottom: 12px;
  color: #f3a486;
}

.register-summary h2 {
  margin-bottom: 22px;
  font-family: inherit;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.register-summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.register-summary li {
  display: grid;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  gap: 14px;
  grid-template-columns: 30px 1fr;
}

.register-summary li span {
  color: #8fb8d6;
  font-family: Georgia, serif;
  font-size: 0.84rem;
}

.summary-footnote {
  margin: 20px 0 0;
  color: #cbd5e1;
  font-size: 0.85rem;
}

.section {
  padding-block: clamp(76px, 9vw, 120px);
}

.section-tint {
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 48px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.7fr);
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.link-grid {
  display: grid;
  margin: 48px 0 0;
  padding: 0;
  gap: 18px;
  list-style: none;
}

.primary-grid {
  grid-template-columns: repeat(6, 1fr);
}

.primary-grid .link-card {
  grid-column: span 2;
}

.primary-grid .featured-card {
  grid-column: span 4;
}

.link-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  contain: layout style;
}

.link-card:hover {
  border-color: #9ba9b5;
  box-shadow: 0 10px 28px rgba(16, 33, 63, 0.06);
}

.link-card h3,
.link-card h4 {
  margin-bottom: 14px;
}

.link-card p {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.link-card a {
  margin-top: auto;
  color: var(--blue-dark);
  font-weight: 800;
}

.card-tag {
  align-self: flex-start;
  margin-bottom: 32px;
  padding: 5px 9px;
  border: 1px solid #c3d8e7;
  border-radius: 999px;
  background: #edf6fb;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-card {
  background: var(--blue);
  color: var(--white);
}

.featured-card:hover {
  border-color: var(--blue);
}

.featured-card .card-tag {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.featured-card p,
.featured-card a {
  color: var(--white);
}

.register-group {
  margin-top: 68px;
}

.group-heading {
  display: grid;
  max-width: 720px;
  align-items: start;
  gap: 18px;
  grid-template-columns: 46px 1fr;
}

.group-heading > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

.group-heading h3 {
  margin-bottom: 8px;
}

.group-heading p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.compact-grid {
  margin-top: 26px;
  grid-template-columns: repeat(4, 1fr);
}

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

.compact-grid .link-card {
  min-height: 220px;
  padding: 24px;
}

.data-links {
  margin: 52px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.data-links li {
  display: grid;
  min-height: 150px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  gap: 28px;
  grid-template-columns: 52px minmax(0, 1fr) auto;
}

.data-links h3 {
  margin-bottom: 8px;
}

.data-links p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.data-links a {
  color: var(--blue-dark);
  font-weight: 800;
}

.data-number {
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.advisory {
  padding-block: clamp(70px, 9vw, 110px);
  background: var(--ink);
  color: var(--white);
}

.advisory-inner {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.advisory .eyebrow {
  color: #f3a486;
}

.advisory h2 {
  margin-bottom: 24px;
}

.advisory p:not(.eyebrow) {
  margin-bottom: 28px;
  color: #d8e0eb;
  font-size: 1.08rem;
}

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

.site-footer {
  padding-block: 48px;
  background: #09152b;
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .brand-mark {
  background: var(--white);
  color: var(--ink);
}

.site-footer p {
  margin: 0;
  color: #b9c5d5;
  font-size: 0.85rem;
}

.footer-meta {
  text-align: right;
}

@media (max-width: 920px) {
  .hero-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .register-summary {
    max-width: 620px;
  }

  .primary-grid,
  .compact-grid,
  .compact-grid.three-up {
    grid-template-columns: repeat(2, 1fr);
  }

  .primary-grid .link-card,
  .primary-grid .featured-card {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 66px;
  }

  nav {
    display: none;
  }

  .hero {
    padding: 64px 0 72px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .company-search {
    padding: 18px;
  }

  .search-row,
  .primary-grid,
  .compact-grid,
  .compact-grid.three-up {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 70px;
  }

  .section-heading {
    gap: 24px;
  }

  .register-group {
    margin-top: 54px;
  }

  .data-links li {
    align-items: start;
    gap: 12px;
    grid-template-columns: 38px 1fr;
  }

  .data-links a {
    grid-column: 2;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }
}

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

@media print {
  .skip-link,
  .site-header,
  .company-search,
  .site-footer {
    display: none;
  }

  body,
  .section-tint,
  .advisory,
  .featured-card,
  .register-summary {
    background: #ffffff;
    color: #000000;
  }

  .section,
  .hero,
  .advisory {
    padding-block: 2rem;
  }

  a {
    color: #000000;
  }
}
