:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #fbfcfe;
  --ink: #101827;
  --muted: #647084;
  --line: #dfe5ee;
  --line-soft: #edf1f6;
  --brand: #f42547;
  --brand-dark: #d71333;
  --brand-soft: #fff0f3;
  --navy: #06111d;
  --green: #16a05d;
  --red: #d93044;
  --amber: #f0a31d;
  --blue: #2878d4;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

button,
input,
summary {
  font: inherit;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  background: var(--brand);
  color: #fff;
}

.brand span:last-child {
  font-size: 17px;
}

.brand-image {
  flex: 0 0 auto;
}

.brand-image img {
  display: block;
  width: 190px;
  height: auto;
  max-width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #293447;
  font-size: 14px;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: inherit;
}

.footer-menu {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu li {
  display: contents;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-menu > li.is-open > a {
  color: var(--brand);
}

.submenu-toggle {
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-left: 4px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #647084;
  cursor: pointer;
}

.submenu-toggle::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.menu-item-has-children:hover > .submenu-toggle,
.menu-item-has-children:focus-within > .submenu-toggle,
.menu-item-has-children.is-open > .submenu-toggle {
  color: var(--brand);
}

.menu-item-has-children.is-open > .submenu-toggle::before {
  margin-top: 2px;
  transform: rotate(225deg);
}

.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  width: min(560px, calc(100vw - 40px));
  max-height: min(70vh, 620px);
  overflow-y: auto;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 24px;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
  transform: rotate(45deg);
}

.nav-menu .menu-item-has-children:hover > .sub-menu,
.nav-menu .menu-item-has-children:focus-within > .sub-menu,
.nav-menu .menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu .sub-menu li {
  display: block;
}

.nav-menu .sub-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  border-radius: 8px;
  padding: 9px 11px;
  color: #293447;
  font-size: 13px;
  line-height: 1.25;
  white-space: normal;
}

.nav-menu .sub-menu a::after {
  content: "\203A";
  margin-left: 12px;
  color: #9aa6b6;
  font-size: 17px;
  line-height: 1;
}

.nav-menu .sub-menu a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.header-search {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #314056;
  background: #fff;
}

.mobile-menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #314056;
  cursor: pointer;
}

.mobile-menu-toggle span,
.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mobile-menu-toggle {
  gap: 4px;
}

.mobile-menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  padding: 30px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(244, 37, 71, 0.3), transparent 26%),
    radial-gradient(circle at 58% 90%, rgba(40, 120, 212, 0.18), transparent 28%),
    linear-gradient(135deg, #07111e 0%, #091827 54%, #050a11 100%);
  color: #fff;
}

.hero-inner {
  display: grid;
  min-height: 280px;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  padding: 34px 0 38px;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 34%, rgba(244, 37, 71, 0.1), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.eyebrow,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb6c1;
}

.eyebrow::before,
.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(244, 37, 71, 0.13);
}

h1 {
  max-width: 830px;
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.06;
}

.hero-copy {
  max-width: 790px;
  margin: 14px 0 0;
  color: #4b596d;
  font-size: 16px;
}

.hero .hero-copy {
  color: #d5deea;
  font-size: 17px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
  padding: 22px;
}

.site-footer {
  margin-top: 26px;
  background: var(--navy);
  color: #d8e2ee;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(120px, 1fr));
  gap: 28px;
  padding: 38px 0;
}

.footer-brand .brand {
  color: #fff;
}

.brand-footer {
  gap: 10px;
}

.brand-footer img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-footer span {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.footer-brand p {
  max-width: 310px;
  margin: 14px 0 0;
  color: #97a6b9;
  font-size: 13px;
}

.footer-col h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
}

.footer-col a {
  display: block;
  margin-top: 8px;
  color: #97a6b9;
  font-size: 13px;
}

.footer-col a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.footer-social {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 16px 0;
  color: #8391a4;
  font-size: 12px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero-home-inner {
  min-height: 520px;
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
}

.hero-home {
  background-color: #040d19;
  background-image:
    linear-gradient(90deg, rgba(4, 13, 25, 0.97) 0%, rgba(4, 13, 25, 0.9) 44%, rgba(4, 13, 25, 0.68) 68%, rgba(4, 13, 25, 0.5) 100%),
    radial-gradient(circle at 86% 88%, rgba(166, 19, 55, 0.14), transparent 18%),
    url("../images/home-hero-safety-desktop-v2.webp");
  background-position: center, 86% 88%, 80% center;
  background-repeat: no-repeat;
  background-size: cover, auto, cover;
}

.hero-home .hero-home-inner {
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 10px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  box-shadow: 0 16px 34px rgba(244, 37, 71, 0.24);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
}

.hero-search {
  display: flex;
  width: min(620px, 100%);
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.hero-search label {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0 16px;
  color: #66758b;
}

.hero-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 15px;
}

.hero-search button {
  min-width: 112px;
  border: 0;
  border-left: 1px solid #f1c2ca;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.hero-search button:hover {
  background: var(--brand-dark);
}

.hero-stats {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(5, 12, 21, 0.58);
}

.stat {
  padding: 18px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: #aebbc9;
  font-size: 12px;
  font-weight: 700;
}

.hero-art {
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.18), transparent 18%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.hero-home .hero-art {
  display: none;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 24px 24px 22px 42%;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, #122235, #07111e);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-home .hero-art::before,
.hero-home .hero-art::after {
  display: none;
}

.hero-art::after {
  content: "";
  position: absolute;
  right: 50px;
  bottom: 44px;
  width: 230px;
  height: 260px;
  border-radius: 80px 80px 8px 8px;
  background:
    radial-gradient(circle at 45% 26%, rgba(255, 216, 199, 0.88) 0 15%, transparent 16%),
    radial-gradient(circle at 42% 17%, #1f2835 0 21%, transparent 22%),
    linear-gradient(160deg, #fbd0c1 0 45%, #9b3948 46% 73%, #172033 74%);
  filter: saturate(0.86);
  opacity: 0.92;
}

.hero-panel {
  position: absolute;
  left: 28px;
  bottom: 26px;
  width: min(310px, calc(100% - 56px));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 16px;
  background: rgba(4, 12, 22, 0.84);
  backdrop-filter: blur(14px);
}

.hero-panel h2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
}

.score-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.score-pill {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.score-pill strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1;
}

.score-pill span {
  display: block;
  margin-top: 6px;
  color: #aebbc9;
  font-size: 11px;
  font-weight: 700;
}

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

.section-heading h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.section-heading p {
  max-width: 680px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.view-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

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

.category-card,
.review-card,
.alternative-card,
.criteria-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.category-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  min-height: 128px;
  padding: 18px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: #ffbdc8;
  box-shadow: var(--shadow);
}

.icon,
.mini-icon {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
}

.icon {
  width: 46px;
  height: 46px;
  font-size: 23px;
}

.mini-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  font-size: 21px;
}

.category-card h3,
.review-card h3,
.alternative-card h3,
.criteria-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.category-card p,
.review-card p,
.alternative-card p,
.criteria-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.category-hub {
  background: #f4f7fb;
}

.rankings-hub {
  background: #f4f7fb;
}

.category-hub-hero {
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  background: #06111d;
  color: #fff;
}

.rankings-hub-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(244, 37, 71, 0.36), transparent 28%),
    radial-gradient(circle at 55% 105%, rgba(40, 120, 212, 0.2), transparent 30%),
    linear-gradient(135deg, #06111d 0%, #0b1726 58%, #090e16 100%);
}

.category-hub-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: center;
  min-height: 390px;
  padding: 54px 0;
}

.category-hub-hero h1 {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.category-hub-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #c7d2e1;
  font-size: 18px;
  line-height: 1.7;
}

.hub-trust-tags,
.hub-quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hub-trust-tags {
  margin-top: 24px;
}

.hub-trust-tags span,
.hub-quick-tags a,
.hub-quick-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 900;
}

