/* Generated from style.css. Module: global. */
: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: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, 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;
  gap: 4px;
  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[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-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);
}

.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-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-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;
}

.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;
}

.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;
}

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

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

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

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

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

.need-list article,
.need-list a {
border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 13px;
  background: #f8fafc;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.need-list a:hover,
.need-list a:focus-visible {
border-color: rgba(245, 29, 72, 0.35);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.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;
}

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

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;
}

.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;
}

.chip.no-signup,
.chip.optional-signup,
.chip.free,
.chip.lower,
.chip.low-to-medium {
background: #eaf8f1;
  color: #0c7c45;
}

.chip.required-signup,
.chip.must-register,
.chip.subscription,
.chip.credit-based,
.chip.premium,
.chip.medium-to-high,
.chip.higher {
background: #fff0f3;
  color: #b82035;
}

.chip.freemium,
.chip.unknown {
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;
}

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

.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);
}

.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;
}

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

.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);
}

.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);
}

.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;
}

.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;
}

.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;
}

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

.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;
}

.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;
}

.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;
}

.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);
}

.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;
}

.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;
}

.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;
}

.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;
}

.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);
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

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

.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%;
}

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

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

.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;
}

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

.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;
}

.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;
}

@media (max-width: 980px) {
.nav {
flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
}
}

@media (max-width: 980px) {
.site-header .nav-links {
display: none;
}

.site-header.is-mobile-menu-open .nav-links {
display: flex;
}

.mobile-menu-toggle {
display: inline-grid;
}
}

@media (max-width: 980px) {
.nav-links {
order: 3;
    width: 100%;
    overflow: visible;
    padding-bottom: 4px;
}
}

@media (max-width: 980px) {
.nav-menu {
flex-wrap: wrap;
    gap: 8px 16px;
}
}

@media (max-width: 980px) {
.nav-menu .sub-menu {
left: 0;
    grid-template-columns: 1fr;
    width: min(420px, calc(100vw - 28px));
    max-height: 58vh;
}
}

