:root {
  color-scheme: light;
  --bg: #f7f8f6;
  --ink: #172026;
  --muted: #66737d;
  --line: #dde4e1;
  --panel: #ffffff;
  --accent: #0f7b6c;
  --accent-2: #b7791f;
  --accent-3: #2f6f9f;
  --danger: #b42318;
  --ok: #047857;
  --shadow: 0 8px 24px rgba(26, 35, 32, .06);
  font-family: "Segoe UI", "Microsoft YaHei", "PingFang SC", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0, #f4faf8 360px),
    var(--bg);
  color: var(--ink);
}

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

.topbar {
  align-items: center;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  display: flex;
  min-height: 64px;
  justify-content: space-between;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.tool-topbar {
  gap: 18px;
}

.tool-brand {
  align-items: center;
  display: flex;
  gap: 9px;
  min-width: 0;
}

.brand-logo {
  flex: 0 0 auto;
  height: 34px;
  object-fit: contain;
  width: 34px;
}

.brand-text {
  align-items: baseline;
  display: inline-flex;
  gap: 6px;
  line-height: 1;
  white-space: nowrap;
}

.brand-text strong {
  color: #172026;
  font-family: "Georgia", "Songti SC", "SimSun", serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text em {
  color: var(--accent);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .02em;
}

.tool-current-title {
  border-left: 1px solid var(--line);
  color: #27343c;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.15;
  margin-left: 4px;
  max-width: 360px;
  overflow: hidden;
  padding-left: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-actions,
.tool-top-actions,
.top-breadcrumb {
  align-items: center;
  display: flex;
  gap: 14px;
}

.tool-top-actions {
  justify-content: flex-end;
  min-width: 0;
}

.top-breadcrumb {
  color: #77858d;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 10px;
}

.top-breadcrumb a:hover,
.top-breadcrumb strong {
  color: #172026;
}

.feedback-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  color: #27343c;
  display: inline-flex;
  gap: 7px;
  font-size: 14px;
  font-weight: 760;
  min-height: 36px;
  padding: 0 8px;
}

.feedback-trigger:hover {
  color: var(--accent);
}

.feedback-icon {
  display: block;
  flex: 0 0 auto;
  height: 19px;
  width: 19px;
}

.feedback-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.language-select {
  position: relative;
}

.language-select select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #66737d 50%) calc(100% - 18px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, #66737d 50%, transparent 50%) calc(100% - 13px) 50% / 6px 6px no-repeat,
    #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #26343e;
  font-size: 14px;
  min-height: 42px;
  min-width: 118px;
  padding: 0 38px 0 16px;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .08em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: 0;
}

.directory-page {
  background: #fafafa;
}

.directory-hero {
  background:
    linear-gradient(180deg, #eef8f5 0, #f7fbfa 100%);
  border-bottom: 1px solid var(--line);
  margin: 0 0 22px;
  padding: 42px 24px 34px;
}

.finance-hero {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.finance-hero-copy {
  justify-self: center;
  max-width: 840px;
  text-align: center;
}

.directory-hero h1 {
  color: #162027;
  font-size: 32px;
  line-height: 1.1;
  margin: 0;
}

.directory-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 14px auto 24px;
  max-width: 820px;
}

.finance-snapshot {
  background: #fff;
  border: 1px solid #dfe8e4;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(32, 47, 43, .09);
  display: grid;
  gap: 8px;
  padding: 16px;
}

.finance-snapshot div {
  align-items: center;
  background: #fbfcfc;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 14px;
}

.finance-snapshot span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.finance-snapshot strong {
  color: #0f6f63;
  font-size: 22px;
}

.directory-search {
  display: block;
  margin: 0 auto;
  max-width: 680px;
  position: relative;
}

.directory-search::before {
  color: #8a969d;
  content: "⌕";
  font-size: 22px;
  left: 18px;
  line-height: 1;
  position: absolute;
  top: 13px;
}

.directory-search input {
  background: #fff;
  border: 1px solid #d8dfdc;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(32, 47, 43, .08);
  font-size: 15px;
  height: 52px;
  padding: 0 18px 0 48px;
  width: 100%;
}

.latest-tools {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 18px auto 0;
}

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

.latest-tools a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #33424b;
  font-size: 13px;
  padding: 7px 11px;
}

.latest-tools a:hover {
  border-color: var(--accent);
  color: #075e58;
}

.finance-trust-note {
  color: #52636b;
  font-size: 13px;
  line-height: 1.65;
  margin: 18px auto 0;
  max-width: 760px;
}

.directory-shell {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: 220px minmax(0, 1fr);
  margin: 0 auto 48px;
  max-width: 1440px;
  padding: 0 24px;
}

.directory-sidebar {
  background: #fff;
  border: 1px solid #e4e8e6;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 18px;
  position: sticky;
  top: 84px;
}

.directory-sidebar h2 {
  color: #27343c;
  font-size: 18px;
  margin: 0 0 8px;
}

.directory-sidebar nav {
  display: grid;
  gap: 7px;
}

.directory-sidebar nav a {
  align-items: center;
  border-radius: 6px;
  color: #52616b;
  display: flex;
  font-size: 15px;
  justify-content: space-between;
  min-height: 40px;
  padding: 9px 11px;
}

.directory-sidebar nav a:hover {
  background: #eef8f5;
  color: #075e58;
}

.directory-sidebar nav strong {
  color: #84949c;
  font-size: 13px;
}

.directory-wrap {
  display: grid;
  gap: 22px;
}

.directory-section {
  background: #fff;
  border: 1px solid #e5e9e7;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 14px;
}

.directory-section[hidden],
.directory-card[hidden] {
  display: none !important;
}

.directory-section-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.directory-section-head h2 {
  font-size: 18px;
  margin: 0;
}

.directory-section-head span {
  align-items: center;
  background: #edf5f2;
  border: 1px solid #d4e5df;
  border-radius: 999px;
  color: #0f6f63;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  height: 24px;
  justify-content: center;
  min-width: 30px;
  padding: 0 8px;
}

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

.directory-card {
  align-items: center;
  background: #fff;
  border: 1px solid #e0e6e3;
  border-radius: 6px;
  display: flex;
  gap: 10px;
  min-height: 84px;
  padding: 10px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.directory-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 18px rgba(22, 32, 39, .06);
  transform: translateY(-1px);
}

.directory-icon {
  align-items: center;
  background: #e8f5f1;
  border-radius: 5px;
  color: #0f766e;
  display: inline-flex;
  flex: 0 0 34px;
  font-size: 11px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.directory-card.ads .directory-icon {
  background: #f4f1ec;
  color: #835b28;
}

.directory-card.saas .directory-icon {
  background: #eef4fb;
  color: #2f6f9f;
}

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

.directory-copy strong {
  color: #1f2d35;
  font-size: 14px;
  line-height: 1.25;
}

.directory-copy small {
  color: var(--muted);
  display: -webkit-box;
  font-size: 12px;
  line-height: 1.35;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.directory-copy em {
  color: var(--accent);
  display: -webkit-box;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.tool-page-head {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 28px auto 0;
  max-width: 1440px;
  padding: 0 24px;
}

.tool-page-head h1 {
  font-size: 30px;
  line-height: 1.18;
  margin: 0;
}

.tool-page-head p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 760px;
}

.formula-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #27343c;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 760;
  max-width: 420px;
  padding: 13px 16px;
}

.workspace {
  margin: 28px auto;
  max-width: 1440px;
  padding: 0 24px;
  scroll-margin-top: 84px;
}

.tool-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(31, 45, 53, .04);
  padding: 22px;
}

.tool-mount {
  min-height: 420px;
}

.finance-calculator {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .68fr);
}

