:root {
    --ink: #172033;
    --ink-2: #2c3850;
    --muted: #657087;
    --paper: #f5f2eb;
    --surface: #fffefb;
    --surface-2: #ebe7de;
    --line: #d8d3c8;
    --signal: #e35a38;
    --signal-dark: #a93920;
    --signal-soft: #fff0e9;
    --lime: #d9e46c;
    --lime-soft: #f3f6cd;
    --blue-soft: #e8eef9;
    --green: #28735c;
    --green-soft: #e0f2e9;
    --danger: #a52a20;
    --shadow: 0 18px 50px rgb(28 36 54 / 9%);
    --radius: 18px;
    --radius-sm: 11px;
    --max: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 88% 4%, rgb(217 228 108 / 22%), transparent 23rem),
        var(--paper);
    font: 16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

main {
    min-height: 48vh;
}

[hidden] {
    display: none !important;
}

a {
    color: inherit;
    text-decoration-color: rgb(23 32 51 / 32%);
    text-underline-offset: 0.18em;
}

a:hover {
    text-decoration-color: var(--signal);
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgb(227 90 56 / 36%);
    outline-offset: 3px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.12;
}

.shell {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}

.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;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    color: #fff;
    background: var(--ink);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.beta-bar {
    color: #40380f;
    background: var(--lime);
}

.beta-bar__inner {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-block: 7px;
    font-size: 12px;
    text-align: center;
}

.beta-bar strong {
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trust-strip {
    color: #fff;
    background: var(--ink);
}

.trust-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 42px;
    padding-block: 8px;
    font-size: 13px;
}

.trust-strip p {
    margin: 0;
}

.trust-strip strong {
    color: var(--lime);
}

.trust-strip a {
    color: #fff;
    white-space: nowrap;
}

.site-header {
    position: sticky;
    z-index: 30;
    top: 0;
    border-bottom: 1px solid rgb(216 211 200 / 88%);
    background: rgb(245 242 235 / 94%);
    backdrop-filter: blur(18px);
}

.header-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    min-height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border: 0;
    object-fit: contain;
}

.brand-mark::before,
.brand-mark::after {
    display: none;
}

.brand-mark::before {
    top: 17px;
    left: 5px;
    width: 25px;
    height: 2px;
    background: var(--ink);
}

