:root {
  --ink: #142422;
  --muted: #5b6b68;
  --paper: #f7f6f1;
  --surface: #ffffff;
  --surface-soft: #eef5f2;
  --line: #d9e2df;
  --brand: #0d655e;
  --brand-dark: #083f3b;
  --brand-light: #dff4ee;
  --accent: #e9a23b;
  --danger: #a94737;
  --shadow: 0 18px 50px rgba(18, 55, 50, 0.09);
  --radius: 18px;
  --radius-sm: 11px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--brand);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--brand-dark);
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(790px, calc(100% - 40px));
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.status-bar {
  color: #d9eeea;
  background: #092f2c;
  font-size: 13px;
}

.status-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 34px;
  align-items: center;
}

.status-bar span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-bar i,
.card-foot i {
  width: 7px;
  height: 7px;
  display: inline-block;
  flex: 0 0 auto;
  background: #44d5a9;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(68, 213, 169, 0.14);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(247, 246, 241, 0.92);
  border-bottom: 1px solid rgba(13, 101, 94, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.15;
}

.brand:hover {
  color: var(--ink);
}

.brand-symbol {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 14px 14px 14px 5px;
  font-size: 28px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 19px;
  letter-spacing: -0.04em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  padding: 9px 12px;
  color: #334743;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--brand-dark);
  background: var(--brand-light);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  list-style: none;
  font-weight: 800;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: 220px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 11px 12px;
  color: var(--ink);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.mobile-menu nav a:hover,
.mobile-menu nav a[aria-current="page"] {
  background: var(--surface-soft);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow.danger {
  color: var(--danger);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 8px 22px rgba(13, 101, 94, 0.2);
}

.button-primary:hover {
  color: #fff;
  background: var(--brand-dark);
}

.button-ghost {
  color: var(--brand-dark);
  background: transparent;
  border-color: rgba(13, 101, 94, 0.32);
}

.button-ghost:hover {
  color: var(--brand-dark);
  background: #fff;
}

.button-dark {
  width: 100%;
  color: #fff;
  background: var(--brand-dark);
}

.button-dark:hover {
  color: #fff;
  background: #052d2a;
}

.button-light {
  color: var(--brand-dark);
  background: #fff;
}

.button-light:hover {
  color: var(--brand-dark);
  background: var(--brand-light);
}

.full-button {
  width: 100%;
  border: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 850;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 76px;
  background:
    radial-gradient(circle at 15% 12%, rgba(233, 162, 59, 0.13), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(13, 101, 94, 0.15), transparent 30%),
    var(--paper);
}

.hero::after {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -340px;
  bottom: -360px;
  content: "";
  border: 80px solid rgba(13, 101, 94, 0.06);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 64px;
  align-items: center;
}

.hero h1,
.page-hero h1,
.not-found-inner h1 {
  margin: 0;
  color: #102a27;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 760px;
  margin: 25px 0 0;
  color: #40524f;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions,
.page-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-stats {
  display: flex;
  gap: 12px;
  margin: 34px 0 0;
}

.hero-stats div {
  min-width: 132px;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  color: var(--brand-dark);
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.spotlight {
  position: relative;
  overflow: hidden;
  padding: 28px;
  color: #dce9e7;
  background: linear-gradient(145deg, #0a4c47, #092f2c 68%);
  border-radius: 26px 26px 26px 8px;
  box-shadow: 0 28px 70px rgba(7, 48, 44, 0.24);
}

.spotlight::before {
  position: absolute;
  width: 200px;
  height: 200px;
  top: -110px;
  right: -90px;
  content: "";
  border: 34px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.spotlight-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #b8dad4;
  font-size: 12px;
  font-weight: 800;
}

.live-dot {
  width: 9px;
  height: 9px;
  background: #51e2b4;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(81, 226, 180, 0.12);
}

.spotlight-symbol {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 28px 0 20px;
  place-items: center;
  color: var(--brand-dark);
  background: #fff;
  border-radius: 22px 22px 22px 7px;
  font-size: 32px;
  font-weight: 950;
}

.spotlight-kicker {
  margin: 0 0 4px;
  color: #87b9b1;
  font-size: 12px;
  font-weight: 800;
}

.spotlight h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.spotlight > p:not(.spotlight-kicker) {
  margin: 12px 0 18px;
  color: #c6dcda;
  font-size: 14px;
}

.destination {
  margin: 0 0 16px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
}

.destination span,
.destination strong {
  display: block;
}

.destination span {
  color: #8dbbb4;
  font-size: 11px;
}

.destination strong {
  margin-top: 3px;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.spotlight small {
  display: block;
  margin-top: 12px;
  color: #8dbbb4;
  text-align: center;
}

.principles {
  background: var(--brand-dark);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.principles-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  padding: 25px 28px;
  color: #e6f1ef;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.principles-grid > div:last-child {
  border-right: 0;
}

.principles-grid span {
  grid-row: 1 / span 2;
  color: #65c8b8;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
}

.principles-grid strong {
  font-size: 15px;
}

.principles-grid p {
  margin: 3px 0 0;
  color: #a9c4c0;
  font-size: 12px;
}

.directory-section,
.editorial-section,
.faq-section,
.comparison-section,
.criteria-section,
.tools-section,
.update-log-section,
.status-table-section,
.contact-section,
.plain-section {
  padding: 88px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.section-heading h2,
.editorial-grid h2,
.faq-section h2,
.plain-section h2,
.policy-grid h2,
.contact-copy h2 {
  margin: 0;
  color: #15322e;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
}

.directory-search {
  margin-bottom: 18px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(18, 55, 50, 0.05);
}

.directory-search > label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 850;
}

.search-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding-left: 16px;
  background: #f8faf9;
  border: 1px solid #cbd8d4;
  border-radius: 12px;
}

.search-box > span {
  color: var(--brand);
  font-size: 25px;
}

.search-box input {
  min-width: 0;
  height: 54px;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 17px;
}

.search-box button {
  align-self: stretch;
  min-width: 86px;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: 0 11px 11px 0;
  font-weight: 850;
}

.search-help {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
}

kbd {
  padding: 1px 5px;
  background: #edf1ef;
  border: 1px solid #cfd9d6;
  border-radius: 4px;
  box-shadow: 0 1px 0 #b9c4c1;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: thin;
}

.filter-chip {
  flex: 0 0 auto;
  padding: 8px 13px;
  color: #3c514d;
  background: transparent;
  border: 1px solid #cbd7d4;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.filter-chip:hover,
.filter-chip.active,
.filter-chip[aria-pressed="true"] {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.filter-chip.saved-filter {
  margin-left: auto;
}

.result-status {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.notice {
  padding: 12px 15px;
  background: #fff8e8;
  border: 1px solid #eed59d;
  border-radius: 9px;
}

.category-section {
  padding-top: 58px;
  scroll-margin-top: 100px;
}

.category-heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.category-heading > span {
  display: grid;
  min-width: 52px;
  height: 52px;
  place-items: center;
  color: var(--brand-dark);
  background: var(--brand-light);
  border-radius: 16px 16px 16px 5px;
  font-size: 12px;
  font-weight: 900;
}

.category-heading h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.category-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.link-card {
  display: flex;
  min-width: 0;
  min-height: 330px;
  flex-direction: column;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 7px 24px rgba(18, 55, 50, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: #9dbdb7;
  box-shadow: var(--shadow);
}

.link-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 17px;
}

.site-initial {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--brand-dark);
  background: var(--surface-soft);
  border-radius: 13px 13px 13px 5px;
  font-weight: 950;
}

.favorite-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #697a77;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
}

.favorite-button:hover {
  color: #9a6619;
  background: #fff7e9;
}

.favorite-button[aria-pressed="true"] {
  color: #a66a11;
  background: #fff1d6;
}

.link-card h3 {
  margin: 0;
  color: #162e2a;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.domain {
  margin: 2px 0 0;
  color: var(--brand);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  word-break: break-all;
}

.card-description {
  margin: 14px 0;
  color: #52635f;
  font-size: 13px;
}

.tag-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: auto;
}

.tag-row span {
  padding: 3px 8px;
  color: #52645f;
  background: #f1f4f2;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 17px;
  padding-top: 14px;
  border-top: 1px solid #e5eae8;
}

.card-foot > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #71807d;
  font-size: 10px;
}

.card-foot a {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.category-more {
  margin: 18px 0 0;
  text-align: right;
}

.empty-state {
  margin-top: 34px;
  padding: 48px 22px;
  background: #fff;
  border: 1px dashed #a7b9b5;
  border-radius: var(--radius);
  text-align: center;
}

.empty-state strong {
  font-size: 20px;
}

.empty-state p {
  margin: 6px 0 0;
  color: var(--muted);
}

.editorial-section,
.criteria-section,
.comparison-section,
.status-table-section {
  background: #eaf2ef;
}

.editorial-grid,
.split-copy,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 74px;
  align-items: start;
}

.editorial-grid > div > p:not(.eyebrow),
.split-copy .prose {
  color: #52635f;
}

.method-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  padding: 19px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 101, 94, 0.12);
  border-radius: 13px;
}

.method-list li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.method-list strong {
  display: block;
}

.method-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-section {
  background: var(--surface);
}

.faq-section h2 {
  margin-bottom: 26px;
}

.faq-section details {
  border-top: 1px solid var(--line);
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  position: relative;
  padding: 20px 42px 20px 0;
  list-style: none;
  font-weight: 850;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  position: absolute;
  top: 19px;
  right: 4px;
  content: "+";
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}

.faq-section details[open] summary::after {
  content: "−";
}

.faq-section details p {
  margin: -5px 0 22px;
  color: var(--muted);
}

.page-hero {
  padding: 74px 0;
  background:
    linear-gradient(120deg, rgba(13, 101, 94, 0.08), transparent 50%),
    var(--paper);
}

.compact-hero h1 {
  max-width: 900px;
  font-size: clamp(38px, 5vw, 60px);
}

.compact-hero .wrap > p:not(.eyebrow) {
  max-width: 830px;
  margin: 20px 0 0;
  color: #455854;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 30px;
  color: #74827f;
  font-size: 12px;
}

.breadcrumb a {
  color: #5d706c;
  text-decoration: none;
}

.mini-facts {
  background: var(--brand-dark);
}

.mini-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.mini-facts-grid div {
  padding: 24px 30px;
  color: #b8d0cc;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.mini-facts-grid div:last-child {
  border-right: 0;
}

.mini-facts-grid strong,
.mini-facts-grid span {
  display: block;
}

.mini-facts-grid strong {
  color: #fff;
  font-size: 23px;
}

.mini-facts-grid span {
  margin-top: 2px;
  font-size: 12px;
}

.sub-directory {
  background: #fff;
}

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

.info-card-grid article,
.criteria-grid li {
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-card-grid article > span,
.criteria-grid li > span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 9px;
  color: var(--brand-dark);
  background: var(--brand-light);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 900;
}

.info-card-grid h3,
.criteria-grid h3 {
  margin: 0;
  font-size: 19px;
}

.info-card-grid p,
.criteria-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.info-card-grid a {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.prose p {
  color: #4c5f5b;
}

.prose a {
  font-weight: 750;
}

.muted {
  background: #edf2f0;
}

.policy-section {
  padding: 88px 0;
  background: #fff;
}

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

.policy-grid article {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.policy-grid h2 {
  font-size: 28px;
}

.check-list,
.cross-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.cross-list li {
  position: relative;
  padding-left: 27px;
  color: #465955;
}

.check-list li::before,
.cross-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.check-list li::before {
  content: "✓";
  color: #fff;
  background: var(--brand);
}

.cross-list li::before {
  content: "×";
  color: #fff;
  background: var(--danger);
}

.criteria-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.tools-section {
  background: #fff;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline > li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.timeline > li:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--brand);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 850;
}

.timeline strong {
  font-size: 20px;
}

.timeline p {
  margin: 7px 0 0;
  color: var(--muted);
}

.timeline ul {
  margin: 12px 0 0;
  color: #4d605c;
}

.status-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.status-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.status-table th,
.status-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #e4e9e7;
  text-align: left;
}

.status-table thead th {
  color: #52635f;
  background: #f4f7f6;
  font-size: 12px;
}

.status-table tbody th {
  font-size: 14px;
}

.status-table td {
  color: var(--muted);
  font-size: 13px;
}

.status-table tr:last-child th,
.status-table tr:last-child td {
  border-bottom: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  color: var(--brand-dark);
  background: var(--brand-light);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.status-pill::before {
  width: 6px;
  height: 6px;
  content: "";
  background: #22aa81;
  border-radius: 50%;
}

.center-copy {
  text-align: center;
}

.center-copy .button {
  margin-top: 14px;
}

.contact-section {
  background: #fff;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.privacy-note {
  margin-top: 28px !important;
  padding: 14px 16px;
  background: #fff8e8;
  border: 1px solid #ecd399;
  border-radius: 10px;
  font-size: 13px;
}

.form-panel {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.report-form {
  display: grid;
  gap: 20px;
}

.field label,
.field small {
  display: block;
}

.field label {
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  background: #fff;
  border: 1px solid #becdc9;
  border-radius: 9px;
}

.field textarea {
  resize: vertical;
}

.field small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-consent {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.error-message,
.success-message {
  padding: 20px;
  border-radius: 12px;
}

.error-message {
  margin-bottom: 20px;
  color: #762b20;
  background: #fff0ed;
  border: 1px solid #eab9b0;
}

.error-message ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.success-message {
  color: var(--brand-dark);
  background: var(--brand-light);
  border: 1px solid #a8d8cd;
}

.success-message strong {
  font-size: 22px;
}

.success-message .button {
  margin-top: 10px;
}

.legal-copy h2 {
  margin: 42px 0 10px;
  font-size: 23px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: #4c5e5a;
}

.legal-updated {
  margin-top: 50px !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.not-found-section {
  display: grid;
  min-height: 62vh;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.not-found-inner {
  max-width: 760px;
}

.error-code {
  margin: 0;
  color: var(--brand-light);
  font-size: clamp(90px, 18vw, 180px);
  font-weight: 950;
  line-height: 0.8;
}

.not-found-inner h1 {
  font-size: clamp(34px, 5vw, 52px);
}

.not-found-inner > p:not(.eyebrow, .error-code) {
  color: var(--muted);
}

.not-found-inner .hero-actions {
  justify-content: center;
}

.footer-cta {
  padding: 50px 0;
  color: #fff;
  background: var(--brand);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-cta .eyebrow {
  color: #aee3da;
}

.footer-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 4vw, 37px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.site-footer {
  padding: 55px 0 24px;
  color: #b6c8c5;
  background: #092f2c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 55px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid strong {
  color: #fff;
}

.footer-brand {
  font-size: 20px;
}

.footer-grid p {
  max-width: 480px;
  margin: 5px 0 0;
  font-size: 13px;
}

.footer-grid a {
  color: #b6c8c5;
  font-size: 13px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #789490;
  font-size: 11px;
}

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

  .spotlight {
    max-width: 620px;
  }

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

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

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero,
  .page-hero {
    padding: 58px 0;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 58px);
  }

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

  .principles-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .principles-grid > div:last-child {
    border-bottom: 0;
  }

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

  .editorial-grid,
  .split-copy,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .info-card-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .wrap,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .status-bar-inner {
    justify-content: center;
  }

  .status-bar-inner > span:last-child {
    display: none;
  }

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

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 17px;
  }

  .hero {
    padding: 45px 0 50px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lead,
  .compact-hero .wrap > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .hero-stats div {
    min-width: 0;
    padding-right: 6px;
  }

  .hero-stats dt {
    font-size: 21px;
  }

  .spotlight {
    padding: 22px;
  }

  .directory-section,
  .editorial-section,
  .faq-section,
  .comparison-section,
  .criteria-section,
  .tools-section,
  .update-log-section,
  .status-table-section,
  .contact-section,
  .plain-section,
  .policy-section {
    padding: 62px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > .text-link {
    margin-top: 12px;
  }

  .directory-search {
    padding: 14px;
  }

  .search-box {
    grid-template-columns: auto 1fr;
    padding: 0 12px;
  }

  .search-box button {
    grid-column: 1 / -1;
    min-height: 44px;
    margin: 0 -12px;
    border-radius: 0 0 11px 11px;
  }

  .search-help {
    display: none;
  }

  .filter-chip.saved-filter {
    margin-left: 0;
  }

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

  .link-card {
    min-height: 0;
  }

  .mini-facts-grid {
    grid-template-columns: 1fr;
  }

  .mini-facts-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mini-facts-grid div:last-child {
    border-bottom: 0;
  }

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

  .timeline > li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-panel {
    padding: 19px;
  }

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

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .status-bar,
  .site-header,
  .footer-cta,
  .site-footer,
  .favorite-button,
  .filter-row,
  .directory-search,
  .hero-actions,
  .page-hero-actions {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .link-card {
    break-inside: avoid;
    box-shadow: none;
  }
}
