.outreach-page {
    --night: #171a34;
    --night-soft: #282c50;
    --ink: #24243b;
    --paper: #f8f1e6;
    --white: #fffdf8;
    --sand: #ead9bd;
    --sky: #73b6d5;
    --coral: #e86755;
    --gold: #f4c34e;
    --sage: #2f8b82;
    --muted: #68667a;
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
    font-size: 17px;
    line-height: 1.65;
}

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

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

.outreach-page a {
    color: inherit;
}

.outreach-page button,
.outreach-page input,
.outreach-page select,
.outreach-page textarea {
    font: inherit;
}

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

.outreach-page h1,
.outreach-page h2,
.outreach-page h3 {
    font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    line-height: 1.05;
}

.outreach-page .outreach-skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--night);
    transform: translateY(-180%);
}

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

.outreach-page .outreach-header {
    position: relative;
    z-index: 20;
    background: var(--night);
    color: var(--white);
}

.outreach-page .outreach-nav-wrap {
    width: min(1180px, calc(100% - 2rem));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.outreach-page .outreach-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    max-width: 340px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.095em;
    line-height: 1.25;
    text-transform: uppercase;
}

.outreach-page .outreach-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.outreach-page .outreach-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    font-size: 0.86rem;
    font-weight: 700;
}

.outreach-page .outreach-nav a {
    text-decoration: none;
}

.outreach-page .outreach-nav a:hover,
.outreach-page .outreach-nav a:focus-visible {
    color: var(--gold);
}

.outreach-page .outreach-home-link {
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
}

.outreach-page .outreach-menu-toggle {
    display: none;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0.55rem;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.outreach-page .outreach-menu-lines,
.outreach-page .outreach-menu-lines::before,
.outreach-page .outreach-menu-lines::after {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

.outreach-page .outreach-menu-lines {
    position: relative;
}

.outreach-page .outreach-menu-lines::before,
.outreach-page .outreach-menu-lines::after {
    position: absolute;
    left: 0;
    content: "";
}

.outreach-page .outreach-menu-lines::before { top: -6px; }
.outreach-page .outreach-menu-lines::after { top: 6px; }

.outreach-page .outreach-hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 72% 44%, rgba(244, 195, 78, 0.36), transparent 20rem),
        linear-gradient(145deg, var(--night) 0%, #24294f 54%, #356477 100%);
    color: var(--white);
}

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

.outreach-page .outreach-hero::before {
    right: -12%;
    bottom: -48%;
    width: 78%;
    aspect-ratio: 1.8;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 50% 50% 0 0;
    box-shadow: 0 -44px 0 rgba(115, 182, 213, 0.08), 0 -88px 0 rgba(244, 195, 78, 0.05);
    transform: rotate(-4deg);
}

.outreach-page .outreach-hero::after {
    inset: auto 0 0;
    height: 90px;
    background: linear-gradient(176deg, transparent 49%, var(--paper) 50%);
}

.outreach-page .outreach-hero-grid {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 5.5rem 0 9rem;
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
    align-items: center;
    gap: clamp(2rem, 7vw, 7rem);
}

.outreach-page .outreach-eyebrow {
    margin-bottom: 1.25rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.outreach-page .outreach-hero h1 {
    max-width: 780px;
    margin-bottom: 1.2rem;
    font-size: clamp(3.15rem, 7.5vw, 6.8rem);
    font-weight: 700;
    letter-spacing: -0.055em;
}

.outreach-page .outreach-hero-copy {
    max-width: 670px;
    margin-bottom: 1.9rem;
    color: rgba(255, 253, 248, 0.84);
    font-size: clamp(1.04rem, 2vw, 1.27rem);
}

.outreach-page .outreach-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.outreach-page .outreach-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.76rem 1.2rem;
    border: 2px solid transparent;
    border-radius: 999px;
    background: var(--coral);
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.outreach-page .outreach-button:hover,
.outreach-page .outreach-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(23, 26, 52, 0.22);
}

.outreach-page .outreach-button-secondary {
    border-color: rgba(255, 255, 255, 0.42);
    background: transparent;
    color: var(--white);
}

.outreach-page .outreach-button-dark {
    background: var(--night);
}

.outreach-page .outreach-button-light {
    border-color: rgba(23, 26, 52, 0.18);
    background: var(--white);
    color: var(--night);
}

.outreach-page .outreach-trust-row {
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    list-style: none;
}

.outreach-page .outreach-trust-row li {
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.8rem;
    font-weight: 700;
}

.outreach-page .outreach-crest-stage {
    position: relative;
    display: grid;
    place-items: center;
}

.outreach-page .outreach-crest-stage::before {
    position: absolute;
    width: min(92%, 390px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.21);
    border-radius: 50%;
    box-shadow: 0 0 0 26px rgba(255, 255, 255, 0.035), 0 0 0 54px rgba(255, 255, 255, 0.025);
    content: "";
}

.outreach-page .outreach-crest-stage img {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
    filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.3));
}

.outreach-page .outreach-section {
    padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.outreach-page .outreach-container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.outreach-page .outreach-section-intro {
    max-width: 760px;
    margin-bottom: 3rem;
}

.outreach-page .outreach-section h2,
.outreach-page .outreach-arcade-hero h1,
.outreach-page .outreach-game-hero h1 {
    margin-bottom: 1.15rem;
    font-size: clamp(2.45rem, 5.8vw, 5rem);
    letter-spacing: -0.04em;
}

.outreach-page .outreach-section-intro > p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
}

