:root {
  --color-navy: #08162e;
  --color-navy-2: #0d2142;
  --color-navy-3: #15345f;
  --color-ink: #111c31;
  --color-text: #42506a;
  --color-muted: #6a7690;
  --color-primary: #b9f227;
  --color-accent: #20d9c2;
  --color-coral: #ff6b6b;
  --color-blue: #62a8ff;
  --color-surface: #f4f7f3;
  --color-surface-2: #edf2ee;
  --color-border: #dce4df;
  --container: 1220px;
  --narrow: 790px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 24px rgba(7, 24, 51, .07);
  --shadow-md: 0 18px 48px rgba(7, 24, 51, .12);
  --shadow-lg: 0 28px 80px rgba(3, 16, 37, .2);
}

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

html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-text);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}
body.menu-is-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
figure { margin: 0; }
button,
input,
select,
textarea { font: inherit; }
a { color: var(--color-navy-3); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: #166f66; }
h1,
h2,
h3,
h4 {
  margin: 0 0 .75rem;
  color: var(--color-ink);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5.4rem); }
h2 { font-size: clamp(1.85rem, 4vw, 3.15rem); }
h3 { font-size: clamp(1.08rem, 2vw, 1.35rem); letter-spacing: -.02em; }
p { margin: 0 0 1rem; }
ul,
ol { padding-inline-start: 1.3rem; }
::selection { color: var(--color-navy); background: var(--color-primary); }

