:root {
  --ink: #171510;
  --muted: #6c675e;
  --line: #d9d1c3;
  --paper: #f7f2e8;
  --panel: #fffaf0;
  --accent: #1e6f66;
  --accent-2: #b3422d;
  --shadow: 0 18px 40px rgba(30, 23, 12, .08);
}

* {
  box-sizing: border-box;
}

body {
  --site-max-width: 1220px;
  --site-gutter-width: 64px;
  --site-edge: max(calc(var(--site-gutter-width) / 2), calc((100vw - var(--site-max-width)) / 2));
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 21, 16, .035) 1px, transparent 1px),
    linear-gradient(rgba(23, 21, 16, .028) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  color: var(--muted);
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding: 48px 0 36px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 92px);
  line-height: .94;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-summary {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.metric-panel,
.band,
.tile,
.ranked-item,
.cta-strip {
  background: rgba(255, 250, 240, .9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.metric-panel {
  padding: 18px;
}

.metric-panel span,
.metric-panel strong {
  display: block;
}

.metric-panel > span {
  color: var(--muted);
  font-size: 13px;
}

.metric-panel strong {
  margin-top: 8px;
  font-size: 22px;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.metric-row span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 12px;
}

.band {
  padding: 26px;
  margin: 24px 0;
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 26px;
  margin: 0 0 24px;
}

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

.decision-card {
  min-height: 180px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, .72);
}

.decision-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.15;
}

.decision-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 13px;
  white-space: nowrap;
}

