/* ============================================================
   Pay Transparency Ready — site.css
   Palette: slate #1f3340 · teal #1d9e75 · sage backgrounds
   Font: DM Sans (display/UI) + system fallback
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;0,9..40,800&display=swap');

:root {
    /* Brand */
    --slate: #1f3340;
    --slate-mid: #2e4e44;
    --teal: #1d9e75;
    --teal-dark: #0f6e56;
    --teal-light: #e1f5ee;
    --teal-border: #b8d8ce;
    --sage-bg: #f2f6f4;
    --sage-border: #d6e8e0;
    --sage-muted: #4a7060;
    --sage-hint: #7aaa96;
    /* Neutrals */
    --white: #ffffff;
    --text: #1f3340;
    --muted: #4a7060;
    --hint: #7aaa96;
    /* Layout */
    --max: 1100px;
    --radius: 14px;
    --radius-sm: 10px;
    --radius-pill: 999px;
}

/* ── Reset & base ── */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    background: var(--sage-bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--teal);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
        outline: 3px solid rgba(29, 158, 117, 0.35);
        outline-offset: 3px;
    }

h1, h2, h3 {
    line-height: 1.12;
    margin-top: 0;
    letter-spacing: -0.03em;
    color: var(--slate);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 18px;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 14px;
}

h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

p {
    margin-top: 0;
}

ul {
    margin: 0;
    padding-left: 22px;
}

li {
    margin: 8px 0;
}

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

/* ── Header & nav ── */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--sage-border);
    position: sticky;
    top: 0;
    z-index: 30;
}

.nav {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo mark */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

    .brand:hover {
        text-decoration: none;
    }

.brand-svg {
    width: 24px;
    height: 28px;
    flex-shrink: 0;
}

.brand-wordmark {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--slate);
    line-height: 1;
}

    .brand-wordmark span {
        color: var(--teal);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

    .nav-links a {
        color: var(--muted);
        transition: color 0.15s;
    }

        .nav-links a:hover {
            color: var(--teal);
            text-decoration: none;
        }

.nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}

    .nav-cta:hover {
        background: var(--teal-dark);
        text-decoration: none;
        transform: translateY(-1px);
    }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    padding: 11px 22px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    min-height: 44px;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    text-decoration: none;
}

    .btn:hover {
        transform: translateY(-1px);
        text-decoration: none;
    }

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(29, 158, 117, 0.22);
}

    .btn-primary:hover {
        background: var(--teal-dark);
        color: var(--white);
    }

.btn-secondary {
    background: var(--white);
    color: var(--slate);
    border-color: var(--sage-border);
}

    .btn-secondary:hover {
        border-color: var(--teal);
    }

/* ── Eyebrow ── */
.eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
}

/* ── Hero ── */
.hero {
    background: var(--white);
    border-bottom: 1px solid var(--sage-border);
    padding: 64px 0 52px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 40px;
    align-items: center;
    margin-top: 0;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.65;
}

.hero-actions,
.checker-actions,
.result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.small-note,
.hint {
    color: var(--hint);
    font-size: 0.85rem;
    margin-top: 10px;
}

/* ── Stat strip ── */
.stat-strip {
    background: var(--slate);
    padding: 22px 0;
}

.stat-strip-inner {
    display: flex;
    gap: 0;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 36px 0 0;
}

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

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hint);
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--slate-mid);
    margin-right: 36px;
    flex-shrink: 0;
}

/* ── Cards & surfaces ── */
.hero-card,
.info-card {
    background: var(--teal-light);
    border: 1px solid var(--teal-border);
    border-radius: var(--radius);
    padding: 24px 26px;
}

    .hero-card h2,
    .info-card h3 {
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--teal-dark);
        margin-bottom: 14px;
    }

    .hero-card li,
    .info-card li {
        display: flex;
        align-items: center;
        gap: 10px;
        list-style: none;
        font-size: 0.9rem;
        color: var(--slate);
        margin: 9px 0;
    }

    .hero-card ul,
    .info-card ul {
        padding-left: 0;
        list-style: none;
    }

