:root {
    --assamble-teal-900: #0b7679;
    --assamble-teal-700: #119da1;
    --assamble-teal-500: #43c4c7;
    --assamble-teal-200: #bceced;
    --assamble-teal-100: #e7f8f8;
    --assamble-coral-600: #ed6f86;
    --assamble-coral-500: #ff8da1;
    --assamble-coral-100: #fff0f3;
    --assamble-navy-950: #102c45;
    --assamble-navy-800: #193d59;
    --assamble-slate-700: #4e6679;
    --assamble-slate-500: #718799;
    --assamble-slate-300: #cbd8df;
    --assamble-slate-200: #dfe8ec;
    --assamble-slate-100: #eff5f6;
    --assamble-white: #fff;
    --assamble-shadow-sm: 0 8px 24px rgba(19, 57, 77, .08);
    --assamble-shadow-md: 0 22px 60px rgba(19, 57, 77, .12);
    --assamble-radius-sm: 14px;
    --assamble-radius-md: 22px;
    --assamble-radius-lg: 32px;
    --assamble-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.assamble-site {
    margin: 0;
    color: var(--assamble-navy-950);
    background: var(--assamble-white);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.assamble-site::before {
    position: fixed;
    z-index: -2;
    inset: 0;
    background:
        radial-gradient(circle at 6% 9%, rgba(67, 196, 199, .13), transparent 22rem),
        radial-gradient(circle at 96% 50%, rgba(255, 141, 161, .09), transparent 28rem);
    content: "";
    pointer-events: none;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

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

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

.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: 999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--assamble-white);
    background: var(--assamble-navy-950);
    border-radius: 10px;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

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

.page-shell--narrow {
    max-width: 860px;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(203, 216, 223, .65);
    backdrop-filter: blur(16px);
    transition: box-shadow .2s ease;
}

.site-header.is-scrolled {
    box-shadow: var(--assamble-shadow-sm);
}

.site-header__bar {
    position: relative;
    display: flex;
    width: min(calc(100% - 40px), 1240px);
    min-height: 78px;
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    text-decoration: none;
}

.brand img {
    width: 156px;
    height: 52px;
    object-fit: contain;
}

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

.site-navigation > a,
.nav-dropdown > summary {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    padding: 10px 12px;
    align-items: center;
    gap: 6px;
    color: var(--assamble-navy-800);
    border-radius: 11px;
    font-size: .94rem;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    list-style: none;
    transition: color .18s ease, background-color .18s ease;
}

.nav-dropdown > summary::-webkit-details-marker {
    display: none;
}

.site-navigation > a:hover,
.site-navigation > a:focus-visible,
.nav-dropdown > summary:hover,
.nav-dropdown > summary:focus-visible,
.nav-dropdown[open] > summary,
.nav-dropdown[data-current="true"] > summary {
    color: var(--assamble-teal-900);
    background: var(--assamble-teal-100);
    outline: none;
}

.nav-dropdown > summary span {
    color: var(--assamble-teal-700);
    font-size: .82rem;
    transition: transform .18s ease;
}

.nav-dropdown[open] > summary span {
    transform: rotate(180deg);
}

.nav-mega {
    position: absolute;
    z-index: 110;
    top: calc(100% - 5px);
    left: 50%;
    display: grid;
    width: min(calc(100vw - 40px), 1100px);
    padding: 18px;
    background: var(--assamble-white);
    border: 1px solid var(--assamble-slate-200);
    border-radius: 22px;
    box-shadow: var(--assamble-shadow-md);
    grid-template-columns: 260px 1fr;
    transform: translateX(-50%);
}

.nav-mega__intro {
    padding: 24px;
    background:
        linear-gradient(145deg, rgba(67, 196, 199, .96), rgba(17, 157, 161, .96)),
        var(--assamble-teal-700);
    color: var(--assamble-white);
    border-radius: 16px;
}

.nav-mega__intro strong {
    display: block;
    margin: 7px 0 8px;
    font-size: 1.23rem;
    line-height: 1.25;
}

.nav-mega__intro p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .83);
    font-size: .89rem;
    line-height: 1.55;
}

.nav-mega__intro a {
    color: var(--assamble-white);
    font-size: .88rem;
    font-weight: 750;
    text-underline-offset: 4px;
}

