:root {
            --navy: #071832;
            --navy-2: #0d2447;
            --red: #e01612;
            --red-dark: #b70000;
            --gold: #ffc83d;
            --gold-dark: #d79a00;
            --sky: #42c8ff;
            --mint: #6ee7b7;
            --paper: #ffffff;
            --soft: #f6f8fb;
            --ink: #111827;
            --muted: #5b6475;
            --line: rgba(7, 24, 50, 0.12);
            --shadow: 0 24px 70px rgba(7, 24, 50, 0.12);
            --glow: 0 24px 80px rgba(255, 200, 61, 0.18);
            --radius: 24px;
            --max: 1140px;
            --team-accent: var(--red);
            --team-accent-soft: rgba(224, 22, 18, 0.12);
            --team-spark: var(--gold);
        }

        * { 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: var(--paper);
            color: var(--navy);
            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: var(--navy);
            background: radial-gradient(circle at 35% 30%, #fff 0, var(--gold) 42%, var(--red) 100%);
            box-shadow: 0 14px 34px rgba(224, 22, 18, 0.18);
        }

        .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(--red);
        }

        .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: var(--red);
            box-shadow: 0 16px 34px rgba(224, 22, 18, 0.24);
        }

        .button--primary:hover,
        .button--primary:focus {
            background: var(--red-dark);
        }

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

        .button--glow {
            color: var(--navy);
            background: var(--gold);
            box-shadow: 0 20px 46px rgba(255, 200, 61, 0.26);
        }

        .button--glow:hover,
        .button--glow:focus {
            background: #ffd86f;
        }

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

        .hero {
            position: relative;
            isolation: isolate;
            color: #fff;
            background:
                radial-gradient(circle at 84% 18%, rgba(255, 200, 61, 0.72), transparent 28rem),
                radial-gradient(circle at 18% 84%, rgba(66, 200, 255, 0.42), transparent 28rem),
                linear-gradient(135deg, var(--navy) 0%, #111a38 48%, #b40707 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: 650px;
            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(--red);
            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: 850px;
            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: 700px;
            color: rgba(255,255,255,0.88);
            font-size: clamp(1.08rem, 2vw, 1.28rem);
        }

        .hero__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.95);
            border: 1px solid rgba(255,255,255,0.42);
            box-shadow: var(--shadow), var(--glow);
        }

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

        .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 p:last-child { margin-bottom: 0; }

        .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(--gold);
            box-shadow: 0 0 0 5px rgba(255, 200, 61, 0.18);
        }

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

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

        .section__header {
            max-width: 800px;
            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;
        }

        .promise-grid,
        .audience-grid,
        .steps-grid,
        .values-grid,
        .faq-grid {
            display: grid;
            gap: 1rem;
        }

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

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

        .audience-grid,
        .steps-grid,
        .values-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

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

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

        .card,
        .feature-card,
        .route-card,
        .step-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;
        }

        .card,
        .step-card,
        .faq-card {
            padding: 1.35rem;
        }

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

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

        .feature-card {
            min-height: 100%;
            display: flex;
            flex-direction: column;
            padding: clamp(1.2rem, 2.4vw, 1.55rem);
            transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(224, 22, 18, 0.34);
            box-shadow: var(--shadow);
        }

        .feature-card__mark {
            width: 50px;
            height: 50px;
            display: grid;
            place-items: center;
            margin-bottom: 1rem;
            border-radius: 17px;
            color: var(--navy);
            background: linear-gradient(135deg, #fff, var(--gold));
            font-weight: 950;
            box-shadow: 0 10px 28px rgba(255, 200, 61, 0.18);
        }

        .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,200,61,0.66), transparent 28rem),
                linear-gradient(135deg, var(--navy), #121b39);
            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);
        }

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

        .route-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            padding: clamp(1.25rem, 2.8vw, 1.7rem);
            color: var(--navy);
            text-decoration: none;
            transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
        }

        .route-card:hover,
        .route-card:focus {
            transform: translateY(-5px);
            border-color: rgba(224, 22, 18, 0.38);
            box-shadow: var(--shadow);
            outline: none;
        }

        .route-card__code {
            width: fit-content;
            margin-bottom: 1rem;
            border-radius: 999px;
            padding: 0.34rem 0.65rem;
            color: var(--navy);
            background: var(--gold);
            font-size: 0.78rem;
            font-weight: 950;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .card-action {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid var(--line);
            color: var(--navy);
            font-weight: 950;
        }

        .card-action span:last-child {
            color: var(--red);
            font-size: 1.25rem;
            transition: transform 180ms ease;
        }

        .route-card:hover .card-action span:last-child,
        .route-card:focus .card-action span:last-child {
            transform: translateX(4px);
        }

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

        .cta h2 { color: #fff; }

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

        .cta__actions {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.85rem;
            margin-top: 1.6rem;
        }

        .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) {
            .features-grid,
            .promise-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

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

            .steps-grid,
            .values-grid,
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 720px) {
            .nav__links a:not(.button) {
                display: none;
            }

            .brand small {
                display: none;
            }

            .hero__inner {
                min-height: auto;
            }

            .features-grid,
            .promise-grid,
            .audience-grid,
            .routes-grid {
                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;
    }
}

/* Who it helps */
.audience-page-hero {
    position: relative;
    isolation: isolate;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 16%, rgba(255, 200, 61, .68), transparent 27rem),
        radial-gradient(circle at 8% 90%, rgba(66, 200, 255, .36), transparent 30rem),
        linear-gradient(135deg, var(--navy), #121b39 55%, #7f0909);
}

.audience-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    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 94%);
}

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