.hub-trust-tags span {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

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

.category-hub-stats div {
  min-height: 124px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.rankings-hub-stats div:first-child {
  background:
    linear-gradient(135deg, rgba(244, 37, 71, 0.82), rgba(215, 19, 51, 0.68)),
    rgba(255, 255, 255, 0.08);
}

.category-hub-stats strong {
  display: block;
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.category-hub-stats span {
  display: block;
  margin-top: 10px;
  color: #b7c3d4;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.hub-search-section {
  border-bottom: 1px solid var(--line-soft);
  background: #fff;
  padding: 24px 0;
}

.category-hub-search {
  display: block;
  max-width: 760px;
  margin: 0 auto;
}

.category-hub-search input {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 18px;
  color: #0f172a;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  outline: none;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.category-hub-search input:focus {
  border-color: #ff9aad;
  box-shadow: 0 0 0 4px rgba(244, 37, 71, 0.1);
}

.hub-quick-tags {
  justify-content: center;
  max-width: 920px;
  margin: 18px auto 0;
}

.hub-quick-tags a,
.hub-quick-tags span {
  background: #f8fafc;
  color: #334155;
  text-decoration: none;
}

.hub-quick-tags a:hover {
  border-color: #ffbdc8;
  background: var(--brand-soft);
  color: var(--brand);
}

.hub-quick-tags span {
  opacity: 0.65;
}

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

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

.hub-popular-card,
.hub-small-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hub-popular-card {
  display: flex;
  min-height: 332px;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.ranking-featured-card {
  min-height: 288px;
}

.hub-popular-card:not(.is-planned):hover,
.hub-small-card:not(.is-planned):hover {
  transform: translateY(-2px);
  border-color: #ffbdc8;
  box-shadow: var(--shadow);
}

.hub-popular-card.is-planned,
.hub-small-card.is-planned {
  background: #fbfcfe;
}

.hub-popular-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hub-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
}

.hub-status,
.hub-card-tag {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: #eaf8f1;
  color: #0c7c45;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.hub-popular-card.is-planned .hub-status,
.hub-small-card.is-planned .hub-card-tag {
  background: #eef2f7;
  color: #64748b;
}

.hub-popular-card h3,
.hub-small-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.25;
}

.hub-popular-card p,
.hub-small-card p {
  margin: 0;
  color: #4b596d;
  font-size: 14px;
  line-height: 1.6;
}

.hub-reviewed {
  margin-top: auto;
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}

.hub-card-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.hub-card-metrics div {
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px;
  background: #f8fafc;
}

.hub-card-metrics dt {
  margin: 0 0 4px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}

.hub-card-metrics dd {
  margin: 0;
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.hub-card-cta,
.hub-small-card strong {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

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

.hub-small-card {
  display: flex;
  min-height: 184px;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.hub-small-card strong {
  margin-top: auto;
}

.hub-method-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.hub-method-card > div:first-child p {
  max-width: 860px;
  margin: 10px 0 0;
  color: #4b596d;
  font-size: 15px;
  line-height: 1.7;
}

.hub-criteria-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

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

.latest-ranking-table strong {
  color: #0f172a;
}

.hub-criteria-grid article {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 15px;
  background: #f8fafc;
}

.hub-criteria-grid h3 {
  margin: 0;
  color: #0f172a;
  font-size: 15px;
}

.hub-criteria-grid p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.faq-narrow {
  max-width: 920px;
}

.category-empty-state {
  margin-bottom: 30px;
}

.category-empty-state p {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  color: #64748b;
  font-weight: 800;
}

[data-category-item].is-hidden {
  display: none;
}

.category-detail-page {
  background: #f4f7fb;
}

.category-detail-page > .section {
  padding: 24px 0;
}

.category-detail-page > .section + .section {
  padding-top: 16px;
}

.category-detail-hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(244, 37, 71, 0.16), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #fff7f9 55%, #f6f8fb 100%);
}

.category-detail-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: center;
  min-height: 360px;
  padding: 42px 0;
}

.category-detail-hero h1 {
  max-width: 760px;
  margin: 10px 0 0;
  color: #07111f;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.category-detail-tags span {
  border-color: #ffd0d9;
  background: #fff;
  color: #1d2737;
}

.category-detail-side {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.category-detail-icon {
  display: grid;
  width: 86px;
  height: 86px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 20px;
  background: var(--navy);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.category-detail-stats {
  display: grid;
  gap: 10px;
}

.category-detail-stats div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 12px;
  background: #f8fafc;
}

.category-detail-stats span {
  flex: 1 1 42%;
  min-width: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.category-detail-stats strong {
  flex: 1 1 58%;
  min-width: 0;
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
  line-height: 1.35;
  overflow-wrap: anywhere;
  white-space: normal;
}

.category-filter-section .hub-quick-tags {
  margin-top: 0;
}

.category-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 16px;
  align-items: start;
}

.category-about-card {
  min-height: 0;
  padding: 24px;
}

.compact-heading {
  margin-bottom: 14px;
}

.rich-text p:first-child {
  margin-top: 0;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

.category-snapshot {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #e5e7eb;
}

.snapshot-heading h3 {
  margin: 0;
  color: #0f172a;
  font-size: 21px;
  line-height: 1.25;
}

.snapshot-heading p {
  max-width: 760px;
  margin: 8px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

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

.snapshot-card {
  position: relative;
  min-height: 128px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 15px 15px 15px 46px;
  background: #f8fafc;
}

.snapshot-dot {
  position: absolute;
  top: 15px;
  left: 15px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: #fff1f4;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.snapshot-card h4 {
  margin: 0;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.25;
}

.snapshot-card p {
  margin: 7px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.category-need-card {
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.category-need-card h2 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 21px;
}

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

.need-list article {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 13px;
  background: #f8fafc;
}

.need-list h3 {
  margin: 0;
  color: #0f172a;
  font-size: 15px;
}

.need-list p {
  margin: 7px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.category-safety-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 22px;
  border: 1px solid #ffd4dc;
  border-radius: 14px;
  padding: 24px;
  background:
    radial-gradient(circle at 86% 18%, rgba(244, 37, 71, 0.12), transparent 26%),
    #fff;
  box-shadow: var(--shadow);
}

.category-safety-card h2 {
  margin: 0;
  color: #0f172a;
  font-size: 27px;
}

.category-safety-card p {
  margin: 12px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.safety-check-grid {
  display: grid;
  gap: 10px;
}

.safety-check-grid span {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 12px 11px 34px;
  background: #f8fafc;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.safety-check-grid span::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 13px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.category-quick-picks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-pick-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.category-pick-card .site-cell {
  min-width: 0;
}

.category-pick-card .site-cell strong {
  overflow-wrap: anywhere;
}

.pick-metrics {
  display: grid;
  gap: 8px;
  margin: 0;
}

.pick-metrics div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  padding: 9px 10px;
  background: #f8fafc;
}

.pick-metrics dt,
.pick-metrics dd {
  margin: 0;
  font-size: 12px;
}

.pick-metrics dt {
  color: #64748b;
  font-weight: 800;
}

.pick-metrics dd {
  color: #0f172a;
  font-weight: 900;
  text-align: right;
}

.preview-action-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.rank-section {
  background: #fff;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.ranking-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.ranking-collection-page {
  background: #f4f7fb;
}

.ranking-collection-page > .section {
  padding: 24px 0;
}

.ranking-collection-page > .section + .section {
  padding-top: 12px;
}

.ranking-group-section .section-heading {
  margin-bottom: 14px;
}

.ranking-group-table {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.ranking-groups-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.ranking-group-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.ranking-group-card-head {
  min-height: 132px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 88% 16%, rgba(244, 37, 71, 0.1), transparent 25%),
    #fff;
}

.ranking-group-card-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.18;
}

.ranking-group-card-head p {
  margin: 9px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.ranking-card-list {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.ranking-empty-note {
  margin: 0;
  border: 1px dashed #dbe4ef;
  border-radius: 12px;
  padding: 14px;
  background: #f8fafc;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.ranking-card-row {
  display: grid;
  grid-template-columns: 30px 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px;
  background: #fff;
}

.ranking-card-row .rank-badge {
  width: 30px;
  height: 30px;
}

.ranking-card-row .site-logo {
  width: 38px;
  height: 38px;
  font-size: 12px;
}

.ranking-site-logo.has-image {
  overflow: hidden;
  border: 1px solid #dbe4ef;
  background: #fff;
  padding: 3px;
}

.ranking-site-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 7px;
}

.ranking-card-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.25;
}

.ranking-text-link {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 7px 10px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.ranking-text-link:hover {
  background: var(--brand-dark);
}

.ranking-more {
  border-top: 1px solid var(--line-soft);
}

.ranking-more summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  list-style: none;
}

.ranking-more summary::-webkit-details-marker {
  display: none;
}

.ranking-more summary::after {
  content: "+";
  color: var(--brand);
  font-size: 16px;
  line-height: 1;
}

.ranking-more[open] summary::after {
  content: "-";
}

.ranking-card-list-more {
  padding-top: 0;
}

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

.ranking-alt-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.ranking-alt-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 17px;
  line-height: 1.25;
}

.ranking-alt-card p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.ranking-method-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 24px;
  border: 1px solid #ffd4dc;
  border-radius: 14px;
  padding: 24px;
  background:
    radial-gradient(circle at 86% 18%, rgba(244, 37, 71, 0.12), transparent 26%),
    #fff;
  box-shadow: var(--shadow);
}

.ranking-method-box h2 {
  margin: 0;
  color: #0f172a;
  font-size: 27px;
}

.ranking-method-box p {
  margin: 12px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.ranking-method-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ranking-method-points span {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 12px 11px 34px;
  background: #f8fafc;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.ranking-method-points span::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 13px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
}

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

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  font-size: 13px;
  vertical-align: middle;
}

th {
  background: #fbfcfe;
  color: #475569;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.rank-site {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  font-weight: 800;
}

.rank-badge {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 999px;
  background: #fff1d7;
  color: #9d6709;
  font-weight: 900;
}

.site-logo {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 7px;
  background: #06111d;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.site-logo.has-image {
  overflow: hidden;
  border: 1px solid #dbe4ef;
  background: #fff;
  padding: 3px;
}

.site-logo.has-image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: contain;
}

.score {
  font-weight: 900;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.chip.medium {
  background: #fff4df;
  color: #9b5d00;
}

.chip.low {
  background: #eaf8f1;
  color: #0c7c45;
}

.chip.excellent,
.chip.no {
  background: #eaf8f1;
  color: #0c7c45;
}

.chip.high {
  background: #fff0f3;
  color: #b82035;
}

.chip.poor,
.chip.required {
  background: #fff0f3;
  color: #b82035;
}

.chip.good {
  background: #eef6ff;
  color: #175fba;
}

.chip.average {
  background: #fff4df;
  color: #9b5d00;
}

.chip.optional {
  background: #f4f7fb;
  color: #475569;
}

.table-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  min-width: 224px;
}

.small-btn {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffb8c4;
  border-radius: 6px;
  padding: 7px 11px;
  color: var(--brand);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.small-btn.fill {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.reviews-grid,
.alternatives-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.home-alternatives {
  margin-top: 34px;
}

.alternative-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.alternative-card > div {
  min-width: 0;
}

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

.criteria-card {
  min-height: 142px;
  padding: 16px;
}

.criteria-card .mini-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  font-size: 19px;
}

.guide {
  padding: 48px 0 56px;
}

.guide-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  border: 1px solid #ffd0d8;
  border-radius: 8px;
  padding: 30px;
  background:
    radial-gradient(circle at 88% 24%, rgba(244, 37, 71, 0.13), transparent 24%),
    linear-gradient(135deg, #fff 0%, #fff5f7 100%);
}

.guide-band h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
}

.guide-band p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #596579;
}

.guide-visual {
  display: grid;
  width: 172px;
  height: 172px;
  justify-self: center;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  box-shadow: inset 0 0 0 12px #ffe2e7, 0 20px 45px rgba(244, 37, 71, 0.16);
  font-size: 84px;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #6b7689;
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--brand);
}

.category-hero-inner {
  grid-template-columns: minmax(0, 1fr) 210px;
}

.hero-badge {
  display: grid;
  width: 176px;
  height: 176px;
  justify-self: end;
  place-items: center;
  border: 1px solid #ffd1d9;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, #ff3153 0 34%, transparent 35%),
    var(--brand-soft);
  color: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-badge strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.hero-badge span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.content-card p:first-child {
  margin-top: 0;
}

.content-card p:last-child {
  margin-bottom: 0;
}

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

.fit-card {
  padding: 20px;
}

.fit-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 900;
}

.status-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  font-size: 16px;
}

.status-icon.good {
  background: #eaf8f1;
  color: var(--green);
}

.status-icon.bad {
  background: #fff0f3;
  color: var(--red);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 9px;
  color: #344154;
  font-size: 14px;
}

.check-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--green);
}