.nav-kicker {
    color: rgba(255, 255, 255, .75);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.nav-mega__links {
    display: grid;
    padding: 3px 5px 3px 18px;
    gap: 3px 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nav-mega__links a {
    display: flex;
    padding: 10px 12px;
    flex-direction: column;
    justify-content: center;
    color: var(--assamble-navy-800);
    border-radius: 12px;
    text-decoration: none;
    transition: background-color .18s ease, transform .18s ease;
}

.nav-mega__links a:hover,
.nav-mega__links a:focus-visible {
    background: var(--assamble-slate-100);
    outline: none;
    transform: translateX(2px);
}

.nav-mega__links strong {
    font-size: .88rem;
    line-height: 1.25;
}

.nav-mega__links small {
    margin-top: 4px;
    color: var(--assamble-slate-500);
    font-size: .74rem;
    line-height: 1.35;
}

.nav-mega__links--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nav-mega__links--compact a {
    min-height: 45px;
}

.nav-login {
    margin-left: 5px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    padding: 13px 22px;
    align-items: center;
    justify-content: center;
    color: var(--assamble-white);
    background: linear-gradient(135deg, var(--assamble-coral-500), var(--assamble-coral-600));
    border: 1px solid transparent;
    border-radius: 13px;
    box-shadow: 0 10px 24px rgba(237, 111, 134, .22);
    font-size: .96rem;
    font-weight: 780;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover,
.button:focus-visible {
    color: var(--assamble-white);
    box-shadow: 0 14px 28px rgba(237, 111, 134, .3);
    outline: none;
    transform: translateY(-2px);
}

.button--small {
    min-height: 42px;
    padding: 10px 16px !important;
    color: var(--assamble-white) !important;
    background: linear-gradient(135deg, var(--assamble-coral-500), var(--assamble-coral-600)) !important;
}

.button--ghost {
    color: var(--assamble-teal-900);
    background: rgba(255, 255, 255, .7);
    border-color: var(--assamble-teal-200);
    box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
    color: var(--assamble-teal-900);
    background: var(--assamble-white);
    box-shadow: var(--assamble-shadow-sm);
}

.button--light {
    color: var(--assamble-teal-900);
    background: var(--assamble-white);
    box-shadow: 0 14px 30px rgba(6, 73, 76, .16);
}

.button--light:hover,
.button--light:focus-visible {
    color: var(--assamble-teal-900);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--assamble-white);
    border: 1px solid var(--assamble-slate-200);
    border-radius: 11px;
    cursor: pointer;
}

.mobile-menu-button span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: var(--assamble-navy-800);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.breadcrumbs {
    padding-top: 30px;
}

.breadcrumbs ol {
    display: flex;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    color: var(--assamble-slate-500);
    font-size: .82rem;
    list-style: none;
}

.breadcrumbs li {
    display: inline-flex;
    gap: 7px;
    align-items: center;
}

.breadcrumbs a {
    color: var(--assamble-teal-900);
    font-weight: 650;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 141, 161, .17), transparent 18rem),
        linear-gradient(180deg, #f5fbfb 0%, #fff 100%);
}

.page-hero::after {
    position: absolute;
    z-index: 0;
    right: -130px;
    bottom: -220px;
    width: 420px;
    height: 420px;
    background-image: radial-gradient(rgba(17, 157, 161, .23) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    border-radius: 50%;
    content: "";
    opacity: .55;
    pointer-events: none;
}

.page-hero .page-shell {
    position: relative;
    z-index: 1;
}

.page-hero__grid {
    display: grid;
    min-height: 590px;
    padding: 70px 0 90px;
    align-items: center;
    gap: 80px;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
}

.eyebrow {
    display: inline-block;
    color: var(--assamble-teal-900);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.page-hero h1,
.hub-hero h1 {
    max-width: 800px;
    margin: 14px 0 22px;
    color: var(--assamble-navy-950);
    font-size: clamp(2.45rem, 5vw, 4.5rem);
    font-weight: 820;
    letter-spacing: -.045em;
    line-height: 1.04;
}

.page-hero__lead {
    max-width: 720px;
    margin: 0;
    color: var(--assamble-slate-700);
    font-size: clamp(1.08rem, 2vw, 1.3rem);
    line-height: 1.65;
}

.page-hero__actions {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 12px;
}

.page-hero__actions--center {
    justify-content: center;
}

.microcopy {
    margin: 12px 0 0;
    color: var(--assamble-slate-500);
    font-size: .79rem;
}

.answer-card {
    position: relative;
    padding: 34px;
    overflow: hidden;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(188, 236, 237, .9);
    border-radius: var(--assamble-radius-lg);
    box-shadow: var(--assamble-shadow-md);
}

.answer-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--assamble-teal-500), var(--assamble-coral-500));
    content: "";
}