.brand-mark::after {
    top: 9px;
    left: 10px;
    width: 14px;
    height: 14px;
    border-right: 3px solid var(--signal);
    border-bottom: 3px solid var(--signal);
    transform: rotate(-45deg) skew(8deg, 8deg);
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy b {
    font-size: 18px;
    letter-spacing: -0.02em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.15;
    max-width: 210px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
    content: "";
}

.flash {
    margin-top: 16px;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.flash-success {
    border-color: #9bc8b8;
    color: #185440;
    background: var(--green-soft);
}

.flash-warning {
    border-color: #d8c87b;
    background: #fffbe3;
}

.flash-error {
    border-color: #e0aca5;
    color: var(--danger);
    background: #fff1ef;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
    background: transparent;
    font-weight: 750;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
    box-shadow: 0 7px 16px rgb(31 41 64 / 10%);
    transform: translateY(-1px);
    text-decoration: none;
}

.button[disabled],
.button.is-submitting {
    cursor: wait;
    opacity: 0.68;
    transform: none;
}

.button-primary {
    border-color: var(--signal-dark);
    color: #fff;
    background: var(--signal-dark);
}

.button-dark {
    color: #fff;
    background: var(--ink);
}

.button-light {
    border-color: var(--line);
    background: var(--surface);
}

.button-small {
    min-height: 36px;
    padding: 7px 13px;
    font-size: 13px;
}

.button-block {
    width: 100%;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--signal-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 3px;
    flex: 0 0 auto;
    background: var(--signal);
    content: "";
}

.lead {
    color: var(--ink-2);
    font-size: 19px;
}

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

.text-link {
    color: var(--signal-dark);
    font-weight: 750;
}

.hero {
    padding: 78px 0 52px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: end;
    gap: 58px;
}

.hero h1 {
    max-width: 900px;
    margin-bottom: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 75px);
    font-weight: 500;
    letter-spacing: -0.048em;
}

.hero h1 em {
    color: var(--signal-dark);
    font-style: normal;
}

.hero-lead {
    max-width: 720px;
    margin-bottom: 28px;
    color: var(--ink-2);
    font-size: clamp(18px, 2vw, 22px);
}

.search-box {
    display: flex;
    gap: 8px;
    max-width: 760px;
    padding: 8px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.search-box input {
    min-width: 0;
    flex: 1;
    padding: 12px 18px;
    border: 0;
    outline: 0;
    background: transparent;
}

.search-box input::placeholder {
    color: #777f91;
}

.hero-aside {
    position: relative;
    padding: 27px;
    border-top: 4px solid var(--lime);
    color: #fff;
    background: var(--ink);
    box-shadow: 18px 18px 0 rgb(227 90 56 / 16%);
}

.hero-aside__mark {
    display: grid;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    place-items: center;
    border: 1px solid var(--lime);
    border-radius: 50%;
    color: var(--lime);
    font-weight: 900;
}

.hero-aside h2 {
    margin-bottom: 13px;
    font-size: 21px;
}

.hero-aside p {
    margin-bottom: 14px;
    color: #d4d9e2;
    font-size: 14px;
}

.hero-aside a {
    color: var(--lime);
}

.metric-band {
    border-block: 1px solid var(--line);
    background: rgb(255 254 251 / 58%);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

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

.metric:first-child {
    padding-left: 0;
}

.metric:last-child {
    border-right: 0;
}

.metric b {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 500;
}

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

.section {
    padding: 76px 0;
}

.section-compact {
    padding: 46px 0 64px;
}

.section-alt {
    border-block: 1px solid var(--line);
    background: rgb(255 254 251 / 64%);
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.section-header h2 {
    max-width: 730px;
    margin-bottom: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 47px);
    font-weight: 500;
    letter-spacing: -0.035em;
}

.section-header p {
    max-width: 430px;
    margin-bottom: 2px;
    color: var(--muted);
}

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

.review-card,
.panel,
.company-card,
.company-identity,
.review-article,
.reply-card,
.source-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.review-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 22px;
}

.source-line,
.identity-top,
.review-byline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.source-line time {
    color: var(--muted);
    font-size: 12px;
}

.source-badge,
.tag,
.status,
.count-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.source-badge {
    color: #39445f;
    background: var(--blue-soft);
}

.source-badge::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.source-badge-own {
    color: #5b5311;
    background: var(--lime-soft);
}

.status {
    color: #1f654f;
    background: var(--green-soft);
}

.status-muted {
    color: #596175;
    background: var(--surface-2);
}

.count-badge {
    color: var(--muted);
    background: var(--surface-2);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag {
    color: #71301f;
    background: var(--signal-soft);
}

.review-company {
    margin: 17px 0 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 18px;
    margin: 0 0 13px;
    color: var(--muted);
    font-size: 13px;
}

.review-meta div {
    display: flex;
    gap: 5px;
}

.review-meta dt {
    color: var(--ink);
    font-weight: 750;
}

.review-meta dd {
    margin: 0;
}

.review-card h3 {
    margin: 12px 0 10px;
    font-size: 21px;
}

.review-card h3 a,
.review-company a {
    text-decoration: none;
}

.review-excerpt {
    color: #404a60;
}

.review-card .tag-row {
    margin-top: 5px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.review-card .card-footer {
    margin-top: 18px;
}

.review-card h3,
.review-excerpt,
.review-card .card-footer,
.reply-card p,
.company-identity h1,
.company-subtitle,
.aliases,
.source-card h2,
.source-host,
.breadcrumbs > * {
    overflow-wrap: anywhere;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.industry-card {
    min-height: 130px;
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    text-decoration: none;
    transition: color 150ms ease, background 150ms ease;
}

.industry-card:hover {
    color: var(--ink);
    background: var(--lime);
    text-decoration: none;
}

.industry-card b {
    display: block;
    margin-bottom: 18px;
    font-size: 18px;
}

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

.method-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 70px;
}

.method-layout h2 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.4vw, 56px);
    font-weight: 500;
    letter-spacing: -0.04em;
}

.method-steps {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.method-steps li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.method-steps li > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
}

.method-steps h3 {
    margin-bottom: 6px;
    font-size: 18px;
}

.method-steps p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 28px 0 14px;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumbs a {
    text-decoration: none;
}

.page-head,
.policy-head {
    padding: 56px 0 40px;
    border-bottom: 1px solid var(--line);
    background: rgb(255 254 251 / 52%);
}

.breadcrumbs + .page-head {
    padding-top: 32px;
}

.page-head__inner,
.policy-head__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}

.page-head-form .page-head__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.page-head h1,
.policy-head h1 {
    max-width: 900px;
    margin-bottom: 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(39px, 5vw, 61px);
    font-weight: 500;
    letter-spacing: -0.042em;
}

.page-head p,
.policy-head p {
    max-width: 820px;
    margin-bottom: 0;
    color: var(--ink-2);
    font-size: 18px;
}

.page-head__note {
    padding: 22px;
    border-left: 4px solid var(--lime);
    color: #fff;
    background: var(--ink);
}

.page-head__note ul {
    margin: 10px 0 0;
    padding-left: 20px;
    color: #d7dce5;
    font-size: 14px;
}

.directory-search {
    display: flex;
    align-items: end;
    gap: 12px;
    margin-bottom: 22px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.grow {
    min-width: 0;
    flex: 1;
}

.result-summary {
    margin-bottom: 20px;
    padding: 13px 16px;
    border-left: 4px solid var(--lime);
    background: rgb(255 254 251 / 70%);
}

.company-list {
    display: grid;
    gap: 14px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.pagination__link {
    display: inline-flex;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    background: var(--surface);
    font-weight: 700;
    text-decoration: none;
}

.pagination__link:hover {
    border-color: var(--ink);
}

.pagination__link.active {
    border-color: var(--ink);
    color: #fff;
    background: var(--ink);
}

.pagination__direction {
    min-width: 104px;
}

.pagination__gap {
    padding: 0 3px;
    color: var(--muted);
}

.company-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding: 22px;
}

.company-card h2 {
    margin: 0 0 8px;
    font-size: 23px;
}

.company-card h2 a {
    text-decoration: none;
}

.company-card .eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
}

.company-card__body > p:not(.eyebrow) {
    margin-bottom: 12px;
    color: var(--muted);
}

.company-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: var(--muted);
    font-size: 13px;
}

