:root {
  --bkf-ink: #111827;
  --bkf-muted: #5b6475;
  --bkf-soft: #f5f7fb;
  --bkf-line: #dbe1ec;
  --bkf-purple: #6222e0;
  --bkf-blue: #0277bd;
  --bkf-green: #0f8a5f;
  --bkf-amber: #b45309;
  --bkf-dark: #090a14;
  --bkf-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bkf-soft);
  color: var(--bkf-ink);
  font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.tool-page {
  min-height: 100vh;
}

.tool-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--bkf-line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 48px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.tool-brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.tool-brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--bkf-purple), #00a3d8);
  border-radius: 8px;
  color: var(--bkf-white);
  display: inline-flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.tool-nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.tool-nav-links a {
  color: var(--bkf-muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.tool-nav-links .tool-nav-cta {
  background: var(--bkf-dark);
  border-radius: 8px;
  color: var(--bkf-white);
  padding: 10px 14px;
}

.tool-hero {
  background: var(--bkf-white);
  border-bottom: 1px solid var(--bkf-line);
  padding: clamp(44px, 8vw, 86px) clamp(18px, 4vw, 48px);
}

.tool-hero-inner,
.tool-section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.tool-kicker {
  color: var(--bkf-blue);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.tool-hero h1,
.tool-section h2 {
  font-family: "Space Grotesk", Manrope, sans-serif;
  letter-spacing: 0;
}

.tool-hero h1 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.98;
  margin: 0;
  max-width: 880px;
}

.tool-lead {
  color: var(--bkf-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  margin: 22px 0 0;
  max-width: 760px;
}

.tool-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.tool-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  text-decoration: none;
}

.tool-button-primary {
  background: var(--bkf-purple);
  color: var(--bkf-white);
}

.tool-button-dark {
  background: var(--bkf-dark);
  color: var(--bkf-white);
}

.tool-button-secondary {
  background: var(--bkf-white);
  border-color: var(--bkf-line);
  color: var(--bkf-ink);
}

.tool-section {
  padding: clamp(34px, 6vw, 72px) clamp(18px, 4vw, 48px);
}

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

.tool-card,
.tool-panel,
.tool-output,
.tool-faq,
.tool-callout {
  background: var(--bkf-white);
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
}

.tool-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 22px;
  text-decoration: none;
}

.tool-card strong {
  display: block;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 22px;
  line-height: 1.12;
}

.tool-card span {
  color: var(--bkf-muted);
  line-height: 1.55;
  margin-top: 12px;
}

.tool-card small {
  color: var(--bkf-blue);
  font-weight: 800;
  margin-top: auto;
  padding-top: 18px;
}

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

.tool-section-heading h2 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  margin: 0;
}

