:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #5d6b66;
  --line: #d8e0dc;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --mint: #dff2e8;
  --green: #17785f;
  --blue: #255f85;
  --amber: #b66a12;
  --rose: #a83f53;
  --shadow: 0 18px 50px rgba(23, 33, 31, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: var(--blue);
}

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.sidebar {
  padding: 28px 22px;
  background: #eef5ef;
  border-right: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-weight: 800;
}

.brand strong {
  display: block;
  font-size: 17px;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: grid;
  gap: 8px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

.sidebar-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

main {
  padding: 34px;
}

.workspace {
  max-width: 1180px;
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

h1 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  max-width: 740px;
  color: var(--muted);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.button {
  border: 0;
  border-radius: 6px;
  padding: 10px 13px;
  background: var(--green);
  color: white;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  min-height: 40px;
}

.button.secondary {
  background: #e8eee9;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.notice {
  margin-bottom: 22px;
  padding: 12px 14px;
  border-left: 4px solid var(--amber);
  background: #fff8ea;
  color: #563a14;
  line-height: 1.45;
}

.ad-slot {
  min-height: 92px;
  margin: 0 0 22px;
  display: grid;
  place-items: center;
  border: 1px dashed #b8c5bf;
  border-radius: 8px;
  background: #f4f7f4;
  color: var(--muted);
  font-size: 13px;
}

.ad-slot[data-ad-ready="true"] {
  border-style: solid;
  background: transparent;
}

.ad-slot.compact {
  min-height: 250px;
  margin-top: 18px;
}

.tool-grid {
  display: grid;
  grid-template-columns: minmax(320px, 440px) 1fr;
  gap: 22px;
  align-items: start;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-header {
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--line);
}

.panel-header h2 {
  margin: 0 0 4px;
  font-size: 18px;
}

.panel-header p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

input,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 11px;
  font: inherit;
  color: var(--ink);
  background: white;
}

input:focus,
select:focus {
  outline: 3px solid rgba(23, 120, 95, 0.18);
  border-color: var(--green);
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.metric {
  min-height: 112px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf8;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 10px;
  font-size: 26px;
  letter-spacing: 0;
}

.metric small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.35;
}

.summary-band {
  margin: 0 18px 18px;
  padding: 16px;
  background: var(--mint);
  border-radius: 8px;
  line-height: 1.5;
}

.chart-wrap {
  padding: 18px;
  border-top: 1px solid var(--line);
}

canvas {
  display: block;
  width: 100%;
  height: 220px;
}

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

.resource {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

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

.resource p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.45;
}

.page-body {
  max-width: 860px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
  line-height: 1.65;
}

.page-body h2 {
  margin-top: 26px;
}

.page-body .ad-slot {
  margin: 22px 0;
}

.product-hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: 32px;
  align-items: center;
  padding-bottom: 34px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.offer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 6px 0 0;
}

.proof-strip div {
  min-height: 104px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.proof-strip dt {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 24px;
  font-weight: 850;
}

.proof-strip dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-preview {
  margin: 0;
  padding: 0;
}

.hero-preview img,
.preview-grid img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 48px rgba(23, 33, 31, 0.14);
}

.hero-preview figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.split-section,
.evidence-band,
.preview-section,
.offer-band,
.legal-note {
  margin: 22px 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1.2fr);
  gap: 28px;
  align-items: start;
}

.split-section h2,
.section-heading h2,
.offer-band h2,
.legal-note h2 {
  margin: 6px 0 10px;
  font-size: 26px;
  line-height: 1.18;
}

.split-section p,
.section-heading p,
.offer-band p,
.legal-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.value-list div,
.evidence-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.value-list strong {
  display: block;
  margin-bottom: 6px;
}

.value-list span {
  color: var(--muted);
  line-height: 1.45;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 18px;
}

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

.evidence-grid h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.evidence-grid p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

.evidence-grid a,
.text-link {
  color: var(--blue);
  font-weight: 750;
  text-decoration: none;
}

.evidence-grid a:hover,
.text-link:hover {
  text-decoration: underline;
}

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

.offer-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef5ef;
}

.legal-note {
  padding-bottom: 0;
}

.preview-stack {
  display: grid;
  gap: 12px;
  margin: 18px 0 8px;
}