.company-card__stats b {
    color: var(--ink);
}

.company-avatar {
    display: grid;
    width: 62px;
    height: 62px;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 17px;
    background: var(--lime-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
}

.empty-state {
    padding: 48px 24px;
    border: 1px dashed #aaa398;
    border-radius: var(--radius);
    color: var(--muted);
    background: rgb(255 254 251 / 55%);
    text-align: center;
}

.empty-state__mark,
.empty-state > span:first-child {
    display: grid;
    width: 44px;
    height: 44px;
    margin: 0 auto 15px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    font-weight: 800;
}

.empty-state h2 {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 24px;
}

.empty-state p {
    max-width: 600px;
    margin: 0 auto;
}

.centered-action {
    margin: 18px 0 0;
    text-align: center;
}

.company-hero {
    padding-bottom: 34px;
}

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

.company-avatar-large {
    width: 82px;
    height: 82px;
    border-radius: 22px;
    font-size: 28px;
}

.company-identity h1 {
    margin: 4px 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 53px);
    font-weight: 500;
    letter-spacing: -0.04em;
}

.company-subtitle {
    margin: 0;
    color: var(--muted);
}

.aliases {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.company-actions {
    display: grid;
    gap: 9px;
}

.bias-note {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 17px;
    margin-top: 16px;
    padding: 17px 20px;
    border: 1px solid #e3b5a8;
    border-radius: var(--radius-sm);
    background: var(--signal-soft);
}

.bias-symbol {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--signal-dark);
    font-weight: 900;
}

