:root {
    --navy: #231f20;
    --navy-2: #343132;
    --blue: #0b5daa;
    --teal: #0b5daa;
    --teal-2: #4a93cf;
    --amber: #9b5a13;
    --text: #231f20;
    --muted: #62666c;
    --light: #f4f7fb;
    --line: #d9e0e8;
    --white: #ffffff;
    --shadow: 0 18px 40px rgba(35, 31, 32, 0.11);
    --radius: 8px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    letter-spacing: 0;
    overflow-x: hidden;
}

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

a {
    color: var(--blue);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--teal);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(11, 93, 170, 0.35);
    outline-offset: 3px;
}

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

.narrow {
    width: min(calc(100% - 40px), 880px);
}

.skip-link {
    position: absolute;
    left: 16px;
    top: 8px;
    z-index: 1000;
    transform: translateY(-140%);
    padding: 10px 14px;
    color: var(--white);
    background: var(--navy);
    border-radius: 6px;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

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

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    flex: 0 0 auto;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-x-mark {
    width: 38px;
    height: 38px;
}

.powered-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 14px;
    padding: 12px 14px;
    border-radius: 8px;
    background: var(--white);
}

.powered-logo span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.powered-logo img {
    flex: 0 0 auto;
    width: 220px;
    max-width: 58vw;
    height: auto;
}

.brand strong,
.footer-brand strong {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
}

.brand small,
.footer-brand small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.3;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.94rem;
}

.primary-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 650;
}

.primary-nav a[aria-current="page"] {
    color: var(--teal);
}

.primary-nav .nav-cta {
    color: var(--white);
    background: var(--navy);
    padding: 10px 14px;
    border-radius: 6px;
}

.primary-nav .nav-cta:hover {
    background: var(--teal);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    padding: 9px;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--navy);
}

.hero {
    padding: 76px 0 66px;
    background:
        linear-gradient(90deg, rgba(245, 248, 251, 0) 0%, rgba(245, 248, 251, 0.72) 100%),
        var(--white);
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 56px;
    align-items: center;
}

.hero-grid > *,
.hero-copy,
.page-hero .container,
.guide-content {
    min-width: 0;
}

.eyebrow,
.section-label {
    margin: 0 0 14px;
    color: var(--teal);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    color: var(--navy);
    line-height: 1.13;
    margin: 0 0 16px;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.15rem, 5vw, 3.35rem);
    max-width: 920px;
}

h2 {
    font-size: 2.05rem;
}

h3 {
    font-size: 1.22rem;
}

p {
    margin: 0 0 16px;
}

h1,
h2,
h3,
p,
li {
    overflow-wrap: anywhere;
}

.hero-subhead,
.page-hero p {
    color: #35495c;
    font-size: 1.18rem;
    max-width: 760px;
}

.hero-bullets {
    display: grid;
    gap: 10px;
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.hero-bullets li,
.check-list li {
    position: relative;
    padding-left: 28px;
}

.hero-bullets li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.63em;
    width: 12px;
    height: 12px;
    border: 3px solid var(--teal-2);
    border-left: 0;
    border-top: 0;
    transform: rotate(45deg);
}

.hero-actions,
.cta-actions,
.center-action {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    min-width: 0;
}

.hero-actions > *,
.cta-actions > *,
.center-action > * {
    min-width: 0;
    max-width: 100%;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 0.96rem;
    font-weight: 750;
    line-height: 1.25;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    min-width: 0;
    max-width: 100%;
}

.button-primary {
    color: var(--white);
    background: var(--teal);
    border-color: var(--teal);
}

.button-primary:hover {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

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

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

.hero-visual {
    min-height: 430px;
    display: grid;
    place-items: center;
}

.routing-panel {
    width: min(100%, 520px);
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.routing-node {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 6px 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--light);
}

.routing-node strong,
.routing-node small {
    grid-column: 2;
}

.routing-node strong {
    color: var(--navy);
    font-size: 1.05rem;
}

.routing-node small {
    color: var(--muted);
}

.node-icon {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: var(--white);
    background: var(--navy);
    border-radius: 8px;
    font-size: 0.74rem;
    font-weight: 850;
}

.node-core {
    background: #eaf7f8;
    border-color: #b8dde1;
}

.node-core .node-icon {
    background: var(--teal);
}

.routing-line {
    width: 2px;
    height: 34px;
    margin: 0 auto;
    background: var(--teal-2);
}

.routing-line::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin-left: -4px;
    transform: translateY(28px) rotate(45deg);
    border: 2px solid var(--teal-2);
    border-left: 0;
    border-top: 0;
    background: transparent;
}