@media (max-width: 980px) {
.footer-inner {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (max-width: 980px) {
.footer-brand {
grid-column: 1 / -1;
}
}

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

@media (max-width: 760px) {
.js .site-header .nav-links {
display: none;
}
}

@media (max-width: 760px) {
.js .site-header.is-mobile-menu-open .nav-links {
display: flex;
}
}

@media (max-width: 760px) {
.nav-links {
border-top: 1px solid var(--line-soft);
    padding-top: 8px;
}
}

@media (max-width: 760px) {
.nav-menu {
width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}
}

@media (max-width: 760px) {
.nav-menu > li {
width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
}
}

@media (max-width: 760px) {
.nav-menu > li > a {
flex: 1 1 auto;
}
}

@media (max-width: 760px) {
.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;
}
}

@media (max-width: 760px) {
.nav-menu .sub-menu::before {
display: none;
}
}

@media (max-width: 760px) {
.js .nav-menu .sub-menu {
display: none;
}
}

@media (max-width: 760px) {
.js .nav-menu .menu-item-has-children.is-open > .sub-menu {
display: grid;
}
}

@media (max-width: 760px) {
h1,
  .hero h1 {
font-size: 31px;
}
}

@media (max-width: 520px) {
.brand span:last-child {
font-size: 15px;
}
}

@media (max-width: 520px) {
.brand-image img {
width: 155px;
}
}

@media (max-width: 520px) {
.header-search {
width: 34px;
    height: 34px;
}
}

@media (max-width: 520px) {
.nav-links {
gap: 15px;
    font-size: 13px;
}
}

@media (max-width: 520px) {
h1,
  .hero h1 {
font-size: 28px;
}
}

@media (max-width: 520px) {
.footer-inner {
grid-template-columns: 1fr;
}
}

@media (max-width: 1080px) {
.method-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}

@media (max-width: 980px) {
.hero-badge {
justify-self: start;
    width: 142px;
    height: 142px;
}
}

@media (max-width: 980px) {
.hero-trophy {
justify-self: start;
    width: 142px;
    height: 142px;
    font-size: 70px;
}
}

@media (max-width: 980px) {
.site-logo-large {
justify-self: start;
    width: 168px;
    min-height: 118px;
}
}

@media (max-width: 980px) {
.summary-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (max-width: 980px) {
.summary-verdict {
grid-column: 1 / -1;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
}
}

@media (max-width: 980px) {
.hero-art {
min-height: 330px;
}
}

@media (max-width: 760px) {
.hero-actions .btn {
width: 100%;
}
}

@media (max-width: 760px) {
.stat:nth-child(2) {
border-right: 0;
}
}

@media (max-width: 760px) {
.stat:nth-child(1),
  .stat:nth-child(2) {
border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
}

@media (max-width: 760px) {
.hero-art::before {
inset: 22px 20px 20px 32%;
}
}

@media (max-width: 760px) {
.hero-art::after {
right: 24px;
    width: 190px;
}
}

@media (max-width: 760px) {
.section-heading {
align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}
}

@media (max-width: 760px) {
.az-index div {
flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
}
}

@media (max-width: 760px) {
.latest-review-card {
align-items: flex-start;
    flex-direction: column;
}
}

@media (max-width: 760px) {
.preview-action-row,
  .preview-action-row .btn {
width: 100%;
}
}

@media (max-width: 760px) {
.summary-score {
border-right: 0;
    border-bottom: 1px solid var(--line-soft);
}
}

@media (max-width: 760px) {
.summary-verdict {
border-top: 1px solid var(--line-soft);
}
}

@media (max-width: 760px) {
.list-card {
grid-template-columns: 42px minmax(0, 1fr);
}
}

@media (max-width: 760px) {
.list-card .small-btn {
grid-column: 2;
    justify-self: start;
}
}

@media (max-width: 760px) {
.table-actions {
justify-content: flex-start;
    min-width: 0;
}
}

@media (max-width: 520px) {
.hero-art {
min-height: 300px;
}
}

@media (max-width: 520px) {
.site-logo-large {
width: 150px;
    min-height: 106px;
    padding: 18px;
    font-size: 15px;
}
}

@media (max-width: 520px) {
.phone {
width: 142px;
    height: 240px;
}
}

@media (max-width: 520px) {
.icon {
width: 40px;
    height: 40px;
    font-size: 20px;
}
}

@media (max-width: 760px) {
.basis-item {
grid-template-columns: 1fr;
}
}

@media (max-width: 760px) {
.basis-status {
max-width: none;
    justify-self: start;
}
}

@media (max-width: 760px) {
.criteria-table,
  .criteria-table thead,
  .criteria-table tbody,
  .criteria-table tr,
  .criteria-table th,
  .criteria-table td {
display: block;
}
}

@media (max-width: 760px) {
.criteria-table thead {
display: none;
}
}

@media (max-width: 760px) {
.criteria-table tr {
border-bottom: 1px solid #e5e7eb;
    padding: 12px 14px;
}
}

@media (max-width: 760px) {
.criteria-table tr:last-child {
border-bottom: 0;
}
}

@media (max-width: 760px) {
.criteria-table td {
border-bottom: 0;
    padding: 5px 0;
}
}

@media (max-width: 760px) {
.criteria-table td::before {
display: block;
    margin-bottom: 3px;
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
}
}

@media (max-width: 760px) {
.criteria-table td:nth-child(1)::before {
content: "Criteria";
}
}

@media (max-width: 760px) {
.criteria-table td:nth-child(2)::before {
content: "Weight";
}
}

@media (max-width: 760px) {
.criteria-table td:nth-child(3)::before {
content: "What we look at";
}
}

@media (max-width: 520px) {
.score-method-card {
padding: 18px;
}
}

@media (max-width: 520px) {
.phone-preview-frame {
width: min(100%, 210px);
    min-height: 300px;
}
}