.audience-page-hero__copy h1 {
    max-width: 820px;
    font-size: clamp(3rem, 6.5vw, 5.8rem);
}

.audience-page-hero .eyebrow { color: rgba(255, 255, 255, .82); }

.audience-helper-scene {
    position: relative;
    min-height: 470px;
}

.audience-helper-scene::before {
    content: "";
    position: absolute;
    inset: 4rem 1rem 3.5rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .16), transparent 68%);
    box-shadow: inset 0 0 80px rgba(255, 255, 255, .08);
}

.audience-helper-scene__portrait {
    position: absolute;
    z-index: 2;
}

.audience-helper-scene__portrait--navi {
    top: .5rem;
    left: 1.5rem;
}

.audience-helper-scene__portrait--mira {
    top: 8.5rem;
    right: 1rem;
}

.audience-helper-scene__bubble {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 3;
    width: min(100%, 21rem);
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, .44);
    border-radius: 22px 22px 4px 22px;
    color: var(--navy);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
}

.audience-helper-scene__bubble .eyebrow {
    margin-bottom: .55rem;
    color: var(--red);
}

.audience-helper-scene__bubble p:last-child { margin-bottom: 0; }

.home-audience-link {
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--muted);
    text-align: center;
}

.home-audience-link p { margin-bottom: 0; }

.home-audience-link a,
.uk-guidance-card__note a {
    color: var(--red-dark);
    font-weight: 900;
    text-underline-offset: .2em;
}

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

.audience-path {
    position: relative;
    min-height: 100%;
    padding: clamp(1.45rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--paper);
    box-shadow: 0 14px 38px rgba(7, 24, 50, .07);
    scroll-margin-top: 6rem;
}

.audience-path__number {
    position: absolute;
    top: 1.35rem;
    right: 1.45rem;
    color: rgba(7, 24, 50, .12);
    font-size: 2.15rem;
    font-weight: 950;
    line-height: 1;
}

.audience-path .eyebrow { padding-right: 3rem; }

.audience-path h3 {
    max-width: 34rem;
    margin-bottom: .85rem;
    padding-right: 1rem;
    color: var(--navy);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.audience-path > p:not(.eyebrow) { color: var(--muted); }

.audience-path__example {
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    font-size: .95rem;
}

.next-call-story {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.next-call-story > div > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.04rem;
}

.next-call-steps {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: call-step;
}

.next-call-steps li {
    position: relative;
    padding: 1.3rem 1.3rem 1.3rem 4.3rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--paper);
    box-shadow: 0 12px 30px rgba(7, 24, 50, .06);
    counter-increment: call-step;
}

.next-call-steps li::before {
    content: counter(call-step);
    position: absolute;
    top: 1.15rem;
    left: 1.2rem;
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: var(--gold);
    font-weight: 950;
}

.next-call-steps strong,
.next-call-steps span { display: block; }

.next-call-steps strong { color: var(--navy); }
.next-call-steps span { margin-top: .2rem; color: var(--muted); }

.uk-guidance-card {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(270px, .55fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(1.6rem, 5vw, 3.4rem);
    border: 1px solid rgba(224, 22, 18, .18);
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 200, 61, .28), transparent 20rem),
        linear-gradient(135deg, #fff, #fff9ed);
    box-shadow: var(--shadow);
}

.uk-guidance-card > div:first-child > p:not(.eyebrow) {
    max-width: 720px;
    color: var(--muted);
}

.uk-guidance-card__note {
    padding: 1.3rem;
    border: 1px solid rgba(7, 24, 50, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .78);
}

.uk-guidance-card__note p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.audience-button--quiet {
    color: var(--navy);
    border-color: var(--line);
    background: #fff;
}

.audience-button--quiet:hover,
.audience-button--quiet:focus {
    border-color: rgba(224, 22, 18, .35);
    box-shadow: 0 12px 28px rgba(7, 24, 50, .1);
}

@media (max-width: 940px) {
    .audience-page-hero__inner,
    .next-call-story,
    .uk-guidance-card {
        grid-template-columns: 1fr;
    }

    .audience-helper-scene {
        width: min(100%, 520px);
        margin-inline: auto;
    }
}

@media (max-width: 700px) {
    .audience-page-hero__inner { min-height: auto; }
    .audience-page-hero__copy h1 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
    .audience-helper-scene { min-height: 440px; }
    .audience-helper-scene__portrait--navi { left: 0; }
    .audience-helper-scene__portrait--mira { right: 0; }
    .audience-helper-scene__bubble { right: 0; }
    .audience-path-grid { grid-template-columns: 1fr; }
    .uk-guidance-card { border-radius: 24px; }
}