.trust-strip {
    padding: 22px 0;
    background: var(--navy);
    color: var(--white);
}

.trust-inner p {
    margin: 0;
    color: #e7f4f7;
}

.trust-inner strong {
    color: var(--white);
}

.section {
    padding: 76px 0;
}

.section-muted {
    background: var(--light);
}

.split-band {
    background: #eef5f8;
}

.two-column,
.split-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    gap: 54px;
    align-items: start;
}

.body-copy {
    color: #2d4052;
    font-size: 1.04rem;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.06rem;
}

.flow-diagram {
    display: grid;
    grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
    gap: 14px;
    align-items: stretch;
}

.flow-step {
    min-height: 178px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.flow-step span,
.lane-model span {
    display: inline-grid;
    place-items: center;
    min-width: 34px;
    height: 30px;
    margin-bottom: 14px;
    color: var(--white);
    background: var(--navy);
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 800;
}

.flow-step strong {
    display: block;
    color: var(--navy);
    line-height: 1.25;
}

.flow-step small {
    display: block;
    margin-top: 10px;
    color: var(--muted);
}

.flow-emphasis {
    border-color: #9ed3d8;
    background: #e8f7f8;
}

.flow-emphasis span {
    background: var(--teal);
}

.flow-arrow {
    position: relative;
}

.flow-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 2px;
    right: 2px;
    height: 2px;
    background: var(--teal-2);
}

.flow-arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: 2px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--teal-2);
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
}

.clarity-note {
    margin-top: 22px;
    padding: 16px 18px;
    color: var(--navy);
    background: var(--white);
    border-left: 4px solid var(--teal);
    border-radius: 0 8px 8px 0;
}

.cards {
    display: grid;
    gap: 18px;
}

.cards.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.faq-card,
.answer-box,
.ai-summary,
.contact-card,
.contact-form,
.toc,
.form-alert {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.card,
.faq-card {
    padding: 24px;
}

.card p,
.faq-card p {
    color: var(--muted);
}

.card-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    color: var(--white);
    background: var(--navy);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 850;
}

.text-link {
    font-weight: 800;
}

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

.center-action {
    justify-content: center;
    margin-top: 26px;
}

.page-hero {
    padding: 62px 0 54px;
    background: var(--light);
    border-bottom: 1px solid var(--line);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
}

.guide-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.toc {
    position: sticky;
    top: 96px;
    padding: 14px;
}

.toc a {
    display: block;
    padding: 9px 10px;
    color: var(--text);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 650;
}

.toc a:hover {
    color: var(--navy);
    background: var(--light);
}

.guide-content {
    min-width: 0;
}

.guide-content > section + section {
    margin-top: 54px;
}

.guide-content h2 {
    scroll-margin-top: 110px;
}

.answer-box,
.ai-summary {
    padding: 26px;
}

.answer-box {
    background: #f3fbfc;
    border-color: #b9dde1;
}

.ai-summary {
    background: #f8fafc;
}