.button.disabled {
  border-color: var(--line);
  background: #eee7da;
  color: var(--muted);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

.compact-split {
  gap: 18px;
}

.tile {
  min-height: 150px;
  padding: 18px;
  transition: transform .18s ease, border-color .18s ease;
}

.tile:hover,
.row-link:hover,
.ranked-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.tile span,
.tile small,
.row-link span,
.ranked-item small {
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 12px;
}

.tile strong {
  display: block;
  margin: 16px 0;
  font-size: 24px;
  line-height: 1.1;
}

.tool-list {
  display: grid;
  gap: 10px;
}

.row-link {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  transition: transform .18s ease, border-color .18s ease;
}

.facts {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.facts div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.facts dt {
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
}

.facts.compact {
  margin: 0 0 16px;
}

.criteria,
.outline {
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.7;
}

.source-list a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ranked-list {
  display: grid;
  gap: 12px;
}

.ranked-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  transition: transform .18s ease, border-color .18s ease;
}

.rank {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

.ranked-item p {
  margin: 4px 0 0;
  color: var(--muted);
}

.verdict {
  border-left: 6px solid var(--accent);
}

.compare-table {
  display: grid;
  margin: 24px 0;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.compare-table > div {
  display: grid;
  grid-template-columns: 180px repeat(2, minmax(0, 1fr));
}

.compact-table > div {
  grid-template-columns: minmax(150px, .65fr) minmax(0, 1.35fr);
}

.page-review .compact-table > div {
  grid-template-columns: minmax(170px, .55fr) minmax(0, 1.45fr);
}

.compare-table span,
.compare-table strong {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.compare-table span:last-child,
.compare-table strong:last-child {
  border-right: 0;
}

.compare-table > div:last-child span {
  border-bottom: 0;
}

.page-tool {
  --site-max-width: 1240px;
  --site-gutter-width: 96px;
  --ink: #17171f;
  --muted: #6f7280;
  --line: #e6e8ef;
  --paper: #fff;
  --panel: #fff;
  --accent: #3a00ff;
  --accent-2: #8a38f5;
  --shadow: 0 10px 24px rgba(17, 24, 39, .06);
  background: var(--paper);
  background-size: auto;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(220px, 360px) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 72px;
  padding: 0 var(--site-edge);
  background: #fff;
  border-bottom: 1px solid #f0f1f5;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: #111827;
  line-height: 1;
}

.site-logo img {
  display: block;
  width: clamp(198px, 19vw, 244px);
  height: auto;
}

.site-search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid #dedfe8;
  border-radius: 6px;
  background: #fff;
  color: #c4c6d1;
}

.site-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #111827;
  font: inherit;
  font-size: 14px;
}

.site-nav,
.site-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #1f2937;
  font-size: 15px;
  font-weight: 600;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 4px;
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.nav-trigger::after {
  content: "⌄";
  color: #8b90a0;
  font-size: 14px;
  line-height: 1;
}

.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger {
  color: var(--accent);
  border-color: var(--accent);
}

.nav-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  width: min(340px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid #e6e8ef;
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 22px 55px rgba(17, 24, 39, .12);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-menu-kicker,
.nav-empty {
  display: block;
  padding: 8px 10px;
  color: #7b8190;
  font-size: 12px;
  font-weight: 750;
}

.nav-menu-link {
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 7px;
  transition: background .16s ease, transform .16s ease;
}

.nav-menu-link:hover,
.nav-menu-link:focus {
  outline: 0;
  background: #f7f4ff;
  transform: translateY(-1px);
}

.nav-menu-link strong {
  color: #151923;
  font-size: 14px;
  line-height: 1.2;
}

.nav-menu-link span {
  color: #747988;
  font-size: 12px;
  line-height: 1.35;
}

.site-actions {
  gap: 10px;
  justify-content: end;
}

.site-actions a,
.site-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #dedfe8;
  border-radius: 5px;
  background: #fff;
  color: #1f2937;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.menu-button {
  display: none;
  border: 0 !important;
  padding: 0 !important;
  font-size: 26px !important;
  font-weight: 400 !important;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 34px var(--site-edge);
  border-top: 1px solid #e8e1d6;
  background: rgba(255, 250, 240, .72);
  color: var(--muted);
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
}

.site-footer p {
  max-width: 520px;
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.footer-logo {
  width: fit-content;
}

.footer-logo img {
  width: 218px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid #e8e1d6;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto minmax(170px, 280px) minmax(0, 1fr);
    gap: 16px;
  }

  .site-nav,
  .site-actions {
    gap: 12px;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 8px 14px;
    padding: 10px var(--site-edge) 8px;
  }

  .site-logo {
    max-width: 214px;
  }

  .site-logo img {
    width: 202px;
  }

  .site-search {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-item {
    min-height: 38px;
  }

  .nav-trigger {
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid #e6e8ef;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
  }

  .nav-trigger::after,
  .nav-menu {
    display: none;
  }

  .site-actions a {
    display: none;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .site-logo img {
    width: 168px;
  }
}

.page-tool .shell {
  width: min(1980px, calc(100vw - 128px));
  padding: 0 0 72px;
}

.creati-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  margin: 14px 0 8px;
  color: #bfbfbf;
  font-size: 22px;
  font-weight: 600;
}

.creati-breadcrumb a {
  color: var(--accent);
}

.tool-product-hero {
  margin: 0 0 18px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.tool-info-panel {
  display: block;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.tool-info-copy {
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(520px, 660px);
  column-gap: clamp(96px, 7vw, 150px);
  align-items: start;
  max-width: none;
}

.tool-title-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  grid-column: 1;
  grid-row: 1;
  max-width: none;
}

.tool-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.tool-avatar,
.preview-logo {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #3a00ff 0%, #8a38f5 100%);
  font-weight: 800;
  letter-spacing: 0;
}

.tool-avatar {
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: #18383b;
  font-size: 21px;
}

.page-tool h1 {
  margin: 0;
  font-size: clamp(46px, 3.8vw, 54px);
  line-height: 1.1;
  font-weight: 900;
}

.favorite-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 88px;
  height: 44px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #f6f4fd;
  color: rgba(0, 0, 0, .5);
  font: inherit;
  font-size: 22px;
  font-weight: 700;
}

.favorite-button::before {
  content: "♥";
  color: #6d6f78;
  font-size: 26px;
  line-height: 1;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1;
  grid-row: 2;
  margin-top: 12px;
  color: #4b5563;
  font-size: 24px;
}

.stars {
  color: #ff8f1f;
  font-size: 28px;
  letter-spacing: 1px;
}

.divider {
  width: 1px;
  height: 28px;
  background: #1f2937;
}

.rating-row a {
  color: #1f2937;
  white-space: nowrap;
}

.stat-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #1f2937;
}

.stat-with-icon.heart::before {
  content: "♥";
  color: #6b7280;
}

.stat-with-icon.analytics::before {
  content: "▥";
  color: #7c3aed;
}

.stat-with-icon.trend::before {
  content: "";
  width: 24px;
  height: 7px;
  background: #e60012;
}

.tool-description {
  grid-column: 1;
  grid-row: 3;
  max-width: 1180px;
  margin: 32px 0 30px;
  color: #101010;
  font-size: 24px;
  line-height: 1.42;
}

.tool-meta-grid {
  grid-column: 1;
  grid-row: 4;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 20px 34px;
  margin: 2px 0 0;
  color: #111827;
}

.tool-meta-grid div {
  display: contents;
}

.tool-meta-grid dt,
.tool-meta-grid dd {
  margin: 0;
  font-size: 23px;
}

.tool-meta-grid dt {
  font-weight: 900;
}

.tool-meta-grid dd {
  color: #374151;
}

.tool-tags {
  grid-column: 1;
  grid-row: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.tool-tags span {
  max-width: 100%;
  min-height: 38px;
  padding: 9px 10px;
  border-radius: 4px;
  background: rgba(139, 105, 255, .12);
  color: #392c67;
  font-size: 16px;
  line-height: 1.2;
}

.tool-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.product-maintenance {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
  margin: 6px 0 22px;
}

.product-maintenance a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 50px;
  gap: 10px;
  padding: 0 22px;
  border: 2px solid #e5e7eb;
  border-radius: 5px;
  color: var(--accent-2);
  background: #fff;
  font-size: 21px;
  font-weight: 700;
}

.product-maintenance span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: var(--accent-2);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.product-maintenance a:last-child span {
  border-radius: 5px;
  background: transparent;
  color: var(--accent-2);
  font-size: 30px;
}

.product-share-actions {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 0 10px;
}

.product-share-actions a {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 45px;
  border-radius: 7px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.share-linkedin { background: #0077b5; }
.share-facebook { background: #4267b2; }
.share-x { background: #050505; }
.share-copy { background: #166534; }
.share-more { background: #8bd22f; }

.product-maintenance a:hover {
  border-color: var(--accent-2);
}

.page-tool .button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}

.page-tool .button {
  gap: 8px;
  border-color: rgba(58, 0, 255, .7);
  background: rgba(58, 0, 255, .7);
  color: #fff;
}

.page-tool .button::before {
  content: "↗";
  font-weight: 900;
}

.page-tool .button:hover {
  background: #6366f1;
  border-color: #6366f1;
}

.page-tool .button.full {
  width: 100%;
  margin-top: 16px;
}

.page-tool .button.disabled {
  border-color: var(--line);
  background: #f3f4f6;
  color: var(--muted);
}

.secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  color: #4b5563;
}

.tool-screenshot {
  grid-column: 2;
  grid-row: 3 / span 4;
  display: block;
  overflow: hidden;
  width: 100%;
  border: 2px solid #e5e5e5;
  border-radius: 0;
  background: #fff;
}

.detail-anchor-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: flex-start;
  gap: 0;
  overflow-x: auto;
  min-height: 54px;
  margin: 54px 0 18px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .97);
  box-shadow: none;
}

.tool-main-column > .split {
  scroll-margin-top: 84px;
}

.detail-anchor-nav a {
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 0;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.detail-anchor-nav a:hover {
  background: rgba(117, 77, 255, .1);
  color: var(--accent);
}

.tool-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(36px, 4vw, 64px);
  align-items: start;
}

.tool-main-column,
.tool-side-column {
  display: grid;
  gap: 18px;
}

.tool-side-column {
  position: sticky;
  top: 72px;
}

.info-card,
.sidebar-card,
.featured-mini-card,
.page-tool .band {
  background: #f7f4ff;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.tool-preview-toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #fbfbfd;
}

.tool-preview-toolbar span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: #d1d5db;
}

.tool-preview-toolbar span:first-child {
  background: #ff6b6b;
}

.tool-preview-toolbar span:nth-child(2) {
  background: #fbbf24;
}

.tool-preview-toolbar span:nth-child(3) {
  background: #34d399;
}

.tool-preview-toolbar strong {
  margin-left: 8px;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 600;
}

.tool-preview-body {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 36px 28px;
  text-align: center;
  background:
    linear-gradient(45deg, rgba(0, 0, 0, .035) 25%, transparent 25% 75%, rgba(0, 0, 0, .035) 75%),
    linear-gradient(45deg, rgba(0, 0, 0, .035) 25%, transparent 25% 75%, rgba(0, 0, 0, .035) 75%),
    linear-gradient(90deg, #fff 0 53%, #faf7ff 53% 100%);
  background-position: 0 0, 10px 10px, 0 0;
  background-size: 20px 20px, 20px 20px, auto;
}

.preview-logo {
  width: 86px;
  height: 86px;
  border-radius: 8px;
  font-size: 36px;
}

.tool-preview-body h2 {
  margin: 18px 0 10px;
  font-size: 34px;
  line-height: 1.1;
}

.tool-preview-body p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.info-card {
  padding: 24px 16px;
  scroll-margin-top: 84px;
}

.info-card h2,
.sidebar-card h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}

.info-card h3 {
  margin: 0 0 18px;
  color: #111827;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.info-card p,
.sidebar-card p {
  color: #1f2937;
  font-size: 16px;
  line-height: 1.55;
}

.info-card hr {
  height: 1px;
  margin: 22px 0;
  border: 0;
  background: #e2dff0;
}

.check-list,
.x-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.45;
}

.check-list li,
.x-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before,
.x-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 900;
}

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

.x-list li::before {
  content: "×";
  border: 1px solid #111827;
  color: #111827;
}

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

.feature-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbfd;
}

.feature-item span {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 5px;
  background: rgba(117, 77, 255, .14);
  border: 1px solid rgba(117, 77, 255, .28);
}

.feature-item p {
  margin: 0;
  line-height: 1.55;
}

.info-card.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pros-cons-card {
  display: grid;
  gap: 24px;
}

.page-tool .facts div {
  grid-template-columns: 150px minmax(0, 1fr);
  border-color: #e2dff0;
}

.page-tool .facts dt {
  color: #6b7280;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0;
}

.page-tool .criteria {
  color: #374151;
  line-height: 1.75;
}

.page-tool .decision-card {
  background: #fff;
  border-color: #e2dff0;
  border-radius: 8px;
}

.sidebar-card {
  padding: 18px;
  background: #fff;
  border: 1px solid #8a38f5;
  box-shadow: none;
}

.sidebar-facts {
  display: grid;
  gap: 12px;
  margin: 0;
}

.sidebar-facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.sidebar-facts div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.sidebar-facts dt {
  color: var(--muted);
  font-size: 13px;
}

.sidebar-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}

