:root {
  --bg: #f5fbfc;
  --surface: #ffffff;
  --surface-soft: #eaf7f8;
  --text: #102a43;
  --muted: #5f7382;
  --line: #cfe2e6;
  --brand: #0ea5a4;
  --brand-strong: #0b4f86;
  --accent: #2d9a51;
  --ink: #0f1f33;
  --blue: #2388b8;
  --radius: 8px;
  --shadow: 0 18px 40px rgba(16, 42, 67, 0.09);
  --shadow-soft: 0 8px 24px rgba(16, 42, 67, 0.06);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14, 165, 164, 0.08), rgba(14, 165, 164, 0) 340px),
    linear-gradient(90deg, rgba(35, 136, 184, 0.06), rgba(45, 154, 81, 0.05));
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }
img { max-width: 100%; height: auto; }

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(245, 251, 252, 0.92);
  border-bottom: 1px solid var(--line);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.site-footer {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  margin-top: 64px;
}
.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.05fr) minmax(150px, 0.65fr) minmax(210px, 0.8fr) minmax(260px, 1fr) minmax(140px, 0.55fr);
}
.site-footer p {
  max-width: 440px;
  color: var(--muted);
  margin: 8px 0 0;
}
.footer-links {
  display: grid;
  gap: 7px;
}
.footer-links strong,
.footer-note strong {
  display: block;
  margin-bottom: 4px;
}
.footer-links a {
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--brand);
}
.footer-note {
  max-width: 360px;
}
.footer-company {
  max-width: 430px;
  font-size: 0.92rem;
}
.footer-company p {
  margin-top: 6px;
}
.footer-company a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-company a:hover {
  color: var(--brand);
}
.footer-legal-links a {
  display: block;
  color: var(--muted);
}
.footer-legal-links a:hover {
  color: var(--brand);
}
.site-footer nav {
  justify-self: end;
}
.site-footer ul {
  display: grid;
  gap: 6px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}
.brand-logo {
  display: block;
  width: clamp(190px, 22vw, 260px);
  height: auto;
}
.footer-logo {
  display: block;
  width: min(220px, 100%);
  height: auto;
  margin-bottom: 8px;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand), var(--blue));
  color: #fff;
}
.primary-nav > .menu,
.site-footer ul {
  display: flex;
  list-style: none;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.primary-nav { display: flex; gap: 18px; align-items: center; }
.primary-nav .menu a {
  color: var(--muted);
  font-weight: 800;
}
.primary-nav .menu a:hover,
.submenu-toggle:hover {
  color: var(--brand-strong);
}
.submenu-toggle {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}
.submenu-toggle::after {
  content: "▾";
  display: inline-block;
  margin-left: 6px;
  font-size: 0.78em;
}
.fc-main-menu .has-submenu {
  position: relative;
}
.fc-main-menu {
  align-items: center;
}
.submenu-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 18px;
  min-width: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 30;
}
.submenu-panel[hidden] {
  display: none;
}
.submenu-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}
.submenu-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}
.submenu-panel a {
  display: block;
  padding: 7px 0;
}
.fc-category-menu {
  position: relative;
}
.fc-category-menu summary {
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}
.fc-category-menu summary::-webkit-details-marker {
  display: none;
}
.fc-category-menu summary::after {
  content: "⌄";
  margin-left: 6px;
  color: var(--muted);
}
.fc-category-menu ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.fc-category-menu:not([open]) ul {
  display: none;
}
.fc-category-menu li {
  position: relative;
}
.fc-category-menu li ul {
  position: static;
  display: grid;
  border: 0;
  box-shadow: none;
  min-width: 0;
  padding: 6px 0 0 12px;
}
.fc-category-menu summary::after {
  content: "v";
}
.language-switcher {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.language-switcher__link {
  min-width: 34px;
  padding: 5px 7px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}
.language-switcher__link.is-active {
  background: #dff4f5;
  color: var(--brand-strong);
}
.language-switcher__link.is-muted {
  opacity: 0.52;
}
.menu-toggle { display: none; }

.hero,
.section,
.tool-detail,
.article {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}
.hero {
  display: grid;
  align-items: center;
  min-height: 54vh;
  padding: 52px 0 40px;
}
.home-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #101b18;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 23, 20, 0.94), rgba(12, 23, 20, 0.62) 48%, rgba(12, 23, 20, 0.16)),
    linear-gradient(180deg, rgba(12, 23, 20, 0.08), rgba(12, 23, 20, 0.46));
  pointer-events: none;
}
.home-hero__media {
  position: absolute;
  inset: 0;
}
.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero__content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 118px 0 96px;
}
.home-hero .eyebrow,
.home-hero a:hover { color: #98efe1; }
.home-hero .button.secondary {
  color: var(--text);
  border-color: rgba(255,255,255,0.9);
}
.home-hero .hero-copy {
  color: rgba(255,255,255,0.82);
}
.home-hero__signals {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  margin: -58px auto 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.home-hero__signals span {
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  padding: 8px 10px;
  backdrop-filter: blur(12px);
}
.hero-content { max-width: 860px; }
.eyebrow {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; margin: 0 0 14px; }
h1 { font-size: clamp(2.25rem, 5vw, 4.6rem); max-width: 980px; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.15rem; }
.hero-copy { max-width: 720px; color: var(--muted); font-size: 1.18rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-weight: 750;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.button.primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.button.secondary { background: var(--surface); }

.section { padding: 62px 0; }
.section.compact { padding: 28px 0; }
.section.surface {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1160px) / 2));
  background: linear-gradient(180deg, #eaf7f8, #f7fcfc);
}
.section-heading { max-width: 760px; margin-bottom: 24px; }
.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: end;
}
.split-heading > p {
  color: var(--muted);
  margin: 0 0 16px;
}
.band {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1160px) / 2));
  background: linear-gradient(180deg, #eef8fa, #f8fcfc);
}

