/* Shared public styles for generated category reports. */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --page: 1240px;
  --gutter: clamp(18px, 4vw, 42px);
  --bg: #f4f6fa;
  --paper: #ffffff;
  --paper-soft: #f9fafc;
  --ink: #10131a;
  --ink-2: #465064;
  --muted: #768196;
  --line: #dfe4ec;
  --line-soft: #edf0f5;
  --dark: #101621;
  --dark-2: #182131;
  --indigo: #565cdf;
  --indigo-soft: #f0f1ff;
  --lime: #c7ff4a;
  --green: #118655;
  --green-soft: #eaf8f0;
  --red: #d54f59;
  --red-soft: #fff0f1;
  --amber: #a66b0a;
  --amber-soft: #fff6e7;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --mono: "IBM Plex Mono", "Cascadia Code", Consolas, monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -12rem, rgba(86, 92, 223, .09), transparent 34rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  text-rendering: optimizeLegibility;
}

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

img,
svg {
  display: block;
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid #7379ff;
  outline-offset: 3px;
}

.wrap {
  width: min(calc(100% - 2 * var(--gutter)), var(--page));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(211, 217, 227, .9);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 1px 0 rgba(16, 19, 26, .02);
  backdrop-filter: blur(20px) saturate(160%);
}

.nav-inner {
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand,
.brand-main,
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 9px;
  white-space: nowrap;
}

.brand-main {
  gap: 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.035em;
}

.brand-mark {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
}

.method-link {
  min-height: 22px;
  padding-left: 9px;
  border-left: 1px solid #dce1e9;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #667184;
  font: 600 8px var(--mono);
  letter-spacing: .065em;
  text-transform: uppercase;
  transition: color .16s ease, border-color .16s ease;
}

.method-link span {
  color: #9aa3b1;
  font-weight: 500;
}

.method-link:hover {
  border-color: #aeb7c5;
  color: var(--ink);
}

.nav-links {
  justify-content: center;
  gap: clamp(22px, 3vw, 38px);
}

.nav-actions {
  justify-content: flex-end;
  gap: 16px;
}

.nav-link,
.login-link {
  color: #697487;
  font: 500 10px var(--mono);
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: color .18s ease, transform .18s var(--ease);
}

.nav-link:hover,
.login-link:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-cta,
.button {
  min-height: 41px;
  padding: 0 16px;
  border: 1px solid var(--dark);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  box-shadow: 0 5px 16px rgba(10, 14, 22, .12);
  transition: transform .18s var(--ease), box-shadow .18s ease, background .18s ease;
}

.nav-cta {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 11px;
}

.nav-cta:hover,
.button:hover {
  background: #1d2532;
  box-shadow: 0 9px 22px rgba(10, 14, 22, .15);
  transform: translateY(-1px);
}

.button--light {
  border-color: var(--line);
  background: #fff;
  color: var(--ink-2);
  box-shadow: 0 1px 2px rgba(31, 45, 67, .04);
}

.button--light:hover {
  border-color: #c5cdd9;
  background: #fff;
  color: var(--ink);
}

.button--lime {
  border-color: var(--lime);
  background: var(--lime);
  color: #1a2208;
}

.button--lime:hover {
  background: #d1ff68;
}

.breadcrumbs {
  margin: 0;
  padding: 25px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: #8792a3;
  font: 500 9px var(--mono);
  letter-spacing: .04em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 7px;
  color: #bcc3ce;
}

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

.breadcrumbs li:last-child {
  color: #505b6d;
}

.category-hero {
  padding: 31px 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
}

.eyebrow,
.section-kicker,
.meta-label,
.card-kicker {
  color: #7f8a9d;
  font: 600 8px var(--mono);
  letter-spacing: .065em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--indigo);
}

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

.category-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 55px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.058em;
}

.category-hero p {
  max-width: 760px;
  margin: 15px 0 0;
  color: #657084;
  font-size: 15px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-meta {
  min-width: 240px;
  padding: 16px 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 12px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 24px rgba(31, 45, 67, .045);
}

.hero-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #6f7a8c;
  font-size: 10px;
}

.hero-meta-row + .hero-meta-row {
  padding-top: 11px;
  border-top: 1px solid var(--line-soft);
}

.hero-meta-row strong {
  color: var(--ink);
  font-size: 11px;
  font-weight: 620;
}

.report-stack {
  padding-bottom: 72px;
}

.card {
  border: 1px solid #dce2eb;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 1px 2px rgba(31, 45, 67, .035), 0 14px 38px rgba(31, 45, 67, .045);
}

