:root {
  --ink: #08152f;
  --ink2: #293754;
  --muted: #68738a;
  --paper: #f2f5f9;
  --surface: #fff;
  --surface2: #f8fafc;
  --signal: #ed6334;
  --signal2: #fff0e9;
  --good: #147554;
  --goodbg: #eaf7f1;
  --warn: #9d6412;
  --warnbg: #fff4df;
  --bad: #b43e3a;
  --badbg: #fff0ef;
  --line: #d9e0ea;
  --soft: #e9edf3;
  --shadow: 0 20px 60px rgba(8, 21, 47, 0.09);
  --softshadow: 0 8px 30px rgba(8, 21, 47, 0.06);
  --r: 14px;
  --rl: 22px;
  --max: 1180px;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --sans:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}
/* Salari product interface, August 2026 */
:root {
  --paper: #ffffff;
  --paper-warm: #ffffff;
  --ink: #17160f;
  --muted: #66655f;
  --line: #d9d8d2;
  --line-dark: #aaa9a2;
  --signal: #c2703d;
  --signal-dark: #9a4f28;
  --soft: #f5f5f2;
  --shadow: none;
}

html { background: var(--paper); }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
h1, h2, h3, h4, .serif {
  font-family: inherit;
  font-weight: 650;
  letter-spacing: -0.035em;
}
.shell { width: min(1180px, calc(100% - 48px)); }
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}
.header-inner { min-height: 68px; }
.brand { gap: 10px; text-transform: none; }
.brand-mark {
  display: block !important;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 0;
  border-radius: 7px;
  background: url("../icons/favicon.svg") center / contain no-repeat;
  color: transparent !important;
  font-size: 0;
}
.brand-mark i { display: none; }
.brand-text {
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-text span { color: var(--muted); }
.brand::after { display: none !important; }
.site-nav { gap: 24px; }
.site-nav a { color: var(--muted); font-size: 13px; font-weight: 600; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { color: var(--ink); }
.button, button.button {
  min-height: 42px;
  border-radius: 2px;
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
}
.button.signal { border-color: var(--signal); background: var(--signal); color: #fff; }
.button.signal:hover, .button.signal:focus-visible { border-color: var(--signal-dark); background: var(--signal-dark); }
.button.secondary, .button.ghost { border-color: var(--line-dark); background: #fff; color: var(--ink); }
.button.secondary:hover, .button.secondary:focus-visible, .button.ghost:hover, .button.ghost:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.hero, .page-hero { border-bottom: 1px solid var(--line); background: #fff; }
.hero { padding: 92px 0 76px; }
.page-hero { padding: 64px 0 48px; }
.hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: 72px; }
.hero h1, .page-hero h1 { max-width: 880px; font-size: clamp(3rem, 6vw, 5.6rem); line-height: .96; }
.hero h1 em { color: var(--signal); font-family: inherit; font-style: normal; }
.page-hero h1 { font-size: clamp(2.7rem, 5vw, 4.8rem); }
.eyebrow { color: var(--signal-dark); font-size: 11px; letter-spacing: .12em; }
.lede, .kicker { color: var(--muted); }
.product-preview, .panel, .card, .salary-card, .notice {
  border-color: var(--line);
  border-radius: 2px;
  background: #fff;
  box-shadow: none;
}
.product-preview { border-top: 4px solid var(--signal); }
.preview-toolbar, .composer-top, .section-panel-head { border-color: var(--line); background: var(--soft); }
.trust-strip, .section { border-bottom: 1px solid var(--line); background: #fff; }
.trust-item { border-color: var(--line); }
.trust-icon, .number { color: var(--signal); }
.cards-3, .cards-4, .saved-grid { gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cards-3 > *, .cards-4 > *, .saved-grid > * { border: 0; background: #fff; }
input, textarea, select, .input, .select-control { border-radius: 2px; border-color: var(--line-dark); background-color: #fff; }
input:focus, textarea:focus, select:focus { border-color: var(--signal); box-shadow: 0 0 0 3px rgba(194, 112, 61, .14); }
.privacy-note { color: var(--muted); }
.privacy-note::before { background: var(--signal); }
.site-footer { border-top: 1px solid var(--line); background: var(--soft); }
.footer-brand { opacity: 1; }
.footer-brand .brand,
.footer-brand .brand-text { color: var(--ink); }
.footer-brand .brand-mark {
  border-color: transparent;
  background: url("../icons/favicon.svg") center / contain no-repeat;
  color: transparent;
}
.footer-brand p { color: var(--muted); }
.footer-bottom { color: #77766f; }
.footer-col a { color: var(--muted); }
.footer-col a:hover, .footer-col a:focus-visible { color: var(--signal-dark); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .product-preview { max-width: 720px; }
}
@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 60px; }
  .header-actions > .button { display: none; }
  .site-nav { width: 100%; background: #fff; }
  .site-nav a { width: 100%; min-height: 44px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
  .hero, .section { padding: 48px 0; }
  .page-hero { padding: 42px 0 34px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.5rem, 13vw, 4rem); overflow-wrap: normal; }
  .lede { font-size: 17px; }
  .cards-3, .cards-4, .saved-grid { grid-template-columns: 1fr; }
  .toolbar, .composer-actions, .saved-score-row { align-items: stretch; flex-direction: column; }
  .saved-score { align-self: flex-start; }
}
@media (max-width: 420px) {
  .shell { width: min(100% - 22px, 1180px); }
  .brand-text { font-size: 13px; }
  .hero h1, .page-hero h1 { font-size: 2.55rem; }
  .product-preview { margin-inline: -4px; }
}
* {
  box-sizing: border-box;
}

.site-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  background: #fff;
}

.button.privacy-details-button:hover,
.button.privacy-details-button:focus-visible {
  border-color: var(--bad) !important;
  background: var(--bad) !important;
  color: #fff !important;
}

.hero h1 {
  letter-spacing: -0.015em !important;
}

.site-footer .footer-brand {
  opacity: 1 !important;
  filter: none !important;
}
.site-footer .footer-brand .brand,
.site-footer .footer-brand .brand-text {
  opacity: 1 !important;
  color: var(--ink) !important;
}
.site-footer .footer-brand .brand-mark {
  opacity: 1 !important;
  border-color: transparent !important;
  background: url("../icons/favicon.svg") center / contain no-repeat !important;
  color: transparent !important;
}

.site-footer .footer-brand {
  opacity: 1 !important;
  filter: none !important;
}
.site-footer .footer-brand .brand,
.site-footer .footer-brand .brand-text {
  opacity: 1 !important;
  color: var(--ink) !important;
}
.site-footer .footer-brand .brand-mark {
  opacity: 1 !important;
  border-color: transparent !important;
  background: url("../icons/favicon.svg") center / contain no-repeat !important;
  color: transparent !important;
}

/* Footer identity must retain full contrast. */
.site-footer .footer-brand {
  opacity: 1 !important;
  filter: none !important;
}
.site-footer .footer-brand .brand,
.site-footer .footer-brand .brand-text {
  opacity: 1 !important;
  color: var(--ink) !important;
}
.site-footer .footer-brand .brand-mark {
  opacity: 1 !important;
  border-color: var(--ink) !important;
  background-color: var(--ink) !important;
  color: var(--signal2) !important;
}

/* Saved report layout fixes must remain last in the cascade. */
.third-party-note {
  margin: 0 0 18px;
  padding: 11px 14px;
  border-left: 3px solid var(--signal);
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.fact-state {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 4px;
  border: 1px solid var(--line);
  color: var(--muted);
  font: 700 8px/1 var(--mono);
  text-transform: uppercase;
}
.fact-state.explicit { color: var(--good); border-color: var(--good); }
.fact-state.conflicting { color: var(--bad); border-color: var(--bad); }
.third-party-note strong {
  color: var(--ink);
}
.report-third-party-note {
  margin: 0;
}
.report-notices {
  display: grid;
  gap: 8px;
}
.saved-list-note {
  margin: 0 0 18px;
}
.saved-report-view .verdict-main {
  grid-template-columns: 132px minmax(0, 1fr) 230px;
}
.saved-score {
  color: var(--ink) !important;
  font-weight: 700 !important;
}
.saved-score-value {
  font-size: 2.45rem !important;
  font-weight: 700 !important;
}
.saved-score small {
  color: var(--signal-dark) !important;
}
@media (max-width: 980px) {
  .saved-report-view .verdict-main {
    grid-template-columns: 112px minmax(0, 1fr);
  }
  .saved-report-view .verdict-actions {
    grid-column: 2;
    width: min(100%, 280px);
    min-width: 0;
  }
  .saved-report-view #visitJob {
    max-width: 100%;
    white-space: nowrap;
  }
}
@media (max-width: 640px) {
  .saved-report-view .verdict-main {
    grid-template-columns: 1fr;
  }
  .saved-report-view .verdict-actions {
    grid-column: 1;
    width: 100%;
  }
}

/* Saved report layout fixes must remain last in the cascade. */
.saved-score {
  color: var(--ink) !important;
  font-weight: 700 !important;
}
.saved-score-value {
  font-size: 2.45rem !important;
  font-weight: 700 !important;
}
.saved-score small {
  color: var(--signal-dark) !important;
}
@media (max-width: 980px) {
  .saved-report-view .verdict-main {
    grid-template-columns: 112px minmax(0, 1fr);
  }
  .saved-report-view .verdict-actions {
    grid-column: 2;
    width: min(100%, 280px);
    min-width: 0;
  }
  .saved-report-view #visitJob {
    max-width: 100%;
    white-space: nowrap;
  }
}
@media (max-width: 640px) {
  .saved-report-view .verdict-main {
    grid-template-columns: 1fr;
  }
  .saved-report-view .verdict-actions {
    grid-column: 1;
    width: 100%;
  }
}

/* Keep desktop navigation anchored to the viewport center across pages. */
@media (min-width: 861px) {
  .header-inner {
    position: relative;
  }

  .header-inner > .site-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .header-inner > .brand {
    margin-right: auto;
  }

  .header-inner > .header-actions {
    margin-left: auto;
  }
}

/* Salari product interface, August 2026 */
:root {
  --paper: #ffffff;
  --paper-warm: #ffffff;
  --ink: #17160f;
  --muted: #66655f;
  --line: #d9d8d2;
  --line-dark: #aaa9a2;
  --signal: #c2703d;
  --signal-dark: #9a4f28;
  --soft: #f5f5f2;
  --shadow: none;
}

html { background: var(--paper); }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
h1, h2, h3, h4, .serif {
  font-family: inherit;
  font-weight: 650;
  letter-spacing: -0.035em;
}
.shell { width: min(1180px, calc(100% - 48px)); }
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}
.header-inner { min-height: 68px; }
.brand { gap: 10px; text-transform: none; }
.brand-mark {
  display: block !important;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 0;
  border-radius: 7px;
  background: url("../icons/favicon.svg") center / contain no-repeat;
  color: transparent !important;
  font-size: 0;
}
.brand-mark i { display: none; }
.brand-text {
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-text span { color: var(--muted); }
.brand::after { display: none !important; }
.site-nav { gap: 24px; }
.site-nav a { color: var(--muted); font-size: 13px; font-weight: 600; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { color: var(--ink); }
.button, button.button {
  min-height: 42px;
  border-radius: 2px;
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
}
.button.signal { border-color: var(--signal); background: var(--signal); color: #fff; }
.button.signal:hover, .button.signal:focus-visible { border-color: var(--signal-dark); background: var(--signal-dark); }
.button.secondary, .button.ghost { border-color: var(--line-dark); background: #fff; color: var(--ink); }
.button.secondary:hover, .button.secondary:focus-visible, .button.ghost:hover, .button.ghost:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.hero, .page-hero { border-bottom: 1px solid var(--line); background: #fff; }
.hero { padding: 92px 0 76px; }
.page-hero { padding: 64px 0 48px; }
.hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: 72px; }
.hero h1, .page-hero h1 { max-width: 880px; font-size: clamp(3rem, 6vw, 5.6rem); line-height: .96; }
.hero h1 em { color: var(--signal); font-family: inherit; font-style: normal; }
.page-hero h1 { font-size: clamp(2.7rem, 5vw, 4.8rem); }
.eyebrow { color: var(--signal-dark); font-size: 11px; letter-spacing: .12em; }
.lede, .kicker { color: var(--muted); }
.product-preview, .panel, .card, .salary-card, .notice {
  border-color: var(--line);
  border-radius: 2px;
  background: #fff;
  box-shadow: none;
}
.product-preview { border-top: 4px solid var(--signal); }
.preview-toolbar, .composer-top, .section-panel-head { border-color: var(--line); background: var(--soft); }
.trust-strip, .section { border-bottom: 1px solid var(--line); background: #fff; }
.trust-item { border-color: var(--line); }
.trust-icon, .number { color: var(--signal); }
.cards-3, .cards-4, .saved-grid { gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cards-3 > *, .cards-4 > *, .saved-grid > * { border: 0; background: #fff; }
input, textarea, select, .input, .select-control { border-radius: 2px; border-color: var(--line-dark); background-color: #fff; }
input:focus, textarea:focus, select:focus { border-color: var(--signal); box-shadow: 0 0 0 3px rgba(194, 112, 61, .14); }
.privacy-note { color: var(--muted); }
.privacy-note::before { background: var(--signal); }
.site-footer { border-top: 1px solid var(--line); background: var(--soft); }
.footer-brand { opacity: 1; }
.footer-brand .brand,
.footer-brand .brand-text { color: var(--ink); }
.footer-brand .brand-mark {
  border-color: transparent;
  background: url("../icons/favicon.svg") center / contain no-repeat;
  color: transparent;
}
.footer-brand p { color: var(--muted); }
.footer-bottom { color: #77766f; }
.footer-col a { color: var(--muted); }
.footer-col a:hover, .footer-col a:focus-visible { color: var(--signal-dark); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .product-preview { max-width: 720px; }
}
@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 60px; }
  .header-actions > .button { display: none; }
  .site-nav { width: 100%; background: #fff; }
  .site-nav a { width: 100%; min-height: 44px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
  .hero, .section { padding: 48px 0; }
  .page-hero { padding: 42px 0 34px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.5rem, 13vw, 4rem); overflow-wrap: normal; }
  .lede { font-size: 17px; }
  .cards-3, .cards-4, .saved-grid { grid-template-columns: 1fr; }
  .toolbar, .composer-actions, .saved-score-row { align-items: stretch; flex-direction: column; }
  .saved-score { align-self: flex-start; }
}
@media (max-width: 420px) {
  .shell { width: min(100% - 22px, 1180px); }
  .brand-text { font-size: 13px; }
  .hero h1, .page-hero h1 { font-size: 2.55rem; }
  .product-preview { margin-inline: -4px; }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  color-scheme: light;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--signal);
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  color: inherit;
}
img,
svg {
  max-width: 100%;
}
::selection {
  background: #ffd7c8;
  color: var(--ink);
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus {
  transform: none;
}
.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.narrow {
  width: min(820px, calc(100% - 40px));
  margin: auto;
}
.mono {
  font-family: var(--mono);
}
.muted {
  color: var(--muted);
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
}
h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 5.65rem);
  line-height: 0.98;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
}
h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.18;
}
.lede {
  max-width: 680px;
  color: var(--ink2);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}
.kicker {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--signal);
  font: 700 12px var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow:before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(217, 224, 234, 0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand-mark {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font: 700 15px var(--mono);
}
.brand-mark i {
  color: var(--signal);
  font-style: normal;
}
.brand-text span {
  color: var(--signal);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink2);
  font-size: 14px;
  font-weight: 650;
}
.site-nav a[aria-current="page"] {
  color: var(--signal);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.mobile-toggle span,
.mobile-toggle:before,
.mobile-toggle:after {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  content: "";
}
.button,
button.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 11px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: 0.14s;
}
.button:hover,
button.button:hover {
  transform: translateY(-1px);
  background: #14284f;
  color: #fff;
  box-shadow: var(--softshadow);
}
.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(237, 99, 52, 0.25);
  outline-offset: 2px;
}
.button.signal {
  background: var(--signal);
}
.button.signal:hover {
  background: #d9562a;
}
.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}
.button.secondary:hover {
  border-color: #bac5d4;
  background: var(--surface2);
  color: var(--ink);
}
.button.ghost {
  background: transparent;
  color: var(--ink2);
  box-shadow: none;
}
.button.ghost:hover {
  background: #e9edf3;
  color: var(--ink);
}
.button.small {
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 13px;
}
.button.danger {
  border-color: #efc2c0;
  background: #fff;
  color: var(--bad);
}
.button.danger:hover {
  background: var(--badbg);
  color: var(--bad);
}
.button[disabled] {
  transform: none;
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 88px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 83% 24%,
      rgba(237, 99, 52, 0.15),
      transparent 27%
    ),
    linear-gradient(180deg, #fff, #f5f7fa);
}
.hero:after {
  position: absolute;
  right: -170px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(8, 21, 47, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(8, 21, 47, 0.025),
    0 0 0 160px rgba(8, 21, 47, 0.018);
  content: "";
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: 70px;
  align-items: center;
}
.hero h1 {
  max-width: 850px;
}
.hero h1 em {
  color: var(--signal);
  font-style: normal;
}
.hero-points {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font: 12px var(--mono);
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-points li:before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
  content: "";
}
.product-preview {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--rl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}
.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--muted);
  font: 11px var(--mono);
}
.preview-dots {
  display: flex;
  gap: 6px;
}
.preview-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.preview-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
}
.preview-score strong {
  font-size: 3.1rem;
  line-height: 1;
  letter-spacing: -0.06em;
}
.preview-score span {
  color: #b8c5df;
  font-size: 13px;
}
.preview-score b {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 16px;
}
.preview-findings {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.preview-finding {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--soft);
  border-radius: 10px;
  background: #fff;
  color: var(--ink2);
  font-size: 13px;
}
.preview-finding i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bad);
}
.preview-finding.medium i {
  background: var(--warn);
}
.preview-finding small {
  color: var(--muted);
  font: 10px var(--mono);
}
.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-grid {
  min-height: 88px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.trust-item {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid var(--soft);
}
.trust-item:first-child {
  padding-left: 0;
}
.trust-item:last-child {
  border: 0;
}
.trust-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--signal2);
  color: var(--signal);
  font: 800 13px var(--mono);
}
.trust-item strong {
  display: block;
  font-size: 13px;
}
.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.section {
  padding: 92px 0;
}
.section.white {
  background: #fff;
}
.section.dark {
  background: var(--ink);
  color: #fff;
}
.section.dark .eyebrow,
.section.dark .kicker,
.section.dark .lede {
  color: #b9c5dd;
}
.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}
.cards-3,
.cards-4 {
  display: grid;
  gap: 18px;
}
.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--softshadow);
}
.feature-card {
  min-height: 250px;
  padding: 26px;
}
.feature-card .number {
  margin-bottom: 30px;
  color: var(--signal);
  font: 800 12px var(--mono);
}
.feature-card p {
  margin: 0;
  color: var(--muted);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
}
.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink2);
}
.check-list li:before {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--goodbg);
  color: var(--good);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}