.service-grid,
.tool-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.blog-hub .post-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.blog-hub > .section-heading {
  align-items: center;
  margin-bottom: 18px;
}
.blog-hub > .section-heading h1 {
  font-size: clamp(2rem, 3.7vw, 3.6rem);
  max-width: 780px;
}
.blog-hub > .section-heading > p {
  max-width: 420px;
}
.blog-dashboard {
  margin-top: 14px;
}
.blog-silo-sections,
.blog-latest-section {
  display: grid;
  gap: 54px;
  margin-top: 52px;
}
.blog-silo-block {
  display: grid;
  gap: 18px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.blog-silo-block .section-heading {
  margin-bottom: 4px;
}
.compact-post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.compact-post-grid .post-card h3 {
  font-size: 1.05rem;
}
.compact-post-grid .post-card p {
  font-size: 0.94rem;
}
.blog-empty-topic {
  max-width: 520px;
  min-height: 0;
  box-shadow: var(--shadow-soft);
}
.blog-guides-bridge {
  margin-top: 54px;
}
.blog-guides-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(14, 165, 164, 0.09), rgba(35, 136, 184, 0.07)),
    var(--surface);
}
.blog-guides-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}
.blog-guides-card p:last-child {
  margin-bottom: 0;
}
.blog-silo-more {
  justify-self: start;
  margin-top: 2px;
}
.blog-hub .post-card {
  min-height: 260px;
}
.service-grid article,
.tool-card,
.post-card,
.chart-card,
.score-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.service-grid article,
.tool-card,
.post-card,
.service-proof-grid article,
.source-grid article,
.tool-summary-grid article {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-grid article:hover,
.tool-card:hover,
.post-card:hover,
.service-proof-grid article:hover,
.source-grid article:hover,
.tool-summary-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 164, 0.28);
  box-shadow: 0 20px 44px rgba(16, 42, 67, 0.12);
}
.service-grid article {
  display: grid;
  align-content: start;
  min-height: 190px;
}
.service-grid.detailed article {
  min-height: 270px;
}
.service-grid ul {
  margin: 6px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.service-grid li {
  margin: 3px 0;
}
.service-grid .tool-card-link,
.service-proof-grid .tool-card-link {
  margin-top: 10px;
}
.service-index {
  display: inline-flex;
  width: 34px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #dff4f5;
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 18px;
}
.tool-card-head,
.tool-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tool-card {
  display: grid;
  gap: 12px;
  align-content: start;
}
.tool-card-head {
  align-items: flex-start;
}
.tool-card-head h3 {
  margin-bottom: 0;
}
.tool-card-meta {
  justify-content: flex-start;
  flex-wrap: wrap;
}
.tool-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(14, 165, 164, 0.18);
  border-radius: 999px;
  background: #edfafa;
  color: var(--brand-strong);
  padding: 4px 9px;
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: capitalize;
}
.mini-score {
  flex: 0 0 auto;
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #0ea5a4, #2388b8);
  color: #fff;
  box-shadow: 0 12px 28px rgba(14, 165, 164, 0.22);
}
.tool-card p,
.post-card p { color: var(--muted); }
.blog-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: -4px 0 22px;
}
.blog-dashboard article {
  display: grid;
  gap: 4px;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eefafa, #f7fcff);
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
}
.blog-dashboard strong {
  color: var(--brand-strong);
  font-size: 1.85rem;
  line-height: 1;
}
.blog-dashboard span {
  color: var(--muted);
  font-size: 0.92rem;
}
.tool-card {
  display: grid;
  gap: 10px;
  align-content: start;
}
.tool-card h3,
.post-card h2,
.service-grid h2,
.service-grid h3 {
  text-wrap: balance;
}
.tool-card-meta {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 14px;
}
.tool-card-link {
  justify-self: start;
  font-weight: 800;
  color: var(--brand-strong);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tool-card-link::after {
  content: "→";
  color: var(--accent);
}
.mini-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0ea5a4, #2388b8);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(14, 165, 164, 0.22);
}
.rankings > div {
  min-width: 0;
}
.rankings {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}
.home-observatory {
  align-items: stretch;
}
.home-observatory-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  padding: clamp(18px, 2vw, 24px);
  box-shadow: var(--shadow-soft);
}
.home-observatory-panel h3 {
  margin: 0;
  font-size: 1.25rem;
}
.home-tool-list,
.home-analysis-list {
  display: grid;
  gap: 10px;
}
.home-tool-groups {
  display: grid;
  gap: 18px;
}
.home-tool-group {
  display: grid;
  gap: 6px;
}
.home-tool-group h4 {
  margin: 0;
  color: var(--brand-strong);
  font-size: 0.92rem;
  letter-spacing: 0;
}
.home-tool-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.home-tool-list article:last-child,
.home-analysis-list article:last-child {
  border-bottom: 0;
}
.home-tool-list strong,
.home-analysis-list h4 {
  display: block;
  margin: 0 0 4px;
  line-height: 1.25;
}
.home-tool-list span,
.home-analysis-list span,
.home-analysis-list p {
  color: var(--muted);
  font-size: 0.94rem;
}
.home-tool-list em {
  display: grid;
  place-items: center;
  width: 44px;
  height: 38px;
  border-radius: var(--radius);
  background: #dff4f5;
  color: var(--brand-strong);
  font-style: normal;
  font-weight: 900;
}
.home-analysis-list article {
  display: grid;
  gap: 4px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.home-analysis-list p {
  margin: 0;
}
.process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.process-row article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  background: var(--surface);
}
.process-row article:nth-child(2n) {
  background: #fbfaf7;
}
.process-row strong { font-size: 1.05rem; }
.process-row span,
.post-list span { color: var(--muted); }
.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.service-proof-grid article {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow);
}
.service-proof-grid strong {
  color: var(--brand-strong);
  font-size: 1.1rem;
}
.service-proof-grid span {
  color: var(--muted);
}
.testimonials-panel {
  background: transparent;
}
.service-application-grid article {
  min-height: 190px;
}
.service-detail-page {
  display: grid;
  gap: 34px;
}
.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(14, 165, 164, 0.10), rgba(35, 136, 184, 0.08)),
    var(--surface);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow-soft);
}
.service-detail-hero h1 {
  font-size: clamp(2.15rem, 4.5vw, 4rem);
}
.service-detail-visual {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 164, 0.18);
  border-radius: var(--radius);
  background: #f4fbfc;
  box-shadow: var(--shadow-soft);
}
.service-detail-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}
.service-detail-grid,
.service-detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}
.service-detail-grid article,
.service-detail-columns > section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.service-detail-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.service-detail-grid li {
  margin: 6px 0;
}
.service-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-chip-list span {
  border: 1px solid rgba(14, 165, 164, 0.18);
  border-radius: 999px;
  background: #edfafa;
  color: var(--brand-strong);
  padding: 8px 11px;
  font-weight: 750;
}
.service-detail-cta {
  margin-top: 0;
}
.service-decision-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow-soft);
}
.service-decision-panel .section-heading {
  margin-bottom: 18px;
}
.service-question-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.service-question-grid article {
  border: 1px solid rgba(14, 165, 164, 0.14);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #f8fcfb, #fff);
  padding: 18px;
}
.service-question-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.service-question-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}
.service-related-content,
.article-service-links {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-soft);
}
.service-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.service-related-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.service-related-grid a {
  display: grid;
  height: 100%;
}
.service-related-grid img,
.service-related-grid .fc-read-next-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.service-related-grid strong {
  padding: 12px;
  line-height: 1.25;
}
.article-service-links {
  margin-top: 28px;
}
.article-service-links .service-chip-list a {
  border: 1px solid rgba(14, 165, 164, 0.18);
  border-radius: 999px;
  background: #edfafa;
  color: var(--brand-strong);
  padding: 8px 11px;
  font-weight: 750;
}
.fc-trust-panel {
  width: min(1160px, calc(100% - 36px));
  margin: 34px auto;
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 26px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eefafa, #f6fbff);
}
.fc-trust-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}
.fc-trust-panel p {
  margin: 0;
  color: var(--muted);
}
.fc-trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.fc-trust-metrics article {
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(14, 165, 164, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}
.fc-trust-metrics strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--brand-strong);
}
.fc-trust-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}
.fc-trust-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style-position: inside;
}
.fc-trust-steps li {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
}
.fc-watch-sources {
  margin: 18px 0 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #edfafa, #f7fcff);
}
.fc-watch-sources .section-heading {
  margin-bottom: 16px;
}
.source-grid,
.pillar-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.source-grid article {
  display: grid;
  gap: 8px;
  min-height: 154px;
  border: 1px solid rgba(14, 165, 164, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 14px;
}
.source-grid article > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}
.source-grid strong {
  color: var(--brand-strong);
}
.source-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}
.source-grid p {
  margin: 0;
  color: var(--muted);
}
.source-grid a {
  align-self: end;
  color: var(--brand-strong);
  font-weight: 800;
  overflow-wrap: anywhere;
}
.fc-action-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  align-items: start;
  margin: 26px 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(45, 154, 81, 0.26);
  border-radius: var(--radius);
  background: #eef9f1;
}
.fc-action-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}
.fc-action-panel p {
  margin: 0;
  color: var(--muted);
}
.fc-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.fc-action-grid article {
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(45, 154, 81, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}
.fc-action-grid strong,
.fc-action-grid span {
  display: block;
}
.fc-action-grid strong {
  color: var(--brand-strong);
  margin-bottom: 8px;
}
.fc-action-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}
.fc-action-panel > .tool-card-link {
  grid-column: 1 / -1;
  width: fit-content;
}
.post-list {
  display: grid;
  gap: 10px;
}
.post-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
}
.post-list h4 {
  margin: 4px 0 0;
  font-size: 1rem;
  line-height: 1.25;
}
.editorial-card .article-kicker {
  margin-bottom: 10px;
}
.editorial-card {
  overflow: hidden;
  display: grid;
  align-content: start;
}
.editorial-card h2 {
  font-size: 1.2rem;
  line-height: 1.18;
  margin-top: 6px;
}
.editorial-card .tool-card-meta {
  flex-wrap: wrap;
}
.post-card-thumb {
  display: block;
  margin: -18px -18px 20px;
  border-bottom: 1px solid var(--line);
  background: #edfafa;
  overflow: hidden;
}
.post-card-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #f4fbfc;
}
.post-card-thumb-inner,
.fc-generated-visual-thumb {
  display: block;
}
.service-related-thumb,
.fc-read-next-thumb {
  display: block;
  width: 100%;
}
.editorial-card.is-draft {
  border-style: dashed;
}
.content-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 26px;
}
.content-tabs a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 8px 10px;
  font-weight: 750;
  box-shadow: var(--shadow-soft);
}
.blog-category-section {
  margin: 34px 0 26px;
}
.category-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.category-cards a {
  display: grid;
  align-items: start;
  gap: 7px;
  min-height: 112px;
  padding: 15px;
  box-shadow: var(--shadow-soft);
}
.category-cards strong {
  color: var(--brand-strong);
  line-height: 1.15;
}
.category-cards span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 550;
}
.page-shell {
  min-height: 48vh;
}
.page-content {
  max-width: 900px;
}
.service-detail-shell .page-content {
  max-width: none;
}
.report-page .page-content {
  max-width: none;
}
.page-content > *:first-child {
  margin-top: 0;
}
.report-content {
  display: grid;
  gap: 22px;
}
.report-content h2 {
  margin: 14px 0 -4px;
  font-size: 1.35rem;
}
.report-content > ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.report-content > ul > li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  font-weight: 750;
}
.report-content > ul > li::first-line {
  color: var(--brand-strong);
  font-weight: 900;
}
.report-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.report-content thead {
  background: #dff4f5;
}
.report-content tbody tr:nth-child(even) {
  background: #f8fbf8;
}
.report-content th,
.report-content td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.report-content th {
  color: var(--brand-strong);
  font-size: 0.9rem;
}
.report-content td {
  font-size: 0.92rem;
}
.report-content td ul {
  margin: 0;
  padding-left: 16px;
}
.report-content td li {
  margin: 2px 0;
}
.report-content a {
  color: var(--brand-strong);
  font-weight: 800;
}
.report-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.report-actions article {
  display: grid;
  gap: 8px;
  min-height: 128px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #edfafa;
  padding: 16px;
  box-shadow: var(--shadow);
}
.report-actions strong {
  color: var(--brand-strong);
  font-size: 2rem;
  line-height: 1;
}
.report-actions span {
  color: var(--muted);
}
.fc-pillar-index h2 {
  font-size: 1.45rem;
}
.pillar-index-grid {
  margin-top: 18px;
}
.pillar-index-grid .pillar-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 280px;
}
.pillar-index-grid .tool-card-meta {
  justify-content: flex-start;
  flex-wrap: wrap;
}
.guides-hero {
  padding-bottom: 18px;
}
.guide-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.guide-principles article,
.pillar-candidates {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
  box-shadow: var(--shadow);
}
.guide-principles article {
  display: grid;
  gap: 6px;
}
.guide-principles strong {
  color: var(--brand-strong);
  font-size: 1.05rem;
}
.guide-principles span,
.pillar-card p,
.pillar-candidates span {
  color: var(--muted);
}
.pillar-candidates {
  margin-top: 22px;
}
.pillar-candidates h2 {
  margin-top: 0;
}