.check-list,
.inventory-list {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

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

.not-grid p {
    margin: 0;
    padding: 16px;
    color: var(--navy);
    border: 1px solid #efd5b8;
    border-radius: var(--radius);
    background: #fffaf4;
}

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

.inventory-list li {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.cards.compact .card {
    padding: 20px;
}

.lane-model {
    display: grid;
    gap: 16px;
}

.lane-model article {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.lane-model p {
    color: var(--muted);
}

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

.faq-list article {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.faq-list h3 {
    margin-bottom: 8px;
}

.faq-list p {
    color: #33495d;
}

.sources {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.sources ul {
    margin-bottom: 0;
}

.integration-list,
.route-stack {
    display: grid;
    gap: 12px;
}

.integration-list div,
.route-stack div {
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.integration-list strong {
    display: block;
    color: var(--navy);
}

.integration-list span {
    color: var(--muted);
}

.route-stack div {
    position: relative;
    font-weight: 800;
    color: var(--navy);
}

.route-stack div:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 28px;
    bottom: -13px;
    width: 2px;
    height: 12px;
    background: var(--teal);
}

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

.glossary-list div {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.glossary-list dt {
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 1.08rem;
    font-weight: 850;
}

.glossary-list dd {
    margin: 0;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    gap: 34px;
    align-items: start;
}

.contact-card,
.contact-form {
    padding: 26px;
}

.warning-box {
    margin: 22px 0;
    padding: 16px;
    color: #5a3210;
    background: #fff8ed;
    border: 1px solid #edcfaa;
    border-radius: var(--radius);
}

.warning-box p {
    margin: 4px 0 0;
}

.small-text {
    color: var(--muted);
    font-size: 0.94rem;
}

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

.field,
.checkbox-group,
.consent-box {
    margin-bottom: 18px;
}

label,
legend {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #bdcbd6;
    border-radius: 6px;
    padding: 11px 12px;
    color: var(--text);
    background: var(--white);
    font: inherit;
}

textarea {
    resize: vertical;
}

.checkbox-group {
    padding: 0;
    border: 0;
}

.checkbox-group label,
.consent-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
    font-weight: 650;
}

.checkbox-group input,
.consent-box input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 4px;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    margin-bottom: 20px;
    padding: 16px;
    color: #6d1f1f;
    background: #fff3f3;
    border-color: #efc1c1;
}

.form-alert ul {
    margin: 8px 0 0;
}

.meetings-iframe-container {
    min-height: 720px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
}

.legal-page h2 {
    margin-top: 34px;
}

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

.cta-band {
    padding: 52px 0;
    background: var(--navy);
    color: var(--white);
}

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.cta-band h2 {
    color: var(--white);
}

.cta-band p {
    color: #d8edf0;
}

.cta-band .section-label {
    color: #8fe3e8;
}

.cta-band .button-secondary {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.34);
}

.cta-band .button-secondary:hover {
    border-color: var(--white);
}

.site-footer {
    padding: 48px 0 22px;
    color: #cfe0ea;
    background: #071f36;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.4fr) minmax(180px, 0.4fr);
    gap: 42px;
}

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

.footer-brand small,
.site-footer p,
.site-footer a {
    color: #cfe0ea;
}

.site-footer h2 {
    color: var(--white);
    font-size: 1rem;
}

.site-footer a {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}

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

.footer-note {
    font-size: 0.92rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    h1 {
        font-size: 2.45rem;
    }

    h2 {
        font-size: 1.78rem;
    }

    .hero-grid,
    .two-column,
    .split-grid,
    .contact-grid,
    .cta-inner,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        min-height: 68px;
        min-width: 0;
    }

    .brand {
        min-width: 0;
    }

    .brand > span:last-child {
        min-width: 0;
    }

    .brand span {
        max-width: 260px;
    }

    .nav-toggle {
        display: block;
        flex: 0 0 auto;
    }

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

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        padding: 12px;
        border-radius: 6px;
    }

    .primary-nav .nav-cta {
        text-align: center;
        margin-top: 6px;
    }

    .hero-visual {
        min-height: 0;
    }

    .flow-diagram {
        grid-template-columns: 1fr;
    }

    .flow-arrow {
        height: 24px;
    }

    .flow-arrow::before {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: auto;
    }

    .flow-arrow::after {
        top: auto;
        bottom: 0;
        right: calc(50% - 5px);
        transform: rotate(135deg);
    }

    .cards.three,
    .faq-grid,
    .glossary-list,
    .inventory-list,
    .not-grid {
        grid-template-columns: 1fr;
    }

    .guide-layout {
        grid-template-columns: 1fr;
    }

    .toc {
        position: static;
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .container,
    .narrow {
        width: min(calc(100% - 28px), var(--max));
    }

    .brand span {
        max-width: 210px;
    }

    .primary-nav {
        left: 14px;
        right: 14px;
    }

    .hero,
    .section {
        padding: 54px 0;
    }

    .page-hero {
        padding: 44px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.55rem;
    }

    .hero-subhead,
    .page-hero p {
        font-size: 1.04rem;
    }

    .routing-panel,
    .contact-card,
    .contact-form,
    .answer-box,
    .ai-summary {
        padding: 18px;
    }

    .routing-node {
        grid-template-columns: 50px 1fr;
        padding: 14px;
    }

    .node-icon {
        width: 44px;
        height: 44px;
        font-size: 0.68rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .button {
        width: 100%;
    }

    .eyebrow,
    .section-label {
        font-size: 0.76rem;
    }

    .hero-actions,
    .cta-actions {
        align-items: stretch;
    }

    .footer-bottom {
        flex-direction: column;
    }
}


/* === Additions: trust strip grid, answer pair, audience split, resource CTA, expert bios, partner cards, gated form === */

.trust-strip {
    background: linear-gradient(180deg, #f6fafe 0%, #ffffff 100%);
    padding: 36px 0 30px;
    border-bottom: 1px solid var(--line);
}

.trust-eyebrow {
    margin: 0 0 18px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
}

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

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 8px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
}

.trust-item strong {
    font-size: 1.1rem;
    color: var(--blue);
    line-height: 1.2;
}

.trust-item span {
    margin-top: 4px;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.35;
}

.answer-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 18px;
}

.answer-card {
    padding: 26px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--white);
}

.answer-card h3 {
    margin: 0 0 14px;
    font-size: 1.18rem;
}

.answer-card ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text);
}

