:root {
    --navy: #061f57;
    --navy-2: #0a347d;
    --blue: #1265df;
    --blue-bright: #2388ff;
    --blue-pale: #eaf3ff;
    --red: #dc1727;
    --ink: #15203b;
    --muted: #647086;
    --surface: #f6f8fc;
    --line: #dce4ef;
    --white: #fff;
    --radius: 18px;
    --radius-lg: 30px;
    --shadow: 0 22px 65px rgba(6, 31, 87, .11);
    --shell: min(1180px, calc(100% - 36px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: Inter, Aptos, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--blue);
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.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;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 10px 16px;
    transform: translateY(-160%);
    border-radius: 8px;
    background: var(--navy);
    color: var(--white);
}

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

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

.button:hover {
    transform: translateY(-1px);
}

.button:focus-visible,
.site-navigation a:focus-visible,
.text-link:focus-visible {
    outline: 3px solid rgba(35, 136, 255, .35);
    outline-offset: 3px;
}

.button--primary {
    background: linear-gradient(135deg, var(--blue), #0b4db5);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(18, 101, 223, .22);
}

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

.button--ghost {
    border-color: var(--line);
    background: var(--white);
    color: var(--navy);
}

.button--light {
    background: var(--white);
    color: var(--navy);
}

.button--outline-light {
    border-color: rgba(255, 255, 255, .55);
    color: var(--white);
}

.text-link {
    color: var(--blue);
    font-weight: 750;
    text-decoration: none;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    color: var(--blue);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--red);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(220, 228, 239, .8);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
}

.admin-bar .site-header {
    top: 32px;
}

.site-header__inner {
    width: var(--shell);
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin: 0 auto;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    text-decoration: none;
}

.site-brand__mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 3px solid var(--blue);
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: inset 0 0 0 4px var(--blue-pale);
}

.site-brand__name {
    font-size: 1.15rem;
    font-weight: 650;
    letter-spacing: -.045em;
}

.site-brand__name strong {
    color: var(--navy);
}

.site-brand__name span {
    color: var(--red);
}

.site-navigation {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-navigation__menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-navigation__menu a {
    color: var(--ink);
    font-size: .9rem;
    font-weight: 650;
    text-decoration: none;
}

.site-navigation__menu a:hover {
    color: var(--blue);
}

.site-navigation__actions {
    display: flex;
    gap: 8px;
}

.site-menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
}

.site-menu-toggle > span:not(.sr-only) {
    width: 22px;
    height: 2px;
    display: block;
    margin: 3px;
    background: var(--navy);
}

.home-hero {
    width: var(--shell);
    min-height: 700px;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
    align-items: center;
    gap: clamp(40px, 7vw, 90px);
    margin: 0 auto;
    padding: clamp(60px, 8vw, 110px) 0;
}

.home-hero h1 {
    max-width: 730px;
    margin: 0 0 24px;
    font-size: clamp(3.1rem, 6.3vw, 6.1rem);
    line-height: .94;
    letter-spacing: -.065em;
}

.home-hero h1 em {
    display: block;
    color: var(--blue);
    font-style: normal;
}

.home-hero__lead {
    max-width: 680px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-search {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    max-width: 690px;
    padding: 8px 8px 8px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-search > span {
    color: var(--blue);
    font-size: 1.5rem;
}

.hero-search input {
    min-width: 0;
    min-height: 46px;
    border: 0;
    outline: 0;
    color: var(--ink);
    font: inherit;
}

.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 18px;
}

.home-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0 0;
    padding: 0;
    color: var(--muted);
    font-size: .86rem;
    list-style: none;
}

.home-trust-list span {
    width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    margin-right: 4px;
    border-radius: 50%;
    background: var(--blue-pale);
    color: var(--blue);
    font-weight: 850;
}

.home-hero__visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.home-hero__visual::before {
    content: "";
    position: absolute;
    inset: 3% 6% 6%;
    border-radius: 50% 38% 50% 42%;
    background:
        radial-gradient(circle at 72% 18%, rgba(220, 23, 39, .12), transparent 25%),
        linear-gradient(145deg, #eaf3ff, #f9fbff);
    transform: rotate(-5deg);
}

.brand-emblem-card {
    position: relative;
    width: min(440px, 90%);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(18, 101, 223, .12);
    border-radius: 42px;
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--shadow);
}

.brand-emblem-card img {
    width: 92%;
}