.check-list.bad li::before {
  background: var(--red);
}

.ranking-links {
  display: grid;
  gap: 12px;
}

.list-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.list-card:hover {
  transform: translateY(-1px);
  border-color: #ffbdc8;
  box-shadow: var(--shadow);
}

.list-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.list-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.preview-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.category-empty-card {
  padding: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), #fff);
}

.category-empty-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.category-empty-card p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.site-cell {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 170px;
  font-weight: 900;
}

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

.guide-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.guide-card .mini-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  font-size: 19px;
}

.guide-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.guide-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.safety-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  align-items: center;
  gap: 24px;
  border: 1px solid #ffd0d8;
  border-radius: 8px;
  padding: 26px;
  background:
    radial-gradient(circle at 88% 24%, rgba(244, 37, 71, 0.13), transparent 24%),
    linear-gradient(135deg, #fff 0%, #fff5f7 100%);
}

.safety-band h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.safety-band p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #596579;
}

.safety-icon {
  display: grid;
  width: 128px;
  height: 128px;
  justify-self: center;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  box-shadow: inset 0 0 0 10px #ffe2e7, 0 20px 45px rgba(244, 37, 71, 0.16);
  font-size: 62px;
}

.safety-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn-light {
  border-color: #ffc2cc;
  background: #fff;
  color: var(--brand);
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
  padding: 14px 16px;
  color: #172235;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--brand);
  font-size: 20px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 14px;
}

.ranking-hero-inner {
  grid-template-columns: minmax(0, 1fr) 210px;
}

.hero-trophy {
  display: grid;
  width: 176px;
  height: 176px;
  justify-self: end;
  place-items: center;
  border: 1px solid #ffd1d9;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  box-shadow: var(--shadow);
  font-size: 88px;
}

.hero-trophy svg {
  stroke-width: 1.5;
}

.answer-card {
  border: 1px solid #ffd0d8;
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(135deg, #fff 0%, #fff7f8 100%);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.answer-card p {
  margin: 0;
  color: #3e4b5f;
  font-size: 16px;
}

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

.pick-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pick-card:hover {
  transform: translateY(-1px);
  border-color: #ffbdc8;
  box-shadow: var(--shadow);
}

.pick-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pick-card h3 {
  margin: 7px 0 5px;
  font-size: 17px;
  line-height: 1.25;
}

.pick-score {
  color: #263449;
  font-size: 13px;
  font-weight: 900;
}

.pick-card .small-btn {
  margin-top: 14px;
}

.rank-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.detail-list {
  display: grid;
  gap: 16px;
}

.detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.detail-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.detail-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rank-square {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 7px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.detail-title h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.detail-title p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 16px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px;
  background: #fff;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 5px;
  color: #142033;
  font-size: 14px;
}

.detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 20px;
  align-items: start;
}

.detail-body h4 {
  margin: 0 0 8px;
  font-size: 14px;
}

.detail-body p {
  margin: 0;
  color: #4b596d;
  font-size: 14px;
}

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

.mini-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #344154;
  font-size: 13px;
}

.mini-list li {
  display: flex;
  gap: 8px;
}

.mini-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--green);
}

.mini-list.cons li::before {
  background: var(--red);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.method-card {
  min-height: 136px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.method-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 19px;
}

.method-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.method-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.safety-note {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  border: 1px solid #ffd0d8;
  border-radius: var(--radius);
  padding: 20px;
  background:
    radial-gradient(circle at 92% 16%, rgba(244, 37, 71, 0.11), transparent 25%),
    linear-gradient(135deg, #fff 0%, #fff7f8 100%);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.safety-note .method-icon {
  width: 50px;
  height: 50px;
  margin: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 8px #ffe2e7;
  font-size: 25px;
}

.safety-note h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.2;
}

.safety-note p {
  margin: 9px 0 0;
  color: #596579;
}

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

.related-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.related-links a:hover {
  border-color: #ffbdc8;
  color: var(--brand);
}

.review-hero-inner {
  grid-template-columns: minmax(0, 1fr) 220px;
}

.site-logo-large {
  display: grid;
  position: relative;
  width: 190px;
  min-height: 130px;
  justify-self: end;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(135deg, #06111d 0%, #0d1f33 100%);
  box-shadow: var(--shadow);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  overflow: hidden;
  overflow-wrap: anywhere;
  text-align: center;
}

.site-logo-link {
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.site-logo-link:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 37, 71, 0.55);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.site-logo-link:focus-visible {
  outline: 3px solid rgba(244, 37, 71, 0.38);
  outline-offset: 3px;
}

.site-logo-large .site-logo-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin-top: 0;
  padding: 18px;
  background: rgba(6, 17, 29, 0.72);
  color: #fff;
  font-size: inherit;
  text-transform: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.site-logo-link:hover .site-logo-overlay,
.site-logo-link:focus-visible .site-logo-overlay {
  opacity: 1;
}

.site-logo-large .site-logo-open-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 132px;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 12px 16px;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.28);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
}