.preview-stack img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(23, 33, 31, 0.08);
}

.footer {
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 940px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tool-grid,
  .resource-list,
  .product-hero,
  .split-section,
  .evidence-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: grid;
  }

  .actions {
    justify-content: flex-start;
  }

  .product-hero {
    min-height: auto;
  }

  .offer-band {
    display: grid;
  }
}

@media (max-width: 640px) {
  main {
    padding: 22px 16px;
  }

  h1 {
    font-size: 28px;
  }

  .two,
  .results,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .offer-band {
    padding: 18px;
  }
}

.platform-topbar {
  align-items: center;
}

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

.stat {
  min-height: 88px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

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

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.control-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(150px, 0.7fr) minmax(180px, 0.9fr);
  gap: 10px;
  margin: 0 0 18px;
}

.platform-layout,
.guide-layout,
.qa-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(440px, 1.05fr);
  gap: 18px;
  align-items: start;
}

.tool-directory,
.guide-list,
.qa-list,
.mini-grid {
  display: grid;
  gap: 10px;
}

.tool-directory {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tool-card,
.guide-card,
.mini-tool,
.guide-teaser {
  display: grid;
  gap: 10px;
  min-height: 164px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.tool-card h3,
.guide-card h3,
.mini-tool strong {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.tool-card p,
.guide-card p,
.guide-teaser p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.pill {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #f7faf8;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-button {
  justify-self: start;
  border: 0;
  padding: 0;
  color: var(--blue);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.text-button:hover {
  text-decoration: underline;
}

.sticky-panel {
  position: sticky;
  top: 18px;
  overflow: hidden;
}

.sticky-panel .panel-header h2 {
  font-size: 21px;
  line-height: 1.2;
}

.field span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.field small {
  color: var(--muted);
  font-size: 12px;
}

.notice.compact {
  margin: 0 18px 18px;
  font-size: 13px;
}

.compact-results {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 0;
}

.result-panel .metric,
.compact-results .metric {
  min-height: 96px;
}

.result-panel .metric strong,
.compact-results .metric strong {
  font-size: 20px;
}

.result-hint {
  margin: 0 18px 18px;
  color: var(--muted);
  line-height: 1.45;
}

.network-block {
  padding: 0 18px 18px;
  display: grid;
  gap: 14px;
}

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

.mini-tool {
  min-height: 126px;
  background: #f7faf8;
}

.mini-tool span,
.guide-teaser span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.source-row a {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 750;
}

.show-more {
  margin-top: 14px;
}

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

.embedded-guide {
  margin-top: 22px;
}

.embedded-guide h3,
.qa-detail h3 {
  margin: 22px 0 8px;
  font-size: 17px;
}

.qa-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 4px 10px;
  width: 100%;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.qa-row strong {
  font-size: 13px;
  line-height: 1.3;
}

.qa-row span,
.qa-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.qa-row em {
  grid-column: 2;
}

.qa-detail pre {
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf8;
  font-size: 12px;
}

.qa-checklist {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.empty {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
}

@media (max-width: 1180px) {
  .tool-directory,
  .mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .platform-layout,
  .guide-layout,
  .qa-layout,
  .control-bar,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .sticky-panel {
    position: static;
  }
}

.tn-body {
  margin: 0;
  color: #09090b;
  background: #ffffff;
  font-family: Geist, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tn-body main {
  padding: 0;
}

.tn-body a {
  color: inherit;
}

.tn-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #e4e4e7;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.tn-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.tn-brand,
.tn-nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tn-brand {
  text-decoration: none;
  font-weight: 850;
}

.tn-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #ffffff;
  background: #000000;
  font-size: 13px;
  font-weight: 800;
}

.tn-nav-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tn-nav-links a {
  color: #3f3f46;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.tn-nav-links a:hover,
.tn-nav-links a[aria-current="page"] {
  color: #09090b;
}

.tn-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #000000;
  border-radius: 6px;
  color: #ffffff !important;
  background: #000000;
  font-weight: 700;
}

.tn-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 34px;
  padding: 2px;
  border: 1px solid #d4d4d8;
  border-radius: 999px;
  background: #ffffff;
}

.tn-lang-switch a {
  min-width: 34px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #3f3f46;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.tn-lang-switch a[aria-current="true"] {
  color: #ffffff;
  background: #000000;
}

.tn-main,
.tn-hero,
.tn-section {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: 22px;
}

.tn-body .tn-main {
  padding-inline: 22px;
}

.tn-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
  padding-block: 58px 32px;
  overflow: hidden;
  border-bottom: 1px solid #e4e4e7;
}

.tn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, #f4f4f5 1px, transparent 1px), linear-gradient(to bottom, #f4f4f5 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.tn-hero-copy h1,
.tn-page-head h1 {
  max-width: 720px;
  margin: 10px 0 14px;
  color: #09090b;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: 0;
}

.tn-hero-copy p,
.tn-page-head > p,
.tn-section-head p {
  max-width: 720px;
  margin: 0 0 10px;
  color: #52525b;
  line-height: 1.65;
}

.tn-badge,
.tn-page-head > p:first-child,
.tn-section-head > div > p {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid #d4d4d8;
  border-radius: 999px;
  color: #52525b;
  background: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.tn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.tn-button,
.tn-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #000000;
  border-radius: 6px;
  color: #ffffff;
  background: #000000;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.tn-button {
  color: #ffffff !important;
}

.tn-button.secondary,
.tn-inline-link {
  border-color: #d4d4d8;
  color: #18181b !important;
  background: #ffffff;
}

.tn-body .button {
  border: 1px solid #000000;
  border-radius: 6px;
  background: #000000;
  color: #ffffff !important;
}

.tn-body .button.secondary {
  border-color: #d4d4d8;
  background: #ffffff;
  color: #18181b !important;
}

.tn-proof,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tn-proof .stat,
.tn-body .stat {
  min-height: 78px;
  padding: 14px;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(9, 9, 11, 0.04);
}

.tn-proof .stat strong,
.tn-body .stat strong {
  display: block;
  color: #09090b;
  font-size: 23px;
  line-height: 1;
}

.tn-proof .stat span,
.tn-body .stat span {
  display: block;
  margin-top: 8px;
  color: #71717a;
  font-size: 12px;
  font-weight: 750;
}

.tn-search-panel {
  padding: 16px;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
}

.tn-search-box {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  margin-bottom: 12px;
  padding: 0 14px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #e4e4e7;
  background: #fafafa;
}

.tn-search-box input {
  min-width: 0;
}

.tn-search-box input,
.tn-select-row input,
.tn-select-row select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}

.tn-select-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 1.2fr) minmax(92px, 0.45fr);
  gap: 10px;
  margin: 12px 0;
}

