:root {
  --ink: #17151d;
  --muted: #656170;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #1d1a23;
  --purple: #8b5cf6;
  --purple-dark: #6d3fe1;
  --purple-soft: #eee8ff;
  --lime: #c9ff55;
  --pink: #ff9ccc;
  --blue: #7ddff5;
  --peach: #ffb88f;
  --yellow: #ffd663;
  --shadow: 5px 6px 0 var(--line);
  --radius: 18px;
  --container: 1180px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 16px;
  border: 2px solid var(--ink);
  background: var(--lime);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 2px solid var(--line);
  background: rgba(251, 250, 246, 0.95);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 34px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--lime);
  box-shadow: 2px 2px 0 var(--line);
  font-size: 15px;
  letter-spacing: -0.03em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.primary-nav a {
  padding-block: 25px 23px;
  border-bottom: 3px solid transparent;
  color: #34303c;
  font-size: 14px;
  font-weight: 720;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  border-color: var(--purple);
}

.header-cta,
.button-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 19px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 3px 3px 0 var(--purple);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.header-cta:hover,
.button-dark:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--purple);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--line);
  background: var(--purple);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  align-items: center;
  gap: 68px;
  min-height: 560px;
  padding-block: 68px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 32px;
  padding: 4px 12px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 24px 0 20px;
  color: white;
  font-size: clamp(50px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.065em;
}

.hero h1 em {
  display: inline;
  color: var(--lime);
  font-style: normal;
  text-shadow: 3px 3px 0 var(--ink);
}

.hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: #f7f1ff;
  font-size: 18px;
  line-height: 1.7;
}

.hero-search {
  display: flex;
  max-width: 600px;
  margin-top: 30px;
  padding: 6px;
  border: 3px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
}

.hero-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 10px 12px;
  background: transparent;
  color: var(--ink);
}

.hero-search input::placeholder {
  color: #88828f;
}

.hero-search button,
.newsletter-form button,
.empty-state button {
  min-height: 46px;
  padding: 0 23px;
  border: 2px solid var(--line);
  border-radius: 9px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.hero-search button:hover,
.newsletter-form button:hover,
.empty-state button:hover {
  background: #b7f832;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.trust-row span {
  padding: 7px 10px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 3px solid var(--line);
  border-radius: 22px;
  background: #9d75f8;
  box-shadow: 9px 10px 0 var(--line);
}

.hero-note {
  position: absolute;
  right: -18px;
  bottom: -23px;
  display: grid;
  gap: 2px;
  max-width: 250px;
  padding: 15px 18px;
  border: 3px solid var(--line);
  border-radius: 13px;
  background: white;
  box-shadow: 5px 6px 0 var(--line);
  transform: rotate(-2deg);
}

.hero-note strong {
  font-size: 15px;
}

.hero-note span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.category-strip {
  padding-block: 18px;
  border-bottom: 2px solid var(--line);
  background: #fff;
}

.category-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-list::-webkit-scrollbar {
  display: none;
}

.category-chip {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 15px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.category-chip:hover,
.category-chip.is-active {
  background: var(--lime);
  box-shadow: 2px 2px 0 var(--line);
}

.section {
  padding-block: 84px;
}

.section-soft {
  border-block: 2px solid var(--line);
  background: var(--purple-soft);
}

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

.section-heading h2,
.comparison-copy h2,
.newsletter h2 {
  margin: 13px 0 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading > a {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
}

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

.tool-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 28px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 5px 6px 0 var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 7px 10px 0 var(--line);
}

.rank {
  position: absolute;
  top: -12px;
  left: 20px;
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 36px;
  padding-inline: 8px;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 2px 2px 0 var(--line);
}

.rank-lime { background: var(--lime); }
.rank-peach { background: var(--peach); }
.rank-lavender { background: #c9b7ff; }
.rank-blue { background: var(--blue); }
.rank-pink { background: var(--pink); }
.rank-yellow { background: var(--yellow); }

.tool-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 15px;
}

.tool-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--line);
  border-radius: 15px;
  font-size: 22px;
  font-weight: 950;
}

.avatar-lime { background: var(--lime); }
.avatar-peach { background: var(--peach); }
.avatar-lavender { background: #c9b7ff; }
.avatar-blue { background: var(--blue); }
.avatar-pink { background: var(--pink); }
.avatar-yellow { background: var(--yellow); }

.tool-tag {
  padding: 6px 9px;
  border-radius: 7px;
  background: #f1eef6;
  color: #514b5c;
  font-size: 11px;
  font-weight: 800;
}

.tool-card h3 {
  margin: 24px 0 10px;
  font-size: 25px;
  letter-spacing: -.035em;
}

.tool-card h3 a:hover {
  color: var(--purple-dark);
}

.tool-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.tool-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: auto;
  padding: 19px 0;
  border-bottom: 1px solid #ddd8e4;
}