.dark .check-list li {
  color: #d8e0ef;
}
.extension-mock {
  position: relative;
  max-width: 490px;
  margin-left: auto;
  border: 1px solid #314263;
  border-radius: 20px;
  background: #0d1d3b;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.extension-mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  border-bottom: 1px solid #2b3a5b;
  font-size: 13px;
}
.extension-mock-body {
  padding: 20px;
}
.mock-verdict {
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}
.mock-verdict-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.mock-verdict strong {
  font-size: 1.2rem;
}
.mock-score {
  color: var(--signal);
  font-size: 2.3rem;
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1;
}
.mock-bars {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.mock-bar-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
}
.mock-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--soft);
  overflow: hidden;
}
.mock-bar i {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--good);
}
.mock-bar-row:nth-child(2) .mock-bar i,
.mock-bar-row:nth-child(3) .mock-bar i {
  background: var(--warn);
}
.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  position: relative;
  padding: 24px 46px 24px 0;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  position: absolute;
  top: 20px;
  right: 4px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  content: "+";
}
.faq details[open] summary:after {
  content: "×";
}
.faq details p {
  max-width: 760px;
  padding: 0 40px 24px 0;
  color: var(--muted);
}
.cta-band {
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border-radius: var(--rl);
  background: var(--signal);
  color: #fff;
}
.cta-band h2 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}
.cta-band p {
  margin: 0;
  color: #ffe2d7;
}
.cta-band .button {
  background: #fff;
  color: var(--ink);
}
.page-hero {
  padding: 70px 0 48px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5vw, 4.65rem);
}
.tool-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
  padding: 34px 0 90px;
}
.tool-main {
  min-width: 0;
}
.tool-sidebar {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 16px;
}
.panel-pad {
  padding: 24px;
}
.composer {
  overflow: hidden;
}
.composer-top {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--soft);
}
.composer-top h2 {
  margin-bottom: 7px;
  font-size: 1.45rem;
}
.composer-top p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.composer-fields {
  padding: 22px 24px 24px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.field {
  display: grid;
  gap: 7px;
}
.field label,
.field-label {
  color: var(--ink2);
  font: 750 11px var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.field input,
.field textarea,
.field select,
.input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}
.field textarea {
  min-height: 410px;
  resize: vertical;
  font: 13px/1.72 var(--mono);
}
.textarea-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  color: var(--muted);
  font: 11px var(--mono);
}
.composer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}
.privacy-note:before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--good);
  content: "";
}
.sidebar-card {
  padding: 20px;
}
.sidebar-card h3 {
  font-size: 1rem;
}
.sidebar-card p,
.sidebar-card li {
  color: var(--muted);
  font-size: 13px;
}
.sidebar-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}
.sidebar-card li + li {
  margin-top: 7px;
}
.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid #f0d4a6;
  border-radius: 10px;
  background: var(--warnbg);
  color: #6d4912;
  font-size: 13px;
}
.notice:before {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(157, 100, 18, 0.13);
  content: "i";
  font: 800 14px Georgia;
}
.report {
  display: none;
  margin-top: 24px;
}
.report.on {
  display: block;
}
.report-stack {
  display: grid;
  gap: 20px;
}
.verdict-panel {
  overflow: hidden;
}
.verdict-main {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 30px;
}
.score-ring {
  width: 118px;
  height: 118px;
  min-width: 118px;
  min-height: 118px;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(
    var(--good) calc(var(--score, 70) * 1%),
    var(--soft) 0
  );
}
.score-block {
  width: 132px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
}
.score-caption {
  color: var(--muted);
  font: 650 10px/1.2 var(--mono);
  letter-spacing: 0.02em;
  text-align: center;
}
.score-ring:after {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #fff;
  content: "";
}
.score-value {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 0.95;
}
.score-value small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font: 650 10px var(--mono);
  letter-spacing: 0;
}
.report-job-url {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 2px 0 12px;
  overflow: hidden;
  color: var(--signal);
  font: 600 11px/1.45 var(--mono);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.report-job-url:hover {
  color: var(--ink);
}
.verdict-copy h2 {
  margin-bottom: 7px;
  font-size: 1.75rem;
}
.verdict-copy p {
  max-width: 680px;
  margin-bottom: 9px;
  color: var(--muted);
}
.verdict-copy .recommendation {
  color: var(--ink2);
  font-size: 14px;
  font-weight: 650;
}
.confidence {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  color: var(--muted);
  font: 11px var(--mono);
}
.confidence:before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
  content: "";
}
.confidence.medium:before {
  background: var(--warn);
}
.confidence.low:before {
  background: var(--bad);
}
.verdict-actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.report-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 14px 30px;
  border-top: 1px solid var(--soft);
  background: var(--surface2);
  color: var(--muted);
  font: 11px var(--mono);
}
.save-feedback {
  min-height: 20px;
  color: var(--good);
  font-size: 12px;
}
.scorecards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.scorecard {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.scorecard-head {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}
.scorecard strong {
  color: var(--ink);
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}
.scorecard strong small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0;
}
.scorebar {
  height: 6px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--soft);
  overflow: hidden;
}
.scorebar i {
  width: var(--value, 0%);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--good);
}
.scorecard[data-level="medium"] .scorebar i {
  background: var(--warn);
}
.scorecard[data-level="low"] .scorebar i {
  background: var(--bad);
}
.scorecard.unknown strong {
  font-size: 0.95rem;
  line-height: 1.2;
}
.scorecard.unknown .scorebar i {
  width: 100%;
  background: repeating-linear-gradient(
    90deg,
    #a5aec0 0,
    #a5aec0 7px,
    #d7dce5 7px,
    #d7dce5 13px
  );
}
.salary-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
}
.salary-card h2 {
  margin-bottom: 6px;
  font-size: 1.3rem;
}
.salary-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.salary-value {
  text-align: right;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.salary-value small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font: 600 10px var(--mono);
  letter-spacing: 0;
}
.section-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--soft);
}
.section-panel-head h2 {
  margin-bottom: 5px;
  font-size: 1.35rem;
}
.section-panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.tally {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font: 11px var(--mono);
}
.tally span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tally i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
}
.tally .high i {
  background: var(--bad);
}
.tally .medium i {
  background: var(--warn);
}
.annotated-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  min-height: 520px;
}
.annotated-doc {
  max-height: 800px;
  overflow: auto;
  padding: 30px;
  border-right: 1px solid var(--soft);
  white-space: pre-wrap;
  word-break: break-word;
  color: #1c2944;
  font: 12.5px/1.85 var(--mono);
}
.annotated-doc mark {
  border-bottom: 2px solid var(--warn);
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.annotated-doc mark[data-severity="high"] {
  border-color: var(--bad);
}
.annotated-doc mark[data-severity="low"] {
  border-color: var(--muted);
}
.annotated-doc mark:hover,
.annotated-doc mark.active {
  background: var(--signal2);
}
.annotated-doc mark sup {
  margin-left: 3px;
  color: var(--signal);
  font-size: 9px;
}
.findings {
  max-height: 800px;
  overflow: auto;
  background: var(--surface2);
}
.finding {
  padding: 20px 22px;
  border-bottom: 1px solid var(--soft);
}
.finding.active {
  background: var(--signal2);
}
.finding-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: start;
}
.finding-number {
  color: var(--signal);
  font: 800 11px var(--mono);
}
.finding-title {
  font-size: 14px;
  font-weight: 800;
}
.severity {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 7px;
  background: #eef1f5;
  color: var(--muted);
  font: 800 9px var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.severity.high {
  background: var(--badbg);
  color: var(--bad);
}
.severity.medium {
  background: var(--warnbg);
  color: var(--warn);
}
.finding-evidence {
  margin: 11px 0 0 26px;
  padding: 9px 11px;
  border-left: 2px solid var(--line);
  background: #fff;
  color: var(--muted);
  font: 11px var(--mono);
}
.finding-body,
.finding-action {
  margin: 10px 0 0 26px;
  color: var(--muted);
  font-size: 13px;
}
.finding-action,
.finding-action strong {
  color: var(--good);
}
.empty-state {
  padding: 40px 26px;
  text-align: center;
  color: var(--muted);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.info-panel {
  padding: 24px;
}
.info-panel h2 {
  margin-bottom: 7px;
  font-size: 1.3rem;
}
.info-panel > p {
  color: var(--muted);
  font-size: 13px;
}
.question-list,
.missing-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.question-item,
.missing-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--soft);
  border-radius: 10px;
  background: var(--surface2);
}
.question-item > span,
.missing-item > span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font: 10px var(--mono);
}
.missing-item > span {
  background: var(--warnbg);
  color: var(--warn);
}
.question-item strong,
.missing-item strong {
  display: block;
  color: var(--ink2);
  font-size: 13px;
}
.question-item small,
.missing-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.toolbar-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.search-input {
  width: min(360px, 100%);
  position: relative;
}
.search-input input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 13px 10px 38px;
  background: #fff;
}
.search-input:before {
  position: absolute;
  top: 11px;
  left: 14px;
  color: var(--muted);
  content: "⌕";
  font-size: 18px;
}
.saved-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.saved-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.saved-card-top {
  padding: 22px;
}
.saved-score-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.saved-score {
  min-width: 62px;
  color: var(--ink);
  font-size: 2.3rem;
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 1;
}
.saved-score small {
  font-size: 11px;
  letter-spacing: 0;
}
.saved-card h2 {
  margin-bottom: 4px;
  font-size: 1.16rem;
}
.saved-card .company {
  color: var(--muted);
  font-size: 13px;
}
.saved-badges {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 17px;
}
.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 8px;
  background: var(--surface2);
  color: var(--muted);
  font: 750 9px var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge.good {
  border-color: #bde1d4;
  background: var(--goodbg);
  color: var(--good);
}
.badge.warn {
  border-color: #ebd09e;
  background: var(--warnbg);
  color: var(--warn);
}
.badge.bad {
  border-color: #edc1bf;
  background: var(--badbg);
  color: var(--bad);
}
.saved-card-findings {
  display: grid;
  gap: 8px;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 12px;
}
.saved-card-findings span {
  display: grid;
  grid-template-columns: 7px 1fr;
  gap: 8px;
}
.saved-card-findings span:before {
  width: 6px;
  height: 6px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--warn);
  content: "";
}
.saved-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 14px 18px;
  border-top: 1px solid var(--soft);
  background: var(--surface2);
}
.status-select {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 9px;
  background: #fff;
  color: var(--ink2);
  font-size: 12px;
}
.compare-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.compare-selector label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font: 700 11px var(--mono);
  text-transform: uppercase;
}
.compare-selector select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px;
  background: #fff;
  color: var(--ink);
  font: 13px var(--sans);
  text-transform: none;
}
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--softshadow);
}
.compare-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  min-width: 210px;
  padding: 17px 18px;
  border-right: 1px solid var(--soft);
  border-bottom: 1px solid var(--soft);
  text-align: left;
  vertical-align: top;
}
.compare-table th:first-child,
.compare-table td:first-child {
  min-width: 170px;
  position: sticky;
  left: 0;
  z-index: 1;
  background: var(--surface2);
  color: var(--muted);
  font-size: 12px;
}
.compare-table tr:last-child td {
  border-bottom: 0;
}
.compare-table th:last-child,
.compare-table td:last-child {
  border-right: 0;
}
.compare-role strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}
.compare-role span {
  color: var(--muted);
  font-size: 12px;
}
.compare-score {
  color: var(--signal);
  font-size: 2.5rem;
  font-weight: 850;
  letter-spacing: -0.07em;
}
.metric-cell strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.35rem;
}
.metric-cell span,
.cell-list li {
  color: var(--muted);
  font-size: 12px;
}
.cell-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 16px;
}
.prose {
  padding: 56px 0 100px;
}
.prose h2 {
  margin-top: 52px;
  font-size: 2rem;
}
.prose h3 {
  margin-top: 32px;
  font-size: 1.28rem;
}
.prose p,
.prose li {
  color: var(--ink2);
}
.prose p,
.prose ul,
.prose ol {
  max-width: 760px;
}
.prose li + li {
  margin-top: 8px;
}
.prose .callout {
  max-width: 820px;
  margin: 30px 0;
  padding: 22px;
  border-left: 4px solid var(--signal);
  border-radius: 0 10px 10px 0;
  background: #fff;
  box-shadow: var(--softshadow);
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 30px 0;
}
.method-card {
  padding: 22px;
}
.method-card .method-score {
  display: block;
  margin-bottom: 10px;
  color: var(--signal);
  font: 800 12px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.method-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.extension-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  gap: 64px;
  align-items: center;
}
.install-steps {
  counter-reset: install;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.install-step {
  position: relative;
  padding: 20px 20px 20px 64px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.install-step:before {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  counter-increment: install;
  content: counter(install);
  font: 800 12px var(--mono);
}
.install-step strong {
  display: block;
  margin-bottom: 4px;
}
.install-step span {
  color: var(--muted);
  font-size: 13px;
}
.site-footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
}
.footer-brand p {
  max-width: 330px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}
.footer-col h2 {
  margin-bottom: 14px;
  color: var(--muted);
  font: 10px var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  margin: 9px 0;
  color: var(--ink2);
  font-size: 13px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--soft);
  color: var(--muted);
  font-size: 12px;
}
.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  max-width: 360px;
  transform: translateY(20px);
  border-radius: 10px;
  padding: 13px 16px;
  background: var(--ink);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
  transition: 0.15s;
  font-size: 13px;
}
.toast.on {
  transform: none;
  opacity: 1;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.saved-job-url {
  display: block;
  max-width: 260px;
  margin-top: 7px;
  overflow: hidden;
  color: var(--signal);
  font: 10px/1.45 var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.saved-card-actions {
  flex-wrap: wrap;
}
.saved-card-actions .button {
  white-space: nowrap;
}
@media (max-width: 1060px) {
  .site-nav {
    gap: 16px;
  }
  .hero-grid,
  .extension-hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 38px;
  }
  .tool-layout {
    grid-template-columns: 1fr;
  }
  .tool-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .scorecards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .saved-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .site-nav,
  .header-actions .button.secondary {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .site-nav.open {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--softshadow);
  }
  .site-nav.open a {
    padding: 13px 0;
    border-bottom: 1px solid var(--soft);
  }
  .hero-grid,
  .extension-hero-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .product-preview,
  .extension-mock {
    max-width: 620px;
    margin: 0;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2) {
    border-right: 0;
  }
  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--soft);
  }
  .trust-item {
    padding: 16px;
  }
  .trust-item:first-child {
    padding-left: 16px;
  }
  .cards-3,
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .annotated-layout {
    grid-template-columns: 1fr;
  }
  .annotated-doc {
    max-height: 540px;
    border-right: 0;
    border-bottom: 1px solid var(--soft);
  }
  .findings {
    max-height: none;
  }
  .verdict-main {
    grid-template-columns: 112px 1fr;
  }
  .verdict-actions {
    grid-column: 1/-1;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .shell,
  .narrow {
    width: min(100% - 28px, var(--max));
  }
  .header-actions .button.signal {
    display: none;
  }
  .hero,
  .section {
    padding: 62px 0;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }
  .hero-grid {
    gap: 40px;
  }
  .hero-points {
    display: grid;
    gap: 10px;
  }
  .trust-grid,
  .cards-3,
  .cards-4,
  .field-grid,
  .info-grid,
  .method-grid,
  .saved-grid,
  .compare-selector,
  .tool-sidebar {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--soft);
  }
  .trust-item:last-child {
    border-bottom: 0;
  }
  .composer-top,
  .composer-fields,
  .panel-pad,
  .section-panel-head,
  .info-panel,
  .salary-card {
    padding-right: 18px;
    padding-left: 18px;
  }
  .field textarea {
    min-height: 330px;
  }
  .composer-actions,
  .salary-card,
  .cta-band,
  .footer-bottom {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .salary-value {
    text-align: left;
  }
  .verdict-main {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .score-block {
    width: 112px;
  }
  .score-ring {
    width: 102px;
    height: 102px;
    min-width: 102px;
    min-height: 102px;
  }
  .scorecards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .scorecard:last-child {
    grid-column: 1/-1;
  }
  .annotated-doc {
    padding: 22px 18px;
  }
  .finding {
    padding: 18px;
  }
  .finding-head {
    grid-template-columns: auto 1fr;
  }
  .finding-head .severity {
    grid-column: 2;
    justify-self: start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 28px;
  }
  .page-hero {
    padding: 52px 0 36px;
  }
}
@media print {
  .site-header,
  .site-footer,
  .tool-sidebar,
  .composer,
  .verdict-actions,
  .button,
  .toast {
    display: none !important;
  }
  body {
    background: #fff;
  }
  .shell,
  .tool-layout {
    width: 100%;
    display: block;
    padding: 0;
  }
  .report {
    display: block !important;
  }
  .panel,
  .scorecard {
    box-shadow: none;
  }
  .annotated-doc,
  .findings {
    max-height: none;
    overflow: visible;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Salari product skin */
:root {
  --ink: #171512;
  --ink2: #37332e;
  --muted: #706a62;
  --paper: #f5f2ea;
  --surface: #fffdf9;
  --surface2: #f0ece3;
  --signal: #a55a2c;
  --signal2: #f3e5da;
  --good: #356b50;
  --goodbg: #e7f0eb;
  --warn: #8a5b20;
  --warnbg: #f5ecdc;
  --bad: #a23f34;
  --badbg: #f6e7e4;
  --line: #d8d1c6;
  --soft: #e8e2d8;
  --shadow: 0 24px 70px rgba(23, 21, 18, 0.1);
  --softshadow: 0 10px 34px rgba(23, 21, 18, 0.06);
  --r: 18px;
  --rl: 28px;
  --display: Georgia, "Times New Roman", serif;
}
body {
  background: var(--paper);
}
html,
body {
  max-width: 100%;
  overflow-x: clip;
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.025em;
}
h3,
h4 {
  letter-spacing: -0.02em;
}
.site-header {
  border-color: rgba(216, 209, 198, 0.9);
  background: rgba(245, 242, 234, 0.94);
}
.brand {
  gap: 12px;
}
.brand:after {
  margin-left: 4px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  content: "Job Reality Check";
  font: 650 12px var(--sans);
  letter-spacing: 0;
}
.brand-mark {
  border-radius: 10px;
  background: var(--ink);
}
.mobile-toggle,
.button.secondary,
.field input,
.field textarea,
.field select,
.input,
.search-input input,
.status-select,
.compare-selector select {
  background: var(--surface);
}
.button,
.button.small,
button.button {
  border-radius: 999px;
}
.button:hover,
button.button:hover {
  background: #2b2823;
}
.button.signal {
  background: var(--signal);
}
.button.signal:hover {
  background: #8d4922;
}
.button.ghost:hover {
  background: var(--surface2);
}
.hero,
.page-hero,
.section.white,
.site-footer {
  background: var(--surface);
}
.section.dark {
  background: var(--ink);
}
.section.dark .eyebrow,
.section.dark .kicker,
.section.dark .lede {
  color: #d4cec4;
}
.product-preview,
.card,
.panel,
.scorecard,
.compare-wrap,
.install-step,
.prose .callout {
  background: var(--surface);
}
.preview-score,
.question-item > span,
.install-step:before {
  background: var(--ink);
}
.preview-score span {
  color: #d1cbc0;
}
.extension-mock {
  border-color: #3d3932;
  background: #211f1b;
}
.extension-mock-head {
  border-color: #3d3932;
}
.cta-band {
  background: var(--signal);
}
.cta-band p {
  color: #f8e8dc;
}
.cta-band .button {
  color: var(--ink);
}
.score-ring:after {
  background: var(--surface);
}
.report-meta,
.saved-card-actions,
.compare-table th:first-child,
.compare-table td:first-child {
  background: var(--surface2);
}
.saved-score,
.compare-score {
  color: var(--signal);
}
.toast {
  background: var(--ink);
}
@media (max-width: 760px) {
  .brand:after {
    display: none;
  }
}

/* Salari identity and accessibility refinements */
.brand {
  gap: 12px;
}
.brand-mark {
  font-size: 16px;
  text-transform: uppercase;
}
.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}
.brand-copy .brand-text {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.02em;
}
.brand-copy small {
  max-width: 250px;
  color: var(--muted);
  font: 600 10px/1.25 var(--sans);
}
.brand:after {
  display: none;
}
.trust-item {
  justify-content: center;
  min-height: 72px;
  padding: 14px 28px;
  text-align: center;
}
.trust-item:first-child {
  padding-left: 28px;
}
.trust-icon {
  width: 42px;
  height: 42px;
  font-size: 15px;
}
.trust-item strong {
  font-size: 15px;
}
.trust-item span {
  font-size: 13px;
  line-height: 1.4;
}
.status-select,
.compare-selector select {
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23171512' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}
.method-card .method-score {
  display: flex;
  align-items: center;
  gap: 12px;
}
.method-card .method-score strong {
  color: var(--signal);
  font: 850 1.35rem/1 var(--mono);
  letter-spacing: -0.03em;
}
.method-card .method-score span {
  color: var(--signal);
  font: 800 12px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.extension-hero-grid h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 1.01;
  letter-spacing: -0.035em;
}
.extension-hero-grid .lede {
  max-width: 700px;
  line-height: 1.6;
  letter-spacing: 0.005em;
}
@media (max-width: 760px) {
  .brand-copy small {
    display: none;
  }
  .trust-item:first-child {
    padding-left: 16px;
  }
  .extension-hero-grid h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }
}

/* 2026-08-20 visual-system corrections */
.brand {
  gap: 0;
  align-items: center;
}
.brand-mark {
  display: none;
}
.brand-text {
  font-size: 0;
  line-height: 1;
}
.brand-text:before {
  content: "SALARI";
  color: var(--ink);
  font: 700 28px/1 var(--serif);
  letter-spacing: -0.025em;
}
.brand-text span {
  display: none;
}
.brand:after {
  display: block !important;
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
  content: "Career systems for iOS, Android\A& cross-platform engineers.";
  white-space: pre;
  color: var(--muted);
  font: 500 11px/1.35 var(--sans);
  letter-spacing: 0;
}
.footer-brand .brand:after {
  display: none !important;
}
.footer-brand .brand-text:before {
  font-size: 30px;
}

.hero {
  padding: 82px 0;
}
.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.82fr);
  gap: 64px;
}
.hero h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 6.2vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}
.hero .lede {
  max-width: 650px;
  line-height: 1.58;
}