.sample-score-card {
    position: absolute;
    right: -2%;
    bottom: 8%;
    width: min(285px, 72%);
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.sample-score-card__label {
    color: var(--blue);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.sample-score-card > div:nth-child(2) {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 4px;
}

.sample-score-card strong {
    color: var(--navy);
    font-size: 3rem;
    line-height: 1;
}

.sample-score-card p {
    margin: 6px 0 0;
    color: var(--ink);
    font-weight: 700;
}

.sample-score-card small {
    color: var(--muted);
}

.sample-score-card__bar {
    height: 7px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 99px;
    background: var(--line);
}

.sample-score-card__bar span {
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}

.privacy-chip {
    position: absolute;
    top: 11%;
    left: -2%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.privacy-chip > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--blue-pale);
    color: var(--blue);
}

.privacy-chip strong,
.privacy-chip small {
    display: block;
}

.privacy-chip strong {
    color: var(--navy);
    font-size: .85rem;
}

.privacy-chip small {
    color: var(--muted);
    font-size: .68rem;
}

.proof-strip {
    width: var(--shell);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
    box-shadow: 0 14px 40px rgba(6, 31, 87, .06);
}

.proof-strip div {
    display: flex;
    flex-direction: column;
    padding: 24px 28px;
    background: var(--white);
}

.proof-strip strong {
    color: var(--navy);
    font-size: 1.7rem;
}

.proof-strip span {
    color: var(--muted);
    font-size: .8rem;
}

.home-section {
    width: var(--shell);
    margin: 0 auto;
    padding: clamp(85px, 10vw, 140px) 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading .eyebrow {
    justify-content: center;
}

.section-heading h2,
.methodology-preview h2,
.trust-center h2 {
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.section-heading > p:last-child,
.methodology-preview__copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.05rem;
}

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

.steps-grid article {
    position: relative;
    min-height: 280px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.steps-grid article > span {
    position: absolute;
    top: 16px;
    right: 22px;
    color: #e7edf7;
    font-size: 3.8rem;
    font-weight: 850;
}

.step-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 48px;
    border-radius: 16px;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 1.6rem;
}

.steps-grid article:nth-child(2) .step-icon {
    background: #fff1f2;
    color: var(--red);
}

.steps-grid h3 {
    margin-bottom: 9px;
    font-size: 1.35rem;
}

.steps-grid p {
    margin: 0;
    color: var(--muted);
}

.audience-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding-top: 0;
}

.audience-card {
    position: relative;
    min-height: 560px;
    padding: clamp(38px, 5vw, 62px);
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.audience-card .eyebrow {
    position: relative;
    z-index: 1;
}

.audience-card h2 {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 0 20px;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.audience-card > p:not(.eyebrow),
.audience-card ul,
.audience-card .button {
    position: relative;
    z-index: 1;
}

.audience-card > p:not(.eyebrow) {
    max-width: 560px;
    font-size: 1.05rem;
}

.audience-card ul {
    display: grid;
    gap: 10px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.audience-card li::before {
    content: "✓";
    margin-right: 9px;
    font-weight: 900;
}

.audience-card--worker {
    background: linear-gradient(145deg, var(--navy), #0a3a8c);
    color: rgba(255, 255, 255, .82);
}

.audience-card--worker h2,
.audience-card--worker .eyebrow {
    color: var(--white);
}

.audience-card--worker li::before {
    color: #5db3ff;
}

.audience-card__number {
    position: absolute;
    right: -30px;
    bottom: -50px;
    color: rgba(255, 255, 255, .07);
    font-size: 11rem;
    font-weight: 900;
    letter-spacing: -.1em;
}

.audience-card--company {
    border: 1px solid #c9dcf8;
    background: linear-gradient(145deg, #f2f7ff, #e4f0ff);
}

.audience-card__grid {
    position: absolute;
    inset: 0;
    opacity: .24;
    background-image: linear-gradient(rgba(18, 101, 223, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 101, 223, .12) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom right, transparent, #000);
}

.methodology-preview {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: clamp(50px, 9vw, 120px);
}

.threshold-card {
    display: grid;
    gap: 10px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
}

.threshold-row {
    display: grid;
    grid-template-columns: 88px 1fr;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border: 1px solid transparent;
    border-radius: 15px;
}

.threshold-row > span {
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 850;
}

.threshold-row strong,
.threshold-row small {
    display: block;
}

.threshold-row small {
    color: var(--muted);
}

.threshold-row.is-active {
    border-color: #bdd5f8;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(6, 31, 87, .08);
}

.threshold-row.is-active > span {
    color: var(--blue);
}

.trust-center {
    width: 100%;
    max-width: none;
    padding-inline: max(18px, calc((100% - 1180px) / 2));
    background: var(--surface);
}

.trust-center > div:first-child {
    max-width: 680px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.trust-grid a {
    min-height: 260px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

.trust-grid a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.trust-grid a > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 1.5rem;
}

.trust-grid h3 {
    margin: 28px 0 8px;
    font-size: 1.35rem;
}

.trust-grid p {
    color: var(--muted);
}

.trust-grid strong {
    color: var(--blue);
    font-size: .9rem;
}

.home-cta {
    width: var(--shell);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: clamp(80px, 10vw, 140px) auto;
    padding: clamp(38px, 6vw, 68px);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 85% 30%, rgba(35, 136, 255, .4), transparent 30%),
        linear-gradient(135deg, var(--navy), #0a419f);
    color: rgba(255, 255, 255, .8);
}

.home-cta .eyebrow,
.home-cta h2 {
    color: var(--white);
}

.home-cta h2 {
    max-width: 680px;
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3.7rem);
}

.home-cta > div:last-child {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.content-shell {
    width: var(--shell);
    margin: 0 auto;
    padding: clamp(55px, 8vw, 100px) 0;
}

.content-shell--narrow {
    max-width: 820px;
}

.page-content__header {
    max-width: 840px;
    margin-bottom: 42px;
}

.page-content__header h1,
.error-page h1 {
    font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.entry-content {
    font-size: 1.06rem;
}

.entry-content > * {
    max-width: 760px;
}

.entry-content > .alignwide {
    max-width: 1160px;
}

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

.post-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.post-card__date {
    color: var(--muted);
    font-size: .82rem;
}

.post-card h2 a {
    color: var(--navy);
    text-decoration: none;
}

.error-page {
    width: min(760px, calc(100% - 36px));
    margin: 0 auto;
    padding: 130px 0;
    text-align: center;
}

.error-page .eyebrow {
    justify-content: center;
}

.site-footer {
    padding: 70px max(18px, calc((100% - 1180px) / 2)) 28px;
    background: #04163f;
    color: rgba(255, 255, 255, .68);
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 45px;
}

.site-brand--footer {
    color: var(--white);
}

.site-brand--footer .site-brand__mark {
    border-color: #4aa2ff;
    background: #09265e;
    color: var(--white);
    box-shadow: inset 0 0 0 4px rgba(74, 162, 255, .12);
}

.site-brand--footer .site-brand__name strong {
    color: var(--white);
}

.site-footer__brand p {
    max-width: 380px;
}

.site-footer h2 {
    color: var(--white);
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-footer ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--white);
}

.site-footer__independence {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 12px 0 25px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
}

.site-footer__independence > span {
    width: 28px;
    height: 28px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
}

.site-footer__independence p {
    margin: 0;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .78rem;
}

@media (max-width: 1060px) {
    .site-navigation__menu {
        gap: 14px;
    }

    .site-navigation__menu li:nth-child(2) {
        display: none;
    }

    .site-navigation__actions .button--ghost {
        display: none;
    }

    .home-hero {
        grid-template-columns: 1fr .8fr;
    }

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

    .site-footer__top > div:last-child {
        display: none;
    }
}

@media (max-width: 820px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .site-menu-toggle {
        display: grid;
    }

    .site-navigation {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 20px;
        border-bottom: 1px solid var(--line);
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .site-navigation.is-open {
        display: block;
    }

    .site-navigation__menu {
        display: grid;
        gap: 0;
    }

    .site-navigation__menu li:nth-child(2) {
        display: block;
    }

    .site-navigation__menu a {
        display: block;
        padding: 12px 4px;
    }

    .site-navigation__actions {
        margin-top: 14px;
    }

    .site-navigation__actions .button,
    .site-navigation__actions .button--ghost {
        display: flex;
        width: 100%;
    }

    .home-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 70px;
    }

    .home-hero__visual {
        min-height: 480px;
    }

    .proof-strip,
    .steps-grid,
    .audience-split,
    .methodology-preview,
    .trust-grid,
    .post-grid {
        grid-template-columns: 1fr;
    }

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

    .methodology-preview {
        gap: 45px;
    }

    .home-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__top {
        grid-template-columns: 1.3fr 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    :root {
        --shell: min(100% - 24px, 1180px);
    }

    .site-header__inner {
        min-height: 68px;
    }

    .site-brand__mark {
        width: 36px;
        height: 36px;
    }

    .site-brand__name {
        font-size: 1rem;
    }

    .home-hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.2rem);
    }

    .hero-search {
        grid-template-columns: auto 1fr;
        border-radius: 18px;
    }

    .hero-search .button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .home-hero__actions,
    .home-cta > div:last-child {
        align-items: stretch;
        flex-direction: column;
    }

    .home-hero__visual {
        min-height: 390px;
    }

    .sample-score-card {
        right: 0;
        bottom: 0;
    }

    .privacy-chip {
        top: 4%;
        left: 0;
    }

    .proof-strip {
        grid-template-columns: 1fr;
    }

    .audience-card {
        min-height: auto;
    }

    .threshold-row {
        grid-template-columns: 70px 1fr;
        padding: 18px 12px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
    }
}