.outreach-page .outreach-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.outreach-page .outreach-card {
    padding: clamp(1.4rem, 3vw, 2.3rem);
    border: 1px solid rgba(23, 26, 52, 0.1);
    border-radius: 1.2rem;
    background: rgba(255, 253, 248, 0.8);
    box-shadow: 0 12px 35px rgba(23, 26, 52, 0.055);
}

.outreach-page .outreach-card-number {
    display: inline-grid;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 2.4rem;
    place-items: center;
    border-radius: 50%;
    background: var(--night);
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 800;
}

.outreach-page .outreach-card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.65rem;
}

.outreach-page .outreach-card p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.outreach-page .outreach-horizon-band {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--sky);
    color: var(--night);
}

.outreach-page .outreach-horizon-band::after {
    position: absolute;
    right: -8%;
    bottom: -95%;
    width: 70%;
    aspect-ratio: 1.8;
    border: 3px solid rgba(255, 253, 248, 0.65);
    border-radius: 50% 50% 0 0;
    box-shadow: 0 -34px 0 rgba(255, 253, 248, 0.12), 0 -68px 0 rgba(255, 253, 248, 0.08);
    content: "";
}

.outreach-page .outreach-horizon-copy {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.outreach-page .outreach-horizon-copy h2 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.outreach-page .outreach-horizon-copy p {
    max-width: 670px;
    font-size: 1.15rem;
}

.outreach-page .outreach-journeys {
    background: var(--night);
    color: var(--white);
}

.outreach-page .outreach-journeys .outreach-section-intro > p:last-child,
.outreach-page .outreach-journeys .outreach-card p:last-child {
    color: rgba(255, 253, 248, 0.72);
}

.outreach-page .outreach-journeys .outreach-card {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: none;
}

.outreach-page .outreach-journeys .outreach-card-number {
    background: var(--gold);
    color: var(--night);
}

.outreach-page .outreach-play-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(270px, 0.95fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 1.6rem;
    background: var(--gold);
    color: var(--night);
}

.outreach-page .outreach-play-feature h3 {
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    letter-spacing: -0.04em;
}

.outreach-page .outreach-play-mark {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
}

.outreach-page .outreach-play-mark::before,
.outreach-page .outreach-play-mark::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.outreach-page .outreach-play-mark::before {
    width: 250px;
    height: 250px;
    border: 3px solid var(--night);
    box-shadow: 0 0 0 24px rgba(23, 26, 52, 0.1), 0 0 0 50px rgba(23, 26, 52, 0.055);
}

.outreach-page .outreach-play-mark::after {
    width: 116px;
    height: 116px;
    background: var(--coral);
}

.outreach-page .outreach-play-mark span {
    position: relative;
    z-index: 1;
    max-width: 180px;
    color: #fff;
    font-family: "Iowan Old Style", Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
}

.outreach-page .outreach-game-preview-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.outreach-page .outreach-game-card {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    padding: 1.65rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 1.2rem;
    background: var(--night-soft);
    color: var(--white);
}

.outreach-page .outreach-game-card:nth-child(2) { background: var(--sage); }
.outreach-page .outreach-game-card:nth-child(3) { background: var(--coral); }

.outreach-page .outreach-game-card::before {
    position: absolute;
    top: -65px;
    right: -55px;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.06);
    content: "";
}

.outreach-page .outreach-game-card h3,
.outreach-page .outreach-game-card p,
.outreach-page .outreach-game-card span {
    position: relative;
}

.outreach-page .outreach-game-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.55rem;
}

.outreach-page .outreach-game-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.94rem;
}

.outreach-page .outreach-game-card .outreach-button {
    align-self: flex-start;
    margin-top: 1rem;
    padding: 0.58rem 0.9rem;
    font-size: 0.78rem;
}