.preview-score {
  grid-template-columns: 126px 1fr;
  gap: 24px;
  padding: 24px;
}
.preview-score > strong {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border: 2px solid #f1bb67;
  border-radius: 50%;
  color: #f6c76f;
  font-size: 4.15rem;
  text-align: center;
  letter-spacing: -0.08em;
}
.preview-score span {
  font-size: 15px;
  line-height: 1.5;
}
.preview-score b {
  font-size: 20px;
  line-height: 1.15;
}

.trust-grid {
  min-height: 132px;
}
.trust-item {
  min-height: 132px;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  text-align: center;
}
.trust-item:first-child {
  padding-left: 24px;
}
.trust-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--signal);
  border-radius: 50%;
  background: transparent;
  color: var(--signal);
  font-size: 15px;
}
.trust-item strong {
  font-size: 16px;
  line-height: 1.2;
}
.trust-item span {
  font-size: 13px;
  line-height: 1.35;
}

.feature-card {
  min-height: 290px;
  padding: 30px;
}
.feature-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
.feature-card .number {
  width: 50px;
  height: 50px;
  margin: 0;
  flex: 0 0 50px;
  border: 1px solid var(--signal);
  border-radius: 50%;
  font-size: 14px;
}
.feature-label {
  color: var(--signal);
  font: 800 12px/1.2 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.feature-card h3 {
  font-size: 1.45rem;
  line-height: 1.18;
}
.feature-card p {
  font-size: 16px;
  line-height: 1.62;
}

.search-input:before {
  display: none;
}
.search-input .search-icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 18px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  fill: none;
  stroke: var(--muted);
  stroke-width: 2;
  stroke-linecap: round;
}
.search-input input {
  min-height: 56px;
  padding: 12px 18px 12px 56px;
  font-size: 17px;
}
.select-control {
  width: auto;
  min-width: 190px;
  min-height: 56px;
  appearance: none;
  padding: 12px 54px 12px 18px;
  background-color: var(--surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23171512' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 20px;
}

@media (max-width: 860px) {
  .brand:after {
    display: none !important;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .trust-item:first-child {
    padding-left: 16px;
  }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }
  .preview-score {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .preview-score > strong {
    margin: auto;
  }
  .trust-item {
    min-height: auto;
  }
  .select-control {
    width: 100%;
  }
}

/* Standalone jobs.salari.dev editorial finish */
.hero {
  background:
    radial-gradient(
      circle at 84% 20%,
      rgba(165, 90, 44, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, var(--surface), var(--paper));
}
.hero:after {
  border-color: rgba(23, 21, 18, 0.08);
  box-shadow:
    0 0 0 80px rgba(23, 21, 18, 0.025),
    0 0 0 160px rgba(23, 21, 18, 0.018);
}
.hero h1,
.page-hero h1,
.section h2,
.cta-band h2,
.verdict-copy h2,
.section-panel-head h2,
.info-panel h2,
.saved-card h2,
.prose h2,
.prose h3 {
  font-family: var(--display);
  font-weight: 500;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 6.5vw, 6.5rem);
  line-height: 0.92;
}
.hero-grid > * {
  min-width: 0;
}
.hero h1 em {
  color: var(--signal);
}
.lede {
  color: var(--ink2);
  line-height: 1.6;
}
.preview-score {
  border-radius: 22px;
  background: var(--ink);
}
.preview-finding {
  border-radius: 14px;
  background: var(--surface);
}
.trust-strip {
  background: var(--surface);
}
.feature-card {
  border-radius: 22px;
}
.feature-card .number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--signal);
  border-radius: 50%;
  margin-bottom: 26px;
}
.extension-mock {
  background: var(--ink);
}
.mock-verdict {
  border-radius: 18px;
  background: var(--surface);
}
.page-hero {
  background: var(--surface);
}
.score-ring {
  border: 1px solid color-mix(in srgb, var(--signal) 36%, var(--line));
  background: conic-gradient(
    var(--signal) calc(var(--score, 70) * 1%),
    var(--soft) 0
  );
}
.saved-card {
  border-radius: 22px;
  cursor: pointer;
}
.saved-score {
  width: 82px !important;
  height: 82px !important;
  min-width: 82px !important;
  max-width: 82px !important;
  min-height: 82px !important;
  max-height: 82px !important;
  flex: 0 0 82px;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--signal) 45%, var(--line));
  border-radius: 9999px !important;
  background: var(--signal2);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.saved-score-value {
  display: block;
  font-size: 2.35rem;
  font-weight: 650;
  line-height: .82;
}
.saved-score small {
  display: block;
  transform: translateY(4px);
  color: var(--signal);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0;
}