.mini-link-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbfd;
}

.mini-link-card strong {
  line-height: 1.25;
}

.mini-link-card span {
  color: var(--muted);
  font-size: 13px;
}

.page-tool .source-list a {
  color: var(--accent);
}

.social-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.social-dots span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: #3b82f6;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.social-dots span:first-child {
  background: transparent;
  color: #111827;
  font-size: 18px;
}

.social-dots span:nth-child(3) {
  background: #2563eb;
}

.social-dots span:nth-child(4) {
  background: #60a5fa;
}

.social-dots span:nth-child(5) {
  background: #ec4899;
}

.social-dots span:nth-child(6) {
  background: #64748b;
}

.featured-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #754dff;
  font-size: 22px;
}

.featured-title strong {
  color: #111827;
}

.featured-list {
  display: grid;
  gap: 20px;
}

.random-tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.random-tool-module {
  display: grid;
  gap: 14px;
}

.random-tool-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  min-height: 88px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color .18s ease, transform .18s ease;
}

.random-tool-card:hover {
  border-color: var(--accent-2);
  transform: translateY(-1px);
}

.random-tool-card strong,
.random-tool-card small {
  display: block;
}

.random-tool-card strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.random-tool-card small {
  display: -webkit-box;
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-mini-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  min-height: 136px;
  padding: 28px 16px;
  background: #fff;
  border: 1px solid #8a38f5;
  border-radius: 4px;
  box-shadow: none;
  transition: border-color .18s ease, transform .18s ease;
}

.featured-mini-card:hover {
  border-color: var(--accent-2);
  transform: translateY(-1px);
}

.featured-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #f6f4fd;
  color: var(--accent-2);
  font-weight: 900;
}

.featured-mini-card strong,
.featured-mini-card small {
  display: block;
}

.featured-mini-card strong {
  color: #111827;
  font-size: 16px;
  line-height: 1.25;
}