.tool-directory .section-heading {
  margin-bottom: 18px;
}
.directory-hero-heading {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 22px;
}
.directory-hero-heading h1 {
  max-width: 820px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.02;
}
.directory-hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fcfc;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}
.directory-hero-card p {
  margin: 0 0 10px;
  color: var(--brand-strong);
  font-weight: 800;
  line-height: 1.35;
}
.directory-hero-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.directory-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 16px;
}
.directory-overview article {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px 16px;
  box-shadow: var(--shadow);
}
.directory-overview strong {
  color: var(--brand-strong);
  font-size: 1.7rem;
  line-height: 1;
}
.directory-overview span {
  color: var(--muted);
  font-size: 0.92rem;
}
.directory-editorial-intro,
.directory-methodology,
.directory-choice-guide,
.directory-faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(18px, 3vw, 26px);
  margin: 0 0 18px;
  box-shadow: var(--shadow);
}
.directory-editorial-intro h2,
.directory-methodology h2,
.directory-choice-guide h2,
.directory-faq h2 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  margin-bottom: 10px;
}
.directory-editorial-intro p {
  max-width: 920px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}
.directory-method {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}
.directory-methodology {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr) auto;
  gap: 18px;
  align-items: center;
}
.directory-methodology p {
  color: var(--muted);
}
.directory-methodology ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.directory-methodology li strong {
  color: var(--text);
}
.directory-playbooks,
.tool-evaluation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}
.directory-method article {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
  box-shadow: var(--shadow);
}
.directory-method strong {
  color: var(--brand-strong);
}
.directory-method span,
.directory-playbooks span {
  color: var(--muted);
}
.directory-playbooks article,
.tool-evaluation-grid article,
.tool-evaluation-grid aside {
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
  box-shadow: var(--shadow);
}
.directory-playbooks strong {
  color: var(--brand-strong);
  font-size: 1.04rem;
}
.directory-choice-guide {
  margin-top: 26px;
}
.directory-choice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.directory-choice-grid article {
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fcfc;
  padding: 14px;
}
.directory-choice-grid strong {
  color: var(--brand-strong);
}
.directory-choice-grid span {
  color: var(--muted);
}
.directory-faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fcfc;
  padding: 13px 15px;
}
.directory-faq details + details {
  margin-top: 10px;
}
.directory-faq summary {
  cursor: pointer;
  color: var(--brand-strong);
  font-weight: 800;
}
.directory-faq p {
  color: var(--muted);
  margin: 10px 0 0;
}
.tool-evaluation-grid h2 {
  font-size: 1.3rem;
}
.tool-evaluation-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.directory-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.directory-categories a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 8px 10px;
  font-weight: 750;
}
.directory-workbench {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #edfafa;
  padding: 14px;
  margin-bottom: 22px;
}
.tool-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  margin-bottom: 0;
}
.tool-filters label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}
.tool-filters small {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.35;
}
.range-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
}
.range-line strong {
  text-align: right;
  color: var(--brand-strong);
}
input, select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 11px;
  background: var(--surface);
  color: var(--text);
}