.report-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 32px;
  padding: 28px;
}
.report-overview h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem) !important;
  line-height: 1.1;
}
.saved-search {
  width: min(100%, 960px);
}
.saved-search input {
  width: 100%;
}
.saved-report-view .page-hero,
.saved-report-view .composer,
.saved-report-view .tool-sidebar {
  display: none;
}
.saved-report-view .tool-layout {
  display: block;
  padding-top: 32px;
}
.saved-report-view .tool-main {
  max-width: none;
}
.saved-report-view .report {
  margin-top: 0;
}
.saved-report-view .verdict-actions > :not(#visitJob) {
  display: none !important;
}
.saved-report-view .verdict-actions {
  width: 230px;
}
.saved-report-view #visitJob {
  display: inline-flex;
  width: 100%;
}
.saved-report-view #visitJob[hidden] {
  display: none !important;
}
.verdict-main {
  grid-template-columns: 132px minmax(0, 1fr) 190px;
  align-items: start;
}
.verdict-copy {
  min-width: 0;
  padding-top: 4px;
}
.verdict-copy h2 {
  line-height: 1.05;
}
.confidence {
  align-items: flex-start;
  max-width: 100%;
  line-height: 1.45;
}
.confidence:before {
  flex: 0 0 7px;
  margin-top: 4px;
}
.verdict-actions {
  width: 190px;
}
.verdict-actions .button {
  width: 100%;
}
.report-summary {
  max-width: 68ch;
  margin-top: 10px;
  color: var(--ink2);
  line-height: 1.65;
}
.job-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--line);
}
.job-facts > div {
  min-width: 0;
  padding: 13px 14px;
  background: var(--surface);
}
.job-facts dt {
  margin-bottom: 5px;
  color: var(--muted);
  font: 700 9px/1.2 var(--mono);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.job-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
}
.compare-role {
  color: inherit;
  text-decoration: none;
}
.compare-role small {
  display: block;
  margin-top: 6px;
  color: var(--signal);
  font-size: 11px;
}
.saved-job-url {
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
}
.faq summary:after {
  background: var(--surface);
}
@media (max-width: 640px) {
  .shell,
  .narrow {
    width: calc(100% - 28px);
  }
  .hero-grid,
  .hero-grid > *,
  .hero h1,
  .hero .lede,
  .product-preview {
    width: 100%;
    max-width: calc(100vw - 28px);
  }
  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 2.75rem);
    line-height: 0.98;
    overflow-wrap: normal;
  }
  .saved-score {
    width: 62px;
    height: 62px;
  }
}