.bias-note p {
    margin: 0;
    color: #5f3328;
    font-size: 14px;
}

.bias-note a {
    color: var(--signal-dark);
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    margin-top: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgb(255 254 251 / 70%);
    overflow: hidden;
}

.company-stat {
    padding: 21px 24px;
    border-right: 1px solid var(--line);
}

.company-stat:last-child {
    border-right: 0;
}

.company-stat b {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 500;
}

.company-stat span {
    color: var(--muted);
    font-size: 12px;
}

.employer-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.employer-label {
    padding: 7px 10px;
    border: 1px solid #d8a89c;
    border-radius: 999px;
    color: #693326;
    background: #fff0ec;
    font-size: 12px;
    font-weight: 750;
}

.employer-label--3 {
    border-color: #b95a43;
    color: #fff;
    background: #9f3f2c;
}

.company-section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.company-section-nav a {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: #fffefb;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.quick-company-summary,
.negative-summary {
    margin-bottom: 18px;
}

.quick-company-summary h2,
.negative-summary h2 {
    margin-top: 4px;
}

.negative-summary {
    border-color: #e3b5a8;
    background: linear-gradient(135deg, #fffaf7, #fff3ee);
}

.content-grid,
.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: start;
    gap: 24px;
}

.panel {
    padding: 24px;
}

.panel + .panel {
    margin-top: 16px;
}

.panel-soft {
    background: #f7f4ec;
}

.panel h2 {
    margin-bottom: 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-weight: 500;
}

.panel h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.filter-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.filter-button {
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-2);
    background: var(--surface);
    font-size: 13px;
    cursor: pointer;
}

.filter-button.active,
.filter-button[aria-pressed="true"] {
    border-color: var(--ink);
    color: #fff;
    background: var(--ink);
}

.review-list,
.vacancy-list,
.reply-stack,
.occurrence-list {
    display: grid;
    gap: 14px;
}

.empty-filter,
.empty-inline {
    padding: 25px;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    text-align: center;
}

.vacancy-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.vacancy-card h3 {
    margin-bottom: 5px;
}

.vacancy-card p,
.vacancy-card small {
    margin: 0;
    color: var(--muted);
}

.facts,
.ledger-list,
.source-facts {
    display: grid;
    gap: 0;
    margin: 0;
}

.facts div,
.source-facts div {
    display: grid;
    grid-template-columns: minmax(100px, 0.9fr) minmax(0, 1.1fr);
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

.facts dt,
.source-facts dt {
    color: var(--muted);
    font-size: 13px;
}

.facts dd,
.source-facts dd {
    margin: 0;
    font-size: 13px;
    font-weight: 650;
    overflow-wrap: anywhere;
}

.review-page-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
    padding: 10px 0 34px;
}

.review-page-head h1 {
    max-width: 850px;
    margin-bottom: 17px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 61px);
    font-weight: 500;
    letter-spacing: -0.042em;
}

.review-page-head .review-byline {
    color: var(--muted);
    font-size: 14px;
}

.review-article {
    padding: clamp(25px, 5vw, 54px);
}

.editorial-note {
    margin-bottom: 28px;
    padding: 15px 17px;
    border-left: 4px solid var(--signal);
    color: #5f3328;
    background: var(--signal-soft);
    font-size: 14px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 0 34px;
    border-block: 1px solid var(--line);
}

.experience-item {
    padding: 15px;
    border-right: 1px solid var(--line);
}

.experience-item:first-child {
    padding-left: 0;
}

.experience-item:last-child {
    border-right: 0;
}

.experience-item dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.experience-item dd {
    margin: 3px 0 0;
    font-size: 14px;
    font-weight: 700;
}

.article-copy {
    max-width: 760px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.72;
    overflow-wrap: anywhere;
}

.article-copy + .tag-row {
    margin-top: 30px;
}

.article-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.answers-section {
    margin-top: 36px;
}

.reply-card {
    padding: 22px;
}