.answer-card__label {
    display: inline-flex;
    padding: 6px 10px;
    color: var(--assamble-teal-900);
    background: var(--assamble-teal-100);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.answer-card h2 {
    margin: 17px 0 10px;
    font-size: 1.5rem;
    letter-spacing: -.025em;
    line-height: 1.25;
}

.answer-card p {
    margin: 0;
    color: var(--assamble-slate-700);
}

.answer-card ul {
    display: grid;
    padding: 22px 0 0;
    margin: 24px 0 0;
    gap: 12px;
    border-top: 1px solid var(--assamble-slate-200);
    list-style: none;
}

.answer-card li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--assamble-navy-800);
    font-size: .91rem;
    font-weight: 650;
}

.answer-card li span {
    display: inline-grid;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    place-items: center;
    color: var(--assamble-white);
    background: var(--assamble-teal-500);
    border-radius: 50%;
    font-size: .7rem;
}

.content-section {
    padding: 96px 0;
}

.content-section--soft {
    background: var(--assamble-slate-100);
}

.content-section--ink {
    position: relative;
    overflow: hidden;
    color: var(--assamble-white);
    background:
        radial-gradient(circle at 15% 100%, rgba(67, 196, 199, .22), transparent 30rem),
        linear-gradient(135deg, var(--assamble-navy-950), #163d55);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2 {
    margin: 10px 0 12px;
    color: var(--assamble-navy-950);
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.12;
}

.section-heading p {
    margin: 0;
    color: var(--assamble-slate-700);
    font-size: 1.05rem;
}

.section-heading--light h2 {
    color: var(--assamble-white);
}

.section-heading--light p {
    color: rgba(255, 255, 255, .72);
}

.section-heading--light .eyebrow {
    color: var(--assamble-teal-200);
}

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

.problem-card {
    position: relative;
    min-height: 210px;
    padding: 30px 30px 28px 80px;
    background: var(--assamble-white);
    border: 1px solid var(--assamble-slate-200);
    border-radius: var(--assamble-radius-md);
    box-shadow: var(--assamble-shadow-sm);
}

.card-number {
    position: absolute;
    top: 30px;
    left: 26px;
    color: var(--assamble-coral-600);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .08em;
}

.problem-card h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    line-height: 1.3;
}

.problem-card p {
    margin: 0;
    color: var(--assamble-slate-700);
}

.steps {
    position: relative;
    display: grid;
    max-width: 930px;
    padding: 0;
    margin: 55px auto 0;
    gap: 18px;
    list-style: none;
}

.steps::before {
    position: absolute;
    z-index: 0;
    top: 45px;
    bottom: 45px;
    left: 35px;
    width: 2px;
    background: linear-gradient(var(--assamble-teal-500), var(--assamble-coral-500));
    content: "";
}

.step {
    position: relative;
    z-index: 1;
    display: grid;
    padding: 27px 32px 27px 20px;
    align-items: center;
    gap: 24px;
    background: var(--assamble-white);
    border: 1px solid var(--assamble-slate-200);
    border-radius: var(--assamble-radius-md);
    box-shadow: var(--assamble-shadow-sm);
    grid-template-columns: 64px 1fr;
}

.step__number {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--assamble-white);
    background: linear-gradient(135deg, var(--assamble-teal-500), var(--assamble-teal-700));
    border: 6px solid var(--assamble-white);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(17, 157, 161, .25);
    font-weight: 850;
}

.step h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.step p {
    margin: 0;
    color: var(--assamble-slate-700);
}

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

.example-card {
    display: flex;
    min-height: 350px;
    padding: 28px;
    flex-direction: column;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--assamble-radius-md);
    backdrop-filter: blur(8px);
}

