:root {
            --navy: #071832;
            --navy-2: #101a3d;
            --purple: #4b008f;
            --purple-2: #8200d6;
            --purple-3: #9b00e8;
            --yellow: #ffd43b;
            --yellow-2: #ffe77a;
            --green: #00a65a;
            --red: #e01612;
            --paper: #ffffff;
            --soft: #f5f7fb;
            --ink: #111827;
            --muted: #64748b;
            --line: rgba(7, 24, 50, 0.13);
            --shadow: 0 24px 70px rgba(7, 24, 50, 0.12);
            --glow: 0 24px 80px rgba(130, 0, 214, 0.22);
            --radius: 24px;
            --max: 1140px;
            --team-accent: var(--purple);
            --team-accent-soft: rgba(75, 0, 143, 0.12);
            --team-spark: var(--yellow);
        }

        * { box-sizing: border-box; }

        html { scroll-behavior: smooth; }

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

        a { color: inherit; }

        .skip-link {
            position: absolute;
            left: 1rem;
            top: -4rem;
            z-index: 50;
            padding: 0.75rem 1rem;
            border-radius: 999px;
            background: #fff;
            color: var(--purple);
            transition: top 180ms ease;
        }

        .skip-link:focus { top: 1rem; }

        .wrap {
            width: min(calc(100% - 2rem), var(--max));
            margin-inline: auto;
        }

        .nav {
            position: sticky;
            top: 0;
            z-index: 20;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--line);
        }

        .nav__inner {
            min-height: 74px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--navy);
            text-decoration: none;
            font-weight: 950;
            letter-spacing: -0.045em;
        }

        .brand__mark {
            width: 46px;
            height: 46px;
            display: grid;
            place-items: center;
            border-radius: 15px;
            color: #fff;
            background: radial-gradient(circle at 35% 30%, var(--yellow) 0, var(--purple-2) 58%, var(--purple) 100%);
            box-shadow: 0 14px 34px rgba(130, 0, 214, 0.22);
        }

        .brand small {
            display: block;
            margin-top: 0.12rem;
            color: var(--muted);
            font-size: 0.72rem;
            font-weight: 850;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .nav__links {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.95rem;
            font-weight: 850;
        }

        .nav__links a { text-decoration: none; }

        .nav__links a:not(.button) {
            color: var(--navy);
            opacity: 0.78;
        }

        .nav__links a:not(.button):hover,
        .nav__links a:not(.button):focus {
            opacity: 1;
            color: var(--purple);
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 0.76rem 1rem;
            border-radius: 999px;
            border: 1px solid transparent;
            text-decoration: none;
            font-weight: 950;
            transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
        }

        .button:hover,
        .button:focus { transform: translateY(-2px); }

        .button--primary {
            color: #fff;
            background: linear-gradient(135deg, var(--purple-3), var(--purple));
            box-shadow: 0 16px 34px rgba(130, 0, 214, 0.24);
        }

        .button--glow {
            color: var(--navy);
            background: linear-gradient(135deg, var(--yellow-2), var(--yellow));
            box-shadow: 0 20px 46px rgba(255, 212, 59, 0.28);
        }

        .button--ghost {
            color: #fff;
            border-color: rgba(255,255,255,0.28);
            background: rgba(255,255,255,0.08);
        }

        .button--light {
            color: var(--purple);
            background: var(--paper);
            border-color: rgba(255,255,255,0.32);
        }

        .hero {
            position: relative;
            isolation: isolate;
            color: #fff;
            background:
                radial-gradient(circle at 84% 18%, rgba(255, 212, 59, 0.68), transparent 28rem),
                radial-gradient(circle at 12% 86%, rgba(155, 0, 232, 0.5), transparent 28rem),
                linear-gradient(135deg, var(--navy) 0%, #1f1049 48%, var(--purple) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background-image:
                linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
            background-size: 76px 76px;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,0.84), transparent 86%);
        }

        .hero__inner {
            min-height: 690px;
            display: grid;
            grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
            align-items: center;
            gap: clamp(2rem, 7vw, 5rem);
            padding-block: clamp(4rem, 9vw, 7.4rem);
        }

        .eyebrow {
            margin: 0 0 1rem;
            color: var(--purple);
            font-size: 0.78rem;
            font-weight: 950;
            letter-spacing: 0.22em;
            text-transform: uppercase;
        }

        .hero .eyebrow {
            color: rgba(255,255,255,0.84);
        }

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

        h1 {
            max-width: 900px;
            margin-bottom: 1.45rem;
            font-size: clamp(3.1rem, 8.1vw, 6.8rem);
            line-height: 0.94;
            letter-spacing: -0.078em;
        }

        .hero__lead {
            max-width: 720px;
            color: rgba(255,255,255,0.88);
            font-size: clamp(1.08rem, 2vw, 1.28rem);
        }

        .hero__actions,
        .cta__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
            margin-top: 2rem;
        }

        .hero-card {
            padding: clamp(1.45rem, 4vw, 2.4rem);
            border-radius: var(--radius);
            color: var(--navy);
            background: rgba(255,255,255,0.96);
            border: 1px solid rgba(255,255,255,0.42);
            box-shadow: var(--shadow), var(--glow);
        }

        .hero-card .eyebrow { color: var(--purple); }

        .hero-card h2 {
            margin-bottom: 1rem;
            font-size: clamp(1.9rem, 3.7vw, 2.8rem);
            line-height: 1.02;
            letter-spacing: -0.065em;
        }

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

        .hero-card__list {
            display: grid;
            gap: 0.72rem;
            margin: 1.3rem 0 0;
            padding: 0;
            list-style: none;
        }

        .hero-card__list li {
            display: flex;
            align-items: flex-start;
            gap: 0.62rem;
            color: var(--navy);
            font-weight: 780;
        }

        .hero-card__list li::before {
            content: "";
            width: 0.55rem;
            height: 0.55rem;
            flex: 0 0 auto;
            margin-top: 0.5rem;
            border-radius: 999px;
            background: var(--yellow);
            box-shadow: 0 0 0 5px rgba(255, 212, 59, 0.18);
        }

        .section {
            padding-block: clamp(4rem, 8vw, 6.5rem);
        }

        .section--soft { background: var(--soft); }

        .section__header {
            max-width: 820px;
            margin-bottom: clamp(2rem, 5vw, 3.2rem);
        }

        .section__header--centre {
            margin-inline: auto;
            text-align: center;
        }

        h2 {
            margin-bottom: 1rem;
            color: var(--navy);
            font-size: clamp(2.2rem, 5vw, 4rem);
            line-height: 1;
            letter-spacing: -0.066em;
        }

        .section__header p {
            color: var(--muted);
            font-size: 1.08rem;
        }

        .offer-strip {
            border-block: 1px solid rgba(255,255,255,0.18);
            background: linear-gradient(135deg, var(--purple), var(--purple-2));
            color: #fff;
            padding-block: 1rem;
        }

        .offer-strip__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .offer-strip strong {
            color: var(--yellow);
        }

        .grid {
            display: grid;
            gap: 1rem;
        }

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

        .card,
        .price-card,
        .faq-card {
            border: 1px solid var(--line);
            background: var(--paper);
            box-shadow: 0 12px 34px rgba(7, 24, 50, 0.06);
            border-radius: 22px;
            padding: 1.35rem;
        }

        .card h3,
        .price-card h3,
        .faq-card h3 {
            margin-bottom: 0.55rem;
            color: var(--navy);
            line-height: 1.12;
            letter-spacing: -0.04em;
        }

        .card p,
        .price-card p,
        .faq-card p {
            margin-bottom: 0;
            color: var(--muted);
        }

        .rate-card strong {
            display: block;
            color: var(--purple);
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1;
            letter-spacing: -0.07em;
            margin-bottom: 0.35rem;
        }

        .split-panel {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
            gap: clamp(1.5rem, 5vw, 4rem);
            align-items: center;
        }

        .panel {
            padding: clamp(1.5rem, 4vw, 2.6rem);
            border-radius: calc(var(--radius) + 6px);
            color: #fff;
            background:
                radial-gradient(circle at 84% 20%, rgba(255,212,59,0.62), transparent 28rem),
                linear-gradient(135deg, var(--navy), var(--purple));
            box-shadow: var(--shadow);
        }

        .panel h2 { color: #fff; }
        .panel p { color: rgba(255,255,255,0.84); }
        .panel .eyebrow { color: rgba(255,255,255,0.84); }

        .price-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            position: relative;
        }

        .price-card--highlight {
            border-color: rgba(255, 212, 59, 0.9);
            box-shadow: 0 18px 48px rgba(255, 212, 59, 0.18);
        }

        .price-card__amount {
            color: var(--navy);
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1;
            letter-spacing: -0.07em;
            font-weight: 950;
        }

        .price-card__bonus {
            margin: 0.55rem 0;
            color: var(--green);
            font-weight: 950;
        }

        .price-card__total {
            margin-top: 0.8rem;
            padding-top: 0.8rem;
            border-top: 1px solid var(--line);
            color: var(--navy);
            font-weight: 900;
        }

        .price-card__vat {
            margin-top: 0.25rem;
            color: var(--muted);
            font-size: 0.94rem;
        }

        .price-card__action {
            margin-top: auto;
            padding-top: 1rem;
        }

        .price-card__action .button {
            width: 100%;
        }

        .note {
            margin-top: 1rem;
            color: var(--muted);
            font-size: 0.96rem;
        }

        .cta {
            color: #fff;
            background:
                radial-gradient(circle at 82% 22%, rgba(255,212,59,0.66), transparent 30rem),
                linear-gradient(135deg, var(--navy), var(--purple));
            text-align: center;
        }

        .cta h2 { color: #fff; }

        .cta p {
            max-width: 760px;
            margin-inline: auto;
            color: rgba(255,255,255,0.84);
            font-size: 1.08rem;
        }

        .cta__actions {
            justify-content: center;
        }

        .footer {
            background: var(--navy);
            color: rgba(255,255,255,0.78);
            padding-block: 2rem;
            font-size: 0.95rem;
        }

        .footer__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer__links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer a {
            color: #fff;
            text-decoration: none;
            font-weight: 820;
        }

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

        @media (max-width: 940px) {
            .hero__inner,
            .split-panel,
            .grid--3 {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 720px) {
            .nav__links a:not(.button) { display: none; }
            .brand small { display: none; }
            .hero__inner { min-height: auto; }
            .grid--2,
            .grid--4 { grid-template-columns: 1fr; }
            h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }
        }
/* Shared tidy-up layer for consistent management across the CJG sites. */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line, rgba(17, 24, 39, .14));
    border-radius: 999px;
    color: var(--navy, var(--ink, #111827));
    background: var(--paper, #fff);
    box-shadow: 0 10px 26px rgba(17, 24, 39, .08);
    cursor: pointer;
}

.nav__toggle-icon,
.nav__toggle-icon::before,
.nav__toggle-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav__toggle-icon {
    position: relative;
}

.nav__toggle-icon::before,
.nav__toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav__toggle-icon::before {
    transform: translateY(-6px);
}

.nav__toggle-icon::after {
    transform: translateY(6px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon {
    transform: rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon::before {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon::after {
    transform: rotate(90deg);
}

.nav a:focus-visible,
.button:focus-visible,
.nav__toggle:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--primary, var(--gold, #f0b441)) 72%, white);
    outline-offset: 3px;
}

.not-found {
    min-height: 62vh;
    display: grid;
    align-items: center;
}

.not-found h1 {
    color: var(--navy, var(--ink, #111827));
    font-size: clamp(2.4rem, 7vw, 4.6rem);
    line-height: 1;
}

.not-found__actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

@media (max-width: 760px) {
    .nav__inner {
        position: relative;
    }

    .nav__toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .nav__links {
        position: absolute;
        top: calc(100% + .75rem);
        left: 0;
        right: 0;
        z-index: 40;
        display: none !important;
        flex-direction: column;
        align-items: stretch;
        gap: .45rem;
        padding: 1rem;
        border: 1px solid var(--line, rgba(17, 24, 39, .14));
        border-radius: min(var(--radius, 22px), 22px);
        background: var(--paper, #fff);
        box-shadow: var(--shadow, 0 22px 60px rgba(17, 24, 39, .16));
    }

    .nav__links.is-open {
        display: flex !important;
    }

    .nav__links a:not(.button) {
        display: flex !important;
        width: 100%;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: .65rem .8rem;
        border-radius: 999px;
        color: var(--navy, var(--ink, #111827));
        opacity: 1;
    }

    .nav__links .button {
        width: 100%;
        justify-content: center;
    }
}
.u-mt-sm {
    margin-top: .85rem;
}

.u-mt {
    margin-top: 1rem;
}

.u-mt-lg {
    margin-top: 1.2rem;
}

.cta__actions--start {
    justify-content: flex-start;
}

.radio-cover-widget {
    height: 150px;
}
/* Standard brand, menu and footer refinements. */
.brand-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.brand-logo__picture {
    display: block;
    width: min(220px, 54vw);
    overflow: hidden;
    line-height: 0;
}

.brand-logo__fallback {
    display: none;
    align-items: center;
    gap: .7rem;
    color: inherit;
    font-weight: 950;
    line-height: 1.05;
}

.brand-logo.has-image-error .brand-logo__picture,
.brand-logo.has-image-error > img {
    display: none;
}

.brand-logo.has-image-error .brand-logo__fallback {
    display: inline-flex;
}

.brand__logo {
    display: block;
    width: 100%;
    max-width: none;
    max-height: none;
    height: auto;
    aspect-ratio: 4 / 1;
    object-fit: contain;
}

.brand__region {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 26px;
    padding: .22rem .5rem;
    border: 1px solid rgba(59, 0, 132, .18);
    border-radius: 999px;
    color: #3b0084;
    background: rgba(255, 200, 61, .24);
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .06em;
}

.footer__inner {
    display: grid;
    grid-template-columns: minmax(440px, .95fr) minmax(0, 1.35fr);
    align-items: center;
    gap: 1.25rem 2rem;
}

.footer__identity {
    display: grid;
    justify-items: center;
    gap: .9rem;
    min-width: 0;
}

.footer__brand {
    display: inline-flex;
    color: #fff;
    text-decoration: none;
}

.footer__brand-logo {
    display: block;
    width: min(220px, 58vw);
    height: auto;
}

.footer__brand .brand-logo__fallback {
    color: #fff;
    font-size: 1.3rem;
}

.footer__legal {
    display: grid;
    justify-items: center;
    gap: .28rem;
    min-width: min(100%, 330px);
    text-align: center;
}

.footer__legal-main {
    color: #fff;
    font-weight: 850;
}

.footer__group {
    color: rgba(255, 255, 255, .72);
    font-size: .92rem;
}

.footer__links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: .7rem;
    margin-left: auto;
    text-align: right;
}

.footer__links a,
.footer__group a {
    color: #fff;
    text-decoration: none;
    font-weight: 850;
}

.footer__links a:hover,
.footer__links a:focus,
.footer__group a:hover,
.footer__group a:focus {
    text-decoration: underline;
    text-underline-offset: .22em;
}

@media (max-width: 900px) {
    .footer__inner {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .footer__inner,
    .footer__links {
        justify-content: center;
        text-align: center;
    }

    .footer__identity {
        width: 100%;
    }

    .footer__links {
        margin-left: 0;
    }
}

@media (max-width: 420px) {
    .brand-logo__picture {
        width: 48px;
    }

    .brand__logo {
        aspect-ratio: 1 / 1;
    }
}
.footer__right {
    display: grid;
    justify-items: center;
    gap: .42rem;
    width: 100%;
    min-width: 0;
    margin-left: 0;
}

.footer__right .footer__links {
    justify-content: center;
    width: 100%;
    margin-left: 0;
    text-align: center;
}

.footer__hosted {
    color: rgba(255, 255, 255, .72);
    font-size: .92rem;
    text-align: center;
}

.footer__vat {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    font-weight: 760;
    text-align: center;
}

.footer__hosted a {
    color: #fff;
    text-decoration: none;
    font-weight: 850;
}

.footer__hosted a:hover,
.footer__hosted a:focus {
    text-decoration: underline;
    text-underline-offset: .22em;
}

@media (max-width: 900px) {
    .footer__right {
        margin-left: 0;
        width: 100%;
    }
}

/* AI Helper team experience */

.button--outline {
    color: var(--navy);
    border-color: var(--line);
    background: var(--paper);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--team-accent);
    font-weight: 900;
    text-decoration: none;
}

.text-link:hover,
.text-link:focus {
    text-decoration: underline;
    text-underline-offset: .25em;
}

.helper-portrait {
    position: relative;
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: var(--portrait-size, 10rem);
    aspect-ratio: 1;
    border-radius: 50%;
    isolation: isolate;
}

.helper-portrait picture,
.helper-portrait__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.helper-portrait__image {
    z-index: 2;
    object-fit: contain;
}

.helper-portrait__fallback {
    position: absolute;
    inset: 5%;
    z-index: 1;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    color: var(--navy);
    background: radial-gradient(circle at 35% 28%, #fff 0, #f4eaff 48%, #dbc5ff 100%);
    box-shadow: 0 18px 48px rgba(7, 24, 50, .18);
    font-size: calc(var(--portrait-size, 10rem) * .24);
    font-weight: 950;
    letter-spacing: -.05em;
}

.helper-portrait.has-image-error picture {
    display: none;
}

.helper-portrait--hero { --portrait-size: clamp(14rem, 28vw, 19rem); }
.helper-portrait--feature { --portrait-size: 11rem; }
.helper-portrait--card { --portrait-size: 10rem; }
.helper-portrait--medium { --portrait-size: 8.5rem; }
.helper-portrait--small { --portrait-size: 5.5rem; }
.helper-portrait--mini { --portrait-size: 4rem; }
.helper-portrait--preview { --portrait-size: 6.5rem; }
.helper-portrait--home-preview { --portrait-size: 4.7rem; }

.home-helper-stage {
    position: relative;
    min-height: 610px;
    isolation: isolate;
}

.home-helper-stage__glow,
.character-stage__glow {
    position: absolute;
    inset: 8% 4% 24%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .4) 0, rgba(255, 255, 255, .12) 42%, transparent 72%);
    filter: blur(4px);
}

.home-helper-stage__portrait,
.character-stage__member {
    position: absolute;
    z-index: 2;
}

.home-helper-stage__portrait--lead {
    top: 2.4rem;
    left: 50%;
    z-index: 4;
    transform: translateX(-50%);
}

.home-helper-stage__portrait--one { top: .5rem; left: -1rem; }
.home-helper-stage__portrait--two { top: 6.5rem; right: -1rem; }
.home-helper-stage__portrait--three { top: 15rem; left: .6rem; }
.home-helper-stage__portrait--four { top: 16.5rem; right: 1.2rem; }

.home-helper-stage__note {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 6;
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, .52);
    border-radius: var(--radius);
    color: var(--navy);
    background: rgba(255, 255, 255, .95);
    box-shadow: var(--shadow), var(--glow);
    backdrop-filter: blur(18px);
}

.home-helper-stage__note .eyebrow {
    margin-bottom: .45rem;
    color: var(--team-accent);
}

.home-helper-stage__note h2 {
    margin-bottom: .55rem;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    letter-spacing: -.055em;
}

.home-helper-stage__note p {
    margin-bottom: .8rem;
    color: var(--muted);
}

.home-helper-stage__note .hero-card__list {
    grid-template-columns: 1fr;
    gap: .42rem;
    margin: .8rem 0 1rem;
    font-size: .9rem;
}

.home-team-showcase {
    position: relative;
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--team-spark) 48%, transparent), transparent 28rem),
        radial-gradient(circle at 10% 90%, color-mix(in srgb, var(--team-accent) 48%, transparent), transparent 30rem),
        linear-gradient(135deg, var(--navy), var(--navy-2));
    overflow: hidden;
}

.home-team-showcase h2 { color: #fff; }

.home-team-showcase__inner {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.home-team-showcase__copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .8);
    font-size: 1.08rem;
}

.home-team-showcase__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.8rem;
}

.home-team-showcase__actions .text-link { color: #fff; }

.home-team-showcase__departments {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.team-preview {
    display: flex;
    align-items: center;
    gap: .85rem;
    min-width: 0;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    color: var(--navy);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .15);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.team-preview:hover,
.team-preview:focus {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .23);
}

.team-preview__portraits {
    display: flex;
    flex: 0 0 7.1rem;
    align-items: center;
}

.team-preview__portraits .helper-portrait + .helper-portrait { margin-left: -2.4rem; }

.team-preview strong,
.team-preview small { display: block; }

.team-preview strong {
    line-height: 1.15;
    font-size: .97rem;
}

.team-preview small {
    margin-top: .22rem;
    color: var(--muted);
    font-weight: 750;
}

.team-page-hero {
    position: relative;
    isolation: isolate;
    color: #fff;
    background:
        radial-gradient(circle at 82% 12%, color-mix(in srgb, var(--team-spark) 64%, transparent), transparent 27rem),
        radial-gradient(circle at 8% 88%, color-mix(in srgb, var(--team-accent) 54%, transparent), transparent 30rem),
        linear-gradient(135deg, var(--navy), var(--navy-2) 52%, color-mix(in srgb, var(--team-accent) 72%, #21083c));
    overflow: hidden;
}

.team-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, #000, transparent 94%);
}

.team-page-hero__inner {
    min-height: 700px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
    padding-block: clamp(4rem, 8vw, 7rem);
}

.team-page-hero__copy h1 {
    max-width: 780px;
    margin-bottom: 1.4rem;
    font-size: clamp(3rem, 6.2vw, 5.7rem);
}

.team-page-hero .eyebrow { color: rgba(255, 255, 255, .8); }

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
    font-weight: 800;
}

.breadcrumbs a {
    color: #fff;
    text-underline-offset: .2em;
}

.character-stage {
    position: relative;
    min-height: 550px;
    isolation: isolate;
}

.character-stage__member--lead {
    top: 7.2rem;
    left: 50%;
    z-index: 5;
    transform: translateX(-50%);
}

.character-stage__member--top { top: -.5rem; right: .5rem; }
.character-stage__member--host-1 { top: 1.2rem; left: 1rem; }
.character-stage__member--host-2 { top: 11rem; left: -.5rem; }
.character-stage__member--host-3 { top: 13.5rem; right: -.5rem; }
.character-stage__member--host-4 { top: 21rem; right: 1rem; }
.character-stage__member--wing-1 { top: 1.6rem; left: 0; }
.character-stage__member--wing-2 { top: 16rem; right: 0; }

.character-stage__label {
    position: absolute;
    right: 50%;
    bottom: -.55rem;
    z-index: 6;
    min-width: 10rem;
    padding: .7rem .9rem;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 16px;
    color: var(--navy);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .2);
    font-weight: 950;
    text-align: center;
    transform: translateX(50%);
}

.character-stage__label small {
    display: block;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 800;
}

.core-team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.core-team-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1.4rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    scroll-margin-top: 9rem;
}

.core-team-card--hosts { grid-column: 1 / -1; }

.core-team-card .eyebrow { margin: .8rem 0 .5rem; }

.core-team-card h3,
.bio-card h3 {
    margin-bottom: .8rem;
    color: var(--navy);
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.core-team-card h3 small,
.bio-card h3 small {
    display: block;
    margin-top: .35rem;
    color: var(--muted);
    font-size: .47em;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.mini-portrait-row {
    display: flex;
    min-width: 11rem;
    align-items: center;
    justify-content: center;
}

.mini-portrait-row .helper-portrait + .helper-portrait { margin-left: -1.25rem; }

.helper-status {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: .42rem .7rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .02em;
}

.helper-status::before {
    content: "";
    width: .48rem;
    height: .48rem;
    margin-right: .4rem;
    border-radius: 50%;
    background: currentColor;
}

.helper-status--available {
    color: #087642;
    border-color: rgba(8, 118, 66, .18);
    background: rgba(16, 185, 129, .11);
}

.helper-status--training {
    color: #815b00;
    border-color: rgba(129, 91, 0, .16);
    background: rgba(255, 200, 61, .2);
}

.task-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.task-list li {
    padding: .42rem .65rem;
    border-radius: 999px;
    color: var(--navy);
    background: var(--soft);
    font-size: .78rem;
    font-weight: 800;
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.department-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 18px 52px rgba(7, 24, 50, .08);
    text-decoration: none;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.department-card:hover,
.department-card:focus {
    border-color: color-mix(in srgb, var(--team-accent) 35%, transparent);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.department-card__portraits {
    display: flex;
    min-height: 7rem;
    align-items: center;
}

.department-card__portraits .helper-portrait + .helper-portrait { margin-left: -1.8rem; }

.department-card__meta {
    margin: .75rem 0 .45rem;
    color: var(--team-accent);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.department-card h3 {
    margin-bottom: .65rem;
    color: var(--navy);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.department-card p { color: var(--muted); }
.department-card .card-action { margin-top: auto; padding-top: 1rem; }

.status-explainer__inner {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.status-explainer__copy {
    padding: clamp(1.4rem, 4vw, 2.4rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.status-explainer__copy p:last-child { margin-bottom: 0; }
.status-explainer__copy .helper-status { margin-right: .45rem; vertical-align: middle; }

.department-nav {
    position: sticky;
    top: 0;
    z-index: 12;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
}

.department-nav__inner {
    display: flex;
    gap: .65rem;
    padding-block: .8rem;
    overflow-x: auto;
    scrollbar-width: thin;
}

.department-nav a {
    flex: 0 0 auto;
    padding: .62rem .82rem;
    border-radius: 999px;
    color: var(--navy);
    background: var(--soft);
    font-size: .82rem;
    font-weight: 850;
    text-decoration: none;
}

.department-nav a:hover,
.department-nav a:focus,
.department-nav a[aria-current="page"] {
    color: #fff;
    background: var(--team-accent);
}

.bio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.bio-card {
    position: relative;
    display: grid;
    grid-template-columns: 10rem minmax(0, 1fr);
    gap: 1.25rem;
    min-width: 0;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 18px 50px rgba(7, 24, 50, .08);
    scroll-margin-top: 9.5rem;
}

.bio-card:target {
    border-color: var(--team-accent);
    box-shadow: 0 0 0 5px var(--team-accent-soft), var(--shadow);
}

.bio-card__portrait {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: .75rem;
}

.bio-card__body { min-width: 0; }
.bio-card__body .eyebrow { margin-bottom: .5rem; font-size: .67rem; }
.bio-card__body > p { color: var(--muted); }

.bio-card h4 {
    margin: 1.1rem 0 .6rem;
    color: var(--navy);
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bio-card .task-list { margin-top: 0; }

.bio-card__anchor {
    display: inline-block;
    margin-top: 1rem;
    color: var(--muted);
    font-size: .73rem;
    font-weight: 800;
    text-decoration: none;
}

.bio-card__anchor:hover,
.bio-card__anchor:focus { color: var(--team-accent); }

.department-next__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.department-next__inner > div:first-child { max-width: 720px; }

.department-next__actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: .75rem;
}

@keyframes helper-gentle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.home-helper-stage__portrait .helper-portrait,
.character-stage__member .helper-portrait {
    animation: helper-gentle-float 7s ease-in-out infinite;
}

.home-helper-stage__portrait:nth-of-type(even) .helper-portrait,
.character-stage__member:nth-of-type(even) .helper-portrait {
    animation-delay: -3.5s;
}

@media (max-width: 980px) {
    .hero__inner,
    .team-page-hero__inner,
    .home-team-showcase__inner {
        grid-template-columns: 1fr;
    }

    .home-helper-stage,
    .character-stage {
        width: min(100%, 610px);
        margin-inline: auto;
    }

    .home-team-showcase__copy { max-width: 780px; }

    .core-team-grid,
    .bio-grid { grid-template-columns: 1fr; }

    .core-team-card--hosts { grid-column: auto; }
}

@media (max-width: 700px) {
    .helper-portrait--hero { --portrait-size: 13.5rem; }
    .helper-portrait--feature { --portrait-size: 8.5rem; }
    .helper-portrait--card { --portrait-size: 8rem; }
    .helper-portrait--medium { --portrait-size: 7rem; }
    .helper-portrait--small { --portrait-size: 4.5rem; }
    .helper-portrait--preview { --portrait-size: 5.4rem; }

    .home-helper-stage { min-height: 540px; }
    .home-helper-stage__portrait--one { left: 0; }
    .home-helper-stage__portrait--two { right: 0; }
    .home-helper-stage__portrait--three { top: 13.5rem; left: 0; }
    .home-helper-stage__portrait--four { top: 14.5rem; right: 0; }

    .home-team-showcase__departments,
    .department-grid { grid-template-columns: 1fr; }

    .team-page-hero__inner { min-height: auto; padding-block: 3rem 4.5rem; }
    .team-page-hero__copy h1 { font-size: clamp(2.75rem, 14vw, 4.5rem); }

    .character-stage { min-height: 500px; }
    .character-stage__member--lead { top: 7.5rem; }
    .character-stage__member--top { right: 0; }
    .character-stage__member--host-1 { left: 0; }
    .character-stage__member--host-2 { top: 10rem; left: 0; }
    .character-stage__member--host-3 { top: 12rem; right: 0; }
    .character-stage__member--host-4 { top: 19rem; right: 0; }

    .core-team-card,
    .bio-card {
        grid-template-columns: 1fr;
    }

    .core-team-card { text-align: left; }
    .core-team-card > .helper-portrait { margin-inline: auto; }

    .mini-portrait-row { min-width: 0; }

    .status-explainer__inner { grid-template-columns: 1fr; }

    .department-next__inner {
        align-items: stretch;
        flex-direction: column;
    }

    .department-next__actions { flex-direction: row; flex-wrap: wrap; }
}

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

    .home-helper-stage__portrait .helper-portrait,
    .character-stage__member .helper-portrait {
        animation: none;
    }

    .team-preview,
    .department-card,
    .button {
        transition: none;
    }
}

/* Home-services opportunity library */

.home-services-page-header {
    --home-accent: #8b15d6;
    --home-accent-strong: #5b078d;
    --home-spark: #ffd43b;
    --home-mist: #f5edff;
}

.home-services-hero {
    position: relative;
    isolation: isolate;
    color: #fff;
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 212, 59, .72), transparent 26rem),
        radial-gradient(circle at 10% 92%, rgba(155, 0, 232, .5), transparent 31rem),
        linear-gradient(135deg, var(--navy) 0%, #1c1048 52%, var(--purple) 100%);
    overflow: hidden;
}

.home-services-hero::before,
.home-services-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.home-services-hero::before {
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 96%);
}

.home-services-hero::after {
    right: -8rem;
    bottom: -12rem;
    z-index: -1;
    width: 34rem;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    box-shadow:
        0 0 0 5rem rgba(255, 255, 255, .025),
        0 0 0 10rem rgba(255, 255, 255, .018);
}

.home-services-hero__inner {
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    align-items: center;
    gap: clamp(2rem, 7vw, 5.5rem);
    padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.home-services-hero__inner--wide {
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
}

.home-services-hero__inner--single {
    min-height: 510px;
    grid-template-columns: minmax(0, 920px);
}

.home-services-hero__copy h1 {
    max-width: 920px;
    font-size: clamp(3rem, 6.7vw, 6rem);
}

.home-services-hero--category .home-services-hero__copy h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
}

.home-services-hero .eyebrow,
.home-services-hero .breadcrumbs {
    color: rgba(255, 255, 255, .82);
}

.home-services-helper-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1.25rem;
    padding: clamp(1.35rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 30px 30px 8px 30px;
    color: var(--navy);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
}

.home-services-helper-card::before {
    content: "";
    position: absolute;
    right: 1.5rem;
    bottom: -1rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, .95) 0 51%, transparent 52%);
    transform: rotate(45deg);
}

.home-services-helper-card--compact {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.home-services-helper-card .helper-status { margin-bottom: .8rem; }
.home-services-helper-card .eyebrow { margin-bottom: .45rem; color: var(--purple); }

.home-services-helper-card h2 {
    margin-bottom: .65rem;
    color: var(--navy);
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    line-height: 1.05;
    letter-spacing: -.05em;
}

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

.home-services-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.home-services-feature > div:first-child > p:not(.eyebrow),
.split-panel > div:first-child:not(.panel) > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.04rem;
}

.home-services-story-card {
    position: relative;
    padding: clamp(1.6rem, 4vw, 2.5rem);
    border: 1px solid rgba(75, 0, 143, .16);
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 5%, rgba(255, 212, 59, .3), transparent 16rem),
        linear-gradient(145deg, #fff, #faf6ff);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.home-services-story-card::after {
    content: "";
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: .8rem;
    height: .8rem;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 .45rem rgba(255, 212, 59, .2);
}

.home-services-story-card h3 {
    max-width: 26rem;
    color: var(--navy);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.06;
    letter-spacing: -.05em;
}

.home-services-story-card p:not(.eyebrow) { color: var(--muted); }
.home-services-story-card p:last-child { margin-bottom: 0; }

.home-services-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin: 2rem 0 0;
}

.home-services-stat-row > div {
    min-width: 9rem;
    padding: .9rem 1rem;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 18px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
}

.home-services-stat-row dt,
.home-services-stat-row dd { margin: 0; }

.home-services-stat-row dt {
    color: #fff;
    font-size: 1.65rem;
    font-weight: 950;
    line-height: 1;
}

.home-services-stat-row dd {
    margin-top: .28rem;
    color: rgba(255, 255, 255, .76);
    font-size: .78rem;
    font-weight: 800;
}

.home-services-directory-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: none;
}

.home-services-directory-heading > div { max-width: 780px; }
.home-services-directory-heading > .text-link { flex: 0 0 auto; margin-bottom: .2rem; }

.directory-search {
    position: relative;
    z-index: 2;
    margin: clamp(1.5rem, 4vw, 2.5rem) 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 44px rgba(7, 24, 50, .08);
}

.directory-search label {
    display: block;
    margin: 0 0 .55rem .2rem;
    color: var(--navy);
    font-size: .8rem;
    font-weight: 900;
}

.directory-search__field {
    display: flex;
    gap: .7rem;
}

.directory-search input {
    width: 100%;
    min-height: 52px;
    padding: .82rem 1rem;
    border: 1px solid rgba(7, 24, 50, .2);
    border-radius: 15px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

.directory-search input::placeholder { color: #7b879b; }

.directory-search input:focus {
    border-color: var(--purple);
    outline: 3px solid rgba(130, 0, 214, .16);
    outline-offset: 1px;
}

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

.directory-search__status {
    margin: .55rem .2rem 0;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
}

.directory-empty {
    padding: 2rem;
    border: 1px dashed rgba(75, 0, 143, .3);
    border-radius: 22px;
    color: var(--muted);
    background: var(--home-mist);
    text-align: center;
}

.home-services-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-services-category-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 1.45rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(7, 24, 50, .065);
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-services-category-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--purple-3), var(--yellow));
    transform: scaleX(.28);
    transform-origin: left;
    transition: transform 180ms ease;
}

.home-services-category-card:hover,
.home-services-category-card:focus-within {
    border-color: rgba(75, 0, 143, .27);
    box-shadow: 0 24px 60px rgba(7, 24, 50, .12);
    transform: translateY(-4px);
}

.home-services-category-card:hover::before,
.home-services-category-card:focus-within::before { transform: scaleX(1); }

.home-services-category-card__count {
    margin-bottom: .75rem;
    color: var(--purple);
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-services-category-card h3 {
    color: var(--navy);
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.home-services-category-card h3 a { text-decoration: none; }
.home-services-category-card h3 a::after { content: ""; position: absolute; inset: 0; }
.home-services-category-card p:not(.home-services-category-card__count) { color: var(--muted); }

.home-services-category-card .card-action {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    margin-top: auto;
    padding-top: 1rem;
    color: var(--purple);
    font-size: .85rem;
    font-weight: 900;
    text-decoration: none;
}

.home-services-sector-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-services-sector-card {
    position: relative;
    min-width: 0;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(7, 24, 50, .06);
    scroll-margin-top: 7rem;
}

.home-services-sector-card--guide {
    border-color: rgba(75, 0, 143, .24);
    background:
        radial-gradient(circle at 96% 0, rgba(255, 212, 59, .23), transparent 12rem),
        #fff;
}

.home-services-sector-card:target {
    border-color: var(--purple);
    box-shadow: 0 0 0 5px rgba(130, 0, 214, .13), var(--shadow);
}

.home-services-sector-card__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.home-services-sector-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .4rem;
    margin-bottom: .55rem;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.home-services-guide-label {
    display: inline-flex;
    padding: .25rem .5rem;
    border-radius: 999px;
    color: #fff;
    background: var(--purple);
    letter-spacing: .02em;
    text-transform: none;
}

.home-services-sector-card h3 {
    margin-bottom: .75rem;
    color: var(--navy);
    font-size: clamp(1.3rem, 2.3vw, 1.75rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.home-services-sector-card > p { color: var(--muted); }

.home-services-sector-card__aliases {
    padding-top: .8rem;
    border-top: 1px solid var(--line);
    font-size: .86rem;
}

.home-services-sector-card__action { margin-top: 1rem; }

.sector-anchor-link {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--muted);
    background: var(--soft);
    font-weight: 900;
    text-decoration: none;
}

.sector-anchor-link:hover,
.sector-anchor-link:focus { color: #fff; background: var(--purple); }

@media (max-width: 980px) {
    .home-services-hero__inner,
    .home-services-hero__inner--wide,
    .home-services-feature {
        grid-template-columns: 1fr;
    }

    .home-services-helper-card {
        width: min(100%, 680px);
        margin-inline: auto;
    }

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

@media (max-width: 700px) {
    .home-services-hero__inner { min-height: auto; }
    .home-services-hero__copy h1,
    .home-services-hero--category .home-services-hero__copy h1 { font-size: clamp(2.65rem, 13vw, 4.4rem); }

    .home-services-helper-card { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .home-services-stat-row > div { flex: 1 1 8.5rem; }

    .home-services-directory-heading { align-items: flex-start; flex-direction: column; }
    .directory-search__field { align-items: stretch; flex-direction: column; }
    .home-services-category-grid,
    .home-services-sector-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .home-services-category-card,
    .home-services-category-card::before { transition: none; }
}

[data-directory-item][hidden],
[data-directory-clear][hidden],
.directory-empty[hidden] { display: none !important; }

.home-services-hero--sector {
    background:
        radial-gradient(circle at 87% 13%, rgba(255, 212, 59, .76), transparent 25rem),
        radial-gradient(circle at 8% 95%, rgba(130, 0, 214, .62), transparent 32rem),
        linear-gradient(135deg, #071832 0%, #21104d 54%, #510079 100%);
}

.home-services-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(310px, .88fr);
    align-items: stretch;
    gap: 1.25rem;
}

.home-services-story-card--large {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 6vw, 4rem);
}

.home-services-story-card--large h2 {
    max-width: 720px;
    margin-bottom: 1.1rem;
    color: var(--navy);
    font-size: clamp(2.1rem, 4.5vw, 3.75rem);
    line-height: 1;
    letter-spacing: -.06em;
}

.home-services-story-card--large p:last-child {
    max-width: 760px;
    font-size: 1.08rem;
}

.home-services-principle-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.6rem, 4vw, 2.5rem);
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 212, 59, .28), transparent 15rem),
        linear-gradient(145deg, var(--navy), #211047);
    box-shadow: var(--shadow);
}

.home-services-principle-card .eyebrow { color: var(--yellow); }

.home-services-principle-card h2 {
    margin-bottom: .8rem;
    color: #fff;
    font-size: clamp(1.7rem, 3.2vw, 2.45rem);
    line-height: 1.04;
    letter-spacing: -.05em;
}

.home-services-principle-card > p:not(.eyebrow) { color: rgba(255, 255, 255, .78); }

.home-services-principle-card .task-list li {
    color: #fff;
    background: rgba(255, 255, 255, .1);
}

.home-services-detail-grid .card {
    position: relative;
    overflow: hidden;
}

.home-services-detail-grid .card::before {
    content: "";
    position: absolute;
    top: 1.35rem;
    right: 1.35rem;
    width: .58rem;
    height: .58rem;
    border: 2px solid var(--purple);
    border-radius: 50%;
    opacity: .5;
}

.home-services-detail-grid .card h3 {
    max-width: 85%;
    color: var(--navy);
    font-size: 1.25rem;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.home-services-detail-grid .card p { margin-bottom: 0; color: var(--muted); }

.home-services-benefit-panel {
    display: grid;
    grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    margin-top: 1.25rem;
    padding: clamp(1.6rem, 5vw, 3rem);
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 212, 59, .32), transparent 19rem),
        linear-gradient(135deg, var(--purple), #26114d 70%);
    box-shadow: var(--glow);
}

.home-services-benefit-panel .eyebrow { color: rgba(255, 255, 255, .72); }

.home-services-benefit-panel h3 {
    color: #fff;
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.home-services-benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.home-services-benefit-list article {
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
}

.home-services-benefit-list h4 {
    margin: 0 0 .4rem;
    color: var(--yellow);
    font-size: 1rem;
}

.home-services-benefit-list p { margin-bottom: 0; color: rgba(255, 255, 255, .78); }

.home-services-helper-break {
    position: relative;
    padding-block: clamp(2rem, 5vw, 3.5rem);
    color: var(--navy);
    background:
        linear-gradient(90deg, rgba(255, 212, 59, .16) 1px, transparent 1px),
        linear-gradient(rgba(255, 212, 59, .16) 1px, transparent 1px),
        linear-gradient(135deg, #fff7cf, #f5eaff);
    background-size: 48px 48px, 48px 48px, auto;
}

.home-services-helper-break__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.25rem, 4vw, 2.5rem);
}

.home-services-helper-break__inner > div {
    position: relative;
    padding: clamp(1.4rem, 4vw, 2.2rem);
    border: 1px solid rgba(75, 0, 143, .14);
    border-radius: 8px 28px 28px 28px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 52px rgba(7, 24, 50, .1);
}

.home-services-helper-break__inner .eyebrow { margin: .6rem 0 .45rem; }

.home-services-helper-break__quote {
    max-width: 880px;
    margin-bottom: 0;
    color: var(--navy);
    font-size: clamp(1.25rem, 2.7vw, 1.8rem);
    font-weight: 850;
    line-height: 1.32;
    letter-spacing: -.025em;
}

.home-services-lifecycle {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.home-services-lifecycle > li {
    position: relative;
    grid-column: span 2;
    min-width: 0;
    padding: clamp(1.35rem, 3vw, 1.85rem);
    border: 1px solid rgba(75, 0, 143, .14);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 212, 59, .2), transparent 10rem),
        #fff;
    box-shadow: 0 14px 38px rgba(7, 24, 50, .065);
}

.home-services-lifecycle > li:nth-last-child(-n + 2) { grid-column: span 3; }

.home-services-lifecycle__number {
    width: 2.6rem;
    height: 2.6rem;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--purple-3));
    font-size: .76rem;
    font-weight: 950;
    letter-spacing: .05em;
    box-shadow: 0 9px 24px rgba(75, 0, 143, .2);
}

.home-services-lifecycle h3 {
    margin-bottom: .65rem;
    color: var(--navy);
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.home-services-lifecycle p {
    margin-bottom: .75rem;
    color: var(--muted);
}

.home-services-lifecycle p:last-child { margin-bottom: 0; }

.home-services-lifecycle__example {
    padding-top: .8rem;
    border-top: 1px solid var(--line);
    color: var(--navy) !important;
    font-size: .9rem;
    font-weight: 720;
}

.home-services-lifecycle__weather {
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid var(--line);
    color: var(--muted) !important;
    font-size: .88rem;
    line-height: 1.58;
}

.home-services-continuation-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
    align-items: center;
    gap: clamp(1.5rem, 5vw, 4rem);
    padding: clamp(1.7rem, 5vw, 3.2rem);
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 212, 59, .3), transparent 19rem),
        linear-gradient(135deg, var(--navy), var(--purple));
    box-shadow: var(--shadow);
}

.home-services-continuation-panel .eyebrow { color: var(--yellow); }

.home-services-continuation-panel h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.home-services-continuation-panel > div > p:not(.eyebrow) { color: rgba(255, 255, 255, .78); }

.home-services-continuation-panel .task-list li {
    color: #fff;
    background: rgba(255, 255, 255, .1);
}

.home-services-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
    margin: 2rem 0;
}