.finance-input-panel,
.finance-result-panel {
  background: #fbfcfc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.panel-head h2 {
  font-size: 22px;
  margin: 0 0 16px;
}

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

.finance-field {
  color: #27343c;
  display: grid;
  font-size: 14px;
  font-weight: 760;
  gap: 7px;
}

.finance-input-wrap {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  min-height: 48px;
  overflow: hidden;
}

.finance-input-wrap em {
  color: #6d7a83;
  font-style: normal;
  font-weight: 800;
  padding: 0 12px;
}

.finance-input-wrap input {
  border: 0;
  color: var(--ink);
  flex: 1;
  font: inherit;
  min-height: 48px;
  min-width: 0;
  padding: 0 12px;
  width: 100%;
}

.finance-input-wrap input:focus {
  outline: 2px solid rgba(15, 123, 108, .22);
  outline-offset: -2px;
}

.finance-input-wrap select {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  flex: 1;
  font: inherit;
  min-height: 48px;
  outline: 0;
  width: 100%;
}

.select-wrap {
  background:
    linear-gradient(45deg, transparent 50%, #66737d 50%) calc(100% - 18px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, #66737d 50%, transparent 50%) calc(100% - 13px) 50% / 6px 6px no-repeat,
    #fff;
  padding-right: 34px;
}

.locale-field {
  background: #f7fbfa;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 12px 0 16px;
  padding: 12px;
}

.locale-field small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 8px;
}