.site-logo-large .site-logo-open-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.site-logo-large span {
  display: block;
  margin-top: 10px;
  color: #c6d2e1;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-logo-large strong {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.site-logo-large img {
  display: block;
  width: min(120px, 100%);
  max-height: 58px;
  object-fit: contain;
}

.brand-summary-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
}

.brand-summary-card strong {
  max-width: 100%;
  font-size: 22px;
  line-height: 1.1;
}

.brand-summary-card span {
  margin-top: 0;
  color: #d9e4f2;
  text-transform: none;
}

.brand-summary-card ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.brand-summary-card li {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #f4f7fb;
  font-size: 11px;
  font-weight: 800;
}

.review-byline,
.review-meta-line {
  margin: 14px 0 0;
  color: #647084;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.review-meta-line {
  margin: -4px 0 14px;
}

.review-overview-card {
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.review-overview-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.review-overview-card p,
.review-overview-card li {
  color: #4b596d;
  font-size: 15px;
  line-height: 1.75;
}

.review-overview-card p {
  margin: 0 0 12px;
}

.review-overview-card p:last-child,
.review-overview-card ul:last-child,
.review-overview-card ol:last-child {
  margin-bottom: 0;
}

.summary-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(280px, 0.9fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.summary-score {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line-soft);
  padding: 24px;
  background: #fbfcfe;
  text-align: center;
}

.summary-score p {
  margin: 12px 0 0;
  color: #314056;
  font-size: 13px;
  font-weight: 900;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.evidence-grid--long {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.evidence-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
}

.evidence-card-label {
  display: block;
  color: #647084;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.evidence-card-value {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
}

.evidence-card--long {
  padding: 18px 18px 17px;
}

.evidence-card--long .evidence-card-value {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 9px;
  padding: 6px 10px;
  border: 1px solid #dbe4ef;
  border-radius: 999px;
  background: #f8fafc;
  color: #142033;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
}

.evidence-card-detail {
  margin: 11px 0 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 400;
  text-wrap: pretty;
}

.review-status-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.review-status-badge {
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 12px;
  background: #fff;
}

.review-status-badge span {
  display: block;
  overflow: hidden;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-status-badge strong {
  display: block;
  margin-top: 4px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.status-low {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.status-medium {
  border-color: #fed7aa;
  background: #fff7ed;
}

.status-high {
  border-color: #fecdd3;
  background: #fff1f2;
}

.status-unknown,
.status-info {
  border-color: #dbe4ef;
  background: #f8fafc;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe4ef;
  border-radius: 999px;
  padding: 5px 10px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.score-ring {
  display: grid;
  width: 122px;
  height: 122px;
  place-items: center;
  border: 8px solid #dff7e9;
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  box-shadow: inset 0 0 0 1px #bdebd2;
}

.score-ring strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.score-ring span {
  display: block;
  margin-top: 6px;
  color: #5d6b7f;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-facts,
.summary-verdict {
  padding: 22px;
}

.summary-verdict {
  border-left: 1px solid var(--line-soft);
  background: linear-gradient(135deg, #fff 0%, #fff7f8 100%);
}

.summary-verdict h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.summary-verdict p {
  margin: 0;
  color: #4b596d;
  font-size: 14px;
}

.fact-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  border-bottom: 1px solid var(--line-soft);
  color: #475569;
  font-size: 13px;
}

.fact-list li:last-child {
  border-bottom: 0;
}

.fact-list strong {
  max-width: 58%;
  color: #142033;
  font-size: 13px;
  line-height: 1.35;
  text-align: right;
}

.fact-list .fact-long {
  font-size: 12px;
}

.ratings-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.rating-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.rating-label .mini-icon {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
  font-size: 16px;
}

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

.pro-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.pro-card {
  padding: 20px;
}

.pro-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 18px;
}

.status-dot {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
}

.status-dot.good {
  background: var(--green);
}

.status-dot.bad {
  background: var(--red);
}

.info-card {
  padding: 22px;
}

.info-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.info-card h3 {
  margin: 12px 0 8px;
  color: #142033;
  font-size: 15px;
}

.info-card p {
  margin: 10px 0 0;
  color: #4b596d;
  font-size: 14px;
}

.static-info-page {
  background: var(--bg);
}

.static-info-hero .hero-inner {
  min-height: 220px;
}

.static-updated {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.static-info-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.static-info-card {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.static-info-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.static-info-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.static-info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(244, 37, 71, 0.1);
}

.static-contact-card {
  grid-column: 1 / -1;
}

.static-form-alert {
  margin-top: 14px;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.static-form-alert.success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.static-form-alert.error {
  border: 1px solid #fecdd3;
  background: #fff1f2;
  color: #9f1239;
}

.static-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.static-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.static-contact-form input,
.static-contact-form select,
.static-contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
  padding: 12px 13px;
}

.static-contact-form input:focus,
.static-contact-form select:focus,
.static-contact-form textarea:focus {
  outline: none;
  border-color: rgba(244, 37, 71, 0.6);
  box-shadow: 0 0 0 4px rgba(244, 37, 71, 0.1);
}

.static-contact-form .form-wide,
.static-form-note {
  grid-column: 1 / -1;
}

.static-contact-form .static-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.static-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.static-submit-btn {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.score-basis {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.score-basis h4 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

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

.basis-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 13px 14px;
  background: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.basis-status {
  display: inline-flex;
  max-width: 96px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe4ef;
  border-radius: 999px;
  padding: 5px 9px;
  color: #0f172a;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.basis-label {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
}

.basis-value {
  display: block;
  margin: 0;
  color: #0f172a;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
  text-wrap: pretty;
}

.score-deduction-note {
  margin-top: 12px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  padding: 12px;
  background: #fff7ed;
  color: #334155;
  font-size: 13px;
  line-height: 1.6;
}

.score-deduction-note strong {
  color: #0f172a;
}

.review-criteria-box {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.score-method-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.criteria-table-wrap {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

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

.criteria-table th,
.criteria-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eef2f7;
  text-align: left;
  vertical-align: top;
}

.criteria-table th {
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.criteria-table td {
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
}

.criteria-table td:first-child {
  color: #0f172a;
  font-weight: 900;
}

.criteria-table tr:last-child td {
  border-bottom: 0;
}

.criteria-weight {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 900;
  white-space: nowrap;
}

.review-criteria-box h4 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

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

.criteria-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 13px 14px;
  background: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.criteria-item span {
  color: #475569;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.criteria-item strong {
  color: #0f172a;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.compact-review-card > h2 {
  margin-bottom: 14px;
}

.compact-signal-card {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.compact-signal-card > div {
  display: grid;
  grid-template-columns: minmax(128px, 0.34fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  background: #f8fafc;
}

.compact-signal-card span {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

.compact-signal-card p {
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
}

.criteria-note {
  margin: 14px 0 0;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  padding: 12px;
  background: #fff7ed;
  color: #334155;
  font-size: 13px;
  line-height: 1.6;
}

.safety-checks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.check-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
  background: #fbfcfe;
}

.check-card .mini-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  font-size: 17px;
}

.check-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
}

.check-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.phone-mock {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background:
    radial-gradient(circle at 78% 18%, rgba(244, 37, 71, 0.12), transparent 22%),
    linear-gradient(135deg, #fff 0%, #f7f9fc 100%);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.phone {
  width: 156px;
  height: 264px;
  border: 9px solid var(--navy);
  border-radius: 24px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(6, 17, 29, 0.18);
}

.phone-screen {
  display: grid;
  gap: 10px;
}

.phone-line,
.phone-card {
  border-radius: 999px;
  background: #dfe5ee;
}

.phone-line {
  height: 9px;
}

.phone-line.dark {
  width: 64%;
  background: var(--navy);
}

.phone-card {
  height: 54px;
  border-radius: 8px;
  background: #edf1f6;
}

.mobile-snapshot-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background:
    radial-gradient(circle at 78% 14%, rgba(244, 37, 71, 0.12), transparent 23%),
    linear-gradient(135deg, #fff 0%, #fff8fa 100%);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.mobile-experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 22px;
  align-items: stretch;
}

.mobile-summary-panel {
  min-width: 0;
}

.section-eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.mobile-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.mobile-metric-grid div {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  background: #f8fafc;
}

.mobile-metric-grid span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.mobile-metric-grid strong {
  display: block;
  margin-top: 5px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.mobile-phone-panel {
  min-height: 0;
  justify-content: flex-start;
  padding: 22px;
}

.mobile-phone-panel h3 {
  margin: 0;
  color: #0f172a;
  font-size: 17px;
  line-height: 1.25;
}

.mobile-illustration {
  display: flex;
  justify-content: center;
}

.phone-preview-frame {
  display: grid;
  width: min(100%, 230px);
  min-height: 330px;
  margin: 0 auto;
  place-items: center;
  border: 10px solid #0f172a;
  border-radius: 28px;
  padding: 10px;
  background: #0f172a;
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.2);
}

.phone-frame {
  width: 116px;
  height: 166px;
  border: 8px solid var(--navy);
  border-radius: 24px;
  padding: 17px 14px;
  background: #fff;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
}

.phone-frame span {
  display: block;
}

.phone-bar {
  width: 62px;
  height: 8px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--navy);
}

.phone-block {
  height: 42px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #e8edf4;
}

.phone-block.small {
  height: 32px;
}

.phone-frame .phone-line {
  height: 8px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #dce3ec;
}

.phone-frame .phone-line.short {
  width: 80%;
}

.mobile-screenshot-frame {
  display: grid;
  width: min(220px, 100%);
  max-width: 220px;
  max-height: 300px;
  margin: 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.16);
}

.mobile-screenshot-frame img {
  display: block;
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.mobile-tips-box {
  margin-top: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
  background: #f8fafc;
}

.mobile-tips-box h4 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.mobile-tips-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-tips-box li {
  position: relative;
  padding-left: 20px;
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
}

.mobile-tips-box li::before {
  position: absolute;
  top: 0.7em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #16a34a;
  content: "";
}

.mobile-snapshot-content h3 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.25;
}

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

.mobile-check-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
}

.mobile-check-list span {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.mobile-check-list strong {
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-align: right;
}

.mobile-verdict {
  margin: 14px 0 0;
  border-radius: 8px;
  padding: 12px;
  background: #f8fafc;
  color: #334155;
  font-size: 13px;
  line-height: 1.6;
}

.mobile-verdict strong {
  color: #0f172a;
}

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

.review-alt-card {
  display: flex;
  min-height: 246px;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.review-alt-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.review-alt-top h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.review-alt-top p,
.review-alt-desc {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.review-alt-desc {
  margin-top: 0;
}

.review-alt-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.review-alt-meta div {
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px;
  background: #f8fafc;
}

.review-alt-meta dt {
  margin: 0 0 3px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}

.review-alt-meta dd {
  margin: 0;
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.review-alt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.alternative-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.alternative-detail-list .detail-top {
  align-items: center;
}

.alt-hero-inner {
  align-items: center;
}

.alt-original-logo-card {
  display: grid;
  justify-self: end;
  width: min(100%, 220px);
  min-height: 150px;
  place-items: center;
  gap: 10px;
  border: 1px solid #ffd1d9;
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(135deg, #07111f 0%, #111827 100%);
  color: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.alt-original-logo-card img {
  max-width: 132px;
  max-height: 62px;
  object-fit: contain;
}

.alt-original-logo-text {
  display: grid;
  min-width: 74px;
  min-height: 54px;
  place-items: center;
  border-radius: 8px;
  background: #020817;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.alt-original-logo-card strong {
  font-size: 13px;
  text-transform: uppercase;
}

.alt-quick-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.alt-pick-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.alt-pick-meta {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.alt-pick-meta div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: #f8fafc;
}

.alt-pick-meta dt,
.alt-pick-meta dd {
  margin: 0;
  font-size: 12px;
}

.alt-pick-meta dt {
  color: #64748b;
  font-weight: 800;
}

.alt-pick-meta dd {
  color: #0f172a;
  font-weight: 900;
  text-align: right;
}

.alt-fit-note {
  margin: 12px 0 16px;
  border-left: 3px solid #0c7c45;
  padding-left: 10px;
  color: #4b596d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.alt-pick-card .small-btn {
  margin-top: auto;
}

.site-logo img,
.detail-site-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-site-logo {
  flex: 0 0 auto;
}

.alt-detail-card .detail-title {
  align-items: center;
}

.alt-detail-body {
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
}

.alt-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 18px;
}

.alt-tag-list span {
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 6px 10px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 900;
}

.alt-score {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: #eaf8f1;
  color: #0c7c45;
  font-size: 12px;
  font-weight: 900;
}

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

.alt-note-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.alt-note-card > span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  background: #eef8f1;
  color: #0c7c45;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

.alt-related-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.alt-related-card > span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  background: #fff1f2;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.alt-related-card h3 {
  margin: 12px 0 8px;
  font-size: 17px;
}

.alt-related-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.alt-related-card .small-btn {
  margin-top: auto;
  align-self: flex-start;
}

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

.decision-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.decision-card .mini-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  font-size: 19px;
}

.decision-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.decision-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.original-review-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #ffd0d8;
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(135deg, #fff 0%, #fff7f8 100%);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.original-review-card h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.2;
}

.original-review-card p {
  margin: 8px 0 0;
  color: #596579;
  font-size: 14px;
}

.editorial-note {
  border: 1px solid #d9e5f5;
  border-radius: var(--radius);
  padding: 20px 22px;
  background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.editorial-note h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.editorial-note p {
  margin: 8px 0 0;
  color: #596579;
  font-size: 14px;
  line-height: 1.7;
}

.reviews-hub {
  background: #f3f6fa;
}

.reviews-hub-hero .category-hub-hero-inner {
  align-items: center;
}

.reviews-hub-stats div:first-child {
  background: #fff1f4;
}

.reviews-search-section {
  padding-top: 28px;
}

.reviews-filter-form {
  display: grid;
  gap: 18px;
}

.review-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1.2fr);
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.045);
}

.review-search-panel h2 {
  margin: 0;
  font-size: 22px;
}

.review-search-panel p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.review-search-input input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  padding: 0 16px;
  background: #f8fafc;
  color: var(--text);
  font-size: 15px;
}

.az-index {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: #fff;
}

.az-index h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.az-index div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.az-index a,
.az-index span {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #fff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
}

.az-index a:hover {
  border-color: #ffb8c5;
  color: var(--brand);
}

.az-index span {
  background: #f1f5f9;
  color: #94a3b8;
}

.reviews-filter-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
}

.reviews-filter-bar label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.reviews-filter-bar label span {
  color: #475569;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-filter-bar select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 0 10px;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 700;
}

.reviews-filter-bar .btn {
  min-height: 42px;
  padding-inline: 18px;
  white-space: nowrap;
}

.result-count {
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 8px 12px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 900;
}

.review-directory-groups {
  display: grid;
  gap: 26px;
}

.review-letter-group {
  scroll-margin-top: 90px;
}

.review-letter-group > h3 {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  border-radius: 12px;
  background: #07111f;
  color: #fff;
  font-size: 18px;
}

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

.review-directory-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
}

.review-card-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.review-directory-logo {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #07111f;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.review-directory-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review-card-head h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.review-card-head span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.review-directory-card > p {
  margin: 14px 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

.review-card-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 16px;
}

.review-card-metrics div {
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  padding: 9px 10px;
  background: #f8fafc;
}

.review-card-metrics dt,
.review-card-metrics dd {
  margin: 0;
  font-size: 12px;
}

.review-card-metrics dt {
  color: #64748b;
  font-weight: 800;
}

.review-card-metrics dd {
  margin-top: 3px;
  color: #0f172a;
  font-weight: 900;
}

.review-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
}

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

.review-featured-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.review-featured-card h3 {
  margin: 0;
  font-size: 16px;
}

.review-featured-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.review-featured-card > span:last-child {
  grid-column: 1 / -1;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

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

.review-category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.latest-review-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.latest-review-card h3 {
  margin: 0;
  font-size: 17px;
}

.latest-review-card p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.latest-review-card span {
  display: block;
  margin-top: 6px;
  color: #475569;
  font-size: 13px;
}

.review-safety-reminder {
  grid-template-columns: 1fr;
}

.alternatives-hub {
  background: #f3f6fa;
}

.alternatives-hub .review-search-panel {
  border-color: #ffd6de;
}

.alternatives-filter-bar {
  grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
}

.problem-grid-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.04);
}

.problem-grid-section h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

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

.problem-card {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  gap: 9px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  background: #f8fafc;
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.problem-card:hover {
  transform: translateY(-2px);
  border-color: #ffb8c5;
  box-shadow: 0 14px 30px rgba(244, 37, 71, 0.08);
}

.problem-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.25;
}

.problem-card p {
  margin: 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.55;
}

.problem-card > span {
  margin-top: auto;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.alternative-directory-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
}

.alternative-directory-card > p {
  margin: 14px 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

.alternative-reason-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.alternative-reason-tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ffd6de;
  border-radius: 999px;
  padding: 6px 9px;
  background: #fff1f4;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.alternatives-hub .review-card-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.alternatives-hub .review-card-metrics div:last-child {
  grid-column: 1 / -1;
}

.alternatives-hub .review-featured-card {
  color: inherit;
}

.alternatives-hub .method-card {
  min-height: 100%;
}

.safety-guide-page {
  background: #f3f6fa;
}

.safety-guide-hero .category-hub-hero-inner {
  align-items: center;
}

.safety-hero-card {
  display: grid;
  gap: 12px;
  border: 1px solid #bbf7d0;
  border-radius: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 56px rgba(22, 163, 74, 0.09);
}

.safety-hero-card > div:not(.safety-hero-icon) {
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  background: #f8fafc;
}

.safety-hero-card strong {
  color: #0f172a;
  font-size: 14px;
}

.safety-hero-card span {
  color: #475569;
  font-size: 13px;
  line-height: 1.45;
}

.safety-hero-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  justify-self: center;
  border: 1px solid #86efac;
  border-radius: 20px;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #15803d;
  box-shadow: 0 18px 35px rgba(22, 163, 74, 0.18);
}

.safety-hero-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.safety-meaning-grid,
.safety-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.safety-meaning-card {
  min-height: 100%;
}

.safety-inline-note {
  margin-top: 16px;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff7ed;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

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

.safety-risk-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
}

.safety-risk-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
}

.safety-risk-card p {
  margin: 10px 0 16px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.safety-check-mini {
  margin-top: auto;
  border-top: 1px solid #eef2f7;
  padding-top: 14px;
}

.safety-check-mini strong {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 13px;
}

.safety-check-mini ul,
.safety-checklist,
.safety-habit-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.safety-check-mini li,
.safety-checklist li,
.safety-habit-list li {
  position: relative;
  padding-left: 22px;
  color: #334155;
  font-size: 13px;
  line-height: 1.55;
}

.safety-check-mini li::before,
.safety-checklist li::before,
.safety-habit-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  content: "\2713";
  font-weight: 900;
}

.safety-checklist-card {
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(29, 78, 216, 0.055);
}

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

.safety-checklist li {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 12px 11px 34px;
  background: #f8fafc;
  font-weight: 750;
}

.safety-checklist li::before {
  left: 13px;
  top: 11px;
}

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

.safety-type-card {
  min-height: 210px;
}

.safety-habit-list {
  margin-top: 14px;
}

.safety-habit-list li {
  border-bottom: 1px solid #eef2f7;
  padding-bottom: 8px;
}

.safety-compare-card {
  display: flex;
  flex-direction: column;
}

.safety-compare-card .safety-actions {
  margin-top: auto;
}

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

.guides-page {
  background: #f4f7fb;
}

.guides-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.28), transparent 28%),
    radial-gradient(circle at 48% 108%, rgba(244, 37, 71, 0.16), transparent 32%),
    linear-gradient(135deg, #06111d 0%, #0b1726 58%, #090e16 100%);
}

.guides-hero-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(219, 234, 254, 0.24);
  border-radius: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.18);
}