.example-card__tag {
    align-self: flex-start;
    padding: 5px 9px;
    color: var(--assamble-teal-200);
    background: rgba(67, 196, 199, .13);
    border-radius: 999px;
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.example-card h3 {
    margin: 20px 0 10px;
    color: var(--assamble-white);
    font-size: 1.25rem;
    line-height: 1.3;
}

.example-card > p {
    margin: 0;
    color: rgba(255, 255, 255, .69);
}

.example-card__outcome {
    display: flex;
    padding-top: 20px;
    margin-top: auto;
    flex-direction: column;
    gap: 5px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.example-card__outcome strong {
    color: var(--assamble-teal-200);
    font-size: .75rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.example-card__outcome span {
    color: var(--assamble-white);
    font-size: .91rem;
}

.feature-map {
    display: grid;
    overflow: hidden;
    background: var(--assamble-white);
    border: 1px solid var(--assamble-slate-200);
    border-radius: var(--assamble-radius-md);
    box-shadow: var(--assamble-shadow-sm);
}

.feature-row {
    display: grid;
    padding: 24px 28px;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid var(--assamble-slate-200);
    grid-template-columns: minmax(190px, .75fr) 45px minmax(0, 1.4fr);
}

.feature-row:last-child {
    border-bottom: 0;
}

.feature-row > div > span {
    display: block;
    margin-bottom: 4px;
    color: var(--assamble-slate-500);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.feature-row h3,
.feature-row strong {
    display: block;
    margin: 0;
    color: var(--assamble-navy-950);
    font-size: 1.05rem;
    line-height: 1.35;
}

.feature-row p {
    margin: 5px 0 0;
    color: var(--assamble-slate-700);
    font-size: .9rem;
}

.feature-row__arrow {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--assamble-teal-900);
    background: var(--assamble-teal-100);
    border-radius: 50%;
    font-weight: 800;
}

.inline-cta {
    padding: 0 0 96px;
}

.inline-cta__card {
    display: flex;
    min-height: 250px;
    padding: 46px 54px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    color: var(--assamble-white);
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, .18), transparent 14rem),
        linear-gradient(135deg, var(--assamble-teal-700), var(--assamble-teal-500));
    border-radius: var(--assamble-radius-lg);
    box-shadow: var(--assamble-shadow-md);
}

.inline-cta .eyebrow {
    color: rgba(255, 255, 255, .75);
}

.inline-cta h2 {
    max-width: 720px;
    margin: 8px 0 8px;
    color: var(--assamble-white);
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    letter-spacing: -.035em;
    line-height: 1.15;
}

.inline-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .8);
}

.inline-cta .button {
    flex: 0 0 auto;
}

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

.faq-item {
    background: var(--assamble-white);
    border: 1px solid var(--assamble-slate-200);
    border-radius: var(--assamble-radius-sm);
    box-shadow: 0 4px 18px rgba(19, 57, 77, .045);
}

.faq-item summary {
    display: flex;
    padding: 20px 23px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--assamble-navy-950);
    font-weight: 720;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    color: var(--assamble-teal-900);
    background: var(--assamble-teal-100);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: transform .2s ease;
}

.faq-item[open] summary span {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 70px 22px 23px;
    margin: 0;
    color: var(--assamble-slate-700);
}

.related-section {
    padding-top: 20px;
}

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