/* Final component alignment overrides */
.brand {
  gap: 0;
}
.brand-mark {
  display: none;
}
.brand-copy {
  display: block;
}
.brand-copy small {
  display: none;
}
.brand-text,
.brand-copy .brand-text {
  display: inline-block;
  min-width: 92px;
  color: var(--ink);
  font-family: var(--display) !important;
  font-size: 28px !important;
  font-weight: 700;
  line-height: 1 !important;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.brand-text:before,
.brand-copy .brand-text:before {
  display: none;
  content: none;
}
.brand-text span {
  display: none;
}
.brand:after {
  display: block !important;
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
  content: "Career systems for iOS, Android\A& cross-platform engineers.";
  white-space: pre;
  color: var(--muted);
  font: 500 11px/1.35 var(--sans);
  letter-spacing: 0;
}
.footer-brand .brand:after {
  display: none !important;
}
.footer-brand .brand-text:before {
  font-size: 30px;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 5.2vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}
.hero .lede {
  max-width: 620px;
  font-size: clamp(1.06rem, 1.65vw, 1.24rem);
  line-height: 1.58;
}

.preview-score {
  grid-template-columns: 126px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 24px;
}
.preview-score > strong {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 2px solid #f1bb67;
  border-radius: 50%;
  color: #f6c76f;
  font-size: 4.15rem;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.08em;
}
.preview-score span {
  font-size: 15px;
  line-height: 1.5;
}
.preview-score b {
  font-size: 20px;
  line-height: 1.15;
}

.trust-grid {
  min-height: 132px;
}
.trust-item {
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px 24px;
  text-align: center;
}
.trust-item:first-child {
  padding-left: 24px;
}
.trust-icon {
  width: 54px;
  height: 54px;
  border: 1px solid var(--signal);
  border-radius: 50%;
  background: transparent;
  color: var(--signal);
  font-size: 15px;
}
.trust-item strong {
  font-size: 16px;
  line-height: 1.2;
}
.trust-item span {
  font-size: 13px;
  line-height: 1.35;
}

.feature-card {
  min-height: 290px;
  padding: 30px;
}
.feature-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
.feature-card .number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  margin: 0;
  border: 1px solid var(--signal);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}