.guides-hero-card div {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
}

.guides-hero-card strong {
  color: #fff;
  font-size: 14px;
}

.guides-hero-card span {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.45;
}

.guide-featured-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.guide-featured-card,
.guide-topic-card,
.guide-checklist-card,
.guide-compare-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
}

.guide-featured-card {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.guide-featured-card:hover,
.guide-type-card:hover,
.guide-compare-card:hover {
  transform: translateY(-2px);
  border-color: #ffbdc8;
  box-shadow: var(--shadow);
}

.guide-featured-card h3,
.guide-topic-card h3,
.guide-checklist-card h3,
.guide-compare-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 19px;
  line-height: 1.25;
}

.guide-featured-card p,
.guide-topic-card p,
.guide-checklist-card p,
.guide-compare-card p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

.guide-featured-card strong {
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
}

.guide-topic-grid,
.guide-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.guide-topic-card,
.guide-checklist-card {
  padding: 18px;
}

.guide-checklist-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.guide-checklist-card {
  border-color: #dbeafe;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.guide-type-card {
  min-height: 218px;
}

.guide-compare-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.guide-compare-card {
  display: block;
  min-height: 150px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.guide-compare-card p {
  margin-top: 8px;
}

.guide-cta-card {
  border: 1px solid #ffd1d9;
  border-radius: var(--radius);
  padding: 28px;
  background: linear-gradient(135deg, #fff 0%, #fff1f4 100%);
  box-shadow: var(--shadow);
}

.guide-cta-card h2 {
  margin: 0;
  color: #0f172a;
  font-size: 28px;
}

.guide-cta-card p {
  max-width: 850px;
  margin: 10px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.guide-detail-page {
  background: #f4f7fb;
}

.guide-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.guide-detail-card {
  min-height: 100%;
}

.guide-detail-card h2 {
  margin-top: 14px;
}

.guide-detail-checklist {
  margin-top: 18px;
}

.guide-related-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.guide-related-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 13px;
  background: #f8fafc;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.guide-related-list a:hover {
  border-color: #ffbdc8;
  background: #fff1f4;
  color: var(--brand);
}

.methodology-page {
  background: #f4f7fb;
}

.methodology-hero {
  background:
    radial-gradient(circle at 78% 16%, rgba(34, 197, 94, 0.22), transparent 27%),
    radial-gradient(circle at 48% 108%, rgba(244, 37, 71, 0.14), transparent 32%),
    linear-gradient(135deg, #06111d 0%, #0b1726 58%, #090e16 100%);
}

.methodology-hero-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(219, 234, 254, 0.24);
  border-radius: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.18);
}

.methodology-hero-card div {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
}

.methodology-hero-card strong {
  color: #fff;
  font-size: 14px;
}

.methodology-hero-card span {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.45;
}

.methodology-intro-card,
.methodology-evaluate-card,
.methodology-label-card,
.methodology-process-card,
.methodology-limit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
}