.related-card {
    display: flex;
    min-height: 250px;
    padding: 24px;
    flex-direction: column;
    color: inherit;
    background: var(--assamble-white);
    border: 1px solid var(--assamble-slate-200);
    border-radius: var(--assamble-radius-md);
    box-shadow: var(--assamble-shadow-sm);
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.related-card:hover,
.related-card:focus-visible {
    border-color: var(--assamble-teal-500);
    box-shadow: var(--assamble-shadow-md);
    outline: none;
    transform: translateY(-4px);
}

.related-card > span {
    color: var(--assamble-teal-900);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.related-card h3 {
    margin: 10px 0 9px;
    font-size: 1.08rem;
    line-height: 1.3;
}

.related-card p {
    margin: 0 0 18px;
    color: var(--assamble-slate-700);
    font-size: .86rem;
}

.related-card strong {
    margin-top: auto;
    color: var(--assamble-coral-600);
    font-size: .82rem;
}

.page-hero--hub {
    min-height: 650px;
}

.hub-hero {
    max-width: 930px;
    padding: 80px 0 110px;
    margin-inline: auto;
    text-align: center;
}

.hub-hero h1 {
    margin-inline: auto;
}

.hub-hero .page-hero__lead {
    margin-inline: auto;
}

.geo-answer {
    max-width: 760px;
    padding: 20px 24px;
    margin: 30px auto 0;
    color: var(--assamble-navy-800);
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--assamble-teal-200);
    border-radius: var(--assamble-radius-sm);
    text-align: left;
}

.geo-answer strong {
    color: var(--assamble-teal-900);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.geo-answer p {
    margin: 5px 0 0;
}

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

.directory-grid--audiences {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.directory-card {
    position: relative;
    display: flex;
    min-height: 260px;
    padding: 28px;
    flex-direction: column;
    overflow: hidden;
    color: inherit;
    background: var(--assamble-white);
    border: 1px solid var(--assamble-slate-200);
    border-radius: var(--assamble-radius-md);
    box-shadow: var(--assamble-shadow-sm);
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.directory-card::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 100% 0, rgba(67, 196, 199, .19), transparent 70%);
    content: "";
}

.directory-card:hover,
.directory-card:focus-visible {
    border-color: var(--assamble-teal-500);
    box-shadow: var(--assamble-shadow-md);
    outline: none;
    transform: translateY(-5px);
}

.directory-card__number {
    color: var(--assamble-coral-600);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .1em;
}

.directory-card h3 {
    margin: 22px 0 9px;
    font-size: 1.22rem;
    letter-spacing: -.02em;
    line-height: 1.3;
}

.directory-card p {
    margin: 0 0 20px;
    color: var(--assamble-slate-700);
    font-size: .9rem;
}

.directory-card strong {
    margin-top: auto;
    color: var(--assamble-teal-900);
    font-size: .84rem;
}

.hub-flow {
    position: relative;
    display: grid;
    padding: 0;
    margin: 60px 0 0;
    gap: 14px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    list-style: none;
}

.hub-flow::before {
    position: absolute;
    z-index: 0;
    top: 26px;
    right: 9%;
    left: 9%;
    height: 2px;
    background: var(--assamble-teal-200);
    content: "";
}

.hub-flow li {
    position: relative;
    z-index: 1;
    padding: 0 13px;
    text-align: center;
}

.hub-flow span {
    display: grid;
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    place-items: center;
    color: var(--assamble-white);
    background: linear-gradient(135deg, var(--assamble-teal-500), var(--assamble-teal-700));
    border: 7px solid var(--assamble-white);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(17, 157, 161, .22);
    font-weight: 850;
}

.hub-flow strong {
    display: block;
    margin-bottom: 8px;
}

.hub-flow p {
    margin: 0;
    color: var(--assamble-slate-700);
    font-size: .83rem;
    line-height: 1.55;
}

.not-found {
    display: grid;
    min-height: 650px;
    padding: 100px 0;
    place-items: center;
    background: linear-gradient(180deg, var(--assamble-teal-100), var(--assamble-white));
    text-align: center;
}

.not-found__code {
    display: block;
    color: var(--assamble-teal-500);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 900;
    letter-spacing: -.08em;
    line-height: .8;
}

.not-found h1 {
    margin: 35px 0 12px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -.04em;
}

.not-found p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--assamble-slate-700);
}

.site-footer {
    padding: 76px max(20px, calc((100vw - var(--assamble-width)) / 2)) 26px;
    color: rgba(255, 255, 255, .74);
    background: var(--assamble-navy-950);
}

.site-footer__grid {
    display: grid;
    gap: 45px;
    grid-template-columns: minmax(270px, 1.35fr) repeat(3, minmax(150px, .7fr));
}

.brand--footer {
    display: inline-flex;
    padding: 8px;
    background: var(--assamble-white);
    border-radius: 12px;
}

.brand--footer img {
    width: 148px;
    height: 44px;
}