.outreach-page .outreach-status {
    align-self: flex-start;
    margin-bottom: auto;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.outreach-page .outreach-journal-strip {
    background: var(--white);
}

.outreach-page .outreach-journal-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.outreach-page .outreach-journal-grid h2 {
    margin-bottom: 0.6rem;
    font-size: clamp(2rem, 4.5vw, 3.7rem);
}

.outreach-page .outreach-contact {
    background: #e7dccb;
}

.outreach-page .outreach-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(350px, 1.2fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: start;
}

.outreach-page .outreach-contact-copy h2 {
    font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.outreach-page .outreach-inclusion-statement {
    margin: 2rem 0;
    padding-left: 1.2rem;
    border-left: 5px solid var(--coral);
    font-family: "Iowan Old Style", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.outreach-page .outreach-contact-form {
    padding: clamp(1.4rem, 4vw, 2.5rem);
    border-radius: 1.2rem;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(23, 26, 52, 0.12);
}

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

.outreach-page .outreach-field {
    margin-bottom: 1rem;
}

.outreach-page .outreach-field label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    font-weight: 800;
}

.outreach-page .outreach-field input,
.outreach-page .outreach-field select,
.outreach-page .outreach-field textarea {
    width: 100%;
    padding: 0.78rem 0.85rem;
    border: 1px solid rgba(23, 26, 52, 0.22);
    border-radius: 0.55rem;
    background: #fff;
    color: var(--ink);
}

.outreach-page .outreach-field input:focus,
.outreach-page .outreach-field select:focus,
.outreach-page .outreach-field textarea:focus {
    border-color: var(--sage);
    outline: 3px solid rgba(47, 139, 130, 0.18);
}

.outreach-page .outreach-field textarea {
    min-height: 150px;
    resize: vertical;
}

.outreach-page .outreach-form-note {
    margin: 0.9rem 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.outreach-page .outreach-direct-email {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 800;
}

.outreach-page .outreach-footer {
    padding: 3rem 0;
    background: var(--night);
    color: rgba(255, 253, 248, 0.76);
}

.outreach-page .outreach-footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.outreach-page .outreach-footer-brand {
    color: var(--white);
    font-weight: 800;
}

.outreach-page .outreach-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.86rem;
}

.outreach-page .outreach-footer a:hover,
.outreach-page .outreach-footer a:focus-visible {
    color: var(--gold);
}

.outreach-page .outreach-arcade-hero,
.outreach-page .outreach-game-hero {
    padding: clamp(5rem, 11vw, 9rem) 0;
    background:
        radial-gradient(circle at 80% 40%, rgba(232, 103, 85, 0.34), transparent 22rem),
        linear-gradient(145deg, var(--night), #343a6b);
    color: var(--white);
}

.outreach-page .outreach-arcade-hero p,
.outreach-page .outreach-game-hero p {
    max-width: 680px;
    color: rgba(255, 253, 248, 0.78);
    font-size: 1.15rem;
}

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

.outreach-page .outreach-archive-card {
    min-height: 330px;
    padding: clamp(1.6rem, 4vw, 2.8rem);
    display: flex;
    flex-direction: column;
    border-radius: 1.35rem;
    background: var(--night);
    color: var(--white);
}

.outreach-page .outreach-archive-card:nth-child(2) { background: #396c81; }
.outreach-page .outreach-archive-card:nth-child(3) { background: var(--sage); }
.outreach-page .outreach-archive-card:nth-child(4) { background: #aa4e48; }

.outreach-page .outreach-archive-card h2 {
    margin: auto 0 0.7rem;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.outreach-page .outreach-archive-card p {
    color: rgba(255, 255, 255, 0.76);
}

.outreach-page .outreach-archive-card .outreach-button {
    align-self: flex-start;
    margin-top: 0.6rem;
}

.outreach-page .outreach-archive-card .outreach-button[aria-disabled="true"] {
    border-color: rgba(255, 255, 255, 0.32);
    background: transparent;
    opacity: 0.75;
    cursor: default;
}

.outreach-page .outreach-trivia-shell {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(1.4rem, 5vw, 3.6rem);
    border: 1px solid rgba(23, 26, 52, 0.1);
    border-radius: 1.4rem;
    background: var(--white);
    box-shadow: 0 22px 70px rgba(23, 26, 52, 0.1);
}

.outreach-page .outreach-trivia-meta {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.outreach-page .outreach-progress-track {
    height: 8px;
    margin-bottom: 2.5rem;
    overflow: hidden;
    border-radius: 999px;
    background: #e9e2d7;
}

.outreach-page .outreach-progress-bar {
    width: 12.5%;
    height: 100%;
    border-radius: inherit;
    background: var(--coral);
    transition: width 220ms ease;
}

.outreach-page .outreach-question {
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 5vw, 3.55rem);
}

.outreach-page .outreach-answer-list {
    display: grid;
    gap: 0.7rem;
}

.outreach-page .outreach-answer {
    width: 100%;
    padding: 1rem 1.1rem;
    border: 2px solid rgba(23, 26, 52, 0.13);
    border-radius: 0.8rem;
    background: #fff;
    color: var(--ink);
    font-weight: 750;
    text-align: left;
    cursor: pointer;
}

.outreach-page .outreach-answer:hover,
.outreach-page .outreach-answer:focus-visible {
    border-color: var(--sage);
    outline: none;
}

.outreach-page .outreach-answer.is-chosen {
    border-color: var(--night);
    background: #eef0f8;
}

.outreach-page .outreach-answer.is-correct {
    border-color: var(--sage);
    background: #e1f2ec;
}

.outreach-page .outreach-answer:disabled {
    color: var(--ink);
    cursor: default;
}

.outreach-page .outreach-reveal {
    margin-top: 1.5rem;
    padding: 1.3rem;
    border-left: 5px solid var(--gold);
    border-radius: 0 0.75rem 0.75rem 0;
    background: #f7efd8;
}

.outreach-page .outreach-reveal h3 {
    margin-bottom: 0.4rem;
    font-size: 1.35rem;
}

.outreach-page .outreach-reveal p:last-of-type {
    margin-bottom: 1.1rem;
}

.outreach-page .outreach-game-complete {
    padding: 2rem 0 0;
    text-align: center;
}

.outreach-page .outreach-game-complete h2 {
    font-size: clamp(2.5rem, 6vw, 4.7rem);
}

.outreach-page .outreach-game-complete .outreach-actions {
    justify-content: center;
}

.outreach-page [hidden] {
    display: none !important;
}

.outreach-page :focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .outreach-page .outreach-menu-toggle { display: inline-flex; }

    .outreach-page .outreach-nav {
        position: absolute;
        top: 74px;
        right: 1rem;
        left: 1rem;
        padding: 1rem;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 0.8rem;
        background: var(--night-soft);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    .outreach-page .outreach-nav.is-open { display: flex; }

    .outreach-page .outreach-nav a {
        padding: 0.75rem;
    }

    .outreach-page .outreach-home-link {
        border: 0;
        border-radius: 0;
    }

    .outreach-page .outreach-hero-grid,
    .outreach-page .outreach-play-feature,
    .outreach-page .outreach-contact-grid {
        grid-template-columns: 1fr;
    }

    .outreach-page .outreach-hero-grid { text-align: center; }
    .outreach-page .outreach-actions,
    .outreach-page .outreach-trust-row { justify-content: center; }
    .outreach-page .outreach-hero-copy { margin-right: auto; margin-left: auto; }
    .outreach-page .outreach-crest-stage img { width: min(78vw, 360px); }
    .outreach-page .outreach-contact-copy { max-width: 680px; }
}

@media (max-width: 720px) {
    .outreach-page { font-size: 16px; }
    .outreach-page .outreach-brand { max-width: 235px; font-size: 0.68rem; }
    .outreach-page .outreach-brand img { width: 40px; height: 40px; }
    .outreach-page .outreach-hero { min-height: 0; }
    .outreach-page .outreach-hero-grid { padding-top: 4rem; }
    .outreach-page .outreach-card-grid,
    .outreach-page .outreach-game-preview-grid,
    .outreach-page .outreach-archive-grid,
    .outreach-page .outreach-field-grid { grid-template-columns: 1fr; }
    .outreach-page .outreach-journal-grid { grid-template-columns: 1fr; }
    .outreach-page .outreach-footer-grid { align-items: flex-start; flex-direction: column; }
    .outreach-page .outreach-card-number { margin-bottom: 1.5rem; }
    .outreach-page .outreach-play-mark { min-height: 260px; }
    .outreach-page .outreach-contact-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
    .outreach-page *,
    .outreach-page *::before,
    .outreach-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Outreach Arcade: shared game surfaces */
.outreach-page.arcade-game-page {
    background: #f2eadf;
}

.outreach-page .arcade-instructions {
    margin-bottom: 1.35rem;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.outreach-page .arcade-instructions h2 {
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
}

.outreach-page .arcade-instructions p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--muted);
}

.outreach-page .arcade-live-status {
    min-height: 1.7em;
    margin: 0.9rem 0 1.25rem;
    color: var(--muted);
    font-size: 0.91rem;
    font-weight: 700;
}

/* Gathered Into Love */
.outreach-page .gathered-hero {
    background:
        radial-gradient(circle at 84% 34%, rgba(244, 195, 78, 0.42), transparent 20rem),
        radial-gradient(circle at 70% 74%, rgba(232, 103, 85, 0.3), transparent 24rem),
        linear-gradient(145deg, #1e2346, #443864);
}

.outreach-page .gathered-game {
    padding: clamp(1.2rem, 4vw, 3rem);
    border: 1px solid rgba(23, 26, 52, 0.1);
    border-radius: 1.5rem;
    background: var(--white);
    box-shadow: 0 22px 70px rgba(23, 26, 52, 0.09);
}

.outreach-page .gathered-progress-track,
.outreach-page .road-progress-track {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #e5ded3;
}

.outreach-page .gathered-progress-bar,
.outreach-page .road-progress-bar {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--sky), var(--sage), var(--gold), var(--coral));
    transition: width 420ms ease;
}

.outreach-page .gathered-board {
    width: min(780px, 100%);
    min-height: 350px;
    margin: 1rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(88px, 1fr));
    gap: clamp(0.55rem, 1.7vw, 1rem);
    align-content: center;
}

.outreach-page .gathered-board[data-count="4"],
.outreach-page .gathered-board[data-count="3"] {
    max-width: 440px;
    grid-template-columns: repeat(2, minmax(110px, 1fr));
}

.outreach-page .gathered-board[data-count="2"] {
    max-width: 390px;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
}

.outreach-page .gathered-board[data-count="1"] {
    max-width: 240px;
    grid-template-columns: 1fr;
}

.outreach-page .gathered-tile {
    position: relative;
    min-width: 0;
    aspect-ratio: 1;
    overflow: hidden;
    border: 2px solid rgba(23, 26, 52, 0.1);
    border-radius: 1rem;
    background: #f8f3e9;
    color: var(--night);
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(23, 26, 52, 0.07);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.outreach-page .gathered-tile:not(:disabled):hover,
.outreach-page .gathered-tile:not(:disabled):focus-visible {
    z-index: 2;
    transform: translateY(-4px) rotate(-1deg);
    border-color: var(--sage);
    box-shadow: 0 14px 30px rgba(23, 26, 52, 0.15);
}

.outreach-page .gathered-tile.is-selected {
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(232, 103, 85, 0.18), 0 16px 30px rgba(23, 26, 52, 0.12);
    transform: translateY(-5px) scale(1.03);
}

.outreach-page .gathered-tile:disabled {
    cursor: default;
}

.outreach-page .gathered-tile:disabled:not(.gathered-tile-welcome) {
    opacity: 0.78;
}

.outreach-page .gathered-tile.is-entering {
    animation: gathered-arrive 520ms cubic-bezier(0.17, 0.89, 0.35, 1.38);
}

@keyframes gathered-arrive {
    from { opacity: 0; transform: scale(0.35) rotate(-12deg); }
    to { opacity: 1; transform: scale(1) rotate(0); }
}

.outreach-page .gathered-baby,
.outreach-page .gathered-face,
.outreach-page .gathered-welcome {
    position: absolute;
    inset: 14%;
    display: block;
}

.outreach-page .gathered-baby .gathered-head {
    position: absolute;
    z-index: 2;
    top: 5%;
    left: 50%;
    width: 42%;
    aspect-ratio: 1;
    border: 3px solid var(--night);
    border-radius: 50%;
    background: #f2c9a6;
    transform: translateX(-50%);
}

.outreach-page .gathered-baby .gathered-head::before {
    position: absolute;
    top: 23%;
    left: 26%;
    width: 48%;
    height: 18%;
    border-top: 3px solid #785240;
    border-radius: 50%;
    content: "";
}

.outreach-page .gathered-baby .gathered-head::after {
    position: absolute;
    right: 23%;
    bottom: 21%;
    left: 23%;
    height: 15%;
    border-bottom: 2px solid var(--night);
    border-radius: 50%;
    content: "";
}

.outreach-page .gathered-baby .gathered-swaddle {
    position: absolute;
    right: 10%;
    bottom: 3%;
    left: 10%;
    height: 68%;
    border: 3px solid var(--night);
    border-radius: 50% 50% 58% 58% / 38% 38% 72% 72%;
    background:
        linear-gradient(150deg, transparent 43%, rgba(255,255,255,0.65) 44% 48%, transparent 49%),
        linear-gradient(30deg, transparent 43%, rgba(255,255,255,0.65) 44% 48%, transparent 49%),
        #64a8d2;
}

.outreach-page .gathered-face {
    inset: 15%;
    border: 4px solid var(--night);
    border-radius: 50%;
    background: #edc49d;
    box-shadow: 0 0 0 10px rgba(244, 195, 78, 0.23);
}

.outreach-page .gathered-face .gathered-hair {
    position: absolute;
    inset: -8% -5% 30%;
    border-radius: 55% 55% 42% 42%;
    background: #6e4431;
}

.outreach-page .gathered-face .gathered-hair::after {
    position: absolute;
    top: 40%;
    right: 18%;
    bottom: -48%;
    left: 18%;
    border-radius: 30% 30% 52% 52%;
    background: #6e4431;
    content: "";
}

.outreach-page .gathered-face .gathered-features {
    position: absolute;
    z-index: 2;
    inset: 27% 18% 12%;
    border-radius: 50%;
    background: #edc49d;
    color: var(--night);
    font-size: clamp(1.45rem, 4vw, 2.5rem);
    line-height: 1.55;
    text-align: center;
}

.outreach-page .gathered-face .gathered-features::before {
    display: block;
    height: 12px;
    color: var(--night);
    font-family: sans-serif;
    font-size: 0.72em;
    letter-spacing: 0.45em;
    content: "• •";
}

.outreach-page .gathered-cross,
.outreach-page .gathered-heart {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: Georgia, serif;
    line-height: 1;
}

.outreach-page .gathered-cross {
    background: radial-gradient(circle, rgba(244, 195, 78, 0.28), transparent 62%);
    color: var(--night);
    font-size: clamp(4rem, 10vw, 7rem);
    text-shadow: 5px 6px 0 rgba(115, 182, 213, 0.35);
}

.outreach-page .gathered-heart {
    background: radial-gradient(circle, rgba(232, 103, 85, 0.2), transparent 65%);
    color: var(--coral);
    font-size: clamp(4.2rem, 11vw, 7.5rem);
    text-shadow: 0 8px 0 rgba(23, 26, 52, 0.1);
}

.outreach-page .gathered-celebration {
    padding: clamp(2rem, 6vw, 5rem) 1rem;
    text-align: center;
}

.outreach-page .gathered-celebration h2 {
    font-size: clamp(2.7rem, 6vw, 5rem);
}

.outreach-page .gathered-celebration > p:not(.outreach-eyebrow) {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
    color: var(--muted);
    font-size: 1.08rem;
}

.outreach-page .gathered-celebration .outreach-actions {
    justify-content: center;
}

.outreach-page .gathered-final-figure {
    position: relative;
    width: 250px;
    height: 245px;
    margin: 0 auto 2rem;
}

.outreach-page .gathered-final-glow {
    position: absolute;
    inset: 3% 6% 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.98) 0 22%, rgba(244,195,78,0.75) 23% 48%, rgba(232,103,85,0.28) 49% 67%, transparent 68%);
    animation: gathered-glow 2.2s ease-in-out infinite alternate;
}

@keyframes gathered-glow {
    to { transform: scale(1.08); filter: saturate(1.2); }
}

.outreach-page .gathered-final-head {
    position: absolute;
    z-index: 2;
    top: 41px;
    left: 91px;
    width: 68px;
    height: 76px;
    border: 4px solid var(--night);
    border-radius: 45% 45% 50% 50%;
    background: #edc49d;
    color: var(--night);
    font-size: 2.3rem;
    line-height: 1.45;
}

.outreach-page .gathered-final-head::before {
    position: absolute;
    inset: -13px -10px 32px;
    z-index: -1;
    border-radius: 50% 50% 35% 35%;
    background: #6e4431;
    content: "";
}

.outreach-page .gathered-final-body {
    position: absolute;
    z-index: 1;
    right: 62px;
    bottom: 8px;
    left: 62px;
    height: 142px;
    border: 4px solid var(--night);
    border-radius: 48% 48% 16% 16%;
    background: linear-gradient(135deg, var(--white) 50%, #dce9ee 51%);
}

.outreach-page .gathered-final-arm {
    position: absolute;
    z-index: 3;
    top: 124px;
    width: 96px;
    height: 22px;
    border: 4px solid var(--night);
    border-radius: 999px;
    background: var(--white);
}

.outreach-page .gathered-final-arm-left { left: 13px; transform: rotate(-25deg); }
.outreach-page .gathered-final-arm-right { right: 13px; transform: rotate(25deg); }

/* The Road to Welcome */
.outreach-page .road-hero {
    background:
        radial-gradient(circle at 82% 34%, rgba(244, 195, 78, 0.35), transparent 22rem),
        linear-gradient(145deg, #10131e, #343855);
}

.outreach-page .road-game {
    padding: clamp(1rem, 3vw, 2rem);
    border-radius: 1.5rem;
    background: var(--white);
    box-shadow: 0 22px 70px rgba(23, 26, 52, 0.11);
}

.outreach-page .road-instructions {
    align-items: center;
}

.outreach-page .road-progress-copy {
    flex: 0 0 auto;
    color: var(--night);
    font-size: 0.84rem;
    font-weight: 900;
}

.outreach-page .road-world {
    --journey: 0;
    position: relative;
    min-height: 390px;
    margin-top: 1rem;
    overflow: hidden;
    border: 5px solid var(--night);
    border-radius: 1.1rem;
    background: linear-gradient(to bottom, #4e7188 0 57%, #d9b96d 58% 100%);
    filter: grayscale(calc(1 - var(--journey))) saturate(calc(0.65 + var(--journey) * 0.55));
    cursor: pointer;
    isolation: isolate;
    touch-action: manipulation;
}

.outreach-page .road-world::before {
    position: absolute;
    inset: 0;
    z-index: 12;
    pointer-events: none;
    background: linear-gradient(rgba(255,255,255,0.06) 50%, rgba(0,0,0,0.08) 50%);
    background-size: 100% 6px;
    content: "";
    opacity: calc(0.7 - var(--journey) * 0.7);
}

.outreach-page .road-sun {
    position: absolute;
    z-index: 0;
    top: 38px;
    right: 9%;
    width: 92px;
    height: 92px;
    border: 5px solid var(--night);
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 18px rgba(244,195,78,0.15), 0 0 65px rgba(244,195,78,0.48);
}

.outreach-page .road-hills {
    position: absolute;
    right: -12%;
    left: -12%;
    border: 5px solid var(--night);
    border-bottom: 0;
    border-radius: 50% 50% 0 0;
}

.outreach-page .road-hills-back {
    z-index: 1;
    bottom: 116px;
    height: 205px;
    background: #779b7a;
    transform: rotate(2deg);
}

.outreach-page .road-hills-front {
    z-index: 2;
    bottom: 70px;
    height: 155px;
    background: #b48c58;
    transform: rotate(-2deg) translateX(-8%);
}

.outreach-page .road-ground {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100px;
    border-top: 5px solid var(--night);
    background:
        repeating-linear-gradient(165deg, transparent 0 45px, rgba(23,26,52,0.22) 46px 49px, transparent 50px 88px),
        #d4a95c;
}

.outreach-page .road-city {
    position: absolute;
    z-index: 3;
    right: 4%;
    bottom: 96px;
    height: 130px;
    display: flex;
    align-items: end;
    gap: 4px;
    opacity: clamp(0, calc((var(--journey) - 0.6) * 3), 1);
}

.outreach-page .road-city span {
    width: 42px;
    height: 75px;
    border: 4px solid var(--night);
    background: #e8d2a3;
}

.outreach-page .road-city span:nth-child(2) { height: 112px; }
.outreach-page .road-city span:nth-child(3) { width: 55px; height: 92px; }
.outreach-page .road-city span:nth-child(4) { height: 65px; }

.outreach-page .road-donkey {
    --donkey-jump: 0px;
    --donkey-scale: 1;
    position: absolute;
    z-index: 8;
    bottom: 69px;
    left: clamp(55px, 12vw, 145px);
    width: 112px;
    height: 92px;
    transform: translateY(var(--donkey-jump)) scale(var(--donkey-scale));
    transform-origin: 50% 100%;
    transition: opacity 180ms ease;
}

.outreach-page .road-donkey-body {
    position: absolute;
    top: 32px;
    left: 17px;
    width: 72px;
    height: 43px;
    border: 4px solid var(--night);
    border-radius: 45% 48% 38% 38%;
    background: #8b8e91;
}

.outreach-page .road-donkey-head {
    position: absolute;
    z-index: 2;
    top: 15px;
    right: 0;
    width: 39px;
    height: 44px;
    border: 4px solid var(--night);
    border-radius: 48% 48% 58% 45%;
    background: #a2a4a6;
}

.outreach-page .road-donkey-ear {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 12px;
    height: 28px;
    border: 4px solid var(--night);
    border-radius: 70% 70% 35% 35%;
    background: #a2a4a6;
}

.outreach-page .road-donkey-ear-one { right: 8px; transform: rotate(12deg); }
.outreach-page .road-donkey-ear-two { right: 27px; transform: rotate(-18deg); }

.outreach-page .road-donkey-eye {
    position: absolute;
    z-index: 4;
    top: 31px;
    right: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--night);
}

.outreach-page .road-donkey-leg {
    position: absolute;
    top: 69px;
    width: 11px;
    height: 24px;
    border: 4px solid var(--night);
    border-top: 0;
    background: #777b7f;
}

.outreach-page .road-donkey-leg-one { left: 29px; }
.outreach-page .road-donkey-leg-two { left: 70px; }

.outreach-page .road-donkey-tail {
    position: absolute;
    z-index: 0;
    top: 37px;
    left: 4px;
    width: 28px;
    height: 8px;
    border: 4px solid var(--night);
    border-right: 0;
    border-bottom: 0;
    transform: rotate(-35deg);
}

.outreach-page .road-donkey:not(.is-jumping) .road-donkey-leg-one,
.outreach-page .road-donkey:not(.is-jumping) .road-donkey-leg-two {
    animation: road-trot 300ms steps(2, end) infinite;
}

@keyframes road-trot {
    50% { transform: translateY(-5px); }
}

.outreach-page .road-donkey.is-stumbling { animation: road-stumble 620ms ease; }
.outreach-page .road-donkey.is-stepping { animation: road-step 180ms ease; }

@keyframes road-stumble {
    25% { transform: rotate(13deg) translateY(7px); }
    60% { transform: rotate(-6deg); }
}

@keyframes road-step {
    50% { transform: translateY(-13px); }
}

.outreach-page .road-obstacle {
    position: absolute;
    z-index: 7;
    bottom: 71px;
    left: 0;
    display: block;
}

.outreach-page .road-obstacle-stone {
    width: 48px;
    height: 35px;
    border: 4px solid var(--night);
    border-radius: 50% 55% 20% 20%;
    background: #70767d;
}

.outreach-page .road-obstacle-hay {
    width: 48px;
    height: 45px;
    border: 4px solid var(--night);
    background: var(--gold);
    box-shadow: inset 0 0 0 7px rgba(160,104,45,0.32);
}

.outreach-page .road-obstacle-shrub {
    width: 54px;
    height: 48px;
    border: 4px solid var(--night);
    border-radius: 50% 50% 10% 10%;
    background: var(--sage);
    clip-path: polygon(0 100%, 12% 45%, 27% 67%, 40% 10%, 55% 65%, 75% 28%, 100% 100%);
}

.outreach-page .road-pixel-veil {
    position: absolute;
    z-index: 11;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(23,26,52,0.16) 1px, transparent 1px),
        linear-gradient(rgba(23,26,52,0.16) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: calc(0.75 - var(--journey) * 0.75);
}

.outreach-page .road-world[data-phase="pixels"] *:not(.road-pixel-veil) {
    border-radius: 0;
}

.outreach-page .road-jesus {
    position: absolute;
    z-index: 6;
    right: 7%;
    bottom: 78px;
    width: 120px;
    height: 180px;
    opacity: clamp(0, calc((var(--journey) - 0.78) * 5), 1);
    transform: translateX(calc((1 - var(--journey)) * 80px));
}

.outreach-page .road-jesus-head {
    position: absolute;
    z-index: 2;
    top: 7px;
    left: 39px;
    width: 43px;
    height: 52px;
    border: 4px solid var(--night);
    border-radius: 46% 46% 50% 50%;
    background: #d8a77f;
    box-shadow: 0 0 0 9px rgba(244,195,78,0.45);
}

.outreach-page .road-jesus-head::after {
    position: absolute;
    inset: -8px -6px 23px;
    z-index: -1;
    border-radius: 50% 50% 30% 30%;
    background: #68422f;
    content: "";
}

.outreach-page .road-jesus-body {
    position: absolute;
    right: 25px;
    bottom: 0;
    left: 25px;
    height: 130px;
    border: 4px solid var(--night);
    border-radius: 48% 48% 8% 8%;
    background: linear-gradient(110deg, var(--white) 55%, #dceaf1 56%);
}

.outreach-page .road-jesus-arm {
    position: absolute;
    z-index: 3;
    top: 82px;
    width: 72px;
    height: 18px;
    border: 4px solid var(--night);
    border-radius: 999px;
    background: var(--white);
}

.outreach-page .road-jesus-arm-left { left: -10px; transform: rotate(-29deg); }
.outreach-page .road-jesus-arm-right { right: -10px; transform: rotate(29deg); }

.outreach-page .road-world.is-complete .road-donkey {
    left: calc(100% - 260px);
    transition: left 1.4s ease;
}

.outreach-page .road-controls {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.outreach-page .road-finish {
    margin-top: 1.5rem;
    padding: clamp(1.5rem, 4vw, 2.7rem);
    border-radius: 1rem;
    background: linear-gradient(135deg, #f7df9d, #f8c6a8);
    text-align: center;
}

.outreach-page .road-finish h2 {
    margin-bottom: 0.6rem;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.outreach-page .road-finish .outreach-actions { justify-content: center; }

/* Color the Stories */
.outreach-page .coloring-hero {
    background:
        radial-gradient(circle at 84% 28%, rgba(244,195,78,0.43), transparent 21rem),
        radial-gradient(circle at 68% 90%, rgba(115,182,213,0.35), transparent 25rem),
        linear-gradient(145deg, #25345b, #4f4268);
}

.outreach-page .coloring-studio {
    padding: clamp(1rem, 3vw, 2rem);
    border-radius: 1.5rem;
    background: var(--white);
    box-shadow: 0 22px 70px rgba(23, 26, 52, 0.1);
}

.outreach-page .coloring-scene-picker {
    margin-bottom: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.outreach-page .coloring-scene {
    min-width: 0;
    padding: 0.65rem;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    border: 2px solid rgba(23,26,52,0.12);
    border-radius: 0.8rem;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
}

.outreach-page .coloring-scene img {
    width: 70px;
    height: 70px;
    border-radius: 0.45rem;
    object-fit: cover;
}

.outreach-page .coloring-scene:hover,
.outreach-page .coloring-scene:focus-visible,
.outreach-page .coloring-scene.is-active {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232,103,85,0.14);
}

.outreach-page .coloring-workspace {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.outreach-page .coloring-controls {
    padding: 1.15rem;
    border-radius: 1rem;
    background: #eee6da;
}

.outreach-page .coloring-control-group + .coloring-control-group {
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(23,26,52,0.12);
}

.outreach-page .coloring-control-group h2 {
    margin-bottom: 0.65rem;
    font-family: "Avenir Next", Avenir, sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.outreach-page .coloring-palette {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.48rem;
}

.outreach-page .coloring-swatch {
    aspect-ratio: 1;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--swatch);
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(23,26,52,0.2);
}

.outreach-page .coloring-swatch[aria-pressed="true"] {
    box-shadow: 0 0 0 3px var(--night), 0 0 0 6px var(--gold);
    transform: scale(0.88);
}

.outreach-page .coloring-tool-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
}

.outreach-page .coloring-tool,
.outreach-page .coloring-action {
    min-height: 42px;
    padding: 0.55rem 0.6rem;
    border: 1px solid rgba(23,26,52,0.18);
    border-radius: 0.55rem;
    background: var(--white);
    color: var(--night);
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
}

.outreach-page .coloring-tool.is-active {
    border-color: var(--night);
    background: var(--night);
    color: var(--white);
}

.outreach-page .coloring-size-label {
    margin-top: 0.85rem;
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
}

.outreach-page .coloring-size-label + input {
    width: 100%;
    accent-color: var(--coral);
}

.outreach-page .coloring-action-grid {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
}

.outreach-page .coloring-action-primary {
    border-color: var(--coral);
    background: var(--coral);
    color: #fff;
}

.outreach-page .coloring-action:disabled {
    cursor: default;
    opacity: 0.45;
}

.outreach-page .coloring-canvas-panel {
    min-width: 0;
}

.outreach-page .coloring-canvas-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.outreach-page .coloring-canvas-heading .outreach-eyebrow { margin-bottom: 0.4rem; }

.outreach-page .coloring-canvas-heading h2 {
    margin-bottom: 0.65rem;
    font-size: clamp(1.35rem, 3vw, 2.2rem);
    text-align: right;
}

.outreach-page .coloring-canvas-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border: 2px solid rgba(23,26,52,0.2);
    border-radius: 0.7rem;
    background: #fff;
    box-shadow: inset 0 0 30px rgba(23,26,52,0.04);
}

.outreach-page .coloring-canvas-wrap canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.outreach-page .coloring-paint-canvas {
    z-index: 1;
    cursor: crosshair;
    touch-action: none;
}

.outreach-page .coloring-paint-canvas[data-tool="fill"] { cursor: cell; }
.outreach-page .coloring-paint-canvas[data-tool="eraser"] { cursor: not-allowed; }
.outreach-page .coloring-line-canvas { z-index: 2; pointer-events: none; }

.outreach-page .coloring-loading {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.94);
    color: var(--night);
    font-weight: 900;
}

@media (max-width: 900px) {
    .outreach-page .coloring-workspace { grid-template-columns: 1fr; }
    .outreach-page .coloring-controls { order: 2; }
    .outreach-page .coloring-canvas-panel { order: 1; }
    .outreach-page .coloring-control-group { max-width: 520px; }
    .outreach-page .coloring-palette { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 720px) {
    .outreach-page .arcade-instructions { align-items: flex-start; flex-direction: column; gap: 1rem; }
    .outreach-page .gathered-board { min-height: 300px; grid-template-columns: repeat(4, minmax(56px, 1fr)); }
    .outreach-page .gathered-board[data-count="4"],
    .outreach-page .gathered-board[data-count="3"],
    .outreach-page .gathered-board[data-count="2"] { grid-template-columns: repeat(2, minmax(90px, 1fr)); }
    .outreach-page .road-world { min-height: 300px; border-width: 4px; }
    .outreach-page .road-donkey { --donkey-scale: 0.83; left: 35px; }
    .outreach-page .road-jesus { right: 1%; transform: scale(0.82) translateX(calc((1 - var(--journey)) * 80px)); transform-origin: 50% 100%; }
    .outreach-page .road-city { right: 0; transform: scale(0.75); transform-origin: 100% 100%; }
    .outreach-page .road-world.is-complete .road-donkey { left: calc(100% - 190px); }
    .outreach-page .coloring-scene-picker { grid-template-columns: 1fr; }
    .outreach-page .coloring-scene { grid-template-columns: 58px 1fr; }
    .outreach-page .coloring-scene img { width: 58px; height: 58px; }
    .outreach-page .coloring-canvas-heading { align-items: flex-start; flex-direction: column; gap: 0; }
    .outreach-page .coloring-canvas-heading h2 { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
    .outreach-page .gathered-final-glow,
    .outreach-page .road-donkey-leg { animation: none !important; }
}