.methodology-intro-card {
  padding: 28px;
}

.methodology-intro-card h2,
.methodology-process-card h3,
.methodology-limit-card h3,
.methodology-label-card h3,
.methodology-evaluate-card h3 {
  margin: 0;
  color: #0f172a;
}

.methodology-intro-card p,
.methodology-process-card p,
.methodology-limit-card p,
.methodology-label-card li,
.methodology-evaluate-card p {
  color: #475569;
  line-height: 1.7;
}

.methodology-intro-card p {
  max-width: 920px;
  margin: 12px 0 0;
}

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

.methodology-evaluate-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.methodology-evaluate-card h3 {
  margin-top: 18px;
  font-size: 18px;
}

.methodology-evaluate-card p {
  margin: 10px 0 0;
  font-size: 14px;
}

.methodology-dot {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff1f4;
  box-shadow: inset 0 0 0 8px #f42547;
}

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

.methodology-label-card {
  padding: 20px;
}

.methodology-label-card h3 {
  font-size: 19px;
}

.methodology-label-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.methodology-label-card li {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 12px;
  background: #f8fafc;
  font-size: 14px;
}

.methodology-process-grid,
.methodology-limits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.methodology-process-card,
.methodology-limit-card {
  padding: 22px;
}

.methodology-process-card h3,
.methodology-limit-card h3 {
  font-size: 21px;
}

.methodology-process-card p,
.methodology-limit-card p {
  margin: 12px 0 0;
  font-size: 15px;
}

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

.methodology-related-card {
  min-height: 210px;
}

.disclosure-page {
  background: #f4f7fb;
}

.disclosure-hero {
  background:
    radial-gradient(circle at 77% 18%, rgba(245, 158, 11, 0.24), transparent 28%),
    radial-gradient(circle at 48% 108%, rgba(244, 37, 71, 0.13), transparent 32%),
    linear-gradient(135deg, #06111d 0%, #0b1726 58%, #090e16 100%);
}

.disclosure-updated {
  margin: 0 0 12px;
  color: #fed7aa !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.disclosure-hero-card,
.disclosure-notice-card,
.disclosure-overview-card,
.disclosure-info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
}

.disclosure-hero-card {
  display: grid;
  gap: 12px;
  border-color: rgba(254, 215, 170, 0.34);
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.18);
}