.site-footer__brand > p {
    max-width: 380px;
    margin: 22px 0;
    font-size: .93rem;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.site-footer__social a {
    color: var(--assamble-teal-200);
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
}

.site-footer h2 {
    margin: 5px 0 20px;
    color: var(--assamble-white);
    font-size: .9rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

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

.site-footer li,
.site-footer li a {
    color: rgba(255, 255, 255, .68);
    font-size: .86rem;
    text-decoration: none;
}

.site-footer li a:hover,
.site-footer li a:focus-visible {
    color: var(--assamble-white);
    text-decoration: underline;
    text-underline-offset: 4px;
}

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

.reveal {
    opacity: 1;
    transform: none;
}

.has-js .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease, transform .55s ease;
}

.has-js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1120px) {
    .site-header__bar {
        min-height: 70px;
    }

    .mobile-menu-button {
        display: block;
    }

    .site-navigation {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - 82px);
        padding: 16px;
        overflow-y: auto;
        align-items: stretch;
        background: var(--assamble-white);
        border: 1px solid var(--assamble-slate-200);
        border-radius: 0 0 20px 20px;
        box-shadow: var(--assamble-shadow-md);
    }

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

    .site-navigation > a,
    .nav-dropdown > summary {
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
    }

    .nav-mega {
        position: static;
        width: 100%;
        padding: 8px 0 0;
        border: 0;
        box-shadow: none;
        grid-template-columns: 1fr;
        transform: none;
    }

    .nav-mega__intro {
        padding: 18px;
    }

    .nav-mega__links,
    .nav-mega__links--compact {
        padding: 10px 0 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-mega__links small {
        display: none;
    }

    .nav-login {
        margin-left: 0;
    }

    .page-hero__grid {
        gap: 45px;
        grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
    }

    .directory-grid--audiences,
    .related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .page-shell,
    .site-header__bar {
        width: min(calc(100% - 28px), var(--assamble-width));
    }

    .page-hero__grid {
        min-height: auto;
        padding: 55px 0 75px;
        grid-template-columns: 1fr;
    }

    .page-hero h1,
    .hub-hero h1 {
        font-size: clamp(2.3rem, 9vw, 3.6rem);
    }

    .answer-card {
        max-width: 620px;
    }

    .content-section {
        padding: 72px 0;
    }

    .problem-grid,
    .example-grid,
    .directory-grid,
    .directory-grid--audiences,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .example-card {
        min-height: 300px;
    }

    .inline-cta__card {
        padding: 38px;
        align-items: flex-start;
        flex-direction: column;
    }

    .hub-flow {
        gap: 28px 12px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hub-flow::before {
        display: none;
    }

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

@media (max-width: 580px) {
    .brand img {
        width: 136px;
        height: 44px;
    }

    .nav-mega__links,
    .nav-mega__links--compact {
        grid-template-columns: 1fr;
    }

    .nav-mega__links a {
        min-height: 42px;
        padding: 9px 11px;
    }

    .breadcrumbs {
        padding-top: 20px;
    }

    .page-hero__grid {
        padding: 42px 0 60px;
    }

    .page-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .page-hero__actions .button {
        width: 100%;
    }

    .answer-card {
        padding: 27px 23px;
        border-radius: 22px;
    }

    .content-section {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .problem-grid,
    .example-grid,
    .directory-grid,
    .directory-grid--audiences,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        min-height: auto;
        padding: 26px 23px 26px 64px;
    }

    .card-number {
        top: 27px;
        left: 22px;
    }

    .step {
        padding: 22px 20px 22px 14px;
        gap: 15px;
        grid-template-columns: 54px 1fr;
    }

    .steps::before {
        left: 28px;
    }

    .example-card,
    .directory-card,
    .related-card {
        min-height: auto;
    }

    .example-card__outcome,
    .directory-card strong,
    .related-card strong {
        margin-top: 25px;
    }

    .feature-row {
        padding: 22px;
        gap: 10px;
        grid-template-columns: 1fr;
    }

    .feature-row__arrow {
        width: 30px;
        height: 30px;
        transform: rotate(90deg);
    }

    .inline-cta {
        padding-bottom: 60px;
    }

    .inline-cta__card {
        padding: 31px 24px;
        border-radius: 23px;
    }

    .faq-item summary {
        padding: 18px;
    }

    .faq-item p {
        padding: 0 18px 20px;
    }

    .hub-hero {
        padding: 55px 0 75px;
    }

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

    .hub-flow li {
        display: grid;
        text-align: left;
        grid-template-columns: 50px 1fr;
        column-gap: 15px;
    }

    .hub-flow span {
        margin: 0;
        grid-row: span 2;
    }

    .hub-flow strong {
        align-self: end;
    }

    .site-footer {
        padding-top: 55px;
    }

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

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