.tool-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  padding: 54px 0 28px;
}
.tool-hero.enhanced {
  align-items: stretch;
}
.score-panel {
  display: grid;
  place-items: center;
  text-align: center;
}
.score-value {
  font-size: 4rem;
  line-height: 1;
  color: var(--brand);
  font-weight: 900;
}
.article {
  max-width: 1160px;
  padding-top: 54px;
}
.article h1 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
}
.article-title-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(360px, 48vw, 580px);
  margin: 10px 0 26px;
  border-radius: var(--radius);
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(7, 18, 15, 0.84) 0%, rgba(7, 18, 15, 0.56) 46%, rgba(7, 18, 15, 0.22) 100%),
    var(--article-hero-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.article-title-hero.is-zoomable {
  cursor: zoom-in;
}
.article-title-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: clamp(28px, 6vw, 58px);
}
.article-title-hero h1 {
  color: #fff;
  margin: 0;
  max-width: 760px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.42);
}
.article-title-hero .article-kicker span {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.9);
  color: #14352f;
}
.article-title-hero .article-kicker span:first-child {
  background: #dff4f5;
  color: var(--brand-strong);
}
.article-kicker,
.article-scorebar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.article-kicker span,
.article-scorebar span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  padding: 6px 9px;
  font-size: 0.9rem;
  font-weight: 750;
}
.article-kicker span:first-child,
.article-scorebar span:first-child {
  color: var(--brand-strong);
  background: #dff4f5;
}
.article-lede {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.18rem;
  margin: -4px 0 20px;
}
.article h1,
.tool-hero h1,
.section-heading h1,
.section-heading h2 {
  text-wrap: balance;
}
.fc-reading-progress {
  position: sticky;
  top: 65px;
  z-index: 12;
  height: 8px;
  margin: -4px 0 22px;
  border-radius: 999px;
  background: rgba(14, 165, 164, 0.18);
  box-shadow: inset 0 0 0 1px rgba(14, 165, 164, 0.1);
  overflow: hidden;
}
.fc-reading-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: width 0.12s ease-out;
}
.fc-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.fc-breadcrumbs a { color: var(--brand-strong); }
.fc-author-box {
  display: grid;
  gap: 4px;
  margin: 18px 0 24px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.fc-author-box a {
  color: var(--brand-strong);
}
.fc-author-box span { color: var(--muted); }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: start;
}
.article-content {
  font-size: 1.06rem;
  min-width: 0;
}
.article-content a { color: var(--brand); text-decoration: underline; }
.article-content h2 {
  margin-top: 42px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  transition: color 0.18s ease, background-color 0.18s ease, padding-left 0.18s ease;
}
.article-content h3 {
  margin-top: 26px;
  font-size: 1.22rem;
  color: var(--brand-strong);
  transition: color 0.18s ease, background-color 0.18s ease, padding-left 0.18s ease;
}
.article-content h2.is-reading-active,
.article-content h3.is-reading-active {
  color: var(--accent);
  background: linear-gradient(90deg, rgba(45, 154, 81, 0.12), rgba(45, 154, 81, 0));
  border-radius: 6px;
  padding-left: 8px;
}
.article-content .fc-emphasis-lede {
  font-weight: 650;
  color: var(--text);
}
.article-content ul,
.article-content ol {
  max-width: 74ch;
  padding-left: 1.35rem;
  margin: 14px 0 22px;
}
.article-content p,
.article-content li {
  max-width: 74ch;
}
.article-content li {
  margin: 8px 0;
  padding-left: 4px;
}
.article-content li::marker {
  color: var(--brand);
  font-weight: 900;
}
.article-content blockquote {
  margin: 24px 0;
  border-left: 4px solid var(--brand);
  padding: 6px 0 6px 16px;
  color: var(--muted);
}
.article-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  border-collapse: collapse;
}
.article-content th,
.article-content td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.article-sidebar { position: sticky; top: 96px; }
.fc-toc-mobile { display: none !important; }
.fc-toc-sidebar {
  max-height: calc(100vh - 120px);
  overflow: auto;
}
.fc-toc-sidebar h2 {
  font-size: 1rem;
  margin: 0 0 10px;
}
.fc-toc-group {
  border-top: 1px solid var(--line);
  padding: 8px 0;
}
.fc-toc-group:first-of-type { border-top: 0; }
.fc-toc-group summary {
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--brand-strong);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
}
.fc-toc-group summary::-webkit-details-marker { display: none; }
.fc-toc-group summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--muted);
  font-weight: 900;
}
.fc-toc-group[open] summary::after { content: "-"; }
.fc-toc-group summary a { color: inherit; }
.fc-toc-group.is-active summary {
  color: var(--accent);
}
.fc-toc-group a.is-active {
  color: var(--accent);
  font-weight: 900;
}
.fc-toc-group ul {
  display: grid;
  gap: 7px;
  margin: 9px 0 0;
  padding-left: 16px;
}
.fc-toc-group li {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}
.related-panel,
.fc-version-history,
.fc-recent-news,
.fc-source-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}
.fc-source-box {
  display: grid;
  gap: 6px;
  margin-top: 30px;
  max-width: 74ch;
}
.fc-source-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fc-source-box li {
  display: grid;
  gap: 3px;
}
.fc-source-box li span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.fc-infographic-jump {
  margin: 8px 0 18px;
}
.fc-infographic-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 8px;
  background: #e8f5f0;
  color: var(--brand-strong);
  font-weight: 850;
  text-decoration: none;
}
.fc-infographic-jump a:hover {
  background: #dff4f5;
  color: var(--brand);
}
.article-audit-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}
.article-audit-panel div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.article-audit-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.article-audit-panel dt {
  color: var(--muted);
}
.article-audit-panel dd {
  margin: 0;
  font-weight: 850;
}
.related-panel h2,
.fc-version-history h2,
.fc-recent-news h2 { font-size: 1.1rem; }
.related-panel ul,
.fc-version-history ul,
.fc-recent-news ul { padding-left: 18px; }
.article-image {
  border-radius: var(--radius);
  margin: 18px 0;
}
.article-cta {
  margin-top: 34px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #edfafa, #f2fbf4);
}
.article-cta h2 {
  margin: 0 0 8px;
}
.article-cta p {
  color: var(--muted);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 20px;
  align-items: start;
}
.contact-card,
.contact-form,
.legal-page section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.contact-hero {
  margin-bottom: 24px;
}
.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}
.contact-list li {
  display: grid;
  gap: 4px;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 750;
}
.contact-form .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}
.contact-form .consent-line {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  font-weight: 600;
  color: var(--muted);
}
.contact-form .consent-line input {
  width: auto;
  margin-top: 4px;
}
.contact-form .consent-line a {
  color: var(--brand-strong);
  font-weight: 800;
}
.form-notice {
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #e9f7ef;
  color: #166534;
  font-weight: 750;
}
.legal-page {
  display: grid;
  gap: 18px;
  max-width: 920px;
}
.legal-note {
  color: var(--muted);
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; }
  .primary-nav { display: none; position: absolute; top: 72px; left: 18px; right: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; }
  .primary-nav.is-open { display: block; }
  .primary-nav .menu { flex-direction: column; gap: 10px; }
  .fc-category-menu {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }
  .fc-category-menu summary,
  .primary-nav .menu a {
    display: block;
    padding: 8px 0;
  }
  .service-grid,
  .tool-grid,
  .post-grid,
  .source-grid,
  .pillar-index-grid,
  .blog-dashboard,
  .blog-guides-card,
  .rankings,
  .process-row,
  .service-proof-grid,
  .split-heading,
  .directory-overview,
  .directory-method,
  .directory-methodology,
  .directory-playbooks,
  .directory-choice-grid,
  .tool-evaluation-grid,
  .guide-principles,
  .report-actions,
  .report-content > ul,
  .tool-summary-grid,
  .tool-editorial-matrix,
  .tool-decision-layout,
  .tool-hero,
  .tool-filters,
  .category-cards,
  .article-layout,
  .service-detail-hero,
  .service-detail-grid,
  .service-detail-columns,
  .service-question-grid,
  .service-related-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .submenu-panel {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    min-width: 0;
    box-shadow: none;
    margin-top: 8px;
  }
  .submenu-panel:not([hidden]) {
    display: grid;
  }
  .primary-nav { align-items: stretch; }
  .fc-category-menu ul { position: static; box-shadow: none; }
  .language-switcher { margin-top: 12px; }
  .article-sidebar { position: static; }
  .fc-toc-mobile { display: none !important; }
  .fc-toc-sidebar { display: none; }
  .fc-read-next-grid { grid-template-columns: 1fr; }
  .home-hero { min-height: 76vh; }
  .home-hero::after { background: rgba(12, 23, 20, 0.72); }
  .home-hero__content { padding: 86px 0 86px; }
  .home-hero__signals { margin-top: -62px; }
  h1 { font-size: 2.45rem; }
  .site-footer,
  .fc-trust-panel,
  .fc-trust-metrics,
  .fc-trust-steps,
  .fc-action-panel,
  .fc-action-grid {
    grid-template-columns: 1fr;
  }
}