.feature-label {
  color: var(--signal);
  font: 800 12px/1.2 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.feature-card h3 {
  font-size: 1.45rem;
  line-height: 1.18;
}
.feature-card p {
  font-size: 16px;
  line-height: 1.62;
}

.search-input .search-icon {
  width: 26px;
  height: 26px;
  left: 18px;
}
.search-input input {
  padding-left: 58px;
}
.select-control {
  padding-right: 58px;
  background-position: right 20px center;
  background-size: 20px;
}

@media (max-width: 860px) {
  .brand:after {
    display: none !important;
  }
  .trust-item:first-child {
    padding-left: 16px;
  }
}
@media (max-width: 640px) {
  .preview-score {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .preview-score > strong {
    margin: auto;
  }
  .trust-item {
    min-height: auto;
  }
  .select-control {
    width: 100%;
  }
}

/* Interaction, footer and small-screen hardening */
a {
  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    opacity 0.15s ease;
}
.site-nav a,
.footer-col a {
  position: relative;
  width: max-content;
  max-width: 100%;
}
.site-nav a:after,
.footer-col a:after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  content: "";
  transition: transform 0.15s ease;
}
.site-nav a:hover:after,
.site-nav a:focus-visible:after,
.footer-col a:hover:after,
.footer-col a:focus-visible:after {
  transform: scaleX(1);
}
.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--signal);
}
.site-footer {
  padding: 44px 0 24px;
}
.footer-brand {
  opacity: 0.78;
}
.footer-brand p {
  max-width: 290px;
  color: color-mix(in srgb, var(--muted) 82%, transparent);
}
.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  color: color-mix(in srgb, var(--muted) 72%, transparent);
  font-size: 11px;
}
.cta-band .button:hover,
.cta-band .button:focus-visible {
  background: var(--ink);
  color: #fff;
}
.button:active,
button.button:active {
  transform: translateY(1px);
  box-shadow: none;
}