.tool-meta > span {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: 14px;
  font-weight: 750;
}

.tool-meta > span + span {
  justify-content: flex-end;
  border-left: 1px solid #ddd8e4;
}

.tool-meta small {
  display: block;
  margin-right: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.tool-meta strong {
  color: var(--purple-dark);
  font-size: 20px;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  font-size: 13px;
  font-weight: 900;
}

.empty-state {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 260px;
  padding: 30px;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state span {
  margin-bottom: 12px;
  color: var(--muted);
}

.ad-band {
  display: grid;
  place-items: center;
  min-height: 106px;
  margin-bottom: 84px;
  border: 1px dashed #aaa3b0;
  border-radius: 12px;
  background: #f3f1ed;
  color: #85808a;
}

.ad-band span {
  margin-bottom: 4px;
  font-size: 9px;
  letter-spacing: .15em;
}

.ad-band strong {
  font-size: 12px;
  font-weight: 600;
}

.comparison-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 76px;
}

.comparison-copy p {
  max-width: 480px;
  margin: 20px 0 27px;
  color: var(--muted);
  line-height: 1.75;
}

.comparison-card {
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 7px 8px 0 var(--line);
}

.comparison-card-head {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 2px solid var(--line);
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.comparison-card-head span:last-child {
  font-weight: 650;
}

.comparison-row {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  padding: 20px;
  border-bottom: 1px solid #ded8e6;
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row:hover {
  background: #faf8ff;
}

.comparison-number {
  color: var(--purple-dark);
  font-size: 18px;
  font-weight: 950;
}

.comparison-row > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.comparison-row strong {
  font-size: 16px;
}

.comparison-row small {
  color: var(--muted);
  font-size: 12px;
}

.comparison-row em {
  padding: 6px 9px;
  border-radius: 7px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

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

.article-card {
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: transform 180ms ease;
}

.article-card:hover {
  transform: translateY(-4px);
}

.article-cover {
  display: flex;
  min-height: 195px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 22px;
  border-bottom: 2px solid var(--line);
}

.cover-1 { background: var(--purple); }
.cover-2 { background: var(--lime); }
.cover-3 { background: var(--pink); }

.article-cover span {
  color: rgba(23, 21, 29, .62);
  font-size: 64px;
  font-weight: 950;
  letter-spacing: -.08em;
}

.cover-1 span {
  color: rgba(255,255,255,.7);
}

.article-cover strong {
  padding: 7px 9px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: white;
  font-size: 11px;
}

.article-body {
  padding: 22px;
}

.article-meta {
  color: var(--purple-dark);
  font-size: 11px;
  font-weight: 850;
}

.article-body h3 {
  margin: 12px 0 10px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -.03em;
}

.article-body h3 a:hover {
  color: var(--purple-dark);
}

.article-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.newsletter {
  padding-block: 74px;
  border-block: 2px solid var(--line);
  background: var(--purple);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr minmax(350px, 520px);
  align-items: center;
  gap: 60px;
}

.newsletter .section-kicker {
  background: var(--lime);
}

.newsletter h2 {
  color: white;
}

.newsletter p {
  margin: 14px 0 0;
  color: #efe8ff;
  line-height: 1.65;
}

.newsletter-form {
  display: flex;
  padding: 6px;
  border: 3px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 6px 7px 0 var(--line);
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding-inline: 12px;
}

.site-footer {
  padding-block: 46px;
  background: var(--ink);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}

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

.footer-grid p {
  margin: 12px 0 0;
  color: #bdb7c6;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: #d8d3de;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-grid > small {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid #3c3742;
  color: #8e8993;
  font-size: 11px;
}

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

@media (max-width: 980px) {
  .primary-nav {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px;
    border: 2px solid var(--line);
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid #e5e1e9;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    padding: 8px 12px;
    border: 2px solid var(--line);
    border-radius: 8px;
    background: white;
    color: var(--ink);
    font-size: 12px;
    font-weight: 850;
  }

  .hero-layout {
    grid-template-columns: 1fr 360px;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(47px, 6vw, 64px);
  }

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

  .comparison-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

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

  .primary-nav {
    top: 66px;
    left: 14px;
    right: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 48px 68px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-visual {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .hero-note {
    right: 10px;
    bottom: -25px;
  }

  .section {
    padding-block: 64px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .tool-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .tool-card {
    min-height: 330px;
  }

  .ad-band {
    width: calc(100% - 28px);
    margin-bottom: 64px;
  }

  .comparison-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .comparison-row em {
    display: none;
  }

  .newsletter {
    padding-block: 60px;
  }

  .newsletter-form {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
  }

  .newsletter-form input {
    min-height: 48px;
  }

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

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

@media (max-width: 460px) {
  .hero-search {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

  .hero-search input {
    min-height: 48px;
  }

  .trust-row span {
    font-size: 11px;
  }

  .tool-card {
    padding: 24px;
  }

  .section-heading h2,
  .comparison-copy h2,
  .newsletter h2 {
    font-size: 34px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* WordPress integration */

.site-branding,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-width: 210px;
  max-height: 48px;
}

.primary-nav ul,
.footer-links ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav li,
.footer-links li {
  margin: 0;
}

.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% - 10px);
  display: none;
  min-width: 190px;
  align-items: stretch;
  flex-direction: column;
  gap: 0;
  padding: 8px 16px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow);
}

.primary-nav li {
  position: relative;
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  display: flex;
}

.primary-nav .sub-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #e4dfe8;
}

.footer-links .menu {
  gap: 20px;
}

.newsletter-action,
.button-outline,
.tool-website-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 4px 5px 0 var(--line);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.newsletter-action:hover,
.button-outline:hover,
.tool-website-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 3px 0 var(--line);
}

.tool-avatar-image {
  overflow: hidden;
  background: white;
}

.tool-avatar-image img,
.tool-review-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-cover.has-image {
  display: block;
  min-height: 0;
  padding: 0;
  aspect-ratio: 16 / 10;
}

.article-cover.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-band-live {
  display: block;
  min-height: 0;
  padding: 18px;
  margin-block: 40px 70px;
  text-align: center;
}

.ad-band-live .widget {
  margin: 0;
}

.empty-state-wide {
  grid-column: 1 / -1;
  width: 100%;
}

.archive-hero,
.editorial-header {
  border-bottom: 2px solid var(--line);
  background: var(--purple-soft);
}

.archive-hero-inner,
.editorial-header .narrow-container {
  padding-block: 74px;
}

.archive-hero h1,
.editorial-header h1 {
  max-width: 920px;
  margin: 18px 0 14px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.06em;
}

.archive-hero p,
.archive-description,
.editorial-deck {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.archive-search {
  max-width: 660px;
  margin-top: 28px;
  box-shadow: 5px 6px 0 var(--line);
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.navigation.pagination {
  margin-top: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-numbers {
  display: grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  padding: 6px 10px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: white;
  font-size: 13px;
  font-weight: 850;
}

.page-numbers.current,
.page-numbers:hover {
  background: var(--lime);
}

.tool-review-hero {
  padding-block: 34px 58px;
  border-bottom: 2px solid var(--line);
  background: var(--purple-soft);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--purple-dark);
}

.tool-review-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
}

.tool-review-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.verified-badge {
  padding: 6px 9px;
  border: 2px solid var(--line);
  border-radius: 7px;
  background: var(--lime);
  font-size: 11px;
  font-weight: 850;
}

.tool-title-row {
  display: flex;
  align-items: center;
  gap: 22px;
}

.tool-review-logo {
  flex: 0 0 auto;
  overflow: hidden;
  width: 88px;
  height: 88px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 4px 5px 0 var(--line);
}

.tool-review-title h1 {
  margin: 0 0 10px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -.06em;
}

.tool-review-title p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.review-score {
  display: grid;
  min-width: 135px;
  place-items: center;
  padding: 18px 24px;
  border: 2px solid var(--line);
  border-radius: 15px;
  background: var(--lime);
  box-shadow: 5px 6px 0 var(--line);
}

.review-score small {
  font-size: 11px;
  font-weight: 800;
}

.review-score strong {
  font-size: 48px;
  line-height: 1;
  letter-spacing: -.06em;
}

.review-score span {
  font-size: 11px;
  font-weight: 750;
}

.tool-summary-grid {
  display: grid;
  grid-template-columns: .75fr 1.35fr .8fr auto;
  align-items: stretch;
  margin-top: 36px;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: white;
}

.tool-summary-grid > div {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 76px;
  padding: 15px 18px;
  border-right: 1px solid #ddd7e5;
}

.tool-summary-grid small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.tool-summary-grid strong {
  font-size: 14px;
}

.tool-website-button {
  margin: 8px;
  box-shadow: none;
}

.affiliate-disclosure {
  margin: 15px 0 0;
  color: #77717d;
  font-size: 11px;
  line-height: 1.55;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(260px, 330px);
  align-items: start;
  justify-content: space-between;
  gap: 70px;
  padding-block: 72px 90px;
}

.article-main {
  min-width: 0;
}

.article-sidebar {
  position: sticky;
  top: 98px;
}

.sidebar-card {
  padding: 24px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 5px 6px 0 var(--line);
}

.sidebar-card h2 {
  margin: 17px 0 10px;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.sidebar-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.sidebar-score {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-block: 20px;
  padding-block: 14px;
  border-block: 1px solid #ddd7e2;
}

.sidebar-score span {
  color: var(--muted);
  font-size: 11px;
}

.sidebar-score strong {
  color: var(--purple-dark);
  font-size: 30px;
}

.sidebar-button {
  width: 100%;
}

.sidebar-ad {
  margin-top: 28px;
  padding: 15px;
  border: 1px dashed #aaa3b0;
  border-radius: 12px;
  text-align: center;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 44px;
}

.pros-cons > div {
  padding: 24px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.pros-list {
  box-shadow: 4px 5px 0 var(--lime);
}

.cons-list {
  box-shadow: 4px 5px 0 var(--pink);
}

.pros-cons h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

.pros-cons ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.entry-content {
  color: #302c36;
  font-size: 17px;
  line-height: 1.88;
}

.entry-content > * {
  max-width: 100%;
}

.entry-content h2 {
  margin: 2.2em 0 .7em;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.04em;
}

.entry-content h3 {
  margin: 1.8em 0 .6em;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -.025em;
}

.entry-content a {
  color: var(--purple-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content img {
  height: auto;
  border-radius: 14px;
}

.entry-content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border: 2px solid var(--line);
  border-left: 8px solid var(--purple);
  border-radius: 10px;
  background: var(--purple-soft);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.entry-content th,
.entry-content td {
  padding: 13px 14px;
  border: 1px solid #cbc4d1;
  text-align: left;
}

.entry-content th {
  background: var(--purple-soft);
}

.article-main .ad-band {
  width: 100%;
  margin-block: 50px;
}

.narrow-container {
  width: min(820px, calc(100% - 40px));
  margin-inline: auto;
}

.editorial-header {
  padding-block: 0;
}

.editorial-header .section-kicker {
  margin-bottom: 18px;
}

.editorial-header h1 {
  margin-top: 0;
}

.post-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.featured-image-wrap {
  margin-top: 46px;
}

.featured-image-wrap img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  border: 2px solid var(--line);
  border-radius: var(--radius);
}

.page-content {
  padding-block: 64px 90px;
}

.comments-area {
  margin-top: 64px;
  padding-top: 42px;
  border-top: 2px solid var(--line);
}

.comment-list {
  padding-left: 22px;
}

.comment-list li {
  margin-bottom: 24px;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--line);
  border-radius: 8px;
}

.comment-form input[type="submit"] {
  padding: 12px 18px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--lime);
  font-weight: 850;
}

.not-found-page {
  display: grid;
  min-height: 66vh;
  place-items: center;
  padding-block: 80px;
}

.not-found-inner {
  display: grid;
  max-width: 680px;
  place-items: center;
  text-align: center;
}

.not-found-code {
  color: var(--purple);
  font-size: clamp(100px, 20vw, 190px);
  font-weight: 950;
  line-height: .8;
  letter-spacing: -.1em;
}

.not-found-inner h1 {
  margin: 20px 0 10px;
  font-size: 42px;
  letter-spacing: -.05em;
}

.not-found-inner p {
  margin: 0;
  color: var(--muted);
}

.not-found-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.button-outline {
  background: white;
}

@media (max-width: 980px) {
  .primary-nav ul {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav .sub-menu {
    position: static;
    display: flex;
    border: 0;
    box-shadow: none;
  }

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

  .tool-summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tool-summary-grid > div:nth-child(2) {
    border-right: 0;
  }

  .tool-website-button {
    grid-column: 1 / -1;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 42px;
  }
}

@media (max-width: 760px) {
  .footer-links .menu {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .archive-hero-inner,
  .editorial-header .narrow-container {
    padding-block: 56px;
  }

  .search-results-grid {
    grid-template-columns: 1fr;
  }

  .tool-review-heading {
    grid-template-columns: 1fr;
  }

  .review-score {
    width: 135px;
  }

  .tool-summary-grid {
    grid-template-columns: 1fr;
  }

  .tool-summary-grid > div {
    border-right: 0;
    border-bottom: 1px solid #ddd7e5;
  }

  .tool-website-button {
    grid-column: auto;
  }

  .article-layout {
    grid-template-columns: 1fr;
    padding-block: 56px 70px;
  }

  .article-sidebar {
    position: static;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .entry-content {
    font-size: 16px;
  }

  .entry-content h2 {
    font-size: 29px;
  }
}