.featured-mini-card small {
  display: -webkit-box;
  margin-top: 5px;
  overflow: hidden;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.faq-card details {
  border: 1px solid #e6e0f4;
  border-radius: 4px;
  background: #fff;
  margin-top: 10px;
  padding: 14px 16px;
}

.faq-card details:last-child {
  padding-bottom: 0;
}

.faq-card summary {
  cursor: pointer;
  color: #111827;
  font-weight: 800;
}

.faq-card details p {
  margin: 12px 0 0;
}

@media (max-width: 840px) {
  .hero,
  .grid.three,
  .grid.two,
  .split {
    grid-template-columns: 1fr;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-table > div {
    min-width: 720px;
  }

  .compact-table > div {
    min-width: 0;
  }

  .ranked-item,
  .row-link,
  .cta-strip,
  .section-heading {
    display: block;
  }

  .ranked-item > * + *,
  .section-heading > * + * {
    margin-top: 10px;
  }

  .tool-product-hero,
  .tool-info-copy,
  .tool-title-actions,
  .tool-actions,
  .product-maintenance,
  .tool-detail-layout,
  .info-card.two-up,
  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tool-side-column {
    position: static;
  }

  .tool-actions {
    width: 100%;
  }

  .page-tool .button,
  .secondary-button,
  .product-maintenance a {
    min-width: 0;
    width: 100%;
  }

  .tool-info-panel {
    padding: 16px;
  }

  .tool-meta-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .tool-meta-grid dd {
    margin-bottom: 8px;
  }

  .tool-preview-body {
    min-height: 260px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 170px auto;
    justify-content: space-between;
    gap: 14px;
    padding: 0 22px;
  }

  .site-nav {
    display: none;
  }

  .site-logo {
    font-size: 22px;
  }

  .site-actions a {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

}

@media (min-width: 841px) and (max-width: 1080px) {
  .tool-title-actions > .tool-actions {
    display: none;
  }

  .tool-info-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    column-gap: 44px;
  }

  .tool-description {
    font-size: 22px;
  }

  .rating-row {
    flex-wrap: wrap;
    gap: 8px 10px;
    font-size: 20px;
  }

  .rating-row .stars {
    flex-basis: 100%;
    font-size: 24px;
  }

  .rating-row .divider {
    display: none;
  }

  .tool-meta-grid dt,
  .tool-meta-grid dd {
    font-size: 21px;
  }

  .social-dots {
    gap: 12px;
  }

  .product-maintenance {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .product-maintenance a {
    min-width: 0;
    width: 100%;
  }

  .product-share-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }

  .tool-screenshot {
    width: 100%;
  }

  .tool-preview-body {
    min-height: 310px;
  }
}

@media (max-width: 640px) {
  .page-tool .shell {
    width: calc(100vw - 32px);
  }

  .tool-info-panel,
  .tool-info-copy,
  .tool-title-actions,
  .tool-identity,
  .rating-row,
  .product-maintenance,
  .product-share-actions,
  .tool-screenshot {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .tool-title-actions,
  .tool-identity {
    display: flex;
  }

  .tool-identity {
    align-items: flex-start;
  }

  .rating-row {
    flex-wrap: wrap;
    font-size: 18px;
  }

  .stars {
    font-size: 22px;
  }

  .tool-description,
  .tool-meta-grid dt,
  .tool-meta-grid dd {
    font-size: 18px;
  }

  .product-maintenance {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-share-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "logo actions"
      "search search";
    min-height: 0;
    padding: 12px 16px;
  }

  .site-logo {
    grid-area: logo;
    min-width: 0;
    font-size: 20px;
  }

  .site-search {
    grid-area: search;
  }

  .site-actions {
    grid-area: actions;
  }

  .site-actions a {
    display: none;
  }

  .detail-anchor-nav {
    justify-content: flex-start;
  }
}

/* Tool detail redesign: product evaluation dossier */
.page-tool {
  --ink: #17211e;
  --muted: #68756f;
  --line: #dce5df;
  --paper: #f4f8f5;
  --panel: #ffffff;
  --accent: #0d6f65;
  --accent-2: #c74d3f;
  --accent-3: #e5b94f;
  --soft: #eaf2ee;
  --shadow: none;
  background: #f6f7f9;
  background-size: auto;
  color: var(--ink);
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
}

.page-tool .shell {
  width: min(1220px, calc(100vw - 112px));
  padding: 22px 0 84px;
}

.page-tool .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  grid-template-columns: auto minmax(240px, 380px) minmax(0, 1fr) auto;
  min-height: 68px;
  padding: 0 max(40px, calc((100vw - 1220px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
}

.page-tool .site-logo {
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
}

.page-tool .site-logo span {
  border-radius: 6px;
  background: var(--accent);
}

.page-tool .site-search {
  height: 38px;
  border-color: var(--line);
  border-radius: 8px;
  background: #f8fbf9;
  color: var(--muted);
}

.page-tool .site-nav {
  gap: 18px;
  color: #27332f;
  font-size: 14px;
}

.page-tool .site-nav a,
.page-tool .site-actions a,
.page-tool .site-actions button {
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.page-tool .site-nav a:hover,
.page-tool .site-actions a:hover,
.page-tool .site-actions button:hover {
  color: var(--accent);
  border-color: rgba(13, 111, 101, .35);
  background: #f1f7f4;
}

.page-tool .creati-breadcrumb {
  min-height: 28px;
  margin: 2px 0 28px;
  color: #92a09a;
  font-size: 15px;
  font-weight: 800;
}

.page-tool .creati-breadcrumb a {
  color: var(--accent);
}

.page-tool .tool-product-hero {
  margin: 0 0 24px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.page-tool .tool-info-panel {
  background: transparent;
}

.page-tool .tool-info-copy {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 500px);
  column-gap: clamp(36px, 5vw, 72px);
}

.page-tool .tool-title-actions {
  gap: 18px;
  flex-wrap: wrap;
}

.page-tool .tool-identity {
  flex: 1 1 100%;
  gap: 14px;
}

.page-tool .tool-avatar,
.page-tool .preview-logo,
.page-tool .featured-avatar {
  background: var(--accent);
}

.page-tool .tool-avatar {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
}

.page-tool h1 {
  color: var(--ink);
  font-size: clamp(46px, 4.6vw, 72px);
  line-height: .96;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.page-tool .favorite-button {
  width: auto;
  min-width: 76px;
  height: 42px;
  border-color: rgba(13, 111, 101, .18);
  border-radius: 8px;
  background: #eef6f2;
  color: #3e5650;
  font-size: 17px;
}

.page-tool .favorite-button::before {
  color: var(--accent-2);
  font-size: 19px;
}

.page-tool .button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  box-shadow: none;
}

.page-tool .tool-actions {
  flex: 1 1 100%;
}

.page-tool .button:hover {
  border-color: #09564e;
  background: #09564e;
}

.page-tool .rating-row {
  flex-wrap: wrap;
  gap: 9px 12px;
  margin-top: 16px;
  color: #30423d;
  font-size: 17px;
}

.page-tool .stars {
  color: var(--accent-3);
  font-size: 21px;
}

.page-tool .divider {
  height: 20px;
  background: #b8c5bf;
}

.page-tool .stat-with-icon.analytics::before {
  color: var(--accent);
}

.page-tool .stat-with-icon.trend::before {
  background: var(--accent-2);
}

.page-tool .product-maintenance {
  gap: 10px;
  margin-top: 0;
}

.page-tool .product-maintenance a {
  min-width: 0;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  color: var(--accent);
  font-size: 15px;
  box-shadow: none;
}

.page-tool .product-maintenance span {
  width: 24px;
  height: 24px;
  background: var(--accent);
  font-size: 11px;
}

.page-tool .product-maintenance a:last-child span {
  color: var(--accent);
  font-size: 21px;
}

.page-tool .product-share-actions {
  gap: 8px;
}

.page-tool .product-share-actions a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  font-size: 14px;
}

.page-tool .share-linkedin { background: #0b6f9c; }
.page-tool .share-facebook { background: #375f9f; }
.page-tool .share-x { background: #17211e; }
.page-tool .share-copy { background: #0d6f65; }
.page-tool .share-more { background: #d5a928; }

.page-tool .tool-screenshot {
  border: 1px solid #ccd9d3;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.page-tool .tool-preview-toolbar {
  min-height: 38px;
  background: #f4f8f6;
}

.page-tool .tool-preview-body {
  min-height: 292px;
  background: #fff;
  background-size: auto;
}

.page-tool .preview-logo {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  font-size: 34px;
}

.page-tool .tool-preview-body h2 {
  color: var(--ink);
  font-size: 32px;
}

.page-tool .tool-preview-body p {
  max-width: 420px;
  color: var(--muted);
}

.page-tool .tool-description {
  max-width: 760px;
  margin: 28px 0 26px;
  color: #25342f;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.42;
}

.page-tool .tool-meta-grid {
  gap: 14px 24px;
}

.page-tool .tool-meta-grid dt,
.page-tool .tool-meta-grid dd {
  font-size: 17px;
}

.page-tool .tool-meta-grid dt {
  color: #25342f;
}

.page-tool .tool-meta-grid dd {
  color: #4b5d57;
}

.page-tool .tool-tags {
  gap: 8px;
  margin-top: 26px;
}

.page-tool .tool-tags span {
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(13, 111, 101, .14);
  border-radius: 8px;
  background: #eef7f2;
  color: #24534c;
  font-size: 13px;
}

.page-tool .detail-anchor-nav {
  min-height: 48px;
  margin: 22px 0 20px;
  padding: 0 6px;
  border-color: var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: none;
}

.page-tool .detail-anchor-nav a {
  padding: 0 14px;
  color: #38504a;
  font-size: 13px;
}

.page-tool .detail-anchor-nav a:hover {
  background: #e9f3ee;
  color: var(--accent);
}

.page-tool .tool-detail-layout {
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
}

.page-tool .tool-main-column {
  gap: 16px;
}

.page-tool .tool-side-column {
  gap: 14px;
}

.page-tool .info-card,
.page-tool .sidebar-card,
.page-tool .featured-mini-card,
.page-tool .band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: none;
}

.page-tool .info-card {
  padding: 24px;
}

.page-tool .info-card h2,
.page-tool .sidebar-card h2 {
  color: var(--ink);
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.06;
}

.page-tool .info-card h3 {
  color: #25342f;
  font-size: 19px;
}

.page-tool .info-card p,
.page-tool .sidebar-card p {
  color: #42544e;
}

.page-tool .eyebrow {
  color: var(--accent-2);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0;
}

.page-tool .facts div {
  grid-template-columns: 140px minmax(0, 1fr);
  border-color: var(--line);
}

.page-tool .facts dt {
  color: #60736c;
  font-size: 11px;
}

.page-tool .facts dd {
  color: #20302b;
}

.page-tool .check-list,
.page-tool .x-list {
  gap: 11px;
  color: #25342f;
  font-size: 15px;
}

.page-tool .check-list li::before {
  background: var(--accent);
}

.page-tool .x-list li::before {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.page-tool .criteria {
  color: #42544e;
}

.page-tool .row-link {
  align-items: center;
  padding: 13px 0;
  border-color: var(--line);
}

.page-tool .row-link:hover,
.page-tool .featured-mini-card:hover,
.page-tool .mini-link-card:hover {
  border-color: rgba(13, 111, 101, .38);
  transform: translateY(-1px);
}

.page-tool .featured-title {
  color: var(--accent);
  font-size: 18px;
}

.page-tool .featured-title strong {
  color: var(--ink);
}

.page-tool .sidebar-card {
  padding: 18px;
}

.page-tool .mini-link-card {
  border-color: var(--line);
  border-radius: 8px;
  background: #f8fbf9;
}

.page-tool .featured-list {
  gap: 12px;
}

.page-tool .featured-mini-card {
  min-height: 94px;
  padding: 16px;
}

.page-tool .featured-avatar {
  border-radius: 8px;
  color: #fff;
}

.page-tool .source-list a {
  color: var(--accent);
}

.page-tool .faq-card details {
  border-color: var(--line);
  border-radius: 8px;
}

@media (max-width: 1080px) {
  .page-tool .shell {
    width: min(100% - 44px, 920px);
  }

  .page-tool .site-header {
    padding: 0 22px;
  }

  .page-tool .tool-info-copy {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    column-gap: 28px;
  }

  .page-tool .product-maintenance {
    grid-template-columns: 1fr;
  }

  .page-tool .tool-detail-layout {
    grid-template-columns: 1fr;
  }

  .page-tool .tool-side-column {
    position: static;
  }
}

@media (max-width: 840px) {
  .page-tool .tool-product-hero {
    padding: 22px;
  }

  .page-tool .tool-info-copy {
    grid-template-columns: 1fr;
  }

  .page-tool .tool-title-actions,
  .page-tool .rating-row,
  .page-tool .product-maintenance,
  .page-tool .product-share-actions,
  .page-tool .tool-description,
  .page-tool .tool-meta-grid,
  .page-tool .tool-tags,
  .page-tool .tool-screenshot {
    grid-column: 1;
    grid-row: auto;
  }

  .page-tool .product-maintenance,
  .page-tool .product-share-actions {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .page-tool .tool-screenshot {
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .page-tool .shell {
    width: calc(100vw - 28px);
    padding-top: 14px;
  }

  .page-tool .site-header {
    padding: 12px 14px;
  }

  .page-tool .tool-product-hero,
  .page-tool .info-card,
  .page-tool .sidebar-card {
    padding: 18px;
  }

  .page-tool h1 {
    font-size: 42px;
  }

  .page-tool .tool-title-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-tool .tool-actions,
  .page-tool .product-maintenance {
    grid-template-columns: 1fr;
  }

  .page-tool .tool-actions {
    display: grid;
  }

  .page-tool .favorite-button,
  .page-tool .button,
  .page-tool .product-maintenance a {
    width: 100%;
  }

  .page-tool .facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Taste-skill pass: improve scan density without exposing internal decision data */
.page-tool .compact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
}

.page-tool .compact-list li {
  min-width: 0;
}

.page-tool .button:active,
.page-tool .favorite-button:active,
.page-tool .product-maintenance a:active,
.page-tool .product-share-actions a:active {
  transform: translateY(1px);
}

@media (max-width: 640px) {
  .page-tool .compact-list {
    grid-template-columns: 1fr;
  }
}

/* Impeccable pass: review, compare, best-list, and alternatives pages */
.page-category,
.page-home,
.page-review,
.page-compare,
.page-alternatives {
  --ink: #111827;
  --muted: #4b5563;
  --subtle: #6b7280;
  --line: #d9dee7;
  --paper: #f6f7f9;
  --panel: #ffffff;
  --soft: #eef2f6;
  --accent: #0f766e;
  --accent-dark: #0b5f59;
  --accent-2: #b45309;
  --shadow: none;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page-category .shell,
.page-home .shell,
.page-review .shell,
.page-compare .shell,
.page-alternatives .shell {
  width: min(1220px, calc(100vw - 64px));
  padding: 20px 0 72px;
}

.page-category .topbar,
.page-home .topbar,
.page-review .topbar,
.page-compare .topbar,
.page-alternatives .topbar {
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  color: var(--subtle);
  font-size: 14px;
}

.page-category .brand,
.page-home .brand,
.page-review .brand,
.page-compare .brand,
.page-alternatives .brand {
  color: var(--accent);
  font-weight: 800;
}

.page-category .hero,
.page-home .hero,
.page-review .hero,
.page-compare .hero,
.page-alternatives .hero {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 28px;
  padding: 34px 0 28px;
  align-items: stretch;
}

.page-category h1,
.page-home h1,
.page-review h1,
.page-compare h1,
.page-alternatives h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: 54px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-category h2,
.page-home h2,
.page-review h2,
.page-compare h2,
.page-alternatives h2 {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  text-wrap: balance;
}

.page-category h3,
.page-home h3,
.page-review h3,
.page-compare h3,
.page-alternatives h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.page-category .hero-summary,
.page-home .hero-summary,
.page-review .hero-summary,
.page-compare .hero-summary,
.page-alternatives .hero-summary {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.page-home .hero {
  grid-template-columns: minmax(0, 920px);
  align-items: end;
}

.home-task-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-task-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  transition: border-color .16s ease, background-color .16s ease;
}

.home-task-card strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.home-task-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.home-task-card small {
  display: block;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: inherit;
  font-size: 13px;
  line-height: 1.45;
}

.home-task-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.page-home .tile {
  border-radius: 8px;
  box-shadow: none;
}

.page-home .tile small {
  display: block;
  color: var(--muted);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.45;
}

.page-category .eyebrow,
.page-home .eyebrow,
.page-review .eyebrow,
.page-compare .eyebrow,
.page-alternatives .eyebrow {
  margin: 0 0 8px;
  color: var(--subtle);
  font-family: inherit;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.page-category .metric-panel,
.page-home .metric-panel,
.page-review .metric-panel,
.page-compare .metric-panel,
.page-alternatives .metric-panel,
.page-category .decision-section,
.page-home .decision-section,
.page-review .decision-section,
.page-compare .decision-section,
.page-alternatives .decision-section,
.page-category .band,
.page-home .band,
.page-review .band,
.page-compare .band,
.page-alternatives .band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: none;
}

.page-category .metric-panel,
.page-review .metric-panel,
.page-compare .metric-panel,
.page-alternatives .metric-panel {
  padding: 18px;
}

.page-category .metric-panel strong,
.page-review .metric-panel strong,
.page-compare .metric-panel strong,
.page-alternatives .metric-panel strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.page-category .metric-row span,
.page-review .metric-row span,
.page-compare .metric-row span,
.page-alternatives .metric-row span {
  border-color: var(--line);
  border-radius: 6px;
  background: #f8fafc;
  color: #374151;
  font-family: inherit;
}

.decision-section {
  margin: 18px 0;
  padding: 22px;
}

.decision-split {
  gap: 18px;
}

.page-category .section-heading,
.page-home .section-heading,
.page-review .section-heading,
.page-compare .section-heading,
.page-alternatives .section-heading {
  align-items: end;
  border-bottom-color: var(--line);
}

.review-tool-entry {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.review-tool-entry .eyebrow {
  margin: 0;
}

.review-tool-link {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
}

.review-tool-link:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.review-tool-link strong {
  font-size: 18px;
  line-height: 1.25;
}

.review-tool-link span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.quick-pick-grid,
.alternative-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.quick-pick-card,
.alternative-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
  transition: border-color .16s ease, background-color .16s ease;
}

.quick-pick-card {
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
}

.quick-pick-card small {
  grid-column: 2;
  color: var(--subtle);
  font-weight: 750;
}

.quick-pick-card strong,
.alternative-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
}

.quick-pick-card p,
.alternative-card p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.alternative-card span {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 750;
}

.quick-pick-card:hover,
.alternative-card:hover,
.page-category .ranked-item:hover,
.page-home .row-link:hover,
.page-home .home-task-card:hover,
.page-review .row-link:hover,
.page-compare .row-link:hover,
.page-alternatives .row-link:hover {
  border-color: #b8c7c4;
  background: #f4f8f7;
  transform: none;
}

.page-category .rank,
.quick-pick-card .rank {
  width: 36px;
  height: 36px;
  border: 1px solid #b8c7c4;
  border-radius: 8px;
  background: #fff;
  color: var(--accent);
  font-family: inherit;
  font-weight: 850;
}

.page-category .ranked-list {
  gap: 10px;
}

.page-category .ranked-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.page-category .ranked-item p {
  color: var(--muted);
  line-height: 1.5;
}

.decision-table {
  margin: 18px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.decision-table > div {
  min-width: 720px;
}

.decision-table strong,
.decision-table span {
  border-color: var(--line);
  color: var(--ink);
}

.decision-table strong {
  background: #f8fafc;
  font-weight: 850;
}

.decision-table span {
  color: var(--muted);
  line-height: 1.45;
}

.pricing-detail-table > div {
  grid-template-columns: 150px minmax(220px, 1fr) minmax(220px, 1fr) minmax(260px, 1.25fr);
}

.page-review .verdict,
.page-compare .verdict,
.page-alternatives .verdict {
  border-left: 0;
  background: #fff;
}

.review-verdict,
.compare-verdict {
  display: grid;
  gap: 14px;
}

.versus-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.versus-strip a,
.versus-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fafc;
  color: var(--ink);
  font-weight: 800;
}

.versus-strip span {
  color: var(--subtle);
  font-weight: 750;
}

.page-review .facts dt,
.page-compare .facts dt,
.page-alternatives .facts dt,
.page-category .facts dt {
  color: var(--subtle);
  font-family: inherit;
  font-size: 12px;
  font-weight: 750;
  text-transform: none;
}

.page-review .facts dd,
.page-compare .facts dd,
.page-alternatives .facts dd,
.page-category .facts dd {
  color: var(--ink);
}

.page-category .criteria,
.page-review .criteria,
.page-compare .criteria,
.page-alternatives .criteria {
  color: var(--muted);
  line-height: 1.7;
}

.page-category .decision-card,
.page-review .decision-card,
.page-compare .decision-card,
.page-alternatives .decision-card {
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.page-category .row-link,
.page-home .row-link,
.page-review .row-link,
.page-compare .row-link,
.page-alternatives .row-link {
  border-bottom-color: var(--line);
}

.page-category .row-link span,
.page-home .row-link span,
.page-review .row-link span,
.page-compare .row-link span,
.page-alternatives .row-link span {
  color: var(--subtle);
  font-family: inherit;
}

.page-review .faq-card details {
  border-color: var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.page-review .faq-card details + details {
  margin-top: 12px;
}

.page-review .faq-card details:last-child {
  padding-bottom: 14px;
}

.page-review .faq-card summary {
  font-size: 18px;
  line-height: 1.35;
}

@media (prefers-reduced-motion: reduce) {
  .page-category *,
  .page-home *,
  .page-review *,
  .page-compare *,
  .page-alternatives * {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 840px) {
  body {
    --site-gutter-width: 28px;
  }

  .page-category .shell,
  .page-home .shell,
  .page-review .shell,
  .page-compare .shell,
  .page-alternatives .shell {
    width: calc(100vw - 28px);
  }

  .page-category .hero,
  .page-home .hero,
  .page-review .hero,
  .page-compare .hero,
  .page-alternatives .hero,
  .decision-split {
    grid-template-columns: 1fr;
  }

  .page-category h1,
  .page-home h1,
  .page-review h1,
  .page-compare h1,
  .page-alternatives h1 {
    font-size: 40px;
  }

  .home-task-grid,
  .page-home .grid.three,
  .page-home .split {
    grid-template-columns: 1fr;
  }

  .page-category .ranked-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .page-category .ranked-item small {
    grid-column: 2;
  }

  .decision-table > div {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .decision-table strong,
  .decision-table span {
    border-right: 0;
  }

  .page-category .decision-table > div:first-child,
  .page-compare .decision-table > div:first-child,
  .page-alternatives .decision-table > div:first-child {
    display: none;
  }

  .page-category .decision-table > div,
  .page-compare .decision-table > div,
  .page-alternatives .decision-table > div {
    display: grid;
    gap: 8px;
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

  .page-category .decision-table span,
  .page-compare .decision-table span,
  .page-alternatives .decision-table span {
    display: grid;
    gap: 3px;
    padding: 0;
    border-bottom: 0;
  }

  .page-category .decision-table span::before,
  .page-compare .decision-table span::before,
  .page-alternatives .decision-table span::before {
    color: var(--subtle);
    font-size: 11px;
    font-weight: 800;
  }

  .page-category .decision-table span:nth-child(1)::before,
  .page-alternatives .decision-table span:nth-child(1)::before {
    content: "Tool";
  }

  .page-category .decision-table span:nth-child(2)::before,
  .page-compare .decision-table span:nth-child(2)::before {
    content: "Best for";
  }

  .page-category .decision-table span:nth-child(3)::before {
    content: "Pricing";
  }

  .page-compare .decision-table span:nth-child(1)::before {
    content: "Dimension";
  }

  .page-compare .decision-table span:nth-child(3)::before {
    content: "Compared with";
  }

  .page-alternatives .decision-table span:nth-child(2)::before {
    content: "Pricing";
  }

  .page-alternatives .decision-table span:nth-child(3)::before {
    content: "Best for";
  }

  .page-category .decision-table span[data-label]::before,
  .page-compare .decision-table span[data-label]::before,
  .page-alternatives .decision-table span[data-label]::before {
    content: attr(data-label);
  }
}

/* Impeccable product pass: quieter evaluation workspace */
.page-tool {
  --ink: #111827;
  --muted: #4b5563;
  --subtle: #6b7280;
  --line: #d9dee7;
  --paper: #f6f7f9;
  --panel: #ffffff;
  --soft: #eef2f6;
  --accent: #0f766e;
  --accent-dark: #0b5f59;
  --accent-2: #b45309;
  --accent-3: #f59e0b;
  --shadow: none;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page-tool .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  grid-template-columns: auto minmax(220px, 360px) minmax(0, 1fr);
  min-height: 64px;
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
}

.page-tool .site-logo {
  font-size: 20px;
  font-weight: 800;
}

.page-tool .site-logo span,
.page-tool .tool-avatar,
.page-tool .preview-logo,
.page-tool .featured-avatar {
  background: var(--accent);
  border-radius: 6px;
}

.page-tool .site-search,
.page-tool .site-actions a,
.page-tool .site-actions button {
  border-color: var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

.page-tool .site-search {
  height: 38px;
  color: var(--subtle);
}

.page-tool .site-search input::placeholder {
  color: #6b7280;
  opacity: 1;
}

.page-tool .site-nav {
  gap: 18px;
  font-size: 14px;
}

.page-tool .site-nav a,
.page-tool .site-actions a,
.page-tool .site-actions button {
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.page-tool .site-nav a:hover,
.page-tool .site-actions a:hover,
.page-tool .site-actions button:hover {
  color: var(--accent);
  border-color: #b8c7c4;
  background: #f4f8f7;
}

.page-tool .site-nav a:focus-visible,
.page-tool .site-actions a:focus-visible,
.page-tool .site-actions button:focus-visible,
.page-tool .button:focus-visible,
.page-tool .favorite-button:focus-visible,
.page-tool .detail-anchor-nav a:focus-visible,
.page-tool .row-link:focus-visible,
.page-tool .mini-link-card:focus-visible,
.page-tool .featured-mini-card:focus-visible {
  outline: 3px solid rgba(15, 118, 110, .28);
  outline-offset: 2px;
}

.page-tool .shell {
  width: min(1240px, calc(100vw - 96px));
  padding: 20px 0 80px;
}

.page-tool .creati-breadcrumb {
  min-height: 28px;
  margin: 2px 0 18px;
  color: var(--subtle);
  font-size: 14px;
  font-weight: 650;
}

.page-tool .creati-breadcrumb a {
  color: var(--accent);
}

.page-tool .tool-product-hero {
  margin: 0 0 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: none;
}

.page-tool .tool-info-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  column-gap: 48px;
  align-items: start;
}

.page-tool .tool-title-actions {
  gap: 16px;
  flex-wrap: wrap;
}

.page-tool .tool-identity {
  flex: 1 1 auto;
  gap: 14px;
}

.page-tool .tool-avatar {
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 23px;
  font-weight: 800;
}

.page-tool h1 {
  color: var(--ink);
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.page-tool .tool-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.page-tool .favorite-button,
.page-tool .button,
.page-tool .product-maintenance a {
  border-radius: 6px;
  box-shadow: none;
  font-weight: 750;
}

.page-tool .favorite-button {
  width: auto;
  min-width: 72px;
  height: 40px;
  border: 1px solid var(--line);
  background: #f3f5f8;
  color: #374151;
  font-size: 15px;
}

.page-tool .favorite-button::before {
  color: #9a3412;
  font-size: 17px;
}

.page-tool .button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-size: 15px;
}

.page-tool .button:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.page-tool .button.disabled {
  border-color: var(--line);
  background: #e5e7eb;
  color: #4b5563;
}

.page-tool .rating-row {
  gap: 8px 11px;
  margin-top: 18px;
  color: #374151;
  font-size: 16px;
}

.page-tool .stars {
  color: var(--accent-3);
  font-size: 20px;
  letter-spacing: 0;
}

.page-tool .divider {
  height: 18px;
  background: #c3cad5;
}

.page-tool .rating-row a {
  color: var(--ink);
}

.page-tool .product-maintenance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 0;
}

.page-tool .product-maintenance a {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: #374151;
  font-size: 14px;
}

.page-tool .product-maintenance a:hover {
  border-color: #b8c7c4;
  background: #f4f8f7;
  color: var(--accent);
}

.page-tool .product-maintenance span {
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
}

.page-tool .product-maintenance a:last-child span {
  background: #eef2f6;
  color: var(--accent);
  font-size: 18px;
}

.page-tool .product-share-actions {
  gap: 8px;
  justify-content: flex-end;
}

.page-tool .product-share-actions a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  font-size: 13px;
}

.page-tool .share-linkedin { background: #0a66c2; }
.page-tool .share-facebook { background: #31589f; }
.page-tool .share-x { background: #111827; }
.page-tool .share-instagram { background: #c13584; }
.page-tool .share-youtube { background: #ff0033; }
.page-tool .share-tiktok { background: #010101; }
.page-tool .share-discord { background: #5865f2; }
.page-tool .share-copy { background: #0f766e; }
.page-tool .share-more { background: #84cc16; color: #14340a; }

.page-tool .tool-screenshot {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.page-tool .tool-preview-toolbar {
  min-height: 36px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.page-tool .tool-preview-body {
  min-height: 284px;
  padding: 42px 28px;
  background: #fff;
}

.page-tool .preview-logo {
  width: 72px;
  height: 72px;
  color: #fff;
  font-size: 32px;
}

.page-tool .tool-preview-body h2 {
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
}

.page-tool .tool-preview-body p {
  max-width: 380px;
  color: var(--muted);
  font-size: 14px;
}

.page-tool .tool-preview-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: #f8fafc;
}

.page-tool .tool-description {
  max-width: 720px;
  margin: 22px 0 24px;
  color: #1f2937;
  font-size: 21px;
  line-height: 1.48;
  text-wrap: pretty;
}

.page-tool .tool-meta-grid {
  gap: 10px 22px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.page-tool .tool-meta-grid dt,
.page-tool .tool-meta-grid dd {
  font-size: 15px;
}

.page-tool .tool-meta-grid dt {
  color: var(--ink);
  font-weight: 800;
}

.page-tool .tool-meta-grid dd {
  color: var(--muted);
}

.page-tool .tool-tags {
  gap: 8px;
  margin-top: 22px;
}

.page-tool .tool-tags span {
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
}

.page-tool .detail-anchor-nav {
  justify-content: flex-start;
  min-height: 46px;
  margin: 18px 0;
  padding: 0 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  overflow-x: auto;
}

.page-tool .detail-anchor-nav a {
  flex: 0 0 auto;
  padding: 0 13px;
  color: #374151;
  font-size: 13px;
  font-weight: 750;
}

.page-tool .detail-anchor-nav a:hover {
  background: #f3f6f8;
  color: var(--accent);
}

.page-tool .tool-detail-layout {
  grid-template-columns: minmax(0, 1fr) 286px;
  gap: 26px;
}

.page-tool .tool-main-column,
.page-tool .tool-side-column {
  gap: 14px;
}

.page-tool .tool-section-stack {
  display: grid;
  gap: 14px;
}

.page-tool .info-card,
.page-tool .sidebar-card,
.page-tool .featured-mini-card,
.page-tool .band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.page-tool .info-card {
  padding: 22px;
}

.page-tool .info-card h2,
.page-tool .sidebar-card h2 {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  text-wrap: balance;
}

.page-tool .info-card h3 {
  color: #1f2937;
  font-size: 17px;
  font-weight: 800;
}

.page-tool .pricing-card {
  display: grid;
  gap: 18px;
}

.page-tool .pricing-card > p {
  max-width: 78ch;
}

.page-tool .pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 10px;
}

.page-tool .pricing-plan-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 178px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.page-tool .pricing-plan-card strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
}

.page-tool .pricing-plan-card .pricing-plan-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 7px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.2;
}

.page-tool .pricing-plan-card .pricing-plan-price b,
.page-tool .pricing-plan-card .pricing-plan-price em {
  color: inherit;
  font: inherit;
  white-space: nowrap;
}

.page-tool .pricing-plan-card .pricing-plan-price em {
  font-size: .92em;
  font-style: normal;
}

.page-tool .pricing-plan-card p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.page-tool .pricing-plan-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.page-tool .pricing-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 16px;
}

.page-tool .pricing-detail-grid > div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.page-tool .info-card p,
.page-tool .sidebar-card p {
  color: var(--muted);
  line-height: 1.62;
}

.page-tool .eyebrow {
  margin: 0 0 8px;
  color: #6b7280;
  font-family: inherit;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.page-tool .facts {
  margin-top: 18px;
}

.page-tool .facts div {
  grid-template-columns: 132px minmax(0, 1fr);
  border-color: var(--line);
}

.page-tool .facts dt {
  color: #6b7280;
  font-family: inherit;
  font-size: 12px;
  font-weight: 750;
  text-transform: none;
}

.page-tool .facts dd {
  color: #1f2937;
}

.page-tool .check-list,
.page-tool .x-list {
  gap: 10px;
  color: #1f2937;
  font-size: 15px;
}

.page-tool .check-list li::before {
  background: var(--accent);
}

.page-tool .x-list li::before {
  border-color: #b45309;
  color: #b45309;
}

.page-tool .criteria {
  color: var(--muted);
}

.page-tool .row-link {
  align-items: center;
  padding: 12px 0;
  border-color: var(--line);
}

.page-tool .row-link:hover,
.page-tool .featured-mini-card:hover,
.page-tool .mini-link-card:hover {
  border-color: #b8c7c4;
  transform: none;
}

.page-tool .featured-title {
  color: var(--accent);
  font-size: 16px;
}

.page-tool .featured-title strong {
  color: var(--ink);
}

.page-tool .sidebar-card {
  padding: 16px;
}

.page-tool .mini-link-card {
  border-color: var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.page-tool .featured-list {
  gap: 10px;
}

.page-tool .featured-mini-card {
  min-height: 88px;
  padding: 14px;
}

.page-tool .source-list a {
  color: var(--accent);
}

.page-tool .faq-card details {
  border-color: var(--line);
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .page-tool *,
  .page-tool *::before,
  .page-tool *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1080px) {
  .page-tool {
    --site-max-width: 920px;
    --site-gutter-width: 44px;
  }

  .page-tool .shell {
    width: min(100% - 44px, 920px);
  }

  .page-tool .site-header {
    padding: 0 22px;
  }

  .page-tool .tool-info-copy {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
    column-gap: 28px;
  }

  .page-tool .tool-detail-layout {
    grid-template-columns: 1fr;
  }

  .page-tool .tool-side-column {
    position: static;
  }
}

@media (max-width: 840px) {
  .page-tool .tool-info-copy {
    grid-template-columns: 1fr;
  }

  .page-tool .tool-title-actions,
  .page-tool .rating-row,
  .page-tool .product-maintenance,
  .page-tool .product-share-actions,
  .page-tool .tool-description,
  .page-tool .tool-meta-grid,
  .page-tool .tool-tags,
  .page-tool .tool-screenshot {
    grid-column: 1;
    grid-row: auto;
  }

  .page-tool .product-maintenance,
  .page-tool .product-share-actions {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .page-tool .tool-screenshot {
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .page-tool {
    --site-gutter-width: 28px;
  }

  .page-tool .shell {
    width: calc(100vw - 28px);
    padding-top: 14px;
  }

  .page-tool .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 10px 14px;
  }

  .page-tool .site-search {
    display: none;
  }

  .page-tool .tool-product-hero,
  .page-tool .info-card,
  .page-tool .sidebar-card {
    padding: 16px;
  }

  .page-tool h1 {
    font-size: 40px;
  }

  .page-tool .tool-description {
    font-size: 18px;
  }

  .page-tool .tool-title-actions,
  .page-tool .tool-actions,
  .page-tool .product-maintenance {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-tool .favorite-button,
  .page-tool .button,
  .page-tool .product-maintenance a {
    width: 100%;
  }

  .page-tool .facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .page-tool .pricing-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .site-header,
  .page-tool .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "logo"
      "nav";
    gap: 8px 14px;
    min-height: 0;
    padding: 10px var(--site-edge) 8px;
  }

  .site-logo,
  .page-tool .site-logo {
    grid-area: logo;
    min-width: 0;
    font-size: 20px;
  }

  .site-search,
  .page-tool .site-search {
    display: none;
  }

  .site-nav,
  .page-tool .site-nav {
    grid-area: nav;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
    color: #1f2937;
  }

  .site-actions a,
  .page-tool .site-actions a,
  .menu-button,
  .page-tool .menu-button {
    display: none !important;
  }

  .nav-item,
  .page-tool .nav-item {
    min-height: 38px;
  }

  .nav-trigger,
  .page-tool .nav-trigger {
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid #e6e8ef;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
  }

  .nav-trigger::after,
  .page-tool .nav-trigger::after,
  .nav-menu,
  .page-tool .nav-menu {
    display: none;
  }
}

/* Keep the global navigation visually identical on tool detail pages. */
.page-tool .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(220px, 360px) minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  min-height: 72px;
  padding: 0 var(--site-edge);
  border-bottom: 1px solid #f0f1f5;
  background: #fff;
  backdrop-filter: none;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
}

.page-tool .site-logo {
  color: #111827;
  font-size: 24px;
  font-weight: 900;
}

.page-tool .site-logo span {
  border-radius: 5px;
  background: linear-gradient(135deg, #8057ff 0%, #d949d3 100%);
}

.page-tool .site-search {
  display: flex;
  height: 34px;
  border-color: #dedfe8;
  border-radius: 6px;
  background: #fff;
  color: #c4c6d1;
}

.page-tool .site-actions a,
.page-tool .site-actions button {
  border-color: #dedfe8;
  border-radius: 5px;
  background: #fff;
  color: #1f2937;
}

.page-tool .site-nav {
  gap: 20px;
  color: #1f2937;
  font-size: 15px;
  font-weight: 600;
}

.page-tool .site-nav .nav-trigger {
  min-height: 42px;
  padding: 0 4px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  font-size: 15px;
}

.page-tool .site-nav .nav-trigger:hover,
.page-tool .site-nav .nav-trigger:focus,
.page-tool .site-actions a:hover,
.page-tool .site-actions button:hover {
  background: #fff;
  color: #3a00ff;
  border-color: #3a00ff;
}

.page-tool .nav-item:hover .nav-trigger,
.page-tool .nav-item:focus-within .nav-trigger {
  color: #3a00ff;
  border-color: #3a00ff;
}

.page-tool .nav-menu {
  display: block;
  border-color: #e6e8ef;
  background: rgba(255, 255, 255, .98);
}

.page-tool .site-nav .nav-menu-link:hover,
.page-tool .site-nav .nav-menu-link:focus {
  background: #f7f4ff;
  color: inherit;
  border-color: transparent;
}

@media (max-width: 1180px) {
  .page-tool .site-header {
    grid-template-columns: auto minmax(170px, 280px) minmax(0, 1fr);
    gap: 16px;
  }

  .page-tool .site-nav,
  .page-tool .site-actions {
    gap: 12px;
  }
}

@media (max-width: 1080px) {
  .page-tool .site-header {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "logo"
      "nav";
    gap: 8px 14px;
    min-height: 0;
    padding: 10px var(--site-edge) 8px;
  }

  .page-tool .site-logo {
    font-size: 20px;
  }

  .page-tool .site-search {
    display: none;
  }

  .page-tool .site-nav {
    display: flex;
    gap: 6px;
  }

  .page-tool .site-nav .nav-trigger {
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid #e6e8ef;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
  }

  .page-tool .nav-menu {
    display: none;
  }
}