.home-services-metric-grid > div {
    position: relative;
    min-width: 0;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(7, 24, 50, .06);
    overflow: hidden;
}

.home-services-metric-grid > div::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--yellow));
}

.home-services-metric-grid dt {
    color: var(--navy);
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.04em;
}

.home-services-metric-grid dd {
    margin: .55rem 0 0;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 780;
    line-height: 1.38;
}

.home-services-metric-grid--method {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-services-research-note {
    padding: clamp(1.25rem, 3vw, 1.8rem);
    border: 1px solid rgba(75, 0, 143, .16);
    border-left: 5px solid var(--purple);
    border-radius: 6px 22px 22px 6px;
    background: linear-gradient(135deg, #faf6ff, #fffdf4);
}

.home-services-research-note p { color: var(--muted); }
.home-services-research-note p:last-of-type { margin-bottom: .7rem; }

.home-services-estimator-layout {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(360px, 1.22fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.home-services-estimator-layout > div:first-child > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.04rem;
}

.home-services-estimator {
    padding: clamp(1.25rem, 4vw, 2rem);
    border: 1px solid rgba(75, 0, 143, .18);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.home-services-estimator__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
}

.home-services-estimator label {
    display: grid;
    align-content: start;
    gap: .45rem;
    color: var(--navy);
    font-size: .78rem;
    font-weight: 880;
}

.home-services-estimator input {
    width: 100%;
    min-height: 48px;
    padding: .7rem .8rem;
    border: 1px solid rgba(7, 24, 50, .2);
    border-radius: 13px;
    color: var(--ink);
    background: #fff;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
}

.home-services-estimator input:focus {
    border-color: var(--purple);
    outline: 3px solid rgba(130, 0, 214, .15);
    outline-offset: 1px;
}

.home-services-estimator__result {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: .45rem 1rem;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--navy));
}

.home-services-estimator__result span {
    color: rgba(255, 255, 255, .72);
    font-size: .75rem;
    font-weight: 800;
}

.home-services-estimator__result strong {
    color: var(--yellow);
    font-size: 1.25rem;
    text-align: right;
}

.home-services-estimator .note {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: .76rem;
}

.home-services-inline-helper {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: .9rem;
    margin-top: 1.4rem;
    padding: .9rem 1rem;
    border: 1px solid rgba(75, 0, 143, .14);
    border-radius: 18px;
    background: #fff;
}

.home-services-inline-helper p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.home-services-inline-helper strong { color: var(--purple); }

.home-services-boundary-card {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    padding: clamp(1.6rem, 5vw, 3rem);
    border: 1px solid rgba(255, 212, 59, .55);
    border-radius: 30px;
    background:
        radial-gradient(circle at 4% 0, rgba(255, 212, 59, .3), transparent 18rem),
        linear-gradient(135deg, #fffdf2, #fff);
    box-shadow: 0 18px 50px rgba(7, 24, 50, .07);
}

.home-services-boundary-card p { color: var(--muted); }
.home-services-boundary-card .note { margin-bottom: 0; font-size: .82rem; }

.home-services-question-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-services-question-list article {
    position: relative;
    padding: clamp(1.3rem, 3vw, 1.8rem);
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(7, 24, 50, .055);
}

.home-services-question-list article::before {
    content: "?";
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--purple);
    background: var(--home-mist);
    font-weight: 950;
}

.home-services-question-list h3 {
    max-width: calc(100% - 2.5rem);
    color: var(--navy);
    font-size: 1.15rem;
    line-height: 1.15;
}

.home-services-question-list p { margin-bottom: 0; color: var(--muted); }

.home-services-sources {
    display: grid;
    grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: start;
}

.home-services-sources > div:first-child p:not(.eyebrow) { color: var(--muted); }

.home-services-researched-date {
    width: fit-content;
    padding: .6rem .75rem;
    border-radius: 12px;
    background: var(--soft);
    font-size: .82rem;
}

.home-services-source-list {
    display: grid;
    gap: .7rem;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: research-source;
}

.home-services-source-list li {
    position: relative;
    min-width: 0;
    padding: 1rem 1rem 1rem 3.4rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    counter-increment: research-source;
}

.home-services-source-list li::before {
    content: counter(research-source);
    position: absolute;
    top: .95rem;
    left: .95rem;
    width: 1.75rem;
    height: 1.75rem;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: var(--purple);
    font-size: .72rem;
    font-weight: 900;
}

.home-services-source-list a,
.home-services-source-list span {
    display: block;
    color: var(--navy);
    font-weight: 850;
    overflow-wrap: anywhere;
}

.home-services-source-list a { text-underline-offset: .2em; }
.home-services-source-list small { display: block; margin-top: .2rem; color: var(--muted); }

.home-services-method-steps {
    position: relative;
    display: grid;
    gap: 1rem;
    max-width: 920px;
    margin: 2rem auto 0;
    padding: 0;
    list-style: none;
}

.home-services-method-steps::before {
    content: "";
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    left: 1.7rem;
    width: 2px;
    background: linear-gradient(var(--purple), var(--yellow));
}

.home-services-method-steps li {
    position: relative;
    display: grid;
    grid-template-columns: 3.5rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.home-services-method-steps li > span {
    position: relative;
    z-index: 1;
    width: 3.5rem;
    height: 3.5rem;
    display: grid;
    place-items: center;
    border: 4px solid var(--soft);
    border-radius: 50%;
    color: #fff;
    background: var(--purple);
    font-weight: 950;
    box-shadow: 0 8px 22px rgba(75, 0, 143, .2);
}

.home-services-method-steps li > div {
    padding: 1.15rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
}

.home-services-method-steps h3 {
    margin-bottom: .35rem;
    color: var(--navy);
    font-size: 1.2rem;
}

.home-services-method-steps p { margin-bottom: 0; color: var(--muted); }

.home-services-method-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, .82fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.home-services-method-split > div > p:not(.eyebrow) { color: var(--muted); }
.home-services-method-split .home-services-research-note h3 { color: var(--navy); }

@media (max-width: 1080px) {
    .home-services-metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-services-metric-grid--method { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .home-services-story-layout,
    .home-services-benefit-panel,
    .home-services-estimator-layout,
    .home-services-boundary-card,
    .home-services-sources,
    .home-services-method-split,
    .home-services-continuation-panel {
        grid-template-columns: 1fr;
    }

    .home-services-lifecycle { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-services-lifecycle > li,
    .home-services-lifecycle > li:nth-last-child(-n + 2) { grid-column: span 1; }
    .home-services-lifecycle > li:last-child { grid-column: 1 / -1; }

    .home-services-helper-break__inner {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media (max-width: 700px) {
    .home-services-benefit-list,
    .home-services-estimator__fields,
    .home-services-question-list,
    .home-services-metric-grid,
    .home-services-metric-grid--method {
        grid-template-columns: 1fr;
    }

    .home-services-helper-break__inner > div { border-radius: 24px; }
    .home-services-estimator__result { grid-template-columns: 1fr; }
    .home-services-estimator__result strong { text-align: left; }
    .home-services-method-steps li { grid-template-columns: 3rem minmax(0, 1fr); }
    .home-services-method-steps li > span { width: 3rem; height: 3rem; }
    .home-services-method-steps::before { left: 1.45rem; }
    .home-services-lifecycle { grid-template-columns: 1fr; }
    .home-services-lifecycle > li:last-child { grid-column: auto; }
    .home-services-continuation-panel { border-radius: 24px; }
}