.section-head {
  min-height: 67px;
  padding: 14px 19px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.section-index {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--indigo-soft);
  color: #4c52cb;
  font: 600 9px var(--mono);
}

.section-title h2,
.section-title h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 680;
  letter-spacing: -.025em;
}

.section-title p {
  margin: 4px 0 0;
  color: #8792a3;
  font-size: 10px;
}

.status-badge {
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid #dfe3ef;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fafbfc;
  color: #697487;
  font: 600 8px var(--mono);
  letter-spacing: .045em;
  text-transform: uppercase;
}

.status-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #29bd69;
  box-shadow: 0 0 0 4px rgba(41, 189, 105, .1);
}

.score-grid {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.metric-basis {
  min-height: 46px;
  margin: 17px 18px 0;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fafbfd;
}

.metric-basis__copy {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #697588;
  font-size: 10px;
  line-height: 1.45;
}

.metric-basis__copy::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--indigo);
  box-shadow: 0 0 0 4px rgba(86, 92, 223, .09);
}

.metric-basis__copy strong {
  color: var(--ink);
  font-weight: 670;
}

.metric-basis__note {
  color: #8a95a6;
  font: 500 8px var(--mono);
  letter-spacing: .035em;
  white-space: nowrap;
  text-transform: uppercase;
}

.score-card {
  --score-color: var(--indigo);
  min-height: 194px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fbfcfd;
  transition: transform .2s var(--ease), border-color .2s ease, box-shadow .2s ease;
}

.score-card:hover {
  border-color: #c8d0db;
  box-shadow: 0 9px 22px rgba(24, 35, 54, .06);
  transform: translateY(-2px);
}

.score-card--dead {
  --score-color: var(--red);
}

.score-card--potential {
  --score-color: var(--green);
}

.score-card--competition {
  --score-color: #dcae26;
}

.score-card__top,
.score-card__benchmark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.score-card__name {
  color: #657084;
  font-size: 12px;
  font-weight: 650;
}

.score-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--score-color);
}

.score-card__value {
  margin-top: 19px;
  color: var(--score-color);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.05em;
  font-variant-numeric: tabular-nums;
}

.score-card__meaning {
  max-width: 260px;
  margin: 8px 0 0;
  color: #7a8597;
  font-size: 10px;
  line-height: 1.5;
}

.score-card__benchmark {
  margin-top: 18px;
  color: #7e899a;
  font-size: 10px;
}

.score-card__benchmark strong {
  color: var(--ink);
  font-size: 10px;
  font-weight: 650;
}

.score-track {
  height: 5px;
  margin-top: 8px;
  border-radius: 99px;
  overflow: hidden;
  background: #e9edf2;
}

.score-track span {
  width: calc(var(--value) * 1%);
  height: 100%;
  border-radius: inherit;
  display: block;
  background: var(--score-color);
  transform-origin: left;
  animation: score-in .8s .12s var(--ease) both;
}

.trend-card {
  margin-top: 14px;
}

.trend-list {
  padding: 4px 18px 11px;
}