.disclosure-hero-card div {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
}

.disclosure-hero-card strong {
  color: #fff;
  font-size: 14px;
}

.disclosure-hero-card span {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.45;
}

.disclosure-notice-card {
  padding: 28px;
  border-color: #fed7aa;
  background: linear-gradient(135deg, #fff 0%, #fff7ed 100%);
}

.disclosure-notice-card h2,
.disclosure-overview-card h3,
.disclosure-info-card h2 {
  margin: 0;
  color: #0f172a;
}

.disclosure-notice-card h2 {
  margin-top: 12px;
}

.disclosure-notice-card p,
.disclosure-overview-card p,
.disclosure-info-card p,
.disclosure-check-list li,
.disclosure-list-item {
  color: #475569;
  line-height: 1.7;
}

.disclosure-notice-card p {
  max-width: 940px;
  margin: 12px 0 0;
}

.disclosure-notice-card .btn {
  margin-top: 18px;
}

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

.disclosure-overview-card {
  padding: 20px;
}

.disclosure-overview-card h3 {
  margin-top: 18px;
  font-size: 20px;
}

.disclosure-overview-card p {
  margin: 10px 0 0;
  font-size: 14px;
}

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

.disclosure-info-card {
  padding: 24px;
}

.disclosure-info-card h2 {
  font-size: 24px;
}

.disclosure-info-card p {
  margin: 12px 0 0;
}

.disclosure-warm-card {
  border-color: #fed7aa;
  background: #fffaf3;
}

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

.disclosure-list-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 13px 14px;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.disclosure-check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.disclosure-check-list li {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px 10px 34px;
  background: #f8fafc;
  font-size: 14px;
}

.disclosure-check-list li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
}

.editorial-page {
  background: #f4f7fb;
}

.editorial-hero {
  background:
    radial-gradient(circle at 78% 16%, rgba(59, 130, 246, 0.22), transparent 28%),
    radial-gradient(circle at 48% 108%, rgba(244, 37, 71, 0.14), transparent 32%),
    linear-gradient(135deg, #06111d 0%, #0b1726 58%, #090e16 100%);
}

.editorial-hero-card {
  border-color: rgba(219, 234, 254, 0.24);
}

.editorial-intro-card .btn,
.editorial-affiliate-card .btn,
.editorial-policy-note .btn {
  margin-top: 18px;
}

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

.editorial-principle-card {
  min-height: 230px;
}

.editorial-workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  counter-reset: editorial-step;
}

.editorial-step-card {
  position: relative;
  min-height: 122px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 18px 62px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.editorial-step-card::before {
  counter-increment: editorial-step;
  content: counter(editorial-step);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fff1f4;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.editorial-step-card p {
  margin: 0;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.editorial-policy-note {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 20px;
  background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
}

.editorial-policy-note p {
  max-width: 980px;
  margin: 0;
  color: #334155;
  line-height: 1.65;
}

.editorial-affiliate-card {
  border-color: #fed7aa;
}

.editorial-no-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.not-found-page {
  min-height: 100vh;
  background: #f4f7fb;
}

.not-found-hero {
  padding: 66px 0 46px;
  background:
    radial-gradient(circle at 82% 18%, rgba(244, 37, 71, 0.24), transparent 30%),
    radial-gradient(circle at 44% 108%, rgba(59, 130, 246, 0.16), transparent 32%),
    linear-gradient(135deg, #06111d 0%, #0b1726 58%, #090e16 100%);
  color: #fff;
}

.not-found-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.48fr);
  align-items: center;
  gap: 36px;
}

.not-found-copy h1 {
  max-width: 760px;
  margin: 12px 0 14px;
  color: #fff;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.not-found-copy > p {
  max-width: 760px;
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
}

.not-found-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 760px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.26);
}

.not-found-search input {
  min-height: 58px;
  border: 0;
  padding: 0 20px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
  outline: 0;
}

.not-found-search button {
  min-height: 58px;
  border: 0;
  padding: 0 24px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.not-found-search button:hover {
  background: var(--brand-dark);
}

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

.not-found-visual {
  display: grid;
  gap: 10px;
  justify-items: center;
  border: 1px solid rgba(219, 234, 254, 0.24);
  border-radius: 26px;
  padding: 34px 24px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.26);
}

.not-found-visual strong {
  color: #fff;
  font-size: clamp(64px, 10vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
}

.not-found-visual span {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fecdd3;
  font-size: 13px;
  font-weight: 900;
}

.not-found-visual p {
  max-width: 220px;
  margin: 0;
  color: #cbd5e1;
  line-height: 1.55;
}

.not-found-section {
  padding: 34px 0;
}

.not-found-grid {
  display: grid;
  gap: 14px;
}

.not-found-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.not-found-card,
.not-found-explain-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
}

.not-found-card {
  display: grid;
  gap: 10px;
  min-height: 250px;
  padding: 20px;
  color: inherit;
  text-decoration: none;
}

.not-found-card:hover {
  border-color: #ffbdc8;
  transform: translateY(-2px);
}

.not-found-card h3,
.not-found-explain-card h2 {
  margin: 0;
  color: #0f172a;
}

.not-found-card p,
.not-found-explain-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.not-found-card strong {
  align-self: end;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
}

.not-found-safety-card {
  border-color: #bbf7d0;
}

.not-found-ranking-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.not-found-ranking-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.not-found-ranking-list a:hover {
  border-color: #ffbdc8;
  color: var(--brand);
}