.tn-select-row select,
.tn-select-row input {
  min-height: 42px;
  padding: 0 42px 0 12px;
  border: 1px solid #d4d4d8;
  border-radius: 8px;
  background: #ffffff;
  color: #18181b;
  font-weight: 700;
}

.tn-select-row select {
  appearance: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-image: linear-gradient(45deg, transparent 50%, #52525b 50%), linear-gradient(135deg, #52525b 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.tn-select-row select:focus,
.tn-search-box:focus-within {
  outline: 3px solid rgba(9, 9, 11, 0.08);
  border-color: #18181b;
}

.tn-search-hints {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
}

.tn-search-hints span,
.tn-search-status span {
  color: #71717a;
  font-size: 12px;
  font-weight: 800;
}

.tn-search-hints button,
.tn-search-status button {
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid #d4d4d8;
  border-radius: 999px;
  color: #3f3f46;
  background: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.tn-search-hints button:hover,
.tn-search-status button:hover {
  border-color: #09090b;
  color: #09090b;
}

.tn-search-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 32px;
  margin: 8px 0 12px;
}

.tn-suggestion-list,
.tn-grid,
.tn-guide-grid {
  display: grid;
  gap: 12px;
}

.tn-suggestion-list {
  max-height: 520px;
  overflow: auto;
}

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

.tn-guide-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tn-body .tool-card,
.tn-body .guide-card {
  min-height: 142px;
  padding: 16px;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  background: #ffffff;
  color: #09090b;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(9, 9, 11, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.tn-body .tool-card:hover,
.tn-body .guide-card:hover {
  border-color: #a1a1aa;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.tn-body .tool-card h3,
.tn-body .guide-card h3 {
  margin: 10px 0 7px;
  font-size: 17px;
  line-height: 1.25;
}

.tn-body .tool-card .top {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.tn-body .tool-card .top h3 {
  margin: 1px 0 0;
}

.tn-body .tool-card .ico {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  color: #18181b;
  background: #fafafa;
}

.tn-body .tool-card .ico svg,
.tn-filter-chips svg,
.tn-support svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

.tn-body .tool-card .muted {
  color: #71717a;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.tn-body .text-button {
  color: #18181b;
  text-decoration: none;
}

.tn-body .text-button:hover {
  text-decoration: underline;
}

.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.muted-link {
  color: #71717a !important;
}

.tn-body .metric small {
  display: none;
}

.tn-body .tool-card p,
.tn-body .guide-card p {
  margin: 0;
  color: #52525b;
  font-size: 14px;
  line-height: 1.48;
}

.tn-body .pill {
  border-color: #d4d4d8;
  color: #52525b;
  background: #ffffff;
}

.tn-section {
  padding-block: 28px;
}

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

.tn-section-head h2 {
  margin: 8px 0 0;
  font-size: 30px;
  line-height: 1.15;
}

.tn-tool-detail {
  margin-top: 22px;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.tn-tool-detail:empty {
  display: none;
}

.tn-tool-detail .panel-header {
  padding: 22px;
}

.tn-tool-detail .panel-header h2 {
  margin: 10px 0 8px;
  font-size: 30px;
  line-height: 1.18;
}

.tn-tool-detail .form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tn-tool-detail .form .button {
  align-self: end;
}

.tn-tool-detail .results {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.network-block {
  border-top: 1px solid #e4e4e7;
}

.tn-page-head {
  max-width: 820px;
  padding: 46px 0 24px;
}

.tn-standalone {
  padding-bottom: 34px;
}

.tn-wide-head {
  max-width: 920px;
}

.tn-standalone-stats {
  max-width: 760px;
  margin-top: 12px;
}

.tn-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 22px;
}

.tn-info-card {
  min-height: 154px;
  padding: 18px;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(9, 9, 11, 0.04);
}

.tn-info-card h2 {
  margin: 0 0 9px;
  color: #09090b;
  font-size: 18px;
  line-height: 1.25;
}

.tn-info-card p,
.tn-readable-block p,
.tn-support-band p {
  margin: 0;
  color: #52525b;
  line-height: 1.7;
}

.tn-article-shell {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin: 0 0 28px;
}

.tn-readable-block {
  padding-top: 20px;
  border-top: 1px solid #e4e4e7;
}

.tn-readable-block h2 {
  margin: 0 0 10px;
  color: #09090b;
  font-size: 24px;
  line-height: 1.2;
}

.tn-support-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  padding: 22px;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  background: #fafafa;
}

.tn-support-band h2 {
  max-width: 620px;
  margin: 6px 0 0;
  color: #09090b;
  font-size: 24px;
  line-height: 1.2;
}

.tn-page-head h1 {
  font-size: 44px;
}

.tn-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 16px 0 6px;
}

.tn-language-links {
  display: flex;
  gap: 8px;
  margin: 16px 0 10px;
}

.tn-language-links a {
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid #d4d4d8;
  border-radius: 999px;
  color: #3f3f46;
  background: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.tn-language-links a[aria-current="true"] {
  color: #ffffff;
  border-color: #000000;
  background: #000000;
}

.tn-filter-chips a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #d4d4d8;
  border-radius: 999px;
  color: #3f3f46;
  background: #ffffff;
  text-decoration: none;
  font-weight: 750;
  font-size: 13px;
}

.tn-ad {
  max-width: 1180px;
  margin: 0 auto 22px;
}

.tn-blog-article {
  margin-top: 18px;
  padding-bottom: 18px;
}

.tn-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: #71717a;
  font-size: 13px;
  font-weight: 750;
}

.tn-blog-layout {
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.tn-blog-toc {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 9px;
  padding: 14px 0 14px 14px;
  border-left: 1px solid #e4e4e7;
}

.tn-blog-toc strong {
  color: #09090b;
  font-size: 13px;
}

.tn-blog-toc a {
  color: #52525b;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
}

.tn-blog-toc a:hover {
  color: #09090b;
  text-decoration: underline;
}

.tn-blog-content {
  max-width: 820px;
}

.tn-blog-lead {
  margin: 0 0 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e4e4e7;
  color: #3f3f46;
  font-size: 18px;
  line-height: 1.72;
}

.tn-guide-visual {
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  background: #fafafa;
}

.tn-guide-visual h2 {
  margin-top: 0;
}

.tn-guide-chart {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.tn-guide-bar {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1fr) 54px;
  align-items: center;
  gap: 10px;
  color: #3f3f46;
  font-size: 13px;
  font-weight: 800;
}

.tn-guide-bar::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #18181b var(--bar), #e4e4e7 var(--bar));
}

.tn-guide-bar span {
  grid-column: 1;
}

.tn-guide-bar strong {
  grid-column: 3;
  text-align: right;
}

.tn-guide-source-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.tn-guide-source-cards a {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  background: #ffffff;
  text-decoration: none;
}

.tn-guide-source-cards strong {
  color: #09090b;
  font-size: 13px;
}

.tn-guide-source-cards span,
.tn-guide-tool-count {
  color: #71717a;
  font-size: 12px;
  font-weight: 750;
}

.tn-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 26px;
}

.tn-seo-hub .tn-blog-content h2 {
  max-width: 760px;
}

.tn-blog-content section {
  scroll-margin-top: 96px;
}

.tn-blog-content h2 {
  margin: 34px 0 12px;
  color: #09090b;
  font-size: 28px;
  line-height: 1.18;
}

.tn-blog-content p {
  margin: 0 0 16px;
  color: #3f3f46;
  font-size: 16px;
  line-height: 1.82;
}

.tn-blog-related,
.tn-blog-sources {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid #e4e4e7;
}

.tn-blog-related > div:first-child p {
  margin: 0 0 6px;
  color: #71717a;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

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

.tn-blog-tool-grid .mini-tool {
  color: #09090b;
  text-decoration: none;
}

.tn-blog-tool-grid .mini-tool em {
  color: #18181b;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.tn-footer {
  max-width: 1180px;
  margin: 36px auto 0;
  padding: 24px 22px 36px;
  border-top: 1px solid #e4e4e7;
  color: #71717a;
  font-size: 14px;
}

.tn-footer a {
  color: #3f3f46;
}

@media (max-width: 980px) {
  .tn-hero,
  .tn-grid,
  .tn-guide-grid,
  .tn-info-grid,
  .tn-blog-layout,
  .tn-blog-tool-grid,
  .tn-tool-detail .form,
  .tn-tool-detail .results {
    grid-template-columns: 1fr;
  }

  .tn-blog-toc {
    position: static;
    border-left: 0;
    border-top: 1px solid #e4e4e7;
    border-bottom: 1px solid #e4e4e7;
    padding: 14px 0;
  }

  .tn-hero-copy h1,
  .tn-page-head h1 {
    font-size: 38px;
  }

  .tn-proof,
  .stats-grid,
  .tn-select-row {
    grid-template-columns: 1fr 1fr;
  }

  .tn-support-band {
    display: grid;
  }
}

@media (max-width: 680px) {
  .tn-nav-inner {
    display: grid;
    gap: 10px;
    padding: 10px 16px;
  }

  .tn-nav-links {
    justify-content: flex-start;
    gap: 8px;
  }

  .tn-nav-links a {
    font-size: 13px;
  }

  .tn-lang-switch {
    order: 20;
  }

  .tn-hero,
  .tn-main,
  .tn-section {
    padding-inline: 16px;
  }

  .tn-body .tn-main {
    padding-inline: 16px;
  }

  .tn-hero-copy h1,
  .tn-page-head h1 {
    font-size: 32px;
  }

  .tn-proof,
  .stats-grid,
  .tn-select-row,
  .tn-info-grid,
  .tn-guide-source-cards {
    grid-template-columns: 1fr;
  }

  .tn-guide-bar {
    grid-template-columns: 1fr 48px;
  }

  .tn-guide-bar span {
    grid-column: 1 / -1;
  }

  .tn-guide-bar::before {
    grid-column: 1;
    grid-row: 2;
  }

  .tn-guide-bar strong {
    grid-column: 2;
    grid-row: 2;
  }
}