.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.narrow-container { width: min(calc(100% - 2.5rem), var(--narrow)); margin-inline: auto; }
.site-main { min-height: 55vh; }
.section-wrap { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; vertical-align: -.2em; }
[hidden] { display: none !important; }
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: .75rem 1rem;
  clip: auto;
  color: var(--color-navy);
  background: var(--color-primary);
  border-radius: 8px;
  font-weight: 800;
}
:focus-visible { outline: 3px solid var(--color-coral); outline-offset: 3px; }

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: #fff;
  background: rgba(8, 22, 46, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 2rem;
}
.site-branding { flex: 0 0 auto; }
.custom-logo-link { display: flex; align-items: center; }
.custom-logo { width: auto; max-height: 54px; }
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  text-decoration: none;
}
.brand-link:hover { color: #fff; }
.brand-link > span:last-child { display: grid; }
.brand-link strong { font-size: 1.08rem; line-height: 1.15; letter-spacing: -.02em; }
.brand-link small { color: #9baac0; font-size: .68rem; font-weight: 650; letter-spacing: .05em; }
.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--color-navy);
  background: var(--color-primary);
  border-radius: 12px 12px 4px 12px;
  box-shadow: 5px 5px 0 rgba(32, 217, 194, .35);
}
.brand-mark .icon { width: 24px; height: 24px; }
.primary-navigation { margin-inline-start: auto; }
.primary-menu {
  display: flex;
  align-items: center;
  gap: .2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.primary-menu li { position: relative; }
.primary-menu a {
  display: block;
  padding: .7rem .72rem;
  color: #d8e2f0;
  border-radius: 9px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a { color: var(--color-primary); background: rgba(255, 255, 255, .07); }
.primary-menu .sub-menu {
  position: absolute;
  z-index: 1010;
  top: calc(100% + .5rem);
  left: 0;
  display: none;
  width: 230px;
  padding: .5rem;
  margin: 0;
  list-style: none;
  background: var(--color-navy-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu { display: block; }
.header-search-toggle,
.menu-toggle {
  display: grid;
  width: 43px;
  height: 43px;
  padding: 0;
  place-items: center;
  color: var(--color-navy);
  background: var(--color-primary);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}
.header-search-toggle:hover,
.menu-toggle:hover { background: var(--color-accent); }
.menu-toggle { display: none; }
.menu-close-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-open-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-close-icon { display: inline-flex; }
.header-search-panel { padding: 1rem 0 1.25rem; background: var(--color-navy-2); border-top: 1px solid rgba(255,255,255,.08); }

/* Reusable social profiles */
.social-links {
  display: flex;
  align-items: center;
}
.social-links__list {
  display: flex;
  align-items: center;
  gap: .38rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.social-links__list li { margin: 0; }
.social-links__link {
  --social-hover-bg: linear-gradient(135deg, var(--color-navy-3), var(--color-accent));
  position: relative;
  isolation: isolate;
  display: grid;
  width: 36px;
  height: 36px;
  overflow: hidden;
  place-items: center;
  color: #dce7f5;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 11px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, .12);
  text-decoration: none;
  transition: transform .22s cubic-bezier(.2, .8, .2, 1), color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.social-links__link::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--social-hover-bg);
  content: "";
  opacity: 0;
  transform: scale(.72) rotate(-8deg);
  transition: opacity .22s ease, transform .22s cubic-bezier(.2, .8, .2, 1);
}
.social-links__link:is(:hover, :focus-visible) {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
  transform: translateY(-3px) rotate(-2deg);
}
.social-links__link:is(:hover, :focus-visible)::before { opacity: 1; transform: scale(1) rotate(0); }
.social-links__link:is(:hover, :focus-visible) .social-icon { transform: scale(1.08); }
.social-links__link--facebook { --social-hover-bg: linear-gradient(135deg, #1877f2, #0b55bd); }
.social-links__link--instagram { --social-hover-bg: linear-gradient(135deg, #7a39b6, #d62976 48%, #f58529); }
.social-links__link--tiktok { --social-hover-bg: linear-gradient(135deg, #25f4ee, #161823 48%, #fe2c55); }
.social-links__link--youtube { --social-hover-bg: linear-gradient(135deg, #ff0033, #bd001f); }
.social-icon {
  position: relative;
  width: 18px;
  height: 18px;
  transition: transform .22s cubic-bezier(.2, .8, .2, 1);
}
.social-icon-dot { fill: currentColor; stroke: none; }
.social-links--header { flex: 0 0 auto; }
.social-links--header .social-links__link { width: 32px; height: 32px; border-radius: 9px; }
.social-links--header .social-icon { width: 16px; height: 16px; }

/* Search */
.tool-search { position: relative; width: 100%; }
.search-input-wrap {
  position: relative;
  display: flex;
  min-height: 62px;
  align-items: center;
  padding: .38rem;
  background: #fff;
  border: 1px solid #cbd6d1;
  border-radius: 14px 14px 5px 14px;
  box-shadow: var(--shadow-sm);
}
.search-input-wrap > .icon { margin-inline-start: .8rem; color: var(--color-muted); }
.search-field {
  min-width: 0;
  flex: 1;
  padding: .75rem;
  color: var(--color-ink);
  background: transparent;
  border: 0;
  outline: 0;
}
.search-field::placeholder { color: #8894a7; }
.search-submit,
.button-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1.05rem;
  color: var(--color-navy);
  background: var(--color-primary);
  border: 0;
  border-radius: 9px 9px 3px 9px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}
.search-submit:hover,
.button-link:hover { color: var(--color-navy); background: var(--color-accent); transform: translateY(-1px); }
.search-suggestions {
  position: absolute;
  z-index: 1030;
  top: calc(100% + .5rem);
  left: 0;
  right: 0;
  max-height: 380px;
  overflow-y: auto;
  padding: .45rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}
.search-suggestions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .72rem .8rem;
  color: var(--color-ink);
  border-radius: 9px;
  text-decoration: none;
}
.search-suggestions a:hover,
.search-suggestions a[aria-selected="true"] { background: #eff9dd; }
.search-suggestions a > span:first-child { display: grid; }
.search-suggestions small { color: var(--color-muted); }
.suggestion-empty { padding: .8rem; margin: 0; color: var(--color-muted); }

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  color: #dfe9f6;
  background:
    radial-gradient(circle at 16% 8%, rgba(32, 217, 194, .16), transparent 32%),
    radial-gradient(circle at 92% 90%, rgba(185, 242, 39, .11), transparent 32%),
    var(--color-navy);
}
.hero-grid-pattern,
.archive-grid-art {
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
.hero-grid {
  position: relative;
  display: grid;
  min-height: 710px;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: 6rem 7rem;
}
.hero-copy h1 { max-width: 760px; color: #fff; }
.hero-copy h1::after {
  display: inline-block;
  width: .18em;
  height: .18em;
  margin-inline-start: .08em;
  content: "";
  background: var(--color-coral);
  border-radius: 50%;
}
.hero-lead { max-width: 700px; margin-bottom: 1.6rem; color: #b9c6d7; font-size: clamp(1.05rem, 2vw, 1.24rem); }
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  padding: .45rem .7rem;
  margin-bottom: 1.15rem;
  color: var(--color-primary);
  background: rgba(185, 242, 39, .09);
  border: 1px solid rgba(185, 242, 39, .3);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-copy .tool-search { max-width: 720px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .65rem 1.2rem; margin-top: 1rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .35rem; color: #aebdd0; font-size: .82rem; font-weight: 700; }
.hero-trust .icon { color: var(--color-accent); }
.hero-console { position: relative; min-height: 490px; }
.console-window {
  position: absolute;
  inset: 30px 8px 20px 8px;
  overflow: hidden;
  background: #f9fbf9;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px 24px 8px 24px;
  box-shadow: 20px 24px 0 rgba(32, 217, 194, .12), var(--shadow-lg);
  transform: rotate(1.2deg);
}
.console-toolbar {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 6px;
  padding: 0 1rem;
  color: #718096;
  background: #e9efeb;
  border-bottom: 1px solid #d7e0da;
}
.console-toolbar > span { width: 8px; height: 8px; background: #a8b5ad; border-radius: 50%; }
.console-toolbar > span:nth-child(1) { background: var(--color-coral); }
.console-toolbar > span:nth-child(2) { background: var(--color-primary); }
.console-toolbar > span:nth-child(3) { background: var(--color-accent); }
.console-toolbar em { margin-inline-start: auto; font-size: .7rem; font-style: normal; font-weight: 700; }
.console-body { padding: 1.5rem; color: var(--color-text); }
.console-title { display: flex; justify-content: space-between; color: var(--color-ink); font-weight: 850; }
.console-title small { color: var(--color-muted); font-weight: 650; }
.console-overview { display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 1.25rem; margin: 1.2rem 0; }
.score-ring {
  display: grid;
  width: 116px;
  height: 116px;
  place-content: center;
  text-align: center;
  background: radial-gradient(circle closest-side, #fff 79%, transparent 80% 100%), conic-gradient(var(--color-accent) 92%, #dce5df 0);
  border-radius: 50%;
}
.score-ring strong { color: var(--color-navy); font-size: 2rem; line-height: 1; }
.score-ring small { color: var(--color-muted); font-size: .7rem; }
.score-bars { display: grid; gap: .65rem; }
.score-bars i { position: relative; display: block; height: 9px; background: #e4ebe6; border-radius: 99px; }
.score-bars i::after { position: absolute; inset: 0 auto 0 0; width: var(--bar); content: ""; background: var(--color-primary); border-radius: inherit; }
.score-bars i:nth-child(2)::after { background: var(--color-accent); }
.score-bars i:nth-child(3)::after { background: var(--color-coral); }
.score-bars span { position: absolute; top: -17px; color: var(--color-muted); font-size: .62rem; font-style: normal; }
.console-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: .7rem;
  padding: .72rem;
  margin-top: .6rem;
  background: #fff;
  border: 1px solid #dce4df;
  border-radius: 10px;
  font-size: .77rem;
}
.console-row b { display: grid; width: 24px; height: 24px; place-items: center; color: var(--color-navy); background: var(--color-primary); border-radius: 7px; }
.console-row.is-alert b { background: #ffd4d4; }
.console-row.is-info b { background: #c7f5ef; }
.console-row strong { color: var(--color-ink); }
.signal-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1rem;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid #dae3de;
  border-radius: 13px 13px 4px 13px;
  box-shadow: var(--shadow-md);
}
.signal-card small,
.signal-card strong { display: block; line-height: 1.25; }
.signal-card small { color: var(--color-muted); font-size: .68rem; }
.signal-card-one { top: 0; right: -12px; }
.signal-card-two { right: -18px; bottom: 0; }
.signal-card-two > .icon { width: 30px; height: 30px; color: #148477; }
.signal-dot { width: 11px; height: 11px; background: var(--color-primary); border-radius: 50%; box-shadow: 0 0 0 6px rgba(185,242,39,.2); }
.signal-strip { position: relative; z-index: 4; margin-top: -1px; color: #fff; background: var(--color-navy-2); border-top: 1px solid rgba(255,255,255,.08); }
.signal-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal-strip-grid > div { display: flex; align-items: center; gap: .8rem; padding: 1.5rem 1.1rem; border-inline-end: 1px solid rgba(255,255,255,.08); }
.signal-strip-grid > div:first-child { border-inline-start: 1px solid rgba(255,255,255,.08); }
.signal-strip-grid .icon { width: 25px; height: 25px; color: var(--color-primary); }
.signal-strip-grid span { display: grid; }
.signal-strip-grid strong { font-size: .87rem; }
.signal-strip-grid small { color: #9fb0c5; font-size: .72rem; }

/* Sections and cards */
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.section-heading > div { max-width: 760px; }
.section-heading p:not(.section-kicker) { max-width: 680px; color: var(--color-muted); }
.section-kicker,
.card-kicker {
  margin: 0 0 .55rem;
  color: #137c70;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.centered-heading { display: block; max-width: 760px; margin-inline: auto; text-align: center; }
.compact-heading { margin-bottom: 1.25rem; }
.compact-heading h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--color-navy);
  font-weight: 850;
  text-decoration: none;
}
.text-link { white-space: nowrap; }
.text-link .icon,
.card-link .icon { width: 1.05rem; transition: transform .16s ease; }
.text-link:hover .icon,
.card-link:hover .icon { transform: translateX(3px); }
.featured-section { background: var(--color-surface); }
.tool-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.tool-card {
  position: relative;
  min-width: 0;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px 18px 5px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tool-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 5px;
  content: "";
  background: var(--color-primary);
  border-radius: 5px 0 4px;
}
.tool-card:hover { z-index: 2; border-color: #b7c7be; box-shadow: var(--shadow-md); transform: translateY(-5px); }
.card-stretched-link { position: absolute; z-index: 1; inset: 0; }
.tool-card-top { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-bottom: 1rem; }
.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--color-navy);
  background: #eaf9d2;
  border-radius: 11px 11px 3px 11px;
}
.tool-card .card-kicker { margin: 0; color: var(--color-muted); font-size: .65rem; }
.tool-card h3 { margin-bottom: .55rem; }
.tool-card p { color: var(--color-muted); font-size: .9rem; }
.tool-card-badges { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: .38rem; margin: .8rem 0 .35rem; pointer-events: none; }
.tool-badge { display: inline-flex; align-items: center; min-height: 25px; padding: .2rem .5rem; color: #34445b; background: #edf2ee; border: 1px solid #d8e1db; border-radius: 999px; font-size: .63rem; font-weight: 850; line-height: 1.2; }
.level-badge.is-beginner { color: #155e4f; background: #e1f8ed; border-color: #a9e4ca; }
.level-badge.is-intermediate { color: #745106; background: #fff5d5; border-color: #edd38d; }
.level-badge.is-advanced { color: #7c2f44; background: #ffebef; border-color: #f3bdc9; }
.opportunity-badge { color: #27476d; background: #eaf3ff; border-color: #bed5ef; }
.opportunity-badge.is-competitive { color: #6d335f; background: #faedf8; border-color: #e8c4e2; }
.tool-card .card-link { position: relative; z-index: 2; margin-top: .4rem; font-size: .82rem; pointer-events: none; }
.compact-card { padding: 1rem; box-shadow: none; }
.compact-card .tool-card-top { margin-bottom: .65rem; }
.compact-card .card-icon { width: 35px; height: 35px; }
.compact-card p { margin-bottom: .7rem; font-size: .82rem; }
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.category-card {
	position: relative;
	min-height: 280px;
  padding: 1.5rem;
  overflow: hidden;
  background: var(--color-navy);
  border: 1px solid var(--color-navy-3);
  border-radius: 20px 20px 5px 20px;
}
.category-card::before {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  content: "";
  background: radial-gradient(circle, color-mix(in srgb, var(--category-color) 28%, transparent), transparent 66%);
  border: 1px solid color-mix(in srgb, var(--category-color) 35%, transparent);
  border-radius: 50%;
}
.category-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.category-icon { display: grid; width: 52px; height: 52px; place-items: center; color: var(--color-navy); background: var(--category-color); border-radius: 14px 14px 4px 14px; }
.category-icon .icon { width: 28px; height: 28px; }
.category-number { color: rgba(255,255,255,.22); font-size: 2rem; font-weight: 900; letter-spacing: -.06em; }
.category-card h3 { color: #fff; }
.category-card p { max-width: 430px; color: #aebdd0; font-size: .9rem; }
.category-card > span:last-child { position: absolute; z-index: 2; bottom: 1.35rem; display: inline-flex; align-items: center; gap: .35rem; color: var(--category-color); font-size: .8rem; font-weight: 850; pointer-events: none; }
.category-card:hover { background: var(--color-navy-2); }
.category-card.is-unavailable { background: #10213b; border-style: dashed; }
.ad-placement {
  width: min(calc(100% - 2.5rem), var(--container));
  min-height: 108px;
  margin: 1.5rem auto;
  text-align: center;
}
.ad-label { margin: 0 0 .3rem; color: var(--color-muted); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.ad-placeholder {
  display: grid;
  min-height: 88px;
  place-items: center;
  color: #84908a;
  background: repeating-linear-gradient(135deg, #f6f8f6, #f6f8f6 10px, #eef2ef 10px, #eef2ef 20px);
  border: 1px dashed #bdc8c1;
  border-radius: 12px;
  font-size: .75rem;
}
.ad-placement .widget { margin: 0; }
.ad-header { margin-block: 1rem; }
.ad-content-inline { width: 100%; margin-block: 2rem; }
.discovery-section { background: #fff; }
.discovery-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 5rem); }
.popular-panel { padding: 2rem; background: var(--color-navy); border-radius: 24px 24px 6px 24px; }
.popular-panel h2 { color: #fff; }
.popular-panel .section-kicker { color: var(--color-primary); }
.popular-list { display: grid; }
.popular-row {
  display: grid;
  grid-template-columns: 42px 1fr 22px;
  align-items: center;
  gap: .8rem;
  padding: .85rem .2rem;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
}
.popular-row:hover { color: var(--color-primary); }
.popular-rank { color: var(--color-accent); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .75rem; font-weight: 800; }
.popular-row > span:nth-child(2) { display: grid; }
.popular-row small { color: #8fa2bc; font-size: .72rem; }
.popular-row > .icon { width: 17px; }
.recent-stack { display: grid; gap: .75rem; }
.recent-stack .tool-card { min-height: 0; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.post-card { overflow: hidden; background: #fff; border: 1px solid var(--color-border); border-radius: 18px 18px 5px 18px; box-shadow: var(--shadow-sm); }
.post-card-image { display: grid; min-height: 210px; place-items: center; overflow: hidden; color: var(--color-navy); background: linear-gradient(135deg, #dff7d8, #c5f5ef); text-decoration: none; }
.post-card-image img { width: 100%; height: 100%; min-height: 210px; object-fit: cover; transition: transform .25s ease; }
.post-card:hover .post-card-image img { transform: scale(1.035); }
.post-card-image > span { display: grid; width: 74px; height: 74px; place-items: center; background: rgba(255,255,255,.65); border-radius: 22px 22px 7px 22px; }
.post-card-image .icon { width: 37px; height: 37px; }
.post-card-body { padding: 1.25rem; }
.post-card-body p { color: var(--color-muted); font-size: .9rem; }
.post-card h3 a { color: var(--color-ink); text-decoration: none; }
.workflow-section { padding: clamp(4rem, 8vw, 7rem) 0; color: #c6d2e2; background: var(--color-navy); }
.workflow-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.workflow-intro h2 { color: #fff; }
.workflow-intro .section-kicker { color: var(--color-primary); }
.workflow-steps { padding: 0; margin: 0; list-style: none; }
.workflow-steps li { display: grid; grid-template-columns: 64px 1fr; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.12); }
.workflow-steps li > span { color: var(--color-accent); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .8rem; font-weight: 800; }
.workflow-steps h3 { margin-bottom: .3rem; color: #fff; }
.workflow-steps p { margin: 0; color: #9eacc0; font-size: .9rem; }
.faq-list { border-top: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item summary { position: relative; padding: 1.25rem 3rem 1.25rem 0; color: var(--color-ink); font-weight: 800; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; top: 1rem; right: 0; display: grid; width: 30px; height: 30px; place-items: center; content: "+"; color: var(--color-navy); background: var(--color-primary); border-radius: 8px; }
.faq-item[open] summary::after { content: "−"; background: var(--color-accent); }
.faq-item p { padding: 0 3rem 1.25rem 0; color: var(--color-muted); }
.final-cta { color: #fff; background: var(--color-coral); }
.final-cta-inner { display: flex; min-height: 230px; align-items: center; justify-content: space-between; gap: 2rem; }
.final-cta h2 { max-width: 820px; color: var(--color-navy); }
.final-cta .section-kicker { color: var(--color-navy); }
.light-button { background: #fff; box-shadow: 7px 7px 0 var(--color-navy); white-space: nowrap; }

/* Breadcrumbs, archives, search */
.breadcrumbs { padding: 1rem 0; font-size: .76rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .35rem; padding: 0; margin: 0; list-style: none; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: .35rem; color: var(--color-muted); }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: #a4afa8; }
.breadcrumbs a { color: var(--color-text); text-decoration: none; }
.archive-hero { position: relative; overflow: hidden; color: #bac8d9; background: var(--color-navy); }
.archive-hero-inner { position: relative; display: flex; min-height: 310px; align-items: center; justify-content: space-between; gap: 3rem; padding-block: 3.2rem; }
.archive-hero-inner > div:first-child { max-width: 820px; }
.archive-hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 4.4rem); }
.archive-hero .section-kicker { color: var(--color-primary); }
.archive-stat,
.category-hero-icon {
  display: grid;
  min-width: 180px;
  min-height: 160px;
  place-content: center;
  padding: 1.5rem;
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px 22px 6px 22px;
}
.archive-stat strong,
.category-hero-icon strong { color: var(--color-primary); font-size: 3rem; line-height: 1; }
.archive-stat span,
.category-hero-icon span { margin-top: .45rem; color: #9bacc2; font-size: .76rem; }
.category-hero-icon > .icon { width: 35px; height: 35px; margin: 0 auto .7rem; color: var(--category-color); }
.category-search-block { max-width: 840px; padding: 1.4rem; margin: 0 auto 2rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 18px 18px 5px 18px; }
.category-search-block h2 { font-size: 1.25rem; }
.directory-filter-shell { padding: clamp(1.25rem, 3vw, 2rem); margin-bottom: 1.5rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 22px 22px 6px 22px; box-shadow: var(--shadow-sm); }
.directory-filter-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 1.35rem; }
.directory-filter-heading h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.15rem); }
.directory-filter-heading > p { max-width: 510px; margin: 0; color: var(--color-muted); font-size: .86rem; }
.directory-filter-form { display: grid; grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(155px, 1fr)); gap: .8rem; align-items: end; }
.directory-filter-form label { display: grid; gap: .38rem; min-width: 0; color: var(--color-ink); font-size: .72rem; font-weight: 850; }
.directory-filter-form input,
.directory-filter-form select { width: 100%; min-height: 48px; padding: .65rem .75rem; color: var(--color-ink); background: #fff; border: 1px solid #c9d5cd; border-radius: 10px 10px 3px 10px; outline: 0; }
.directory-filter-form input:focus,
.directory-filter-form select:focus { border-color: #168d80; box-shadow: 0 0 0 3px rgba(32,217,194,.18); }
.directory-filter-actions { display: flex; grid-column: 1/-1; align-items: center; gap: .8rem; padding-top: .15rem; }
.directory-filter-submit { min-height: 43px; padding: .6rem .9rem; color: var(--color-navy); background: var(--color-primary); border: 0; border-radius: 9px 9px 3px 9px; font-weight: 850; cursor: pointer; }
.directory-filter-submit:hover { background: var(--color-accent); }
.directory-filter-reset { color: var(--color-text); font-size: .76rem; font-weight: 800; }
.directory-filter-disclaimer,
.directory-filter-noscript { margin: .9rem 0 0; color: var(--color-muted); font-size: .74rem; }
.directory-filter-noscript { padding: .7rem .8rem; background: #fff7df; border-left: 3px solid #e1aa20; }
.category-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; margin-bottom: 2rem; }
.category-pills a,
.category-pills > span { display: inline-flex; align-items: center; gap: .35rem; padding: .5rem .8rem; color: var(--color-navy); background: #edf4ee; border: 1px solid #d7e2da; border-radius: 999px; font-size: .75rem; font-weight: 800; text-decoration: none; }
.category-pills a:hover { background: var(--color-primary); border-color: var(--color-primary); }
.category-pills > span { color: #79857e; background: #f6f8f6; border-style: dashed; }
.category-pills > span small { padding: .08rem .3rem; color: #536159; background: #e6ebe7; border-radius: 999px; font-size: .52rem; letter-spacing: .05em; text-transform: uppercase; }
.directory-result-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.directory-result-bar p,
.directory-result-bar span { margin: 0; }
.directory-result-bar p { color: var(--color-ink); font-size: .9rem; font-weight: 850; }
.directory-result-bar > span { color: var(--color-muted); font-size: .72rem; }
.directory-filter-empty { max-width: 680px; padding: 3rem 1.5rem; margin: 1.5rem auto 0; text-align: center; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 20px 20px 6px 20px; }
.directory-filter-empty > span { display: grid; width: 58px; height: 58px; margin: 0 auto 1rem; place-items: center; color: var(--color-navy); background: var(--color-primary); border-radius: 16px 16px 5px 16px; }
.directory-filter-empty h2 { font-size: 1.45rem; }
.directory-filter-empty p { color: var(--color-muted); }
.directory-filter-empty a { font-weight: 850; }
.archive-tool-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .45rem; margin-top: 2rem; }
.page-numbers { display: grid; min-width: 42px; min-height: 42px; padding: .4rem; place-items: center; color: var(--color-ink); background: #fff; border: 1px solid var(--color-border); border-radius: 9px; text-decoration: none; }
.page-numbers.current,
.page-numbers:hover { color: var(--color-navy); background: var(--color-primary); border-color: var(--color-primary); }
.search-page .archive-hero > .container { position: relative; padding-block: 3rem; }
.search-page .archive-hero h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
.search-page .category-search-block { margin: 1.5rem 0 0; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.search-result-list { display: grid; gap: 1rem; }
.search-content-card { padding: 1.25rem; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); }
.search-content-card h2 { font-size: 1.35rem; }
.search-content-card h2 a { color: var(--color-ink); text-decoration: none; }
.empty-state { max-width: 720px; padding: 3rem 1.5rem; margin: 2rem auto; text-align: center; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); }
.empty-icon { display: grid; width: 66px; height: 66px; margin: 0 auto 1rem; place-items: center; color: var(--color-navy); background: var(--color-primary); border-radius: 18px 18px 5px 18px; }
.empty-icon .icon { width: 32px; height: 32px; }
.not-found-page { display: grid; min-height: 680px; place-items: center; background: radial-gradient(circle at 50% 10%, #ecf7d7, #fff 55%); }
.not-found-content { padding-block: 5rem; text-align: center; }
.not-found-code { margin: 0; color: var(--color-primary); font-size: clamp(6rem, 20vw, 13rem); font-weight: 950; line-height: .8; -webkit-text-stroke: 3px var(--color-navy); text-shadow: 10px 10px 0 var(--color-accent); }
.not-found-content h1 { margin-top: 2rem; }
.not-found-content .tool-search { margin: 1.5rem 0; }

/* Tool pages */
.tool-page-header { position: relative; overflow: hidden; color: #b9c7d8; background: linear-gradient(115deg, var(--color-navy), #102b51); }
.tool-page-header::after { position: absolute; right: -8%; bottom: -180px; width: 420px; height: 420px; content: ""; border: 1px solid rgba(185,242,39,.25); border-radius: 50%; box-shadow: 0 0 0 55px rgba(32,217,194,.04), 0 0 0 110px rgba(255,255,255,.025); }
.tool-header-grid { position: relative; z-index: 1; display: grid; min-height: 360px; grid-template-columns: 1fr 230px; align-items: center; gap: 3rem; padding-block: 3.5rem; }
.tool-page-header h1 { max-width: 860px; color: #fff; font-size: clamp(2.5rem, 6vw, 4.8rem); }
.tool-page-header p { max-width: 760px; }
.small-pill { color: var(--color-navy); background: var(--color-primary); border: 0; text-decoration: none; }
.tool-header-icon { position: relative; display: grid; width: 190px; height: 190px; place-items: center; color: var(--color-navy); background: var(--color-primary); border-radius: 42px 42px 10px 42px; box-shadow: 18px 18px 0 var(--color-accent); transform: rotate(-3deg); }
.tool-header-icon > .icon { width: 90px; height: 90px; }
.tool-header-icon i { position: absolute; width: 13px; height: 13px; background: var(--color-coral); border-radius: 50%; }
.tool-header-icon i:nth-of-type(1) { top: 20px; right: 22px; }
.tool-header-icon i:nth-of-type(2) { right: 18px; bottom: 34px; width: 7px; height: 7px; background: var(--color-navy); }
.tool-header-icon i:nth-of-type(3) { bottom: 18px; left: 28px; width: 9px; height: 9px; background: var(--color-accent); }
.tool-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; gap: 2.5rem; padding-block: 3rem 6rem; }
.tool-main { min-width: 0; }
.tool-interface-wrap { scroll-margin-top: 100px; }
.setup-message { display: flex; gap: 1rem; padding: 1.2rem; margin: 1.5rem 0; background: #fff8e9; border: 1px solid #f1d38b; border-radius: 15px; }
.setup-message > span { display: grid; width: 45px; height: 45px; flex: 0 0 auto; place-items: center; color: #fff; background: var(--color-navy); border-radius: 11px; }
.setup-message h2 { margin: 0 0 .25rem; font-size: 1.2rem; }
.setup-message p { margin: 0; }
.sidebar-sticky { position: sticky; top: 100px; display: grid; gap: 1rem; }
.on-this-page,
.privacy-card { padding: 1.2rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 17px 17px 5px 17px; }
.on-this-page h2,
.privacy-card h2 { font-size: 1rem; }
.on-this-page ul { padding: 0; margin: 0; list-style: none; }
.on-this-page li + li { border-top: 1px solid var(--color-border); }
.on-this-page a { display: block; padding: .55rem 0; color: var(--color-text); font-size: .82rem; font-weight: 700; text-decoration: none; }
.privacy-card > .icon { width: 30px; height: 30px; margin-bottom: .5rem; color: #148477; }
.privacy-card p { margin: 0; color: var(--color-muted); font-size: .8rem; }
.tool-sidebar .ad-placement { width: 100%; margin: 0; }
.tool-intro,
.tool-education-wrap { scroll-margin-top: 100px; }
.related-section { padding-top: 2rem; scroll-margin-top: 100px; }
.entry-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0; }
.entry-tags a,
.tag-list a { padding: .25rem .5rem; color: var(--color-navy); background: #eaf2ec; border-radius: 6px; font-size: .75rem; text-decoration: none; }
.affiliate-card { padding: 1.5rem; margin: 2rem 0; color: #cbd6e5; background: var(--color-navy); border-radius: 20px 20px 6px 20px; }
.affiliate-card h2 { color: #fff; font-size: 1.5rem; }
.affiliate-disclosure { color: var(--color-primary); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.affiliate-card .button-link { margin-top: .5rem; }

/* Companion engine visual integration */
.nexarank-tool {
  --nr-blue: #167f73;
  --nr-ink: var(--color-ink);
  --nr-muted: var(--color-muted);
  --nr-border: var(--color-border);
  --nr-soft: var(--color-surface);
  border-radius: 22px 22px 6px 22px;
  box-shadow: var(--shadow-md);
}
.nexarank-tool-header { background: linear-gradient(125deg, var(--color-navy), var(--color-navy-2)); }
.nexarank-tool-header h2 { color: #fff; }
.nexarank-eyebrow { color: var(--color-primary); }
.nexarank-private-badge { color: #0b5049; background: #c7f5ef; border-color: #79ddcf; }
.nexarank-input-wrap { border-radius: 10px 10px 3px 10px; }
.nexarank-input-wrap:focus-within { border-color: #168d80; box-shadow: 0 0 0 3px rgba(32, 217, 194, .18); }
.nexarank-button,
.nexarank-copy-button,
.nexarank-download-button { border-radius: 9px 9px 3px 9px; }
.nexarank-button-primary { color: var(--color-navy); background: var(--color-primary); }
.nexarank-button-primary:hover { background: var(--color-accent); }
.nexarank-button:focus-visible,
.nexarank-copy-button:focus-visible,
.nexarank-download-button:focus-visible { outline-color: var(--color-coral); }
.nexarank-result-primary { border-left-color: var(--color-accent); }
.nexarank-method { border-left-color: var(--color-accent); }
.nexarank-output { background: #071429; }
.nexarank-education h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

/* Editorial pages */
.content-with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; gap: 2.5rem; }
.content-column { min-width: 0; }
.content-sidebar { display: grid; gap: 1rem; }
.widget { padding: 1.15rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 16px 16px 5px 16px; }
.widget-title { font-size: 1rem; }
.widget ul { padding: 0; margin: 0; list-style: none; }
.widget li + li { margin-top: .45rem; }
.widget a { font-size: .86rem; font-weight: 700; text-decoration: none; }
.widget .tool-search .search-input-wrap { display: grid; grid-template-columns: 25px 1fr; }
.widget .tool-search .search-submit { grid-column: 1/-1; width: 100%; }
.blog-page .content-with-sidebar { padding-block: 4rem 6rem; }
.two-column-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.article-header { padding-block: 4rem 2.5rem; text-align: center; }
.article-header h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
.article-excerpt { color: var(--color-muted); font-size: 1.15rem; }
.article-meta { display: flex; justify-content: center; margin-top: 1.5rem; }
.article-meta > span { display: inline-flex; align-items: center; gap: .7rem; text-align: left; }
.article-meta > span > span { display: grid; }
.article-meta small { color: var(--color-muted); }
.author-avatar { border-radius: 50%; }
.author-avatar-local { display: inline-grid; width: 40px; height: 40px; flex: 0 0 40px; place-items: center; color: var(--color-navy); background: var(--color-primary); font-weight: 900; text-transform: uppercase; }
.author-avatar-large { width: 72px; height: 72px; flex-basis: 72px; font-size: 1.4rem; }
.article-feature { max-height: 660px; overflow: hidden; background: var(--color-surface); border-radius: 28px 28px 8px 28px; }
.article-feature img { width: 100%; max-height: 660px; object-fit: cover; }
.article-layout { padding-block: 3rem 6rem; }
.entry-content { color: #35435b; }
.entry-content > * { max-width: 100%; }
.entry-content h2 { margin-top: 2.3rem; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.entry-content h3 { margin-top: 1.8rem; }
.entry-content a { font-weight: 700; }
.entry-content blockquote { padding: 1rem 1.25rem; margin-inline: 0; background: #f0f8df; border-left: 4px solid var(--color-primary); }
.entry-content pre { max-width: 100%; overflow: auto; padding: 1rem; color: #e8eef7; background: var(--color-navy); border-radius: 12px; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th,
.entry-content td { padding: .7rem; border: 1px solid var(--color-border); text-align: left; }
.entry-content th { color: var(--color-ink); background: var(--color-surface); }
.article-related-tools { padding: 2rem 0; border-top: 1px solid var(--color-border); }
.author-box { display: flex; gap: 1rem; padding: 1.25rem; margin-top: 1.5rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 16px; }
.author-box img { width: 72px; height: 72px; border-radius: 50%; }
.author-box h2 { margin: 0; font-size: 1.2rem; }
.author-box p:last-child { margin: .3rem 0 0; font-size: .87rem; }
.post-navigation .nav-links { justify-content: space-between; }
.post-navigation a { display: grid; max-width: 48%; padding: .8rem; color: var(--color-ink); background: #fff; border: 1px solid var(--color-border); border-radius: 10px; text-decoration: none; }
.post-navigation span { color: var(--color-muted); font-size: .72rem; }
.page-article { padding-block: 4rem 6rem; }
.page-header { margin-bottom: 2rem; }
.page-header > p { color: var(--color-muted); font-size: 1.1rem; }
.comments-area { padding-top: 2rem; margin-top: 2rem; border-top: 1px solid var(--color-border); }
.comments-title { font-size: 1.4rem; }
.comment-list { padding: 0; list-style: none; }
.comment-list .comment-body { padding: 1rem; margin-top: .8rem; background: var(--color-surface); border-radius: 12px; }
.comment-form input:not([type="submit"]),
.comment-form textarea { width: 100%; padding: .7rem; border: 1px solid var(--color-border); border-radius: 8px; }
.comment-form .submit { padding: .7rem 1rem; color: var(--color-navy); background: var(--color-primary); border: 0; border-radius: 8px; font-weight: 800; }

/* Footer */
.site-footer { color: #9cacbf; background: #050d1c; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: clamp(2rem, 5vw, 5rem); padding-block: 4.5rem; }
.brand-link-footer { margin-bottom: 1.2rem; }
.footer-brand p { max-width: 420px; font-size: .87rem; }
.social-links--footer { margin-top: 1.25rem; }
.social-links--footer .social-links__link { width: 40px; height: 40px; }
.social-links--footer .social-icon { width: 20px; height: 20px; }
.site-footer h2 { color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li + li { margin-top: .5rem; }
.site-footer .social-links__list li + li { margin-top: 0; }
.site-footer nav a { color: #9cacbf; font-size: .83rem; text-decoration: none; }
.site-footer nav a:hover { color: var(--color-primary); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-block: 1.2rem; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { margin: 0; font-size: .72rem; }
.mobile-sticky-ad { position: fixed; z-index: 1200; left: 0; right: 0; bottom: 0; display: none; padding: .3rem 2.5rem .3rem .3rem; background: #fff; border-top: 1px solid var(--color-border); box-shadow: 0 -8px 28px rgba(8,22,46,.13); }
.mobile-sticky-ad .ad-placement { width: 100%; min-height: 54px; margin: 0; }
.mobile-sticky-ad .ad-label { display: none; }
.mobile-sticky-ad .ad-placeholder { min-height: 50px; }
.mobile-ad-close { position: absolute; z-index: 2; top: .35rem; right: .35rem; display: grid; width: 28px; height: 28px; padding: 0; place-items: center; color: #fff; background: var(--color-navy); border: 0; border-radius: 50%; cursor: pointer; }

.alignwide { width: min(100%, var(--container)); max-width: var(--container); margin-inline: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-inline: calc(50% - 50vw); }
.wp-caption,
.gallery-caption { color: var(--color-muted); font-size: .8rem; }
.bypostauthor { outline: 1px solid var(--color-accent); }

@media (max-width: 1100px) {
  .header-inner { gap: .9rem; }
  .primary-menu a { padding-inline: .45rem; font-size: .8rem; }
  .social-links--header .social-links__list { gap: .22rem; }
  .social-links--header .social-links__link { width: 29px; height: 29px; }
  .social-links--header .social-icon { width: 15px; height: 15px; }
  .hero-grid { grid-template-columns: 1fr 430px; gap: 2.5rem; }
  .tool-grid,
  .archive-tool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-grid > nav:last-child { grid-column: 2; }
}

@media (max-width: 900px) {
  .header-inner { min-height: 70px; }
  .menu-toggle { display: grid; margin-inline-start: auto; }
  .social-links--header .social-links__link { width: 32px; height: 32px; }
  .social-links--header .social-icon { width: 16px; height: 16px; }
  .primary-navigation {
    position: fixed;
    z-index: 1000;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 1rem;
    background: var(--color-navy);
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow-lg);
  }
  .primary-navigation.is-open { display: block; }
  .primary-menu { display: grid; align-items: stretch; }
  .primary-menu a { padding: .8rem; font-size: .95rem; }
  .primary-menu .sub-menu { position: static; display: block; width: auto; padding: 0 0 0 1rem; background: transparent; border: 0; box-shadow: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 4.5rem 5rem; }
  .hero-copy { max-width: 790px; }
  .hero-console { max-width: 620px; width: 100%; min-height: 480px; margin-inline: auto; }
  .signal-strip-grid { grid-template-columns: repeat(2, 1fr); }
	.category-grid { grid-template-columns: repeat(2, 1fr); }
	.category-card { grid-column: span 1; }
	.directory-filter-heading { display: block; }
	.directory-filter-heading > p { margin-top: .65rem; }
	.directory-filter-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .discovery-grid,
  .workflow-grid { grid-template-columns: 1fr; }
  .tool-layout,
  .content-with-sidebar { grid-template-columns: 1fr; }
  .tool-sidebar { order: -1; }
  .sidebar-sticky { position: static; grid-template-columns: 1fr 1fr; }
  .tool-sidebar .ad-placement { grid-column: 1/-1; }
  .content-sidebar { grid-template-columns: repeat(2, 1fr); }
  .content-sidebar .ad-placement { grid-column: 1/-1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > nav:last-child { grid-column: auto; }
}

@media (max-width: 680px) {
  .container,
  .narrow-container,
  .ad-placement { width: min(calc(100% - 1.25rem), var(--container)); }
  .section-wrap { padding-block: 4rem; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.7rem); }
  .brand-link small { display: none; }
  .header-inner { gap: .65rem; }
  .header-search-toggle,
  .menu-toggle { width: 40px; height: 40px; }
  .search-input-wrap { min-height: 58px; }
  .search-submit { min-height: 44px; padding-inline: .85rem; }
  .hero-grid { padding-top: 3.5rem; }
  .hero-lead { font-size: 1rem; }
  .hero-trust { display: grid; }
  .hero-console { min-height: 410px; }
  .console-window { inset: 24px 0 14px; }
  .console-body { padding: 1rem; }
  .console-overview { grid-template-columns: 90px 1fr; }
  .score-ring { width: 88px; height: 88px; }
  .score-ring strong { font-size: 1.5rem; }
  .signal-card { padding: .6rem .7rem; font-size: .72rem; }
  .signal-card-one { right: -4px; }
  .signal-card-two { right: -4px; }
  .signal-strip-grid { grid-template-columns: 1fr 1fr; }
  .signal-strip-grid > div { padding: 1rem .6rem; }
  .signal-strip-grid .icon { width: 20px; height: 20px; }
  .signal-strip-grid small { display: none; }
  .section-heading { display: block; }
  .section-heading .text-link { margin-top: .5rem; }
  .tool-grid,
  .archive-tool-grid,
  .article-grid,
  .two-column-grid,
	.category-grid { grid-template-columns: 1fr; }
	.category-card { grid-column: auto; }
	.category-card { min-height: 260px; }
	.directory-filter-form { grid-template-columns: 1fr; }
	.directory-filter-actions { grid-column: auto; flex-wrap: wrap; }
	.directory-result-bar { display: grid; }
  .popular-panel { padding: 1.2rem; }
  .workflow-steps li { grid-template-columns: 42px 1fr; }
  .final-cta-inner { display: grid; padding-block: 3rem; }
  .archive-hero-inner { display: grid; min-height: 0; padding-block: 3rem; }
  .archive-stat,
  .category-hero-icon { min-width: 0; min-height: 130px; }
  .tool-header-grid { min-height: 0; grid-template-columns: 1fr; padding-block: 3rem; }
  .tool-header-icon { display: none; }
  .tool-page-header .hero-trust { display: flex; }
  .tool-layout { padding-top: 1.5rem; }
  .sidebar-sticky,
  .content-sidebar { grid-template-columns: 1fr; }
  .article-header { padding-top: 3rem; }
  .article-feature { width: 100%; border-radius: 0; }
  .article-layout { padding-top: 2rem; }
  .author-box { display: grid; }
  .post-navigation .nav-links { display: grid; }
  .post-navigation a { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; padding-block: 3.5rem; }
  .footer-bottom { display: grid; }
  .mobile-sticky-ad { display: block; }
}

@media (max-width: 500px) {
  .brand-link > span:last-child { display: none; }
  .custom-logo { max-width: 72px; max-height: 44px; }
  .header-inner { gap: .4rem; }
  .social-links--header .social-links__list { gap: .18rem; }
  .social-links--header .social-links__link { width: 30px; height: 30px; border-radius: 8px; }
}

@media (max-width: 360px) {
  .header-inner { gap: .25rem; }
  .header-search-toggle,
  .menu-toggle { width: 37px; height: 37px; }
  .social-links--header .social-links__link { width: 27px; height: 27px; }
  .social-links--header .social-icon { width: 14px; height: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .social-links__link:is(:hover, :focus-visible),
  .social-links__link:is(:hover, :focus-visible) .social-icon,
  .social-links__link:is(:hover, :focus-visible)::before { transform: none; }
}