.tool-section-heading p:not(.tool-kicker) {
  color: var(--bkf-muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 12px 0 0;
}

.tool-directory-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tool-directory-item {
  align-items: center;
  background: var(--bkf-white);
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  color: var(--bkf-ink);
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 118px;
  padding: 18px;
  text-decoration: none;
}

.tool-directory-number {
  align-items: center;
  background: #eef3ff;
  border-radius: 8px;
  color: var(--bkf-purple);
  display: inline-flex;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 16px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.tool-directory-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.tool-directory-copy strong {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.05;
}

.tool-directory-copy small {
  color: var(--bkf-blue);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.tool-directory-copy span {
  color: var(--bkf-muted);
  line-height: 1.5;
}

.tool-directory-item b {
  background: var(--bkf-dark);
  border-radius: 8px;
  color: var(--bkf-white);
  display: inline-flex;
  font-size: 14px;
  justify-content: center;
  min-width: 72px;
  padding: 10px 12px;
}

.tool-workspace {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.tool-workspace-results {
  grid-template-columns: minmax(0, 1fr);
}

.tool-workspace-results .tool-panel {
  display: none;
}

.tool-workspace-results .tool-output {
  background: transparent;
  border: 0;
  min-height: 0;
  padding: 0;
}

.tool-panel {
  padding: 22px;
}

.tool-panel h2,
.tool-output h2,
.tool-faq h2 {
  font-size: 26px;
  margin: 0 0 18px;
}

.tool-form {
  display: grid;
  gap: 14px;
}

.tool-field {
  display: grid;
  gap: 7px;
}

.tool-field label {
  font-size: 13px;
  font-weight: 800;
}

.tool-field input,
.tool-field select,
.tool-field textarea {
  background: #fbfcff;
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  color: var(--bkf-ink);
  font: inherit;
  min-height: 44px;
  padding: 11px 12px;
  width: 100%;
}

.tool-field textarea {
  min-height: 120px;
  resize: vertical;
}

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

.tool-output {
  min-height: 420px;
  padding: 22px;
}

.tool-output-empty {
  color: var(--bkf-muted);
  line-height: 1.6;
  margin: 0;
}

.tool-result-list {
  display: grid;
  gap: 12px;
}

.tool-result {
  background: #f8fafc;
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  padding: 14px;
}

.tool-result-whatsapp {
  background: #ffffff;
}

.tool-result-header {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.tool-result-title {
  font-weight: 900;
}

.tool-copy {
  background: var(--bkf-white);
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  color: var(--bkf-blue);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 10px;
  white-space: nowrap;
}

.tool-result pre,
.tool-link-box {
  background: var(--bkf-dark);
  border-radius: 8px;
  color: #eaf4ff;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  overflow-wrap: anywhere;
  padding: 14px;
  white-space: pre-wrap;
}

.whatsapp-chat-preview {
  background:
    radial-gradient(circle at 16px 18px, rgba(18, 140, 126, 0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 80px 62px, rgba(7, 94, 84, 0.08) 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(239, 229, 221, 0.96), rgba(229, 221, 213, 0.96));
  border: 1px solid #d7cdc4;
  border-radius: 8px;
  min-height: 128px;
  overflow: hidden;
  padding: 18px;
}

.whatsapp-bubble {
  box-shadow: 0 2px 7px rgba(15, 23, 42, 0.12);
  color: #10221b;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.48;
  max-width: min(94%, 560px);
  overflow-wrap: anywhere;
  padding: 11px 12px 8px;
  position: relative;
  white-space: pre-wrap;
}

.whatsapp-bubble-out {
  background: #d9fdd3;
  border-radius: 12px 12px 2px 12px;
  margin-left: auto;
}

.whatsapp-bubble-out::after {
  border-bottom: 9px solid transparent;
  border-left: 10px solid #d9fdd3;
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
}

.whatsapp-message-text {
  display: block;
  padding-right: 44px;
}

.whatsapp-message-meta {
  align-items: center;
  color: rgba(17, 24, 39, 0.46);
  display: inline-flex;
  float: right;
  font-size: 11px;
  font-weight: 800;
  gap: 3px;
  line-height: 1;
  margin: 5px 0 0 8px;
}

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

.tool-metric {
  background: #f8fafc;
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  padding: 16px;
}

.tool-metric strong {
  color: var(--bkf-purple);
  display: block;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 30px;
}

.tool-metric span {
  color: var(--bkf-muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-top: 6px;
}

.tool-preview {
  background: #eef7f2;
  border: 1px solid #b9e1cd;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 16px;
}

.tool-preview strong {
  color: var(--bkf-green);
}

.tool-faq {
  padding: 22px;
}

.tool-faq details {
  border-top: 1px solid var(--bkf-line);
  padding: 14px 0;
}

.tool-faq details:first-of-type {
  border-top: 0;
}

.tool-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.tool-faq p {
  color: var(--bkf-muted);
  line-height: 1.6;
}

.tool-callout {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 24px;
}

.tool-callout p {
  color: var(--bkf-muted);
  line-height: 1.55;
  margin: 8px 0 0;
}

.tool-footer {
  background: var(--bkf-dark);
  color: var(--bkf-white);
  padding: 34px clamp(18px, 4vw, 48px);
}

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

.tool-footer a {
  color: rgba(255, 255, 255, 0.72);
  margin-left: 14px;
  text-decoration: none;
}

.tool-note {
  color: var(--bkf-muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 10px 0 0;
}

.tool-status {
  color: var(--bkf-green);
  font-size: 13px;
  font-weight: 900;
  min-height: 18px;
}

.business-loading {
  align-items: center;
  background: #eef7f2;
  border: 1px solid #b9e1cd;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  padding: 16px;
}

.business-loading p {
  color: var(--bkf-muted);
  line-height: 1.5;
  margin: 0;
}

.business-loading-dot {
  animation: businessPulse 1s ease-in-out infinite;
  background: var(--bkf-green);
  border-radius: 999px;
  display: inline-block;
  height: 12px;
  width: 12px;
}

.business-report-note {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  color: #9a3412;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 14px;
  padding: 12px;
}

.business-report-shell {
  display: grid;
  gap: 16px;
}

.business-report-topline {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.business-report-topline h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  margin: 0 0 10px;
  max-width: 760px;
}

.business-intel-hero {
  background: var(--bkf-dark);
  border-radius: 8px;
  color: var(--bkf-white);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(160px, 0.25fr) minmax(0, 1fr);
  padding: clamp(20px, 4vw, 34px);
}

.business-rank-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  justify-items: start;
  padding: 18px;
}

.business-rank-label,
.business-problem-card span {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.business-rank-card strong {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(56px, 9vw, 96px);
  line-height: 0.9;
}

.business-rank-card small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
  line-height: 1.35;
}

.business-intel-main h3 {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1;
  margin: 0;
  max-width: 860px;
}

.business-intel-main p:not(.tool-kicker) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 760px;
}

.business-intel-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.business-intel-stats span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 5px;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 12px;
}

.business-intel-stats strong {
  color: var(--bkf-white);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 24px;
  line-height: 1.05;
}

.business-section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.business-section-heading h3 {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  margin: 0;
}

.business-section-heading p {
  color: var(--bkf-muted);
  line-height: 1.45;
  margin: 0;
}

.business-problem-section {
  background: var(--bkf-white);
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  padding: 20px;
}

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

.business-problem-card {
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 16px;
}

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

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

.business-problem-low {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.business-problem-card strong {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 20px;
  line-height: 1.12;
}

.business-problem-card p {
  color: var(--bkf-muted);
  line-height: 1.42;
  margin: 0;
}

.business-score-summary {
  align-items: center;
  background: linear-gradient(135deg, #eef7ff, #f7f4ff);
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 18px;
}

.business-score-orb {
  align-items: center;
  background:
    radial-gradient(circle at center, var(--bkf-white) 0 58%, transparent 59%),
    conic-gradient(var(--bkf-green) calc(var(--score) * 1%), #d9e2f1 0);
  border-radius: 999px;
  display: inline-flex;
  flex-direction: column;
  height: 132px;
  justify-content: center;
  width: 132px;
}

.business-score-orb strong {
  color: var(--bkf-dark);
  display: block;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 42px;
  line-height: 0.95;
}

.business-score-orb span {
  color: var(--bkf-muted);
  font-size: 13px;
  font-weight: 900;
}

.business-score-summary h3 {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 28px;
  line-height: 1.08;
  margin: 0;
}

.business-score-label {
  color: var(--bkf-purple);
  font-weight: 900;
  margin: 8px 0 0;
}

.business-section-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.business-score-section {
  background: #f8fafc;
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 12px;
}

.business-score-section span,
.business-score-section strong {
  font-size: 13px;
  font-weight: 900;
}

.business-score-bar {
  background: #dbe5f3;
  border-radius: 999px;
  grid-column: 1 / -1;
  height: 8px;
  overflow: hidden;
}

.business-score-bar i {
  background: linear-gradient(90deg, var(--bkf-purple), var(--bkf-green));
  border-radius: inherit;
  display: block;
  height: 100%;
}

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

.business-report-card {
  background: var(--bkf-white);
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  padding: 16px;
}

.business-report-card h3 {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 20px;
  margin: 0 0 12px;
}

.business-gap-list {
  color: var(--bkf-muted);
  display: grid;
  gap: 10px;
  line-height: 1.45;
  margin: 0;
  padding-left: 18px;
}

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

.business-fix {
  background: #f8fafc;
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  padding: 12px;
}

.business-fix strong {
  font-size: 14px;
}

.business-fix span,
.business-fix small {
  color: var(--bkf-muted);
  line-height: 1.35;
}

.business-fix small {
  color: var(--bkf-blue);
  font-weight: 900;
}

.business-competitors {
  margin-top: 14px;
}

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

.business-leaderboard-row {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(220px, 1fr) auto minmax(280px, 0.8fr) auto;
  padding: 12px;
}

.business-leaderboard-row.is-target {
  background: #eef7f2;
  border-color: #9dd9bc;
}

.business-rank-badge {
  align-items: center;
  background: var(--bkf-dark);
  border-radius: 8px;
  color: var(--bkf-white);
  display: inline-flex;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 48px;
}

.business-leaderboard-name {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.business-leaderboard-name strong {
  font-size: 16px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.business-leaderboard-name span {
  background: #dcfce7;
  border-radius: 999px;
  color: #166534;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  margin-left: 6px;
  padding: 3px 7px;
  vertical-align: middle;
}

.business-leaderboard-name small {
  color: var(--bkf-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.business-leaderboard-score {
  align-items: baseline;
  display: inline-flex;
  gap: 2px;
  justify-content: flex-end;
}

.business-leaderboard-score strong {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.business-leaderboard-score span {
  color: var(--bkf-muted);
  font-size: 12px;
  font-weight: 900;
}

.business-leaderboard-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.business-leaderboard-signals span,
.business-map-points span {
  background: #eef2ff;
  border-radius: 999px;
  color: #475569;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 8px;
}

.business-map-link {
  color: var(--bkf-blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.business-map-panel {
  background: var(--bkf-white);
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  padding: 16px;
}

.business-map-frame {
  background: #e5e7eb;
  border-radius: 8px;
  min-height: 360px;
  overflow: hidden;
}

.business-map-frame iframe {
  border: 0;
  height: 100%;
  min-height: 360px;
  width: 100%;
}

.business-map-intel {
  align-content: start;
  display: grid;
  gap: 12px;
}

.business-map-intel h3 {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 30px;
  line-height: 1.05;
  margin: 0;
}

.business-map-intel p:not(.tool-kicker) {
  color: var(--bkf-muted);
  line-height: 1.5;
  margin: 0;
}

.business-map-points {
  display: grid;
  gap: 8px;
}

.business-map-points a {
  align-items: center;
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  color: var(--bkf-ink);
  display: flex;
  gap: 8px;
  line-height: 1.25;
  padding: 9px;
  text-decoration: none;
}

.business-score-details {
  background: var(--bkf-white);
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  padding: 16px;
}

.business-score-details summary,
.business-diagnostics summary {
  cursor: pointer;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.business-recommendations {
  margin-top: 0;
}

.business-diagnostics {
  background: #f8fbff;
  margin-top: 14px;
}

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

.business-diagnostics-grid div {
  background: var(--bkf-white);
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 10px;
}

.business-diagnostics-grid span,
.business-candidate-list > span {
  color: var(--bkf-muted);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.business-diagnostics-grid strong {
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.business-candidate-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.business-candidate-list p {
  background: var(--bkf-white);
  border: 1px solid var(--bkf-line);
  border-radius: 8px;
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 10px;
}

.business-candidate-list strong {
  font-size: 13px;
  line-height: 1.35;
}

.business-candidate-list small {
  color: var(--bkf-muted);
  font-size: 12px;
  font-weight: 800;
}

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

.business-table {
  border-collapse: collapse;
  min-width: 640px;
  width: 100%;
}

.business-table th,
.business-table td {
  border-bottom: 1px solid var(--bkf-line);
  font-size: 13px;
  padding: 10px 8px;
  text-align: left;
  white-space: nowrap;
}

.business-table th {
  color: var(--bkf-muted);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.business-pill {
  background: #eef2ff;
  border-radius: 999px;
  color: #475569;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  padding: 4px 8px;
}

.business-pill-good {
  background: #dcfce7;
  color: #166534;
}

.business-cta {
  margin-top: 14px;
}

@keyframes businessPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 920px) {
  .tool-grid,
  .tool-workspace,
  .tool-callout,
  .tool-directory-item,
  .business-report-grid,
  .business-intel-hero,
  .business-problem-grid,
  .business-map-panel {
    grid-template-columns: 1fr;
  }

  .business-leaderboard-row {
    align-items: flex-start;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .business-leaderboard-score,
  .business-leaderboard-signals,
  .business-map-link {
    grid-column: 2;
    justify-content: flex-start;
  }

  .tool-output {
    min-height: 260px;
  }
}

@media (max-width: 620px) {
  .tool-nav,
  .tool-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .tool-nav-links {
    justify-content: flex-start;
  }

	  .tool-field-row,
	  .tool-metric-grid,
	  .business-diagnostics-grid,
	  .business-intel-stats {
	    grid-template-columns: 1fr;
	  }

  .business-report-topline {
    display: grid;
  }

  .business-problem-card {
    min-height: 0;
  }

  .business-leaderboard-row {
    grid-template-columns: 1fr;
  }

  .business-leaderboard-score,
  .business-leaderboard-signals,
  .business-map-link {
    grid-column: auto;
  }

  .tool-card {
    min-height: 0;
  }

  .tool-directory-item {
    align-items: flex-start;
  }

  .tool-directory-item b {
    width: 100%;
  }

  .business-score-summary {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .business-score-orb {
    height: 118px;
    width: 118px;
  }
}