.control-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 16px 0 0;
}

button {
  background: #24313b;
  border: 1px solid #24313b;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  min-height: 40px;
  padding: 0 13px;
}

button.secondary {
  background: #fff;
  border-color: var(--line);
  color: #26343e;
}

button.accent {
  background: var(--accent);
  border-color: var(--accent);
}

.status {
  border-left: 3px solid var(--accent-3);
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
  min-height: 26px;
  padding: 4px 0 4px 10px;
}

.status.error {
  border-left-color: var(--danger);
  color: var(--danger);
}

.status.ok {
  border-left-color: var(--ok);
  color: var(--ok);
}

.feedback-modal[hidden] {
  display: none !important;
}

.feedback-modal {
  inset: 0;
  position: fixed;
  z-index: 50;
}

.feedback-backdrop {
  background: transparent;
  inset: 0;
  position: absolute;
}

.feedback-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(23, 32, 38, .14);
  left: var(--feedback-left, auto);
  max-width: 460px;
  padding: 18px;
  position: absolute;
  top: var(--feedback-top, 76px);
  width: var(--feedback-width, min(calc(100vw - 24px), 460px));
}

.feedback-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.feedback-head h2 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
}

.feedback-close {
  background: #fff;
  border-color: var(--line);
  color: #52616b;
  font-size: 20px;
  min-height: 34px;
  padding: 0 10px;
}

.feedback-form {
  display: grid;
  gap: 12px;
}

.feedback-form label {
  color: #172026;
  display: grid;
  font-size: 14px;
  font-weight: 700;
  gap: 6px;
}

.feedback-form label em {
  color: var(--danger);
  font-style: normal;
}

.feedback-form input,
.feedback-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  min-height: 42px;
  padding: 0 12px;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: rgba(15, 123, 108, .55);
  box-shadow: 0 0 0 3px rgba(15, 123, 108, .12);
  outline: 0;
}

.feedback-form textarea {
  min-height: 112px;
  padding: 10px 12px;
  resize: vertical;
}

.feedback-submit {
  background: var(--accent);
  border-color: var(--accent);
  border-radius: 8px;
  font-size: 15px;
  min-height: 44px;
  width: 100%;
}

.feedback-submit:disabled {
  cursor: wait;
  opacity: .72;
}

.finance-result-panel {
  display: grid;
  gap: 18px;
}

.result-hero {
  background:
    linear-gradient(180deg, #ffffff 0, #eef8f5 100%);
  border: 1px solid #d4e5df;
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 22px;
}

.result-hero span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.result-hero strong {
  color: #0b675f;
  font-size: 38px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.metric-list {
  display: grid;
  gap: 8px;
}

.metric-row {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 12px;
}

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

.metric-row strong {
  color: #1f2d35;
  font-size: 15px;
}

.decision-layer {
  display: grid;
  gap: 14px;
}

.decision-box {
  background: #f4faf8;
  border: 1px solid #cfe2dc;
  border-radius: 8px;
  display: grid;
  gap: 7px;
  padding: 14px;
}

.decision-box strong {
  color: #172026;
  font-size: 16px;
}

.decision-box span,
.scenario-card small,
.warning-list p {
  color: var(--muted);
  line-height: 1.55;
}

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

.scenario-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 12px;
}

.scenario-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.scenario-card strong {
  color: #0f6f63;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.warning-list {
  border-left: 3px solid var(--accent-2);
  display: grid;
  gap: 8px;
  padding-left: 12px;
}

.warning-list p {
  margin: 0;
}

.tool-info-card,
.related-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 22px auto 0;
  max-width: 1440px;
  overflow: hidden;
}

.info-tabs {
  background: #f5f5f4;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 2px;
  padding: 6px;
}

