:root {
  --ink: #071a2e;
  --muted: #596471;
  --paper: #f8f5ed;
  --paper-deep: #efebe1;
  --white: #fffef9;
  --lime: #d7f20a;
  --lime-deep: #bdd600;
  --blue: #4f8cff;
  --coral: #ff745f;
  --teal: #21a5a2;
  --line: rgba(7, 26, 46, 0.17);
  --soft-line: rgba(7, 26, 46, 0.1);
  --shadow: 0 22px 60px rgba(7, 26, 46, 0.11);
  --shell: min(1440px, calc(100% - 64px));
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 13%, rgba(215, 242, 10, 0.09), transparent 25%),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

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

section[id],
#solutions {
  scroll-margin-top: 108px;
}

button {
  border: 0;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.announcement {
  min-height: 38px;
  border-bottom: 1px solid var(--line);
  background: rgba(215, 242, 10, 0.1);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.announcement-inner span {
  display: flex;
  gap: 8px;
  align-items: center;
}

.announcement-inner b {
  font-size: 14px;
}

.announcement-inner a {
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 237, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
}

.wordmark {
  width: fit-content;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.wordmark span {
  color: var(--lime-deep);
}

.desktop-nav {
  display: flex;
  gap: clamp(22px, 3vw, 50px);
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.search-button > span,
.search-input > span {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-button > span::after,
.search-input > span::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 13px;
  font-weight: 750;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--lime);
}

.menu-button {
  display: none;
  gap: 5px;
}

.menu-button i {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.search-overlay {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  padding: 24px;
  background: rgba(7, 26, 46, 0.66);
  backdrop-filter: blur(12px);
  place-items: start center;
}

.search-panel {
  width: min(680px, 100%);
  margin-top: 9vh;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  animation: panel-in 180ms ease both;
}

.search-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-panel-top button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper-deep);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.search-input {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 14px;
}

.search-input input {
  width: 100%;
  height: 58px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 17px;
}

.search-results {
  display: grid;
  gap: 7px;
  margin-top: 16px;
}

.search-results button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 12px;
  border-radius: 13px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.search-results button:hover,
.search-results button:focus-visible {
  background: var(--paper);
}

.search-result-mark {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 32%, white);
  font-weight: 900;
  place-items: center;
}

.search-results button > span:nth-child(2) {
  display: grid;
}

.search-results small {
  color: var(--muted);
}

.search-results i {
  font-style: normal;
}

.empty-state {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 710px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  top: -100px;
  right: -180px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(7, 26, 46, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.98fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  min-height: 710px;
  padding-block: 74px 68px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 730px;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 23px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow > span {
  display: grid;
  min-width: 42px;
  height: 22px;
  margin-right: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--lime);
  font-size: 9px;
  place-items: center;
}

.hero h1,
.section-heading h2,
.compare-copy h2,
.tool-finder h2,
.methodology-grid h2,
.newsletter-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 6.1vw, 96px);
}

.hero h1 em {
  position: relative;
  font-weight: 500;
}

.hero h1 em::after {
  position: absolute;
  right: 0.04em;
  bottom: -0.07em;
  width: 71%;
  height: 0.12em;
  border-radius: 999px;
  content: "";
  background: var(--lime);
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-primary:hover {
  background: #e6ff28;
}

.button-dark {
  width: 100%;
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--lime);
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 750;
}

.hero-proof {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 54px;
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack span {
  display: grid;
  width: 33px;
  height: 33px;
  margin-left: -8px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  font-size: 10px;
  font-weight: 900;
  place-items: center;
}

.avatar-stack span:nth-child(2) {
  background: var(--coral);
}

.avatar-stack span:nth-child(3) {
  background: var(--lime);
}

.hero-proof p {
  display: grid;
  margin: 0;
  font-size: 12px;
}

.hero-proof p span {
  color: var(--muted);
}

.decision-visual {
  position: relative;
  min-height: 570px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(7, 26, 46, 0.3);
  border-radius: 50%;
}

.orbit-one {
  top: 70px;
  right: -110px;
  width: 520px;
  height: 360px;
  transform: rotate(-18deg);
}

.orbit-two {
  top: 175px;
  right: 55px;
  width: 400px;
  height: 300px;
  border-color: rgba(215, 242, 10, 0.8);
  transform: rotate(23deg);
}

.visual-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(7, 26, 46, 0.22);
  border-radius: 18px;
  background: rgba(255, 254, 249, 0.96);
  box-shadow: 0 14px 40px rgba(7, 26, 46, 0.11);
  animation: float 7s ease-in-out infinite;
}

.card-kicker {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.score-card {
  top: 30px;
  left: 10px;
  width: 225px;
  padding: 19px;
}

.score-ring {
  display: grid;
  width: 112px;
  height: 112px;
  margin: 17px auto 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--white) 57%, transparent 59%),
    conic-gradient(var(--lime) 0deg 338deg, var(--paper-deep) 338deg);
  place-content: center;
  text-align: center;
}