.fc-article-hero {
  margin: 22px 0 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.fc-article-hero img,
.fc-article-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.fc-article-infographic img {
  object-fit: contain;
  background: #f4fbfc;
}
.fc-article-figure {
  margin: 30px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.fc-article-figure figcaption {
  display: none;
}
.fc-image-cta {
  display: inline-flex;
  margin-left: 6px;
  color: var(--brand-strong);
  font-weight: 850;
  text-decoration: none !important;
}
.fc-image-cta:hover { color: var(--brand); }
.article-content img.is-zoomable,
.article-image.is-zoomable {
  cursor: zoom-in;
}
.fc-image-zoom {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 0;
  background: rgba(7, 18, 15, 0.82);
  cursor: zoom-out;
}
.fc-image-zoom.is-open {
  display: flex;
}
.fc-image-zoom img {
  max-width: min(96vw, 1500px);
  max-height: 92vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}
.fc-no-scroll {
  overflow: hidden;
}
.fc-read-next {
  margin: 42px 0 28px;
}
.fc-read-next h2 { margin-top: 0; }
.fc-read-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.fc-read-next-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.fc-read-next-card strong {
  display: block;
  padding: 0 12px 14px;
  font-size: 0.98rem;
  line-height: 1.35;
  position: relative;
  z-index: 1;
  background: var(--surface);
}
.fc-read-next-image {
  display: grid;
  place-items: center;
  min-height: 128px;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: linear-gradient(135deg, #e6f5f8, #f2fbf4);
  color: var(--brand-strong);
  font-size: 0.86rem;
  font-weight: 850;
  text-align: center;
  padding: 10px;
}
.fc-read-next-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(14, 165, 164, 0.18), rgba(45, 154, 81, 0.13)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
}
.fc-read-next-thumb {
  display: block;
  width: 100%;
  height: 100%;
}
.fc-read-next-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fc-answer-box,
.fc-verification-box,
.fc-publish-note {
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: linear-gradient(135deg, #f2fbfc, #f8fcff);
  margin: 22px 0;
}
.fc-toc {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 0;
  margin: 22px 0;
}
.fc-toc summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-weight: 850;
  color: var(--brand-strong);
}
.fc-toc summary::after {
  content: "+";
  font-weight: 900;
}
.fc-toc[open] summary::after {
  content: "−";
}
.fc-toc ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding: 0 18px 16px 34px;
}
.fc-toc .toc-level-3 {
  margin-left: 12px;
  font-size: 0.94rem;
}
.fc-position-zero {
  max-width: 860px;
  margin: 20px 0 22px;
}
.fc-position-zero p {
  color: var(--text);
  font-size: 1.08rem;
}
.fc-key-points {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 20px;
}
.fc-key-points li {
  color: var(--text);
  line-height: 1.55;
}
.fc-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}
.fc-meta-strip span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 9px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.9rem;
}
.tool-summary-grid {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.tool-summary-grid article {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
  box-shadow: var(--shadow);
}
.tool-summary-grid span {
  color: var(--muted);
}
.tool-choice-grid {
  margin-top: 14px;
}
.tool-editorial-matrix {
  width: min(1160px, calc(100% - 36px));
  margin: 16px auto 20px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fcfc;
  padding: clamp(18px, 3vw, 24px);
  box-shadow: var(--shadow);
}
.tool-editorial-matrix h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.tool-editorial-matrix p {
  color: var(--muted);
}
.tool-editorial-matrix dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}
.tool-editorial-matrix dl div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 12px;
}
.tool-editorial-matrix dt {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}
.tool-editorial-matrix dd {
  margin: 4px 0 0;
  color: var(--brand-strong);
  font-weight: 800;
  line-height: 1.35;
}
.affiliate-note,
.tool-source-note {
  width: min(1160px, calc(100% - 36px));
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.tool-source-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}
.tool-source-note p {
  margin: 0;
}
.tool-source-note p + p {
  margin-top: 8px;
}
.tool-decision-layout {
  width: min(1160px, calc(100% - 36px));
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
}
.tool-decision-card,
.tool-alternatives {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow);
}
.tool-decision-card h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}
.tool-decision-card p {
  max-width: 760px;
  color: var(--muted);
}
.tool-decision-card ul,
.tool-alternatives ul {
  margin-bottom: 0;
  padding-left: 20px;
}
.tool-alternatives h2 {
  font-size: 1.15rem;
}
.tool-alternatives li + li {
  margin-top: 8px;
}
.chart-empty {
  margin: 12px 0 0;
  color: var(--muted);
}
.blog-pagination {
  width: min(1160px, calc(100% - 36px));
  margin: 26px auto 0;
}
.blog-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 8px 12px;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}
.blog-pagination .current {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.blog-section-cta {
  margin: 28px auto 0;
  text-align: center;
}
.tool-body {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
}