.trend-row {
  min-height: 71px;
  padding: 12px 2px;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 33px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

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

.trend-icon {
  width: 31px;
  height: 31px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: #f3f5f8;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.trend-copy strong {
  display: block;
  font-size: 12px;
  font-weight: 650;
}

.trend-copy span {
  margin-top: 4px;
  display: block;
  color: #8490a2;
  font-size: 10px;
  line-height: 1.45;
}

.direction {
  min-width: 92px;
  min-height: 29px;
  padding: 0 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 680;
}

.direction--good {
  background: var(--green-soft);
  color: var(--green);
}

.direction--steady {
  background: #f1f3f7;
  color: #5e697c;
}

.direction--warn {
  background: var(--amber-soft);
  color: var(--amber);
}

.trend-note {
  margin: 0 18px 17px;
  padding: 11px 12px;
  border-radius: 9px;
  background: var(--indigo-soft);
  color: #616b84;
  font-size: 10px;
  line-height: 1.55;
}

.insight-card {
  overflow: hidden;
  border-color: #202938;
  background:
    radial-gradient(circle at 92% 5%, rgba(199, 255, 74, .09), transparent 13rem),
    linear-gradient(145deg, #101621, #172131);
  color: #fff;
  box-shadow: 0 16px 38px rgba(8, 11, 18, .14);
}

.knowledge-card {
  margin-top: 14px;
}

.knowledge-card .section-head {
  min-height: 72px;
}

.knowledge-card .section-title h2 {
  font-size: 18px;
}

.knowledge-grid {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.knowledge-item {
  min-height: 128px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 11px;
  background: rgba(255, 255, 255, .035);
}

.knowledge-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.knowledge-item__top span {
  color: #8f9bae;
  font: 600 8px var(--mono);
  letter-spacing: .055em;
  text-transform: uppercase;
}

.knowledge-item__top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(199, 255, 74, .08);
}

.knowledge-item p {
  margin: 18px 0 0;
  color: #f0f3f8;
  font-size: 13px;
  font-weight: 560;
  line-height: 1.58;
  letter-spacing: -.012em;
}

.knowledge-foot {
  margin: 0 18px 18px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #7f8b9f;
  font-size: 9px;
  line-height: 1.5;
}

.knowledge-foot b {
  color: #aeb8c7;
  font: 600 8px var(--mono);
  letter-spacing: .045em;
  white-space: nowrap;
  text-transform: uppercase;
}

.insight-card .section-head {
  border-color: rgba(255, 255, 255, .1);
}

.insight-card .section-index {
  background: rgba(199, 255, 74, .12);
  color: var(--lime);
}

.insight-card .section-title p {
  color: #8e9aae;
}

.insight-card .status-badge {
  border-color: rgba(199, 255, 74, .19);
  background: rgba(199, 255, 74, .07);
  color: #b6c28f;
}

.insight-card .status-badge::before {
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(199, 255, 74, .08);
}

.benchmark-card,
.related-section,
.hub-section,
.faq-section {
  margin-top: 14px;
}

.benchmark-body {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.benchmark-item {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-soft);
}

.benchmark-item span {
  color: #7c8799;
  font-size: 10px;
}

.benchmark-item strong {
  margin-top: 8px;
  display: block;
  font-size: 18px;
  font-weight: 690;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.benchmark-item p {
  margin: 6px 0 0;
  color: #7e899b;
  font-size: 10px;
  line-height: 1.5;
}

.locked-report {
  margin-top: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  background: #fff;
}

.locked-preview {
  padding: 20px;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.locked-preview::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(255, 255, 255, .95) 74%);
  pointer-events: none;
}

.preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.preview-head strong {
  font-size: 13px;
  font-weight: 670;
}

.preview-head span {
  color: #8a95a7;
  font: 600 8px var(--mono);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.preview-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  filter: blur(1.4px);
  opacity: .56;
  user-select: none;
}

.preview-module {
  min-height: 125px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fafbfd;
}

.preview-module span {
  color: #8994a5;
  font: 600 8px var(--mono);
  text-transform: uppercase;
}

.preview-line {
  height: 7px;
  margin-top: 12px;
  border-radius: 99px;
  background: #e4e8ef;
}

.preview-line:nth-child(3) {
  width: 76%;
}

.preview-line:nth-child(4) {
  width: 54%;
}

.locked-cta {
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f9fafc;
}

.locked-cta .section-kicker {
  color: var(--indigo);
}

.locked-cta h2 {
  margin: 10px 0 0;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -.04em;
}

.locked-cta p {
  margin: 10px 0 18px;
  color: #6f7a8d;
  font-size: 11px;
  line-height: 1.6;
}

.locked-list {
  margin: 0 0 19px;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.locked-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #525e72;
  font-size: 10px;
}

.locked-list li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
}

.related-body {
  padding: 18px;
}

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

.category-link-card {
  min-height: 112px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fbfcfd;
  transition: transform .2s var(--ease), border-color .2s ease, box-shadow .2s ease;
}

.category-link-card:hover {
  border-color: #bbc5d3;
  box-shadow: 0 8px 20px rgba(25, 36, 54, .06);
  transform: translateY(-2px);
}

.category-link-card__path {
  color: #8a95a7;
  font: 500 8px var(--mono);
  letter-spacing: .035em;
  text-transform: uppercase;
}

.category-link-card strong {
  margin-top: 8px;
  display: block;
  font-size: 13px;
  font-weight: 660;
  line-height: 1.35;
}

.category-link-card__foot {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #7b8798;
  font-size: 9px;
}

.category-link-card__foot b {
  color: var(--indigo);
  font-size: 14px;
}

.parent-link {
  margin-top: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px dashed #cfd6e1;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #596579;
  font-size: 10px;
  transition: border-color .18s ease, background .18s ease;
}

.parent-link:hover {
  border-color: #aeb8c7;
  background: #f8f9fb;
}

.parent-link strong {
  color: var(--ink);
  font-size: 11px;
}

.content-note {
  margin-top: 14px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: minmax(220px, .62fr) minmax(0, 1.38fr);
  gap: 40px;
}

.content-note h2 {
  margin: 8px 0 0;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -.04em;
}

.content-note__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.content-note__copy h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 670;
}