.reply-card.company-reply {
    border-left: 4px solid var(--green);
}

.reply-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 13px;
}

.reply-head time {
    color: var(--muted);
    font-size: 12px;
}

.reply-card p {
    margin-bottom: 0;
    color: #404a60;
}

.reply-form {
    margin-top: 14px;
    padding: 22px;
    border: 1px dashed #a9a398;
    border-radius: var(--radius);
    background: rgb(255 254 251 / 65%);
    scroll-margin-top: 96px;
}

#right-of-reply {
    scroll-margin-top: 96px;
}

.source-ledger {
    border-top: 4px solid var(--lime);
    color: #fff;
    background: var(--ink);
}

.source-ledger h2 {
    color: #fff;
}

.source-ledger > p {
    color: #cfd5df;
    font-size: 13px;
}

.occurrence-card {
    padding-top: 16px;
    border-top: 1px solid #424d65;
}

.occurrence-card h3 {
    margin-bottom: 5px;
}

.ledger-list div {
    padding: 9px 0;
    border-bottom: 1px solid #424d65;
}

.ledger-list dt {
    color: #abb4c4;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ledger-list dd {
    margin: 2px 0 0;
    color: #fff;
    font-size: 13px;
}

.occurrence-card .button {
    margin-top: 14px;
}

.form-panel {
    padding: clamp(22px, 4vw, 38px);
}

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

.field {
    display: grid;
    align-content: start;
    gap: 7px;
}

.field-full,
.form-errors,
.form-honeypot {
    grid-column: 1 / -1;
}

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

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid #aaa59b;
    border-radius: 9px;
    background: #fff;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--signal-dark);
    outline: 3px solid rgb(227 90 56 / 16%);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: var(--danger);
}

.field-error,
.help-block-error {
    color: var(--danger);
    font-size: 12px;
}

.field-hint,
.help-block {
    color: var(--muted);
    font-size: 12px;
}

.checkbox-field > label,
.checkbox-field > div {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.checkbox-field input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-height: 18px;
    flex: 0 0 18px;
    margin: 3px 0 0;
    padding: 0;
    accent-color: var(--signal-dark);
}

.field input:disabled {
    color: #596175;
    background: var(--surface-2);
    cursor: not-allowed;
}

.form-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.form-errors {
    padding: 14px 16px;
    border: 1px solid #e0aca5;
    border-radius: var(--radius-sm);
    color: var(--danger);
    background: #fff1ef;
}

.form-errors ul {
    margin-bottom: 0;
}

.form-submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 8px;
}

.form-submit-row p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.compact-steps {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 20px;
}

.policy-head {
    padding-block: 66px 50px;
}

.policy-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: start;
    gap: 48px;
}

.policy-aside {
    position: sticky;
    top: 104px;
    padding: 22px;
    border-top: 4px solid var(--lime);
    color: #fff;
    background: var(--ink);
}

.policy-aside p {
    margin: 10px 0 16px;
    color: #cfd5df;
    font-size: 13px;
}

.policy-content {
    max-width: 760px;
}

.policy-content section {
    padding: 0 0 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.policy-content section:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.policy-content h2 {
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 3vw, 36px);
    font-weight: 500;
}

.policy-content p {
    color: var(--ink-2);
    font-size: 17px;
    line-height: 1.7;
}

.sources-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
}

.source-intro {
    position: sticky;
    top: 104px;
}

.source-registry {
    display: grid;
    gap: 15px;
}

.source-card {
    padding: 24px;
}

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

.source-card__head > * {
    min-width: 0;
}

.source-card h2 {
    margin-bottom: 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-weight: 500;
}

.source-card .eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
}

.source-host {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.source-card__head .status {
    max-width: 260px;
    text-align: center;
}

.source-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 18px;
}

.status-page {
    display: grid;
    min-height: 62vh;
    padding: 70px 0;
    place-items: center;
}

