:root {
  color-scheme: light;
  --ink: #17323a;
  --ink-soft: #4c646a;
  --paper: #f5f3ec;
  --surface: #fffef9;
  --line: #d8ddd7;
  --teal: #176c70;
  --teal-dark: #104e53;
  --coral: #e56f51;
  --lime: #d7e885;
  --shadow: 0 18px 50px rgb(23 50 58 / 10%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 90% 2%, rgb(215 232 133 / 32%), transparent 26rem),
    var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
}

a {
  color: var(--teal-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgb(23 50 58 / 10%);
  background: rgb(245 243 236 / 88%);
  backdrop-filter: blur(16px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 3rem));
  min-height: 72px;
  margin: 0 auto;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: var(--teal);
  color: white;
  font-size: 0.92rem;
}

.nav-links {
  gap: 1.2rem;
  font-size: 0.9rem;
  font-weight: 680;
}

.nav-links a {
  text-decoration: none;
}

.nav-button {
  padding: 0.48rem 0.9rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

main,
.site-footer {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(3rem, 7vw, 5rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 6.9rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero-lead {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
  margin-top: 2rem;
}

.primary-button {
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 760;
  text-decoration: none;
}

.primary-button:hover {
  background: var(--coral);
  color: white;
}

.text-link {
  font-weight: 720;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 1.35rem 1rem;
  text-align: center;
}

.hero-stats div + div {
  border-left: 1px solid var(--line);
}

.hero-stats dt {
  font-size: 1.7rem;
  font-weight: 840;
  line-height: 1.1;
}

.hero-stats dd {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 720;
}

.disclosure {
  display: grid;
  grid-template-columns: minmax(12rem, 0.45fr) minmax(0, 1.55fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgb(229 111 81 / 35%);
  border-radius: 18px;
  background: rgb(255 254 249 / 78%);
}

.disclosure strong {
  color: #a5422e;
  font-size: 0.9rem;
}

.disclosure p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.directory {
  margin: clamp(3rem, 7vw, 6rem) 0;
  padding: clamp(1.4rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.directory > p:first-child {
  margin-top: 0;
  color: var(--teal);
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.directory blockquote {
  margin: 1.5rem 0 3rem;
  padding: 1rem 1.3rem;
  border-left: 4px solid var(--coral);
  border-radius: 0 12px 12px 0;
  background: #fff4ee;
  color: #70443a;
}

.directory blockquote p {
  margin: 0;
}

.directory h2 {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin: 4rem 0 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.directory h2::before {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 3px;
  background: var(--lime);
  content: "";
  transform: rotate(8deg);
}

.directory ul {
  padding-left: 1.35rem;
}

.directory > ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 2.4rem;
  padding: 0;
  list-style: none;
}

.directory > ul > li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.2rem;
  border-bottom: 1px solid rgb(216 221 215 / 72%);
}

.directory > ul > li::before {
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.directory li > a:first-child {
  font-weight: 760;
}

.directory li ul {
  margin-top: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0 4rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.site-footer p {
  max-width: 48rem;
  margin: 0;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 13vw, 6rem);
  }

  .directory > ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .site-nav,
  main,
  .site-footer {
    width: min(100% - 1.5rem, 1180px);
  }

  .site-nav {
    min-height: 62px;
  }

  .brand span:last-child,
  .nav-links > a:first-child {
    display: none;
  }

  .hero {
    padding-top: 4rem;
  }

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

  .hero-stats div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .directory {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}

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