.content-note__copy p {
  margin: 7px 0 0;
  color: #727e91;
  font-size: 11px;
  line-height: 1.65;
}

.final-cta {
  margin-top: 14px;
  padding: 34px 36px;
  border: 1px solid #202938;
  border-radius: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 76% 20%, rgba(199, 255, 74, .1), transparent 15rem),
    linear-gradient(140deg, #101621, #182232);
  color: #fff;
  box-shadow: 0 18px 42px rgba(8, 11, 18, .13);
}

.final-cta::before {
  content: "";
  width: 210px;
  height: 210px;
  border: 1px solid rgba(199, 255, 74, .14);
  border-radius: 50%;
  position: absolute;
  right: 25%;
  top: -126px;
}

.final-cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.final-cta p {
  max-width: 660px;
  margin: 10px 0 0;
  color: #a8b2c2;
  font-size: 12px;
  line-height: 1.6;
}

/* Parent hub */
.hub-summary {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
}

.hub-summary__main {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.hub-summary__main h2 {
  max-width: 610px;
  margin: 9px 0 0;
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -.043em;
}

.hub-summary__main > p {
  max-width: 670px;
  margin: 11px 0 0;
  color: #6f7b8e;
  font-size: 12px;
  line-height: 1.65;
}

.hub-facts {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.hub-fact {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fafbfd;
}

.hub-fact span {
  color: #8490a2;
  font-size: 9px;
}

.hub-fact strong {
  margin-top: 6px;
  display: block;
  font-size: 22px;
  font-weight: 690;
  letter-spacing: -.04em;
}

.hub-fact small {
  margin-top: 4px;
  display: block;
  color: #8b96a7;
  font-size: 8px;
  line-height: 1.4;
}

.hub-summary__aside {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fafbfd;
}

.hub-summary__aside strong {
  margin-top: 9px;
  display: block;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -.025em;
}

.hub-summary__aside p {
  margin: 8px 0 17px;
  color: #747f92;
  font-size: 10px;
  line-height: 1.58;
}

.child-grid {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tree-note {
  min-height: 48px;
  margin: 0 18px 18px;
  padding: 0 13px;
  border: 1px dashed #cfd6e1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fbfcfd;
  color: #737f92;
  font-size: 9px;
  line-height: 1.5;
}

.tree-note strong {
  color: #596579;
  font: 600 8px var(--mono);
  letter-spacing: .035em;
  white-space: nowrap;
  text-transform: uppercase;
}

.child-card {
  min-height: 175px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  background: #fbfcfd;
  transition: transform .2s var(--ease), border-color .2s ease, box-shadow .2s ease;
}

.child-card:hover {
  border-color: #bbc5d3;
  box-shadow: 0 8px 22px rgba(25, 36, 54, .065);
  transform: translateY(-2px);
}

.child-card__top,
.child-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.child-card__top span {
  color: #8490a2;
  font: 600 8px var(--mono);
  letter-spacing: .045em;
  text-transform: uppercase;
}

.child-card__top b {
  min-height: 23px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: var(--green-soft);
  color: var(--green);
  font-size: 8px;
  font-weight: 650;
}

.child-card h3 {
  margin: 15px 0 0;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -.03em;
}

.child-card p {
  margin: 7px 0 17px;
  color: #7b8799;
  font-size: 10px;
  line-height: 1.5;
}

.child-card__foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  color: #7d899a;
  font-size: 9px;
}

.child-card__foot b {
  color: var(--indigo);
  font-size: 15px;
}

.leaf-table-wrap {
  overflow-x: auto;
}

.leaf-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
}

.leaf-table th {
  height: 44px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #f7f9fb;
  color: #7b8798;
  font: 600 8px var(--mono);
  letter-spacing: .05em;
  text-align: left;
  text-transform: uppercase;
}

.leaf-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  color: #5f6b7e;
  font-size: 10px;
  vertical-align: middle;
}

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

.leaf-name strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
}

.leaf-name span {
  margin-top: 4px;
  display: block;
  color: #8b96a7;
  font-size: 9px;
}

.market-profile {
  min-height: 27px;
  padding: 0 9px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  background: var(--indigo-soft);
  color: #4c52bf;
  font-size: 9px;
  font-weight: 650;
  white-space: nowrap;
}

.market-profile--warn {
  background: var(--amber-soft);
  color: var(--amber);
}

.table-score {
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.table-score i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 9%, transparent);
}

.table-score strong {
  color: var(--ink);
  font-size: 11px;
  font-weight: 680;
}

.table-score--dead {
  color: var(--red);
}

.table-score--potential {
  color: var(--green);
}

.table-score--competition {
  color: var(--amber);
}