.status-card {
    max-width: 740px;
    padding: clamp(30px, 6vw, 66px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    text-align: center;
}

.status-card__mark {
    display: grid;
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
    font-size: 27px;
    font-weight: 900;
}

.status-card__mark-error {
    background: var(--signal-dark);
}

.status-card .eyebrow {
    justify-content: center;
}

.status-card h1 {
    margin-bottom: 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(35px, 5vw, 53px);
    font-weight: 500;
}

.status-card > p {
    color: var(--muted);
}

.ticket {
    padding: 12px;
    border-radius: var(--radius-sm);
    color: var(--ink) !important;
    background: var(--lime-soft);
}

.status-card__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.site-footer {
    padding: 46px 0 22px;
    color: #fff;
    background: #101827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 0.6fr);
    gap: 38px;
    padding-bottom: 35px;
}

.brand-inverse .brand-mark {
    filter: drop-shadow(0 0 1px rgb(255 255 255 / 80%));
}

.brand-inverse .brand-copy small {
    color: #a8b1c2;
}

.footer-brand p {
    max-width: 370px;
    margin-top: 18px;
    color: #a8b1c2;
    font-size: 13px;
}

.footer-col h2 {
    margin-bottom: 13px;
    color: #bfc8d8;
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    margin: 8px 0;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #354057;
    color: #9ca6b8;
    font-size: 12px;
}

@media (max-width: 980px) {
    .header-row {
        grid-template-columns: auto 1fr auto;
        justify-content: space-between;
    }

    .js .menu-toggle {
        display: block;
    }

    .main-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding-bottom: 13px;
    }

    .js .main-nav {
        position: absolute;
        top: 77px;
        right: 20px;
        left: 20px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--surface);
        box-shadow: var(--shadow);
    }

    .js .main-nav.open {
        display: flex;
    }

    .js .main-nav a {
        padding: 12px;
    }

    .hero-grid,
    .method-layout,
    .content-grid,
    .form-layout,
    .sources-layout {
        grid-template-columns: 1fr;
    }

    .hero-aside {
        max-width: 620px;
    }

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

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

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

    .sidebar .panel + .panel {
        margin-top: 0;
    }

    .policy-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 30px;
    }

    .source-intro,
    .policy-aside {
        position: static;
    }

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