.score-ring strong {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

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

.stars {
  color: var(--lime-deep);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
}

.stars span {
  color: var(--paper-deep);
  text-shadow: 0 0 0 var(--ink);
}

.value-card {
  top: 95px;
  right: 3px;
  width: 235px;
  padding: 18px;
  animation-delay: -2s;
}

.line-chart {
  display: flex;
  gap: 5px;
  align-items: end;
  height: 75px;
  margin: 15px 0 10px;
  border-bottom: 1px solid var(--soft-line);
  background:
    linear-gradient(var(--soft-line) 1px, transparent 1px) 0 0 / 100% 25px;
}

.line-chart i {
  flex: 1;
  min-height: 12px;
  border-radius: 4px 4px 0 0;
  background: var(--blue);
  opacity: 0.82;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.value-card p b {
  color: var(--ink);
}

.fit-card {
  top: 253px;
  left: 115px;
  width: 245px;
  padding: 18px;
  color: white;
  background: var(--ink);
  animation-delay: -4s;
}

.fit-card .card-kicker {
  color: rgba(255, 255, 255, 0.65);
}

.fit-shape {
  position: relative;
  display: grid;
  width: 134px;
  height: 120px;
  margin: 8px auto 4px;
  background:
    linear-gradient(30deg, transparent 49.5%, rgba(255, 255, 255, 0.2) 50%, transparent 50.5%),
    linear-gradient(-30deg, transparent 49.5%, rgba(255, 255, 255, 0.2) 50%, transparent 50.5%);
  place-items: center;
}

.fit-shape::before,
.fit-shape::after,
.fit-shape i {
  position: absolute;
  content: "";
  clip-path: polygon(50% 0, 100% 28%, 87% 82%, 50% 100%, 13% 82%, 0 28%);
}

.fit-shape::before {
  width: 118px;
  height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.fit-shape::after {
  width: 82px;
  height: 76px;
  background: rgba(215, 242, 10, 0.18);
}

.fit-shape i {
  z-index: 2;
  width: 76px;
  height: 70px;
  background: rgba(215, 242, 10, 0.58);
}

.fit-labels {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
}

.reliability-card {
  right: -35px;
  bottom: 35px;
  width: 260px;
  padding: 18px;
  animation-delay: -5s;
}

.signal {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
}

.signal b {
  color: var(--ink);
}

.signal i {
  grid-column: 1 / -1;
  width: var(--width);
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
}

.visual-stamp {
  position: absolute;
  z-index: 3;
  right: 4px;
  bottom: 198px;
  display: grid;
  width: 106px;
  height: 106px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(9deg);
  place-content: center;
}

.visual-stamp span {
  font-family: var(--serif);
  font-size: 36px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 104px;
}

.trust-grid > div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px 28px;
  border-left: 1px solid var(--soft-line);
}

.trust-grid > div:last-child {
  border-right: 1px solid var(--soft-line);
}

.trust-grid strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.trust-grid span {
  max-width: 110px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.section {
  padding-block: 118px;
}

.section-heading {
  margin-bottom: 46px;
}

.section-heading h2,
.compare-copy h2,
.tool-finder h2,
.methodology-grid h2,
.newsletter-card h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: 40px;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 410px;
  padding: 26px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.category-card::after {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
  opacity: 0.14;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  z-index: 2;
  background: color-mix(in srgb, var(--accent) 16%, var(--white));
  outline: 0;
  transform: translateY(-8px);
}

.category-card:hover::after,
.category-card:focus-visible::after {
  opacity: 0.6;
  transform: scale(1.4);
}

.category-number {
  font-family: var(--serif);
  font-size: 15px;
}

.category-glyph {
  display: grid;
  width: 64px;
  height: 64px;
  margin-top: 35px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent) 28%, white);
  font-size: 25px;
  place-items: center;
}

.category-eyebrow {
  margin-top: 34px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-card strong {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 35px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.category-description {
  max-width: 270px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.category-link {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.solutions-directory {
  padding-top: 110px;
}

.solutions-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: 40px;
  align-items: end;
  margin-bottom: 38px;
}

.solutions-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.3vw, 62px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1;
}

.solutions-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solution-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  min-height: 190px;
  padding: 21px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.solution-card::after {
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
  opacity: 0.13;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.solution-card:hover,
.solution-card:focus-visible {
  z-index: 2;
  background: color-mix(in srgb, var(--accent) 12%, var(--white));
  outline: 0;
  transform: translateY(-4px);
}

.solution-card:hover::after,
.solution-card:focus-visible::after {
  opacity: 0.48;
  transform: scale(1.35);
}

.solution-card > span {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 13px;
}

.solution-card > div {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.solution-card strong {
  max-width: 190px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.solution-card p {
  margin: 10px 0 15px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.solution-card small {
  margin-top: auto;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.solution-card > i {
  position: relative;
  z-index: 2;
  font-style: normal;
}

.recommendations-section {
  border-block: 1px solid var(--line);
  background: var(--white);
}

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

.filter-row {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.filter-row button {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.filter-row button:hover,
.filter-row button.active {
  color: white;
  background: var(--ink);
}

.topic-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -22px 0 22px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--lime) 16%, var(--paper));
  font-size: 11px;
}

.topic-selection button {
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 365px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--accent) 11%, white),
      var(--white) 48%
    );
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-card:hover {
  box-shadow: 0 18px 40px rgba(7, 26, 46, 0.09);
  transform: translateY(-5px);
}

.product-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.product-logo {
  display: grid;
  width: 49px;
  height: 49px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--accent);
  font-size: 18px;
  font-weight: 900;
  place-items: center;
}

.product-score {
  display: grid;
  text-align: right;
}

.product-score b {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.product-score small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-category {
  margin: 35px 0 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.product-description {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.tag-row span {
  padding: 5px 8px;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.product-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 26px;
}

.product-footer a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-footer > span {
  color: rgba(7, 26, 46, 0.19);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 0.7;
}

.score-note {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.compare-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px) 0 0 / 100% 44px,
    var(--paper-deep);
}

.compare-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(640px, 1.28fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}

.compare-copy {
  position: sticky;
  top: 130px;
}

.compare-copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 25px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.compare-board {
  border: 1px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 9px 9px 0 var(--ink);
}

.compare-selects {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: end;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.compare-selects label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-selects select {
  width: 100%;
  height: 50px;
  padding: 0 38px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: white;
  background: #112a43;
  font-size: 15px;
  font-weight: 750;
}

.compare-selects > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  place-items: center;
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr;
  border-bottom: 1px solid var(--soft-line);
}

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

.comparison-row > * {
  min-width: 0;
  margin: 0;
  padding: 19px;
  border-right: 1px solid var(--soft-line);
}

.comparison-row > *:last-child {
  border-right: 0;
}

.comparison-row > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.comparison-row p {
  font-size: 13px;
}

.comparison-product-row {
  background: color-mix(in srgb, var(--lime) 18%, var(--white));
}

.comparison-product-row strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.tool-finder-section {
  padding-block: 0;
  color: var(--paper);
  background: var(--ink);
}

.tool-finder {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 750px;
}

.tool-finder-intro {
  position: relative;
  padding: 120px 80px 100px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.tool-finder-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.finder-index {
  position: absolute;
  right: 80px;
  bottom: 70px;
  left: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.finder-index i {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.finder-index i::before {
  display: block;
  width: 33%;
  height: 1px;
  content: "";
  background: var(--lime);
}

.finder-form {
  padding: 100px 0 100px clamp(60px, 7vw, 120px);
}

.finder-form > label,
.finder-two-columns label {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.finder-form select {
  width: 100%;
  height: 58px;
  padding: 0 42px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  color: white;
  background: #102942;
  font-size: 14px;
  font-weight: 650;
}

.finder-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0;
}

.finder-form .button {
  margin-top: 6px;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--ink);
  background: var(--lime);
}

.finder-result {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 24px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  opacity: 0.34;
  transform: translateY(6px);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.finder-result.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.result-number {
  display: grid;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  color: var(--ink);
  background: var(--accent);
  font-family: var(--serif);
  font-size: 21px;
  place-items: center;
}

.finder-result > div {
  display: grid;
  gap: 5px;
}

.finder-result small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.finder-result strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.finder-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.guides-section {
  background: var(--white);
}

.guides-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 14px;
}

.guide-card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper);
}

.guide-art {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.guide-art-ai {
  background:
    radial-gradient(circle at 78% 26%, var(--coral) 0 55px, transparent 56px),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(7, 26, 46, 0.1) 45px),
    var(--lime);
}

.guide-art-ai span {
  position: absolute;
  top: 25px;
  left: 33px;
  font-family: var(--serif);
  font-size: 110px;
  line-height: 1;
}

.guide-art-ai i {
  position: absolute;
  right: 22%;
  bottom: 24px;
  width: 110px;
  height: 8px;
  background: var(--ink);
  transform: rotate(-26deg);
}

.guide-art-ai i:nth-of-type(2) {
  right: 12%;
  bottom: 55px;
  width: 70px;
}

.guide-art-ai i:nth-of-type(3) {
  right: 5%;
  bottom: 87px;
  width: 38px;
}

.guide-art-cyber {
  color: white;
  background:
    linear-gradient(135deg, transparent 47%, rgba(255, 255, 255, 0.18) 48% 52%, transparent 53%),
    var(--ink);
}

.guide-art-cyber span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--serif);
  font-size: 108px;
  transform: translate(-50%, -50%);
}

.guide-art-cyber i {
  position: absolute;
  inset: 24px;
  border: 1px solid var(--coral);
  border-radius: 50%;
}

.guide-art-travel {
  background:
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(7, 26, 46, 0.1) 29px),
    var(--teal);
}

.guide-art-travel span {
  position: absolute;
  top: 17px;
  right: 24px;
  font-size: 48px;
}

.guide-art-travel i {
  position: absolute;
  right: 18px;
  bottom: -88px;
  width: 250px;
  height: 250px;
  border: 24px solid var(--paper);
  border-radius: 50%;
}

.guide-art-travel b {
  position: absolute;
  bottom: 26px;
  left: 25px;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 500;
}

.guide-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.guide-content p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.guide-content h3 {
  margin: 12px 0 26px;
  font-family: var(--serif);
  font-size: clamp(23px, 2.1vw, 34px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.guide-content a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.methodology-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.methodology-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(70px, 10vw, 160px);
}

.methodology-copy > p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.methodology-copy ol {
  padding: 0;
  margin: 45px 0 0;
  list-style: none;
}

.methodology-copy li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}

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

.methodology-copy li > span {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
}

.methodology-copy li div {
  display: grid;
  gap: 4px;
}

.methodology-copy li strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.methodology-copy li p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.newsletter-section {
  padding: 0 0 36px;
  background: var(--paper);
}

.newsletter-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(400px, 0.7fr);
  gap: 60px;
  align-items: end;
  min-height: 410px;
  padding: 70px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% -10%, rgba(255, 116, 95, 0.9) 0 115px, transparent 116px),
    linear-gradient(115deg, var(--lime) 0 68%, #c4df00 68%);
}

.newsletter-card::after {
  position: absolute;
  right: 33%;
  bottom: -150px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(7, 26, 46, 0.28);
  border-radius: 50%;
  content: "";
}

.newsletter-card > div,
.newsletter-form {
  position: relative;
  z-index: 2;
}

.newsletter-card h2 {
  max-width: 770px;
}

.newsletter-card > div > p:last-child {
  margin: 22px 0 0;
  color: rgba(7, 26, 46, 0.66);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 6px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.newsletter-form input {
  min-width: 0;
  height: 52px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
}

.newsletter-form button {
  padding: 0 18px;
  border-radius: 8px;
  color: white;
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  padding-block: 80px;
}

.wordmark-light {
  color: white;
}

.footer-top > div:first-child > p {
  max-width: 300px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.48);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer-links strong {
  margin-bottom: 8px;
  color: white;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 44px, 1120px);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
    gap: 30px;
  }

  .decision-visual {
    transform: scale(0.9);
    transform-origin: center right;
  }

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

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

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

  .category-card {
    min-height: 360px;
  }

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

  .guide-featured {
    grid-column: 1 / -1;
  }

  .newsletter-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsletter-form {
    width: min(610px, 100%);
  }
}

@media (max-width: 920px) {
  .announcement-inner a,
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

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

  .mobile-nav {
    display: grid;
    padding: 0 22px 18px;
    background: var(--paper);
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 3px;
    border-bottom: 1px solid var(--soft-line);
    font-family: var(--serif);
    font-size: 22px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 78px 40px;
  }

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

  .decision-visual {
    width: min(660px, 100%);
    min-height: 540px;
    margin: -20px auto 0;
    transform: scale(0.92);
    transform-origin: center;
  }

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

  .trust-grid > div:nth-child(3) {
    border-top: 1px solid var(--soft-line);
  }

  .trust-grid > div:nth-child(4) {
    border-top: 1px solid var(--soft-line);
  }

  .section {
    padding-block: 88px;
  }

  .recommendations-heading {
    display: grid;
  }

  .filter-row {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
  }

  .filter-row button {
    flex: 0 0 auto;
  }

  .compare-layout {
    grid-template-columns: 1fr;
  }

  .compare-copy {
    position: static;
  }

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

  .tool-finder-intro {
    min-height: 480px;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .finder-form {
    padding: 80px 0;
  }

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

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

@media (max-width: 650px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .announcement-inner {
    justify-content: center;
    font-size: 9px;
  }

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

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .hero-grid {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 67px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    margin-top: 42px;
  }

  .decision-visual {
    min-height: 480px;
    margin-top: -10px;
    transform: scale(0.7);
    transform-origin: top center;
  }

  .score-card {
    left: -35px;
  }

  .value-card {
    right: -45px;
  }

  .fit-card {
    left: 78px;
  }

  .reliability-card {
    right: -70px;
  }

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

  .trust-grid > div {
    gap: 9px;
    padding: 16px 10px;
  }

  .trust-grid strong {
    font-size: 25px;
  }

  .trust-grid span {
    font-size: 8px;
  }

  .section {
    padding-block: 72px;
  }

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

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

  .section-heading h2,
  .compare-copy h2,
  .tool-finder h2,
  .methodology-grid h2,
  .newsletter-card h2 {
    font-size: clamp(40px, 12vw, 57px);
  }

  .category-grid,
  .solutions-grid,
  .product-grid,
  .guides-grid {
    grid-template-columns: 1fr;
  }

  .guide-featured {
    grid-column: auto;
  }

  .category-card {
    min-height: 345px;
  }

  .solutions-directory {
    padding-top: 75px;
  }

  .solution-card {
    min-height: 165px;
  }

  .recommendations-heading {
    align-items: start;
  }

  .topic-selection {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .product-card {
    min-height: 340px;
  }

  .compare-board {
    border-radius: 16px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .compare-selects {
    grid-template-columns: 1fr;
  }

  .compare-selects > span {
    margin: -3px auto;
  }

  .comparison-row {
    grid-template-columns: 0.75fr 1fr 1fr;
  }

  .comparison-row > * {
    padding: 12px 9px;
  }

  .comparison-row > span {
    font-size: 8px;
  }

  .comparison-row p {
    font-size: 10px;
  }

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

  .tool-finder-intro {
    min-height: 430px;
    padding-top: 72px;
  }

  .finder-index {
    right: 0;
    bottom: 50px;
  }

  .finder-form {
    padding-block: 65px;
  }

  .finder-two-columns {
    grid-template-columns: 1fr;
  }

  .finder-result {
    grid-template-columns: 1fr;
  }

  .guide-card {
    min-height: 430px;
  }

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

  .newsletter-section {
    padding-bottom: 15px;
  }

  .newsletter-card {
    gap: 35px;
    min-height: 530px;
    padding: 38px 24px;
    border-radius: 20px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .footer-top {
    padding-block: 60px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* WordPress integration and Vexuraa product surfaces */

[hidden] {
  display: none !important;
}

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

.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.nav-mega-trigger {
  position: relative;
}

.nav-mega-trigger > a small {
  margin-left: 2px;
  font-size: 10px;
}

.mega-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 30px);
  left: 50%;
  display: grid;
  grid-template-columns: 0.72fr 2fr;
  width: min(1120px, calc(100vw - 48px));
  padding: 14px;
  border: 1px solid var(--ink);
  border-radius: 22px;
  visibility: hidden;
  background: var(--white);
  box-shadow: 9px 9px 0 var(--ink);
  opacity: 0;
  transform: translate(-50%, 9px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.mega-menu::before {
  position: absolute;
  top: -31px;
  right: 0;
  left: 0;
  height: 31px;
  content: "";
}

.nav-mega-trigger:hover .mega-menu,
.nav-mega-trigger:focus-within .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.mega-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 330px;
  padding: 32px;
  border-radius: 14px;
  color: white;
  background:
    radial-gradient(circle at 90% 85%, rgba(215, 242, 10, 0.9) 0 58px, transparent 59px),
    var(--ink);
}

.mega-intro .eyebrow {
  color: var(--lime);
}

.mega-intro strong {
  margin-top: 34px;
  font-family: var(--serif);
  font-size: 37px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.mega-intro a {
  margin-top: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  color: white;
  font-size: 11px;
  text-transform: uppercase;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-left: 14px;
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  background: var(--soft-line);
}

.mega-grid > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 81px;
  padding: 14px;
  background: var(--white);
}

.mega-grid > a:hover,
.mega-grid > a:focus-visible {
  background: color-mix(in srgb, var(--accent) 13%, var(--white));
}

.mega-grid i {
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: color-mix(in srgb, var(--accent) 28%, white);
  font-style: normal;
  place-items: center;
}

.mega-grid span {
  display: grid;
  gap: 3px;
}

.mega-grid strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.mega-grid small {
  max-width: 190px;
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mega-grid b {
  font-weight: 500;
}

.language-menu {
  position: relative;
}

.language-button {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.language-popover {
  position: absolute;
  z-index: 85;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: 160px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.language-popover a {
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 12px;
}

.language-popover a:hover,
.language-popover a:focus-visible,
.language-popover a[aria-current="page"] {
  background: var(--paper-deep);
}

.language-popover a[aria-current="page"] {
  font-weight: 850;
}

.mobile-nav details {
  border-bottom: 1px solid var(--soft-line);
}

.mobile-nav summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 3px;
  font-family: var(--serif);
  font-size: 22px;
  cursor: pointer;
  list-style: none;
}

.mobile-nav details div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 12px;
}

.mobile-nav details div a {
  padding: 10px 3px;
  border: 0;
  font-family: var(--sans);
  font-size: 12px;
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 18px;
}

.search-suggestions p {
  width: 100%;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.search-suggestions a {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
}

body.overlay-is-open,
body.menu-is-open {
  overflow: hidden;
}

[data-product-topic] {
  display: contents;
}

.filter-row button.is-active {
  color: white;
  background: var(--ink);
}

.product-footer {
  gap: 10px;
}

.product-footer .product-visit {
  padding: 7px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
}

.product-footer .product-visit:hover {
  background: var(--lime);
}

.comparison-table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  min-width: 170px;
  padding: 18px;
  border-right: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  color: white;
  background: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.comparison-table thead th:first-child {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  color: var(--muted);
  background: var(--paper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.compare-selects .button {
  grid-column: 1 / -1;
  min-height: 44px;
}

.vx-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
}

.newsletter-form {
  position: relative;
}

.newsletter-status {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  left: 0;
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
}

.newsletter-form.is-loading {
  opacity: 0.65;
}

.footer-links {
  grid-template-columns: repeat(4, 1fr);
}

.footer-languages {
  display: flex;
  gap: 7px;
  margin-top: 28px;
}

.footer-languages a {
  display: grid;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: white;
  font-size: 9px;
  place-items: center;
}

.footer-languages a[aria-current="page"] {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

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

.cookie-note {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(560px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
}

.cookie-note p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.cookie-note button {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  color: white;
  background: var(--ink);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.breadcrumbs {
  padding-top: 24px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  list-style: none;
}

.breadcrumbs li {
  display: flex;
  gap: 7px;
}

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

.breadcrumbs i {
  font-style: normal;
  opacity: 0.45;
}

.page-shell,
.article-shell {
  padding-block: 75px 120px;
}

.page-hero,
.article-header {
  max-width: 980px;
  padding-bottom: 60px;
}

.page-hero h1,
.article-header h1,
.archive-hero h1,
.product-review-hero h1,
.not-found h1,
.language-landing h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.page-hero > p:last-child,
.archive-hero .shell > p:last-child,
.topic-hero-grid > div > p:last-child,
.language-landing > p:not(.eyebrow) {
  max-width: 780px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.entry-content {
  max-width: 780px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.72;
}

.entry-content-wide {
  max-width: 1100px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.entry-content h2 {
  margin: 2.3em 0 0.7em;
  font-size: clamp(31px, 4vw, 48px);
}

.entry-content h3 {
  margin: 1.8em 0 0.55em;
  font-size: 25px;
}

.entry-content p,
.entry-content li {
  color: #26394b;
}

.entry-content a {
  border-bottom: 2px solid var(--lime-deep);
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.2em;
}

.entry-content li {
  padding-left: 0.35em;
  margin-block: 0.5em;
}

.entry-content blockquote {
  padding: 28px;
  margin: 2em 0;
  border-left: 6px solid var(--lime);
  background: var(--white);
  font-size: 24px;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 14px;
}

.entry-content th,
.entry-content td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
}

.vx-answer-box,
.vx-demo-notice {
  padding: 22px 24px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: color-mix(in srgb, var(--lime) 23%, var(--white));
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--sans);
  font-size: 15px;
}

.vx-demo-notice {
  background: color-mix(in srgb, var(--coral) 14%, var(--white));
}

.archive-hero {
  padding-block: 100px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 20%, rgba(215, 242, 10, 0.6) 0 115px, transparent 116px),
    var(--paper-deep);
}

.archive-hero .shell {
  position: relative;
}

.archive-hero .shell > p:last-child {
  max-width: 690px;
}

.archive-hero-tools {
  background:
    linear-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px) 0 0 / 100% 42px,
    var(--paper-deep);
}

.archive-content {
  padding-block: 65px 120px;
}

.topic-pills {
  display: flex;
  gap: 7px;
  margin-bottom: 50px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.topic-pills a {
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 11px;
  font-weight: 750;
}

.topic-pills a:hover,
.topic-pills a.is-active {
  color: white;
  background: var(--ink);
}

.topic-hero {
  background:
    radial-gradient(circle at 86% 50%, var(--topic-accent) 0 125px, transparent 126px),
    var(--paper-deep);
}

.topic-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.topic-hero-icon {
  display: grid;
  width: 210px;
  height: 210px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: color-mix(in srgb, var(--topic-accent) 65%, white);
  font-family: var(--serif);
  font-size: 78px;
  box-shadow: 9px 9px 0 var(--ink);
  place-items: center;
}

.topic-guides {
  padding-top: 100px;
}

.editorial-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.editorial-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(215, 242, 10, 0.12), transparent 45%),
    var(--white);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.editorial-card:hover {
  box-shadow: 0 18px 40px rgba(7, 26, 46, 0.09);
  transform: translateY(-5px);
}

.editorial-card > p:first-child {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.editorial-card h2 {
  margin: 30px 0 14px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.editorial-card h2 + p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.editorial-card > a {
  width: fit-content;
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.comparison-card {
  min-height: 360px;
  background:
    radial-gradient(circle at 90% 10%, rgba(79, 140, 255, 0.25) 0 65px, transparent 66px),
    var(--white);
}

.nav-links,
.pagination .nav-links {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 50px;
}

.page-numbers {
  display: grid;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  place-items: center;
}

.page-numbers.current {
  color: white;
  background: var(--ink);
}

.article-header {
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
}

.article-deck {
  max-width: 790px;
  margin: 27px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-top: 30px;
}

.article-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 780px);
  gap: clamp(45px, 8vw, 120px);
  justify-content: center;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 125px;
  display: grid;
  gap: 18px;
}

.article-toc,
.disclosure-mini {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.article-toc > strong,
.disclosure-mini > strong {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 15px 0 0;
  list-style: none;
}

.article-toc a {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.article-toc a:hover {
  color: var(--ink);
}

.disclosure-mini {
  background: color-mix(in srgb, var(--coral) 10%, var(--white));
}

.disclosure-mini p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.article-footer {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  padding: 28px;
  margin: 85px auto 0;
  border: 1px solid var(--ink);
  border-radius: 17px;
  background: var(--lime);
  box-shadow: 7px 7px 0 var(--ink);
}

.article-footer p {
  margin: 5px 0 0;
  color: rgba(7, 26, 46, 0.65);
}

.related-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.product-review-hero {
  padding-block: 85px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 15%, color-mix(in srgb, var(--accent) 80%, white) 0 130px, transparent 131px),
    var(--paper-deep);
}

.product-review-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 80px;
  align-items: center;
}

.product-review-hero h1 em {
  color: var(--muted);
  font-weight: 500;
}

.product-review-hero .article-deck {
  margin-inline: 0;
}

.product-review-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 30px;
}

.affiliate-line {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.review-score-panel {
  padding: 30px;
  border: 1px solid var(--ink);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 9px 9px 0 var(--ink);
}

.review-score-panel > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-score-panel > strong {
  display: block;
  margin: 17px 0;
  font-family: var(--serif);
  font-size: 78px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.85;
}

.review-score-panel > strong small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 17px;
}

.review-score-track {
  height: 8px;
  border-radius: 999px;
  background: var(--paper-deep);
}

.review-score-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.review-score-panel dl {
  margin: 27px 0 0;
}

.review-score-panel dl div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--soft-line);
}

.review-score-panel dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-score-panel dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.verdict-strip {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  align-items: center;
  padding-block: 35px;
  border-bottom: 1px solid var(--line);
}

.verdict-strip span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verdict-strip strong {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.2;
}

.comparison-article .entry-content {
  margin-inline: auto;
}

.agent-public-section {
  border-top: 1px solid var(--line);
  color: white;
  background: var(--ink);
}

.agent-public-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.agent-public-grid h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.agent-public-grid > div:first-child > p:not(.eyebrow) {
  max-width: 640px;
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.65;
}

.promotion-waves {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.promotion-waves div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 130px;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.promotion-waves span {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  font-weight: 900;
  place-items: center;
}

.promotion-waves strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.promotion-waves i {
  grid-column: 1 / -1;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), transparent);
}

.language-landing {
  padding: 75px;
  border: 1px solid var(--ink);
  border-radius: 25px;
  background:
    radial-gradient(circle at 94% 10%, var(--lime) 0 100px, transparent 101px),
    var(--white);
  box-shadow: 9px 9px 0 var(--ink);
}

.language-landing .button {
  margin-top: 30px;
}

.empty-search {
  max-width: 720px;
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  text-align: center;
}

.empty-search strong {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
}

.empty-search p {
  color: var(--muted);
}

.not-found {
  display: grid;
  min-height: 720px;
  place-items: center;
}

.not-found-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.not-found-grid > div > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.not-found-grid > strong {
  color: var(--lime);
  font-family: var(--serif);
  font-size: clamp(150px, 20vw, 330px);
  font-weight: 500;
  letter-spacing: -0.12em;
  line-height: 0.7;
  text-shadow: 4px 4px 0 var(--ink);
}

@media (max-width: 1180px) {
  .mega-menu {
    width: min(980px, calc(100vw - 32px));
  }

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

  .editorial-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .language-menu {
    margin-left: auto;
  }

  .mega-menu {
    display: none;
  }

  .article-layout,
  .product-review-grid,
  .agent-public-grid {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .article-toc {
    display: none;
  }

  .product-review-grid {
    gap: 45px;
  }

  .review-score-panel {
    max-width: 600px;
  }

  .topic-hero-icon {
    width: 160px;
    height: 160px;
  }

  .not-found-grid {
    grid-template-columns: 1fr;
  }

  .not-found-grid > strong {
    grid-row: 1;
  }
}

@media (max-width: 650px) {
  .language-button {
    display: none;
  }

  .mobile-nav {
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }

  .page-shell,
  .article-shell {
    padding-block: 50px 80px;
  }

  .page-hero h1,
  .article-header h1,
  .archive-hero h1,
  .product-review-hero h1,
  .not-found h1,
  .language-landing h1 {
    font-size: clamp(45px, 14vw, 68px);
  }

  .archive-hero {
    padding-block: 70px;
  }

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

  .editorial-card-grid,
  .promotion-waves {
    grid-template-columns: 1fr;
  }

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

  .article-footer,
  .product-review-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .topic-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .topic-hero-icon {
    width: 120px;
    height: 120px;
    font-size: 46px;
  }

  .verdict-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .language-landing {
    padding: 35px 24px;
  }

  .cookie-note {
    grid-template-columns: 1fr;
  }
}