.info-tabs a {
  border-radius: 5px;
  color: #5b6870;
  font-size: 14px;
  padding: 8px 12px;
}

.info-tabs a:first-child,
.info-tabs a:hover {
  background: #fff;
  color: #162027;
}

.info-content {
  display: grid;
  gap: 26px;
  padding: 28px 32px;
}

.info-content section + section {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.info-content h2,
.related-section h2 {
  font-size: 19px;
  margin: 0 0 14px;
}

.info-content p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.feature-list,
.seo-list {
  color: var(--muted);
  display: grid;
  gap: 10px;
  line-height: 1.45;
  margin: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}

.seo-list {
  padding-left: 20px;
}

.seo-list li::marker {
  color: var(--accent);
  font-weight: 800;
}

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

.input-guide div {
  background: #fbfdfc;
  border-left: 3px solid rgba(15, 123, 108, .42);
  padding: 10px 12px;
}

.input-guide dt {
  color: #22303a;
  font-weight: 780;
  margin: 0 0 4px;
}

.input-guide dd {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

details {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

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

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  color: var(--muted);
  margin: 8px 0 0;
}

.related-section {
  background: transparent;
  border: 0;
  margin-bottom: 48px;
  overflow: visible;
}

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

.related-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 16px;
}

.related-card:hover {
  border-color: var(--accent);
}

.related-card strong {
  color: #1f2d35;
  font-size: 15px;
}

.related-card span {
  color: var(--muted);
  display: -webkit-box;
  font-size: 13px;
  line-height: 1.4;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.site-footer {
  border-top: 1px solid #e6ece9;
  color: var(--muted);
  display: grid;
  gap: 14px;
  justify-items: center;
  margin: 38px auto 0;
  max-width: 1440px;
  padding: 34px 24px 42px;
  text-align: center;
}

.site-footer p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
}

.site-footer a {
  color: var(--accent);
  font-size: 15px;
  font-weight: 760;
}

.site-footer a:hover {
  color: #075e58;
  text-decoration: underline;
}

.friend-links {
  align-items: center;
  color: #6b7a72;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
}

.friend-links strong {
  color: #52655c;
  font-size: 14px;
  margin: 0;
}

.friend-links nav {
  gap: 18px;
}

.friend-links a {
  color: #60756c;
  font-size: 14px;
  font-weight: 650;
}

.site-footer small {
  color: #8b969d;
  font-size: 13px;
}

.info-page {
  background:
    linear-gradient(180deg, #ffffff 0, #f4faf8 360px),
    var(--bg);
}

.info-page-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(26, 35, 32, .05);
  margin: 42px auto 0;
  max-width: 980px;
  padding: 34px;
}

.info-page-card h1 {
  font-size: 32px;
  line-height: 1.15;
  margin: 8px 0 0;
}

.info-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 14px 0 28px;
}

.info-page-card section {
  border-top: 1px solid #edf1ef;
  padding: 22px 0 0;
}

.info-page-card section + section {
  margin-top: 22px;
}

.info-page-card h2 {
  color: #172026;
  font-size: 19px;
  margin: 0 0 9px;
}

.info-page-card section p {
  color: #52616b;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 980px) {
  .finance-hero,
  .directory-shell,
  .directory-grid,
  .finance-calculator,
  .scenario-grid,
  .related {
    grid-template-columns: 1fr;
  }

  .finance-snapshot,
  .directory-sidebar {
    position: static;
  }

  .tool-page-head {
    align-items: stretch;
    display: grid;
  }

  .formula-chip {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .topbar,
  .tool-topbar {
    align-items: stretch;
    display: grid;
    gap: 12px;
    padding: 12px 16px;
  }

  .tool-top-actions,
  .topbar-actions {
    align-items: flex-start;
    display: grid;
  }

  .tool-current-title {
    max-width: calc(100vw - 210px);
  }

  .directory-hero {
    padding: 32px 18px 26px;
  }

  .directory-hero h1,
  .tool-page-head h1 {
    font-size: 26px;
  }

  .workspace,
  .tool-page-head,
  .directory-shell,
  .tool-info-card,
  .related-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .finance-fields {
    grid-template-columns: 1fr;
  }

  .result-hero strong {
    font-size: 30px;
  }

  .info-tabs {
    overflow-x: auto;
  }

  .info-content {
    padding: 22px 18px;
  }
}