.check-dot {
    width: 18px;
    height: 18px;
    background: var(--teal);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .check-dot::after {
        content: '';
        display: block;
        width: 9px;
        height: 5px;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(-45deg) translateY(-1px);
    }

/* ── Sections ── */
.section {
    padding: 60px 0;
}

.section-alt {
    background: var(--white);
}

.section-heading {
    max-width: 600px;
    margin-bottom: 30px;
}

    .section-heading p {
        color: var(--muted);
    }

/* ── Mini cards (guide grid) ── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mini-card {
    background: var(--white);
    border: 1px solid var(--sage-border);
    border-radius: var(--radius-sm);
    padding: 20px 22px;
    transition: border-color 0.2s, transform 0.2s;
}

    .mini-card h3 {
        font-size: 0.95rem;
        color: var(--slate);
        margin-bottom: 6px;
    }

    .mini-card p {
        font-size: 0.875rem;
        color: var(--muted);
        margin-bottom: 0;
        line-height: 1.55;
    }

a.mini-card {
    color: var(--text);
    display: block;
}

    a.mini-card:hover {
        border-color: var(--teal);
        transform: translateY(-2px);
        text-decoration: none;
    }

/* ── Checker card ── */
.checker-card {
    background: var(--white);
    border: 1px solid var(--sage-border);
    border-radius: var(--radius);
    padding: 28px 30px;
}

.question {
    padding: 20px 0;
    border-bottom: 1px solid var(--sage-border);
}

    .question:first-child {
        padding-top: 0;
    }

    .question:last-of-type {
        border-bottom: none;
    }

    .question h3 {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--slate);
        margin-bottom: 12px;
        letter-spacing: -0.01em;
    }

.options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
}

    .options label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--sage-bg);
        border: 1px solid var(--sage-border);
        border-radius: var(--radius-pill);
        padding: 8px 16px;
        cursor: pointer;
        font-size: 0.875rem;
        font-weight: 500;
        transition: border-color 0.15s, background 0.15s;
    }

        .options label:hover {
            border-color: var(--teal);
            background: var(--teal-light);
        }

    .options input {
        accent-color: var(--teal);
    }

/* Result card */
.result-card {
    margin-top: 24px;
    padding: 24px 26px;
    border-radius: var(--radius);
    background: var(--teal-light);
    border: 1px solid var(--teal-border);
}

    .result-card h3 {
        margin-bottom: 10px;
    }

    .result-card p:last-child {
        margin-bottom: 0;
    }

.result-label {
    display: block;
    margin: 0 0 6px;
    color: var(--teal-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
}

.hidden {
    display: none;
}

/* ── Content grid (inner pages) ── */
.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: start;
}