@media (max-width: 980px) {
  .verdict-main {
    grid-template-columns: 112px minmax(0, 1fr);
  }
  .score-block {
    width: 112px;
  }
  .saved-report-view .verdict-actions {
    grid-column: 2;
    width: min(100%, 280px);
  }
}

@media (max-width: 640px) {
  .verdict-main {
    grid-template-columns: 1fr;
  }
  .hero,
  .section {
    padding: 52px 0;
  }
  .page-hero {
    padding: 44px 0 30px;
  }
  .page-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
    overflow-wrap: anywhere;
  }
  .button-row,
  .toolbar-group,
  .saved-card-actions,
  .verdict-actions {
    width: 100%;
  }
  .button-row > .button,
  .button-row > button.button,
  .toolbar-group > .button,
  .saved-card-actions > .button,
  .verdict-actions > .button {
    width: 100%;
  }
  .saved-report-view .verdict-actions {
    grid-column: 1;
    width: 100%;
  }
  .toolbar-group {
    align-items: stretch;
  }
  .search-input,
  .toolbar-group .select-control {
    width: 100%;
  }
  .textarea-meta {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .saved-score-row {
    align-items: flex-start;
  }
  .report-overview,
  .job-facts {
    grid-template-columns: 1fr;
  }
  .saved-card-actions .status-select {
    width: 100%;
    flex-basis: 100%;
    min-height: 44px;
  }
  .footer-grid {
    gap: 26px;
  }
  .footer-bottom {
    gap: 7px;
  }
  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }
}
/* Salari product interface, August 2026 */
:root {
  --paper: #ffffff;
  --paper-warm: #ffffff;
  --ink: #17160f;
  --muted: #66655f;
  --line: #d9d8d2;
  --line-dark: #aaa9a2;
  --signal: #c2703d;
  --signal-dark: #9a4f28;
  --soft: #f5f5f2;
  --shadow: none;
}