.answer-card ul li {
    margin-bottom: 8px;
    line-height: 1.55;
}

.answer-card-positive {
    border-left: 4px solid var(--blue);
    background: linear-gradient(180deg, #f3f8fd 0%, #ffffff 60%);
}

.answer-card-negative {
    border-left: 4px solid var(--amber);
    background: linear-gradient(180deg, #fdf6ee 0%, #ffffff 60%);
}

.audience-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: stretch;
}

.audience-primary {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.audience-primary h3 {
    margin-top: 4px;
    font-size: 1.5rem;
}

.audience-primary .button {
    margin-top: 12px;
}

.audience-secondary {
    padding: 28px;
    background: var(--light);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.audience-secondary h3 {
    margin-top: 4px;
    font-size: 1.18rem;
}

.audience-links {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

.audience-links li {
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.audience-links li:first-child {
    border-top: none;
}

.audience-links a {
    display: block;
    font-weight: 700;
    color: var(--navy);
}

.audience-links a:hover {
    color: var(--teal);
}

.audience-links span {
    display: block;
    font-size: 0.92rem;
    color: var(--muted);
    margin-top: 2px;
}

.check-list {
    margin: 10px 0 16px;
    padding-left: 20px;
}

.check-list li {
    margin-bottom: 8px;
    line-height: 1.55;
}

.resource-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Expert bios */
.expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.expert-card {
    padding: 22px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--line);
}

.expert-card h3 {
    margin: 0 0 4px;
    font-size: 1.2rem;
}

.expert-card .expert-role {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.expert-card p {
    margin: 0;
    color: var(--text);
    line-height: 1.6;
}

.expert-credentials {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--line);
    font-size: 0.88rem;
    color: var(--muted);
}

/* Partner page */
.partner-hero {
    background: linear-gradient(135deg, #0b3a6e 0%, #0b5daa 100%);
    color: var(--white);
    padding: 70px 0;
}

.partner-hero h1,
.partner-hero p {
    color: var(--white);
}

.partner-hero .section-label,
.partner-hero .eyebrow {
    color: #cfe1f5;
}

.partner-models {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.partner-model {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--white);
}

.partner-model h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.partner-model p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
}

.who-we-partner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.who-we-partner span {
    padding: 6px 12px;
    background: var(--light);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
}

/* Resources / gated content */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.resource-card {
    padding: 24px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.resource-card h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
}

.resource-card p {
    flex: 1;
    margin: 0 0 14px;
    line-height: 1.55;
    color: var(--text);
}

.resource-card .resource-meta {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 0.85rem;
}

.gated-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.gated-card h2 {
    margin-top: 0;
}

.gated-form {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.gated-form .field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.gated-form .field input[type="text"],
.gated-form .field input[type="email"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.consent-box {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: var(--light);
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--line);
    font-size: 0.95rem;
}

@media (max-width: 1100px) {
    .trust-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .answer-pair,
    .audience-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* === Resource access page (printable) === */

.printable {
    background: var(--white);
}

.inventory-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 18px;
    font-size: 0.95rem;
}

.inventory-table th,
.inventory-table td {
    padding: 8px 10px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.inventory-table th {
    background: var(--light);
    font-weight: 700;
}

.inventory-table tr:nth-child(odd) td {
    background: rgba(244, 247, 251, 0.5);
}

@media print {
    .site-header,
    .site-footer,
    .cta-band,
    .no-print,
    .nav-toggle,
    .skip-link {
        display: none !important;
    }

    body {
        background: var(--white);
    }

    .page-hero {
        padding: 12px 0;
    }

    .printable {
        padding: 0;
    }

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


/* === Cloudflare Turnstile widget === */

.turnstile-wrap {
    margin: 6px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.turnstile-wrap .cf-turnstile {
    min-height: 65px;
}

.turnstile-wrap .small-text {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}