/* ── CTA card (inline) ── */
.cta-card {
    background: var(--white);
    border: 1px solid var(--sage-border);
    border-radius: var(--radius);
    padding: 32px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

    .cta-card h2 {
        font-size: clamp(1.3rem, 2.5vw, 1.9rem);
        margin-bottom: 10px;
    }

    .cta-card p:last-child {
        margin-bottom: 0;
        color: var(--muted);
    }

/* ── CTA band (dark full-width) ── */
.cta-band {
    background: var(--slate);
    padding: 52px 0;
}

.cta-band-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cta-band h2 {
    color: var(--white);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 10px;
}

.cta-band p {
    color: var(--hint);
    margin-bottom: 0;
    max-width: 480px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.btn-white {
    background: var(--white);
    color: var(--slate);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.15s, background 0.2s;
    flex-shrink: 0;
}

    .btn-white:hover {
        background: var(--teal-light);
        transform: translateY(-1px);
        text-decoration: none;
    }

/* ── Page header (inner pages) ── */
.page-header {
    background: var(--white);
    border-bottom: 1px solid var(--sage-border);
    padding: 60px 0 36px;
}

    .page-header h1 {
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .page-header p {
        color: var(--muted);
        max-width: 620px;
        font-size: 1.05rem;
        margin-bottom: 0;
    }

/* ── Checklist page ── */
.checklist {
    display: grid;
    gap: 18px;
}

.checklist-section {
    background: var(--white);
    border: 1px solid var(--sage-border);
    border-radius: var(--radius);
    padding: 28px 30px;
}

    .checklist-section h2 {
        font-size: clamp(1.1rem, 2vw, 1.5rem);
        margin-bottom: 14px;
    }

.notice {
    background: #fdf8e8;
    border: 1px solid #e8d98a;
    border-radius: var(--radius);
    padding: 20px 24px;
    font-size: 0.9rem;
    color: #5a4a00;
    line-height: 1.6;
}

/* ── Content list ── */
.content-list {
    margin: 16px 0 24px;
    padding-left: 22px;
}

    .content-list li {
        margin: 9px 0;
        color: var(--muted);
    }

/* ── Legal ── */
.legal-content {
    background: var(--white);
    border: 1px solid var(--sage-border);
    border-radius: var(--radius);
    padding: 32px 36px;
}

    .legal-content h2 {
        margin-top: 28px;
        font-size: clamp(1.1rem, 2vw, 1.6rem);
    }

        .legal-content h2:first-child {
            margin-top: 0;
        }

    .legal-content p {
        color: var(--muted);
    }

/* ── Footer ── */
.site-footer {
    background: var(--white);
    border-top: 1px solid var(--sage-border);
    padding: 24px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--hint);
}

    .footer-inner a {
        color: var(--hint);
    }

        .footer-inner a:hover {
            color: var(--teal);
            text-decoration: none;
        }

.footer-links {
    display: flex;
    gap: 18px;
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .site-header {
        position: static;
    }

    .nav {
        min-height: auto;
        flex-wrap: wrap;
        padding: 14px 0;
        gap: 12px;
    }

    .nav-links {
        width: 100%;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 0.875rem;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 44px 0 36px;
    }

    .hero-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .cta-card,
    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-strip-inner {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        padding: 0;
    }
}

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

    .section {
        padding: 44px 0;
    }

    .page-header {
        padding: 44px 0 28px;
    }

    .checker-card {
        padding: 20px;
    }

    .hero-actions,
    .checker-actions,
    .result-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .options {
        flex-direction: column;
    }

        .options label {
            width: 100%;
        }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Pay Transparency Ready additions ─────────────────────────────────── */
.brand-wordmark-wide { font-size: 1.02rem; letter-spacing: -0.5px; }
.nav-actions { display:flex; align-items:center; gap:12px; }
.lang-switcher select { border:1px solid var(--sage-border); border-radius:8px; padding:7px 9px; background:#fff; color:var(--slate); }
.sr-only { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }
.hero-lead { font-size:1.08rem; line-height:1.7; }
.trust-row { display:flex; flex-wrap:wrap; gap:14px; margin-top:20px; color:var(--muted); font-size:.84rem; }
.scope-list { display:grid; gap:16px; margin-top:18px; }
.scope-list > div { display:flex; gap:12px; align-items:flex-start; }
.scope-list span { width:30px; height:30px; border-radius:50%; background:var(--teal-light); color:var(--teal); display:grid; place-items:center; font-weight:700; flex:0 0 auto; }
.scope-list p { margin:0; color:var(--muted); line-height:1.5; }
.legal-status-banner { background:var(--teal-light); border:1px solid var(--sage-border); border-radius:var(--radius); padding:28px; }
.assessment-container { max-width:760px; }
.assessment-progress { margin-bottom:2rem; }
.assessment-progress-labels { display:flex; justify-content:space-between; gap:12px; font-size:.8rem; color:var(--muted); margin-bottom:7px; }
.assessment-progress-labels span:last-child { color:var(--teal); font-weight:600; text-align:right; }
.assessment-progress-track { height:5px; background:var(--sage-border); border-radius:5px; overflow:hidden; }
#progress-bar { height:100%; width:8%; background:var(--teal); transition:width .25s ease; }
.assessment-step { display:none; }
.assessment-step.is-active { display:block; animation:fadeIn .18s ease; }
@keyframes fadeIn { from { opacity:.35; transform:translateY(5px); } to { opacity:1; transform:none; } }
.step-kicker { color:var(--teal); text-transform:uppercase; letter-spacing:.08em; font-size:.75rem; font-weight:700; margin-bottom:8px; }
.question-help { color:var(--muted); font-size:.9rem; line-height:1.6; }
.a-opt { width:100%; display:flex; align-items:flex-start; gap:10px; padding:13px 16px; border:1.5px solid var(--sage-border); border-radius:var(--radius-sm); cursor:pointer; font:inherit; font-size:.92rem; color:var(--text); transition:border-color .15s,background .15s; margin-bottom:9px; background:var(--white); text-align:left; }
.a-opt:hover,.a-opt-selected { border-color:var(--teal); background:var(--teal-light); }
.a-opt-selected { font-weight:600; }
.a-opt > span { color:var(--teal); font-weight:700; }
.step-actions { display:flex; justify-content:space-between; gap:12px; margin-top:24px; }
.assessment-notice,.baseline-note { margin-top:18px; padding:15px; background:var(--teal-light); border:1px solid var(--sage-border); border-radius:var(--radius-sm); color:var(--muted); }
.assessment-notice p { margin:5px 0 0; }
.validation-summary { color:#8a2222; background:#fff3f3; border:1px solid #ebcaca; border-radius:8px; margin-bottom:16px; }
.validation-summary:empty { display:none; }
.validation-summary ul { margin:10px 14px; }
.entity-form-grid,.criteria-grid,.joint-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; margin-top:18px; }
.entity-form-grid label,.criteria-grid label,.joint-grid label,.full-field { display:grid; gap:7px; color:var(--slate); font-size:.84rem; font-weight:600; }
.entity-form-grid input,.entity-form-grid select,.criteria-grid select,.joint-grid select,.full-field input { width:100%; padding:11px 12px; border:1px solid var(--sage-border); border-radius:8px; font:inherit; background:#fff; }
.entity-checks { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; margin:16px 0; font-size:.85rem; color:var(--muted); }
.entity-checks label,.check-list label { display:flex; gap:9px; align-items:flex-start; }
.field-error { color:#a12e2e; font-size:.85rem; font-weight:600; }
.entity-list { display:grid; gap:8px; margin-top:15px; }
.entity-row { display:flex; justify-content:space-between; align-items:center; gap:12px; border:1px solid var(--sage-border); border-radius:9px; padding:11px 13px; background:#fff; }
.entity-row div { display:grid; gap:2px; }
.entity-row span { color:var(--muted); font-size:.8rem; }
.entity-row button { border:0; background:transparent; font-size:1.25rem; cursor:pointer; color:var(--muted); }
.check-list { display:grid; gap:10px; margin:16px 0; color:var(--text); font-size:.9rem; }
.check-list.two-column { grid-template-columns:repeat(2,minmax(0,1fr)); }
.check-list input,.entity-checks input { margin-top:3px; accent-color:var(--teal); }
.sub-question { margin-top:24px; font-size:1rem; }
.report-status-grid { display:grid; gap:8px; }
.report-ready-card { text-align:center; }
.score-ring { width:130px; height:130px; border-radius:50%; margin:0 auto 20px; display:grid; place-items:center; align-content:center; background:conic-gradient(var(--teal) calc(var(--score) * 1%), var(--sage-border) 0); position:relative; }
.score-ring::before { content:""; position:absolute; inset:10px; background:#fff; border-radius:50%; }
.score-ring strong,.score-ring span { position:relative; z-index:1; }
.score-ring strong { font-size:1.7rem; color:var(--teal); }
.score-ring span { font-size:.72rem; color:var(--muted); }
.report-stat-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:18px 0; }
.report-stat-grid div { border:1px solid var(--sage-border); border-radius:9px; padding:12px; display:grid; }
.report-stat-grid strong { font-size:1.35rem; color:var(--slate); }
.report-stat-grid span { font-size:.75rem; color:var(--muted); }
.report-reference { color:var(--muted); font-size:.82rem; }
.report-download { display:inline-block; margin:8px 0; }
.error-panel { padding:18px; background:#fff3f3; border:1px solid #ebcaca; border-radius:9px; margin-bottom:18px; color:#7b2929; }
.prose-container { max-width:840px; }
.prose-container h2 { margin-top:2rem; }
.prose-container p { color:var(--muted); line-height:1.75; }
.status-key { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-top:18px; }
.status-key > div { border:1px solid var(--sage-border); border-radius:9px; padding:14px; }
.status-key p { margin:5px 0 0; font-size:.84rem; }
.status-dot { display:inline-block; width:9px; height:9px; border-radius:50%; margin-right:7px; }
.status-dot.addressed { background:#1d9e75; }.status-dot.urgent { background:#c93c3c; }.status-dot.action { background:#c47a10; }.status-dot.prepare { background:#285c8c; }.status-dot.monitor { background:#64518c; }
.footer-brand { margin-bottom:8px; }
.cookie-consent { position:fixed; left:20px; right:20px; bottom:20px; z-index:1000; max-width:920px; margin:0 auto; padding:18px; background:#fff; border:1px solid var(--sage-border); border-radius:var(--radius-sm); box-shadow:0 12px 35px rgba(25,45,39,.18); }
.cookie-consent[hidden] { display:none; }.cookie-consent__inner { display:flex; align-items:center; justify-content:space-between; gap:20px; }.cookie-consent__title { margin:0 0 5px; font-weight:700; }.cookie-consent__text { margin:0; color:var(--muted); font-size:.86rem; }.cookie-consent__actions { display:flex; gap:10px; }.cookie-consent__button { border:0; border-radius:8px; padding:10px 14px; color:#fff; font:inherit; font-weight:650; cursor:pointer; }.cookie-consent__button--reject { background:var(--slate); }.cookie-consent__button--accept { background:var(--teal); }.footer-cookie-button { border:0; padding:0; background:transparent; color:inherit; font:inherit; cursor:pointer; text-decoration:underline; }
@media (max-width:900px) { .nav-links { display:none; }.brand-wordmark-wide { font-size:.9rem; }.nav-actions .nav-cta { display:none; } }
@media (max-width:680px) { .entity-form-grid,.criteria-grid,.joint-grid,.entity-checks,.check-list.two-column,.status-key { grid-template-columns:1fr; }.report-stat-grid { grid-template-columns:1fr; }.step-actions { flex-direction:column-reverse; }.step-actions .btn { width:100%; }.cookie-consent__inner { display:block; }.cookie-consent__actions { display:grid; margin-top:12px; }.brand-wordmark-wide { max-width:190px; } }