@media (max-width: 700px) {
    .shell {
        width: min(calc(100% - 26px), var(--max));
    }

    .beta-bar__inner,
    .trust-strip__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
        text-align: left;
    }

    .trust-strip a {
        white-space: normal;
    }

    .header-row {
        grid-template-columns: auto auto;
        min-height: 68px;
        gap: 10px;
    }

    .brand-copy small {
        display: none;
    }

    .js .main-nav {
        top: 69px;
        right: 13px;
        left: 13px;
    }

    .hero {
        padding: 52px 0 38px;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .search-box,
    .directory-search {
        align-items: stretch;
        flex-direction: column;
        border-radius: var(--radius);
    }

    .search-box .button,
    .directory-search .button {
        width: 100%;
    }

    .metrics,
    .review-grid,
    .sidebar,
    .form-grid,
    .footer-grid,
    .policy-layout,
    .page-head-form .page-head__inner {
        grid-template-columns: 1fr;
    }

    .metric,
    .metric:first-child {
        padding: 17px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .metric:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 54px 0;
    }

    .section-compact {
        padding: 34px 0 50px;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

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

    .industry-card {
        min-height: 105px;
    }

    .page-head,
    .policy-head {
        padding-block: 42px 32px;
    }

    .page-head h1,
    .policy-head h1 {
        font-size: clamp(37px, 12vw, 52px);
    }

    .company-card {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 16px;
    }

    .company-card > .button {
        grid-column: 1 / -1;
    }

    .company-identity {
        grid-template-columns: auto 1fr;
        padding: 22px;
    }

    .company-avatar-large {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        font-size: 22px;
    }

    .company-actions {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }

    .bias-note {
        grid-template-columns: auto 1fr;
    }

    .bias-note a {
        grid-column: 2;
    }

    .company-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-stat:nth-child(2) {
        border-right: 0;
    }

    .company-stat:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .review-page-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .experience-item,
    .experience-item:first-child {
        padding: 11px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

    .article-copy {
        font-size: 18px;
    }

    .reply-head,
    .vacancy-card,
    .source-card__head,
    .form-submit-row,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .source-card__head .status {
        max-width: none;
    }
}

@media (max-width: 420px) {
    .company-card {
        grid-template-columns: 1fr;
    }

    .company-identity {
        grid-template-columns: 1fr;
    }

    .company-card .company-avatar {
        width: 54px;
        height: 54px;
    }

    .company-stats {
        grid-template-columns: 1fr;
    }

    .company-stat,
    .company-stat:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .company-stat:last-child {
        border-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .beta-bar,
    .trust-strip,
    .site-header,
    .site-footer,
    .button,
    .filter-bar,
    .reply-form {
        display: none !important;
    }

    body {
        background: #fff;
    }

    .shell {
        width: 100%;
    }
}

/* Search suggestions, geography filters and private evidence forms. */
.company-picker {
    position: relative;
}

.geo-picker {
    position: relative;
}

.company-picker__field {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
}

.company-picker__field > input[type="search"],
.company-picker__field > input[type="text"] {
    width: 100%;
}

.company-picker__results {
    position: absolute;
    z-index: 40;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    max-height: 390px;
    overflow: auto;
    padding: 8px;
    border: 1px solid var(--ink);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: 0 18px 45px rgb(30 35 30 / 18%);
}

.geo-picker__results {
    position: absolute;
    z-index: 40;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    max-height: 390px;
    overflow: auto;
    padding: 8px;
    border: 1px solid var(--ink);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: 0 18px 45px rgb(30 35 30 / 18%);
}

.company-picker__option,
.company-picker__add,
.geo-picker__option {
    display: grid;
    width: 100%;
    gap: 4px;
    padding: 11px 12px;
    border: 0;
    border-radius: 9px;
    color: var(--ink);
    background: transparent;
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.company-picker__option:hover,
.company-picker__option.active,
.company-picker__option:focus-visible,
.company-picker__add:hover,
.company-picker__add:focus-visible,
.geo-picker__option:hover,
.geo-picker__option.active,
.geo-picker__option:focus-visible {
    outline: 0;
    background: var(--lime-soft, #eff7d9);
}

.company-picker__details,
.company-picker__status,
.company-picker__empty,
.geo-picker__details,
.geo-picker__status,
.geo-picker__empty {
    color: var(--muted);
    font-size: 13px;
}

.company-picker__status,
.company-picker__empty,
.geo-picker__status,
.geo-picker__empty {
    margin: 0;
    padding: 10px 12px;
}

.company-choice-locked {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--green-soft);
}

.company-choice-locked span,
.company-choice-locked small {
    color: var(--muted);
}

.evidence-upload {
    padding: 16px;
    border: 1px dashed var(--muted);
    border-radius: var(--radius-sm);
    background: var(--surface-soft, #f8f8f4);
}

.evidence-description-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.evidence-description {
    display: grid;
    gap: 7px;
}

.evidence-description strong {
    overflow-wrap: anywhere;
    font-size: 13px;
}

.evidence-description input {
    width: 100%;
}

.evidence-list {
    margin-top: 24px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-soft, #f8f8f4);
}

.evidence-list h3 {
    margin-top: 0;
}

.evidence-list ul {
    display: grid;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.evidence-list li {
    display: grid;
    grid-template-columns: minmax(150px, 0.8fr) minmax(200px, 1.4fr) auto;
    gap: 12px;
    align-items: start;
}

.filter-panel {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

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

.filter-panel summary {
    margin-bottom: 10px;
    font-weight: 750;
    cursor: pointer;
}

.filter-panel .tag.active {
    border-color: var(--ink);
    color: var(--surface);
    background: var(--ink);
}

.sort-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 18px 0;
}

.choice-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
}

.choice-list label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

@media (max-width: 700px) {
    .evidence-list li,
    .choice-list {
        grid-template-columns: 1fr;
    }

    .search-box.company-picker,
    .directory-search.company-picker {
        align-items: stretch;
        flex-direction: column;
    }
}