html { background: var(--paper); }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
h1, h2, h3, h4, .serif {
  font-family: inherit;
  font-weight: 650;
  letter-spacing: -0.035em;
}
.shell { width: min(1180px, calc(100% - 48px)); }
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}
.header-inner { min-height: 68px; }
.brand { gap: 10px; text-transform: none; }
.brand-mark {
  display: block !important;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 0;
  border-radius: 7px;
  background: url("../icons/favicon.svg") center / contain no-repeat;
  color: transparent !important;
  font-size: 0;
}
.brand-mark i { display: none; }
.brand-text {
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-text span { color: var(--muted); }
.brand::after { display: none !important; }
.site-nav { gap: 24px; }
.site-nav a { color: var(--muted); font-size: 13px; font-weight: 600; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { color: var(--ink); }
.button, button.button {
  min-height: 42px;
  border-radius: 2px;
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
}
.button.signal { border-color: var(--signal); background: var(--signal); color: #fff; }
.button.signal:hover, .button.signal:focus-visible { border-color: var(--signal-dark); background: var(--signal-dark); }
.button.secondary, .button.ghost { border-color: var(--line-dark); background: #fff; color: var(--ink); }
.button.secondary:hover, .button.secondary:focus-visible, .button.ghost:hover, .button.ghost:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.hero, .page-hero { border-bottom: 1px solid var(--line); background: #fff; }
.hero { padding: 92px 0 76px; }
.page-hero { padding: 64px 0 48px; }
.hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: 72px; }
.hero h1, .page-hero h1 { max-width: 880px; font-size: clamp(3rem, 6vw, 5.6rem); line-height: .96; }
.hero h1 em { color: var(--signal); font-family: inherit; font-style: normal; }
.page-hero h1 { font-size: clamp(2.7rem, 5vw, 4.8rem); }
.eyebrow { color: var(--signal-dark); font-size: 11px; letter-spacing: .12em; }
.lede, .kicker { color: var(--muted); }
.product-preview, .panel, .card, .salary-card, .notice {
  border-color: var(--line);
  border-radius: 2px;
  background: #fff;
  box-shadow: none;
}
.product-preview { border-top: 4px solid var(--signal); }
.preview-toolbar, .composer-top, .section-panel-head { border-color: var(--line); background: var(--soft); }
.trust-strip, .section { border-bottom: 1px solid var(--line); background: #fff; }
.trust-item { border-color: var(--line); }
.trust-icon, .number { color: var(--signal); }
.cards-3, .cards-4, .saved-grid { gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cards-3 > *, .cards-4 > *, .saved-grid > * { border: 0; background: #fff; }
input, textarea, select, .input, .select-control { border-radius: 2px; border-color: var(--line-dark); background-color: #fff; }
input:focus, textarea:focus, select:focus { border-color: var(--signal); box-shadow: 0 0 0 3px rgba(194, 112, 61, .14); }
.privacy-note { color: var(--muted); }
.privacy-note::before { background: var(--signal); }
.site-footer { border-top: 1px solid var(--line); background: var(--soft); }
.footer-brand { opacity: 1; }
.footer-brand .brand,
.footer-brand .brand-text { color: var(--ink); }
.footer-brand .brand-mark {
  border-color: transparent;
  background: url("../icons/favicon.svg") center / contain no-repeat;
  color: transparent;
}
.footer-brand p { color: var(--muted); }
.footer-bottom { color: #77766f; }
.footer-col a { color: var(--muted); }
.footer-col a:hover, .footer-col a:focus-visible { color: var(--signal-dark); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .product-preview { max-width: 720px; }
}
@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 60px; }
  .header-actions > .button { display: none; }
  .site-nav { width: 100%; background: #fff; }
  .site-nav a { width: 100%; min-height: 44px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
  .hero, .section { padding: 48px 0; }
  .page-hero { padding: 42px 0 34px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.5rem, 13vw, 4rem); overflow-wrap: normal; }
  .lede { font-size: 17px; }
  .cards-3, .cards-4, .saved-grid { grid-template-columns: 1fr; }
  .toolbar, .composer-actions, .saved-score-row { align-items: stretch; flex-direction: column; }
  .saved-score { align-self: flex-start; }
}
@media (max-width: 420px) {
  .shell { width: min(100% - 22px, 1180px); }
  .brand-text { font-size: 13px; }
  .hero h1, .page-hero h1 { font-size: 2.55rem; }
  .product-preview { margin-inline: -4px; }
}
* {
  box-sizing: border-box;
}