.table-score--empty {
  color: #9aa4b4;
}

.table-link {
  color: var(--indigo);
  font-weight: 650;
  white-space: nowrap;
}

.table-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hub-explainer {
  margin-top: 14px;
  padding: 23px 25px;
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  gap: 42px;
}

.hub-explainer h2 {
  margin: 8px 0 0;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -.04em;
}

.explainer-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.explainer-step {
  padding-left: 13px;
  border-left: 1px solid var(--line);
}

.explainer-step b {
  color: var(--indigo);
  font: 600 8px var(--mono);
}

.explainer-step strong {
  margin-top: 8px;
  display: block;
  font-size: 11px;
  font-weight: 660;
}

.explainer-step p {
  margin: 6px 0 0;
  color: #7b8799;
  font-size: 10px;
  line-height: 1.55;
}

.faq-body {
  padding: 6px 18px 13px;
}

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  padding: 16px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--indigo);
  font-size: 18px;
  font-weight: 400;
}

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

.faq-item p {
  max-width: 870px;
  margin: -4px 0 17px;
  color: #717d90;
  font-size: 11px;
  line-height: 1.65;
}

.site-footer {
  border-top: 1px solid #dce2eb;
  background: #fff;
}

.footer-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
}

.footer-brand {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.025em;
}

.footer-brand small {
  margin-left: 8px;
  color: #909aaa;
  font: 500 7px var(--mono);
  letter-spacing: .055em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #737f91;
  font: 500 9px var(--mono);
}

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

.footer-copy {
  justify-self: end;
  color: #9aa3b2;
  font: 500 8px var(--mono);
}

@keyframes score-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

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

@media (max-width: 1050px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .category-hero {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 28px;
  }

  .score-grid,
  .benchmark-body,
  .knowledge-grid,
  .child-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .score-card:last-child,
  .benchmark-item:last-child,
  .knowledge-item:last-child {
    grid-column: 1 / -1;
  }

  .hub-summary,
  .locked-report {
    grid-template-columns: 1fr;
  }

  .hub-summary__main,
  .locked-preview {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .locked-cta {
    padding: 25px;
  }

  .hub-explainer {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
  }

  .nav-inner {
    min-height: 62px;
    gap: 14px;
  }

  .method-link,
  .login-link {
    display: none;
  }

  .nav-cta {
    min-height: 36px;
    padding-inline: 12px;
  }

  .breadcrumbs {
    padding-top: 20px;
  }

  .category-hero {
    padding-top: 25px;
    grid-template-columns: 1fr;
  }

  .hero-meta {
    min-width: 0;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-meta-row,
  .hero-meta-row + .hero-meta-row {
    padding: 0;
    border: 0;
    display: grid;
    gap: 5px;
  }

  .score-grid,
  .benchmark-body,
  .knowledge-grid,
  .related-grid,
  .child-grid,
  .content-note,
  .content-note__copy,
  .hub-facts,
  .explainer-steps {
    grid-template-columns: 1fr;
  }

  .score-card:last-child,
  .benchmark-item:last-child,
  .knowledge-item:last-child {
    grid-column: auto;
  }

  .score-card {
    min-height: 166px;
  }

  .content-note,
  .hub-explainer {
    gap: 22px;
  }

  .final-cta {
    padding: 27px;
    grid-template-columns: 1fr;
  }

  .final-cta .button {
    justify-self: start;
  }

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

  .preview-module:last-child {
    display: none;
  }

  .footer-inner {
    padding: 25px 0;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
  }

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

  .footer-copy {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .brand-main span {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .category-hero h1 {
    font-size: 36px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .metric-basis,
  .knowledge-foot,
  .tree-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .metric-basis {
    padding-block: 11px;
  }

  .tree-note {
    padding-block: 11px;
  }

  .metric-basis__note,
  .knowledge-foot b,
  .tree-note strong {
    white-space: normal;
  }

  .hero-meta-row {
    display: flex;
  }

  .hero-meta-row + .hero-meta-row {
    padding-top: 10px;
    border-top: 1px solid var(--line-soft);
  }

  .section-head {
    align-items: flex-start;
  }

  .section-head > .status-badge {
    display: none;
  }

  .score-grid,
  .related-body,
  .child-grid,
  .knowledge-grid,
  .benchmark-body {
    padding: 12px;
  }

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

  .direction {
    grid-column: 2;
    justify-self: start;
  }

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

  .preview-module:nth-child(2) {
    display: none;
  }

  .content-note,
  .hub-summary__main,
  .hub-summary__aside,
  .hub-explainer,
  .final-cta {
    padding: 21px;
  }
}