.not-found-explain-card {
  padding: 26px;
  background: linear-gradient(135deg, #fff 0%, #eff6ff 100%);
}

.not-found-explain-card p {
  max-width: 940px;
  margin-top: 12px;
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow: visible;
    padding-bottom: 4px;
  }

  .nav-menu {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .nav-menu .sub-menu {
    left: 0;
    grid-template-columns: 1fr;
    width: min(420px, calc(100vw - 28px));
    max-height: 58vh;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .category-hub-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .category-hub-stats,
  .hub-popular-grid,
  .rankings-featured-grid,
  .hub-small-grid,
  .hub-criteria-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .mobile-menu-toggle {
    display: inline-grid;
  }

  .js .site-header .nav-links {
    display: none;
  }

  .js .site-header.is-mobile-menu-open .nav-links {
    display: flex;
  }

  .nav-links {
    border-top: 1px solid var(--line-soft);
    padding-top: 8px;
  }

  .nav-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-menu > li {
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .nav-menu > li > a {
    flex: 1 1 auto;
  }

  .nav-menu .sub-menu {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 50vh;
    margin-top: 6px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu .sub-menu::before {
    display: none;
  }

  .js .nav-menu .sub-menu {
    display: none;
  }

  .js .nav-menu .menu-item-has-children.is-open > .sub-menu {
    display: grid;
  }

  h1,
  .hero h1 {
    font-size: 31px;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    font-size: 15px;
  }

  .brand-image img {
    width: 155px;
  }

  .header-search {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    gap: 15px;
    font-size: 13px;
  }

  h1,
  .hero h1 {
    font-size: 28px;
  }

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

@media (max-width: 1080px) {
  .criteria-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

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

  .reviews-filter-bar .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .review-directory-grid,
  .methodology-evaluate-grid,
  .methodology-related-grid,
  .disclosure-overview-grid,
  .disclosure-list-grid,
  .editorial-principles-grid,
  .editorial-content-grid,
  .editorial-workflow-grid,
  .not-found-grid-four,
  .not-found-ranking-list,
  .problem-grid,
  .guide-featured-grid,
  .guide-checklist-grid,
  .guide-compare-grid,
  .safety-risk-grid,
  .safety-type-grid,
  .safety-related-grid,
  .reviews-hub .method-grid,
  .review-category-grid,
  .review-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-home {
    background-image:
      linear-gradient(180deg, rgba(4, 13, 25, 0.95) 0%, rgba(4, 13, 25, 0.91) 48%, rgba(4, 13, 25, 0.84) 100%),
      url("../images/home-hero-safety-mobile.webp");
    background-position: center, 72% center;
    background-repeat: no-repeat;
    background-size: cover, cover;
  }

  .hero-home-inner {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .category-hero-inner {
    grid-template-columns: 1fr;
  }

  .ranking-method-box,
  .ranking-hero-inner,
  .review-hero-inner,
  .category-detail-hero-inner,
  .category-detail-grid,
  .category-safety-card,
  .not-found-hero-inner,
  .guide-detail-layout,
  .detail-body {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    justify-self: start;
    width: 142px;
    height: 142px;
  }

  .hero-trophy {
    justify-self: start;
    width: 142px;
    height: 142px;
    font-size: 70px;
  }

  .site-logo-large {
    justify-self: start;
    width: 168px;
    min-height: 118px;
  }

  .alt-original-logo-card {
    justify-self: start;
  }

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

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

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

  .summary-verdict {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

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

  .hero-art {
    min-height: 330px;
  }

  .hero-home .hero-art {
    display: none;
  }

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

  .card-grid,
  .reviews-grid,
  .alternatives-list,
  .category-quick-picks,
  .ranking-alternative-grid,
  .choice-grid,
    .related-links,
    .review-alt-grid,
    .alt-quick-grid,
    .alt-note-grid,
    .alt-related-grid,
    .review-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-actions .btn {
    width: 100%;
  }

  .hero-search {
    display: grid;
  }

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

  .hero-search button {
    min-height: 46px;
    border-left: 0;
    border-top: 1px solid #f1c2ca;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hero-art::before {
    inset: 22px 20px 20px 32%;
  }

  .hero-art::after {
    right: 24px;
    width: 190px;
  }

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

  .card-grid,
  .reviews-grid,
  .alternatives-list,
  .category-quick-picks,
  .ranking-alternative-grid,
  .ranking-method-points,
  .snapshot-grid,
  .criteria-grid,
  .two-col,
  .choice-grid,
    .hub-popular-grid,
    .rankings-featured-grid,
    .hub-small-grid,
    .hub-card-metrics,
    .hub-criteria-grid,
    .quick-grid,
    .metric-grid,
    .method-grid,
    .summary-grid,
    .pros-grid,
    .safety-checks,
    .score-basis-grid,
    .criteria-list,
    .evidence-grid,
    .review-alt-grid,
    .decision-grid,
    .alt-note-grid,
    .alt-related-grid,
    .reviews-filter-bar,
    .review-directory-grid,
    .methodology-evaluate-grid,
    .methodology-label-grid,
    .methodology-process-grid,
    .methodology-limits-grid,
    .methodology-related-grid,
    .disclosure-overview-grid,
    .disclosure-two-column,
    .disclosure-list-grid,
    .editorial-principles-grid,
    .editorial-content-grid,
    .editorial-workflow-grid,
    .editorial-no-list,
    .not-found-grid-four,
    .not-found-grid-three,
    .not-found-ranking-list,
    .problem-grid,
    .guide-featured-grid,
    .guide-topic-grid,
    .guide-checklist-grid,
    .guide-type-grid,
    .guide-compare-grid,
    .safety-meaning-grid,
    .safety-two-column,
    .safety-risk-grid,
    .safety-checklist,
    .safety-type-grid,
    .safety-related-grid,
    .static-info-layout,
    .static-contact-form,
    .reviews-hub .method-grid,
    .review-category-grid,
    .review-featured-grid,
    .related-links {
    grid-template-columns: 1fr;
  }

  .static-contact-form .form-wide,
  .static-form-note,
  .static-submit-btn {
    grid-column: auto;
  }

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

  .not-found-search button {
    border-top: 1px solid #fecdd3;
  }

  .not-found-actions,
  .not-found-actions .btn {
    width: 100%;
  }

  .az-index div {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .latest-review-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .safety-hero-card > div:not(.safety-hero-icon) {
    grid-template-columns: 1fr;
  }

  .preview-action-row,
  .preview-action-row .btn {
    width: 100%;
  }

  .ranking-groups-grid {
    grid-template-columns: 1fr;
  }

  .ranking-group-card-head {
    min-height: 0;
    padding: 16px;
  }

  .ranking-card-row {
    grid-template-columns: 28px 42px minmax(0, 1fr);
    gap: 9px;
    padding: 10px;
  }

  .ranking-card-row .rank-badge {
    width: 28px;
    height: 28px;
  }

  .ranking-card-row .site-logo {
    width: 42px;
    height: 42px;
  }

  .ranking-card-row strong {
    font-size: 15px;
  }

  .ranking-text-link {
    grid-column: 1 / -1;
    justify-self: stretch;
    min-height: 38px;
    margin-top: 4px;
  }

  .category-hub-hero h1 {
    font-size: 42px;
  }

  .category-hub-hero p {
    font-size: 16px;
  }

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

  .hub-quick-tags {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .hub-quick-tags a,
  .hub-quick-tags span {
    flex: 0 0 auto;
  }

  .summary-score {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .summary-verdict {
    border-top: 1px solid var(--line-soft);
  }

  .list-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .list-card .small-btn {
    grid-column: 2;
    justify-self: start;
  }

  .ranking-table,
  .preview-table,
  .ratings-table,
  .alternative-table {
    border: 0;
    background: transparent;
  }

  .ranking-table table,
  .ranking-table thead,
  .ranking-table tbody,
  .ranking-table tr,
  .ranking-table th,
  .ranking-table td,
  .preview-table table,
  .preview-table thead,
  .preview-table tbody,
  .preview-table tr,
  .preview-table th,
  .preview-table td,
  .ratings-table table,
  .ratings-table thead,
  .ratings-table tbody,
  .ratings-table tr,
  .ratings-table th,
  .ratings-table td,
  .alternative-table table,
  .alternative-table thead,
  .alternative-table tbody,
  .alternative-table tr,
  .alternative-table th,
  .alternative-table td {
    display: block;
  }

  .ranking-table thead,
  .preview-table thead,
  .ratings-table thead,
  .alternative-table thead {
    display: none;
  }

  .ranking-table tr,
  .preview-table tr,
  .ratings-table tr,
  .alternative-table tr {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .ranking-table td,
  .preview-table td,
  .ratings-table td,
  .alternative-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--line-soft);
  }

  .ranking-table td::before,
  .preview-table td::before,
  .ratings-table td::before,
  .alternative-table td::before {
    content: attr(data-label);
    flex: 0 0 94px;
    color: #647084;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .ranking-table td:first-child,
  .preview-table td:first-child,
  .ratings-table td:first-child,
  .alternative-table td:first-child {
    display: block;
  }

  .ranking-table td:first-child::before,
  .preview-table td:first-child::before,
  .ratings-table td:first-child::before,
  .alternative-table td:first-child::before {
    display: block;
    margin-bottom: 8px;
  }

  .table-actions {
    justify-content: flex-start;
    min-width: 0;
  }

  .guide-band {
    grid-template-columns: 1fr;
  }

  .safety-band {
    grid-template-columns: 1fr;
  }

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

  .original-review-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-visual {
    width: 132px;
    height: 132px;
    font-size: 62px;
  }
}

@media (max-width: 520px) {
  .hero-art {
    min-height: 300px;
  }

  .site-logo-large {
    width: 150px;
    min-height: 106px;
    padding: 18px;
    font-size: 15px;
  }

  .hero-panel {
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

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

  .phone {
    width: 142px;
    height: 240px;
  }

  .mobile-snapshot-card {
    min-height: 0;
    padding: 22px;
  }

  .mobile-check-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-check-list strong {
    text-align: left;
  }

  .category-card {
    grid-template-columns: 44px 1fr;
    min-height: 0;
    padding: 15px;
  }

  .icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 980px) {
  .review-status-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .mobile-phone-panel {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .review-status-strip,
  .score-basis-grid,
  .mobile-metric-grid {
    grid-template-columns: 1fr;
  }

  .basis-item {
    grid-template-columns: 1fr;
  }

  .basis-status {
    max-width: none;
    justify-self: start;
  }

  .compact-signal-card > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .criteria-table,
  .criteria-table thead,
  .criteria-table tbody,
  .criteria-table tr,
  .criteria-table th,
  .criteria-table td {
    display: block;
  }

  .criteria-table thead {
    display: none;
  }

  .criteria-table tr {
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 14px;
  }

  .criteria-table tr:last-child {
    border-bottom: 0;
  }

  .criteria-table td {
    border-bottom: 0;
    padding: 5px 0;
  }

  .criteria-table td::before {
    display: block;
    margin-bottom: 3px;
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .criteria-table td:nth-child(1)::before {
    content: "Criteria";
  }

  .criteria-table td:nth-child(2)::before {
    content: "Weight";
  }

  .criteria-table td:nth-child(3)::before {
    content: "What we look at";
  }
}

@media (max-width: 520px) {
  .review-status-strip {
    gap: 8px;
  }

  .score-method-card {
    padding: 18px;
  }

  .phone-preview-frame {
    width: min(100%, 210px);
    min-height: 300px;
  }
}
