:root {
    --navy: #021f52;
    --navy-2: #052b69;
    --blue: #1975d9;
    --blue-bright: #0b80e8;
    --orange: #fe7917;
    --orange-strong: #fe6b09;
    --green: #0eab4d;
    --green-dark: #03762c;
    --text: #4f5668;
    --soft-background: #edf1f7;
    --white: #ffffff;
    --header-height: 104px;
    --page-gutter: clamp(24px, 5vw, 52px);
    --shadow-soft: 0 10px 32px rgba(5, 28, 68, 0.10);
    --font: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    min-width: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

figure,
p,
h1,
h2 {
    margin: 0;
}

.container {
    width: min(100% - (2 * var(--page-gutter)), 1180px);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 10px;
    left: 12px;
    padding: 11px 16px;
    border-radius: 8px;
    color: var(--white);
    background: var(--navy);
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

:focus-visible {
    outline: 3px solid #ff9d47;
    outline-offset: 4px;
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(3, 37, 84, 0.05);
    box-shadow: 0 4px 14px rgba(5, 32, 72, 0.04);
    transition: box-shadow 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 24px rgba(5, 32, 72, 0.12);
}

.site-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 18px;
    color: var(--navy-2);
}

.brand__logo-frame {
    display: grid;
    width: 168px;
    height: 52px;
    flex: 0 0 auto;
    place-items: center;
}

.brand__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand__divider {
    width: 1px;
    height: 48px;
    flex: 0 0 auto;
    background: #8ba0bd;
}

.brand__department {
    display: flex;
    flex-direction: column;
    color: var(--navy-2);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-access {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    color: var(--navy-2);
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: color 180ms ease, background 180ms ease;
}

.header-access svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.header-access:hover,
.header-access:focus-visible {
    color: var(--orange-strong);
}

.hero {
    position: relative;
    min-height: 432px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 44%, rgba(227, 236, 249, 0.72), transparent 45%),
        linear-gradient(105deg, #f8fbff 0%, #ffffff 57%, #f2f6fb 100%);
}

.hero::before {
    position: absolute;
    z-index: 1;
    inset: 0 auto 0 0;
    width: 62%;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
    content: "";
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 432px;
    align-items: center;
}

.hero__content {
    width: 51%;
    padding: 42px 0 44px;
}

.eyebrow {
    color: var(--orange-strong);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.hero h1 {
    margin-top: 14px;
    color: var(--navy);
    font-size: clamp(42px, 4.8vw, 52px);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.04em;
}

.hero h1 span {
    color: var(--orange);
}

.hero h1 i {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 3px;
    border-radius: 999px;
    background: var(--blue-bright);
}

.hero__lead {
    width: min(100%, 390px);
    margin-top: 22px;
    color: #5a6172;
    font-size: 15.5px;
    line-height: 1.52;
}

.duo-rule {
    display: flex;
    width: 90px;
    height: 4px;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 999px;
}

.duo-rule i,
.duo-rule b {
    display: block;
    height: 100%;
}

.duo-rule i {
    width: 62%;
    background: var(--orange-strong);
}

.duo-rule b {
    flex: 1;
    background: var(--blue);
}

.hero__media {
    position: absolute;
    z-index: 2;
    inset: 0 0 0 auto;
    width: 53%;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 72% 25%, rgba(255, 255, 255, 0.22), transparent 25%),
        radial-gradient(circle at 28% 84%, rgba(255, 121, 23, 0.34), transparent 28%),
        linear-gradient(145deg, #0b7bd8 0%, #064597 50%, #032c70 100%);
    clip-path: polygon(32% 0, 100% 0, 100% 100%, 17% 100%, 0 50%);
}

.hero__media::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.10) 38%, rgba(255, 255, 255, 0.10) 42%, transparent 42%),
        radial-gradient(circle, rgba(255, 255, 255, 0.55) 1.2px, transparent 1.4px);
    background-size: auto, 17px 17px;
    content: "";
}

.hero__media::after {
    position: absolute;
    z-index: 3;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 31, 82, 0.14), transparent 27%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%, rgba(2, 22, 63, 0.12));
    content: "";
    pointer-events: none;
}

.hero__montage-card {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border: 4px solid rgba(255, 255, 255, 0.96);
    border-radius: 17px;
    background: var(--white);
    box-shadow: 0 20px 44px rgba(0, 21, 61, 0.38);
}

.hero__montage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__montage-card--building {
    z-index: 2;
    top: 84px;
    right: 29%;
    width: min(56%, 315px);
    aspect-ratio: 542 / 571;
    transform: rotate(-3.2deg);
}

.hero__montage-card--children {
    z-index: 1;
    top: 22px;
    right: 2.5%;
    width: min(50%, 280px);
    aspect-ratio: 594 / 742;
    transform: rotate(3deg);
}

.hero__orange-wedge {
    position: absolute;
    z-index: 4;
    inset: 0 0 auto auto;
    width: 40px;
    height: 82px;
    background: var(--orange-strong);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    pointer-events: none;
}

.hero__orange-wedge::after {
    position: absolute;
    top: 350px;
    right: 0;
    width: 40px;
    height: 82px;
    background: var(--orange-strong);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    content: "";
}

.systems-section {
    position: relative;
    padding: 42px 0 30px;
    background: var(--white);
}

.section-heading {
    text-align: center;
}

.section-heading h2 {
    color: var(--navy);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.section-heading > span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 13px auto 15px;
    background: var(--orange-strong);
}

.section-heading p {
    color: #626879;
    font-size: 14px;
}

.section-heading__prompt {
    position: relative;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
}

.section-heading__cursor {
    position: absolute;
    top: calc(100% + 1px);
    right: 8px;
    z-index: 2;
    width: 19px;
    height: 24px;
    overflow: visible;
    pointer-events: none;
    filter: drop-shadow(0 2px 2px rgba(0, 91, 181, 0.48));
}

.section-heading__cursor path {
    fill: #06101f;
    stroke: #d7ebff;
    stroke-linejoin: round;
    stroke-width: 1.25;
}

.systems-grid {
    display: grid;
    width: min(100%, 810px);
    margin: 27px auto 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.system-card {
    --theme: var(--blue);
    --theme-dark: var(--navy);
    --theme-soft: #dfedff;
    position: relative;
    display: flex;
    min-height: 358px;
    padding: 19px 28px 22px;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(4, 36, 80, 0.06);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.system-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--theme);
    content: "";
}

.system-card--orange {
    --theme: var(--orange-strong);
    --theme-dark: var(--orange-strong);
    --theme-soft: #ffead5;
}

.system-card--green {
    --theme: var(--green);
    --theme-dark: var(--green-dark);
    --theme-soft: #dff5e7;
}

.system-card:hover,
.system-card:focus-visible {
    border-color: color-mix(in srgb, var(--theme) 38%, transparent);
    box-shadow: 0 17px 42px rgba(5, 28, 68, 0.17);
    transform: translateY(-6px);
}

.system-card__icon {
    display: grid;
    width: 90px;
    height: 90px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: var(--theme-soft);
}

.system-card__icon svg {
    width: 55px;
    height: 55px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.system-card__acronym {
    margin-top: 6px;
    color: var(--navy);
    font-size: 40px;
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.system-card__name {
    display: flex;
    min-height: 48px;
    margin-top: 1px;
    align-items: flex-start;
    justify-content: center;
    color: var(--theme);
    font-size: 17px;
    font-weight: 750;
    line-height: 1.23;
}

.system-card__description {
    display: flex;
    min-height: 63px;
    margin-top: 11px;
    align-items: flex-start;
    color: #616878;
    font-size: 12.4px;
    line-height: 1.45;
}

.system-card__button {
    display: flex;
    width: 100%;
    min-height: 40px;
    margin-top: auto;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(90deg, var(--theme-dark), var(--theme));
    box-shadow: 0 6px 14px color-mix(in srgb, var(--theme) 22%, transparent);
    font-size: 12.5px;
    font-weight: 750;
}

.system-card__button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform 180ms ease;
}

.system-card:hover .system-card__button svg,
.system-card:focus-visible .system-card__button svg {
    transform: translateX(4px);
}

.institutional {
    position: relative;
    min-height: 304px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.8), transparent 38%),
        var(--soft-background);
}

.institutional__inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 304px;
    padding-block: 22px;
    align-items: center;
    grid-template-columns: minmax(250px, 31%) minmax(0, 1fr);
    gap: 38px;
}

.institutional__content {
    padding-left: 18px;
}

.institutional__content h2 {
    margin-top: 7px;
    color: var(--navy);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -0.035em;
}

.institutional__content > p:last-of-type {
    width: min(100%, 310px);
    margin-top: 17px;
    color: #5d6475;
    font-size: 13px;
    line-height: 1.48;
}

.outline-button {
    display: inline-flex;
    min-height: 40px;
    margin-top: 20px;
    padding: 8px 13px;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--navy-2);
    border-radius: 7px;
    color: var(--navy-2);
    background: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    font-weight: 650;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.outline-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.outline-button:hover,
.outline-button:focus-visible {
    color: var(--white);
    background: var(--navy-2);
    transform: translateY(-2px);
}

.image-collage {
    display: grid;
    width: 100%;
    height: 254px;
    overflow: hidden;
    grid-template-columns: 42% 28% 30%;
    grid-template-rows: 56% 44%;
    gap: 5px;
}

.image-collage__item {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #cbd7e6;
}

.image-collage__item::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(2, 36, 80, 0.02), rgba(2, 36, 80, 0.10));
    content: "";
    pointer-events: none;
}

.image-collage__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.image-collage__item:hover img {
    transform: scale(1.035);
}

.image-collage__item--large {
    grid-column: 1;
    grid-row: 1 / 3;
}

.image-collage__item--large img {
    object-position: 77% center;
}

.image-collage__item--wide {
    grid-column: 2 / 4;
    grid-row: 1;
}

.image-collage__item--wide img {
    object-position: center 40%;
}

.image-collage__item--detail-one {
    grid-column: 2;
    grid-row: 2;
}

.image-collage__item--detail-one img {
    object-position: 13% center;
    transform: scale(1.55);
}

.image-collage__item--detail-two {
    grid-column: 3;
    grid-row: 2;
}

.image-collage__item--detail-two img {
    object-position: 4% center;
}

.image-collage--gigantinho {
    height: 254px;
    padding: 6px 0;
    overflow: visible;
    align-items: center;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: 9px;
}

.image-collage--gigantinho .image-collage__item {
    width: min(100%, 210px);
    height: min(100%, 242px);
    align-self: center;
    justify-self: center;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 15px;
    box-shadow: 0 12px 28px rgba(3, 38, 83, 0.18);
}

.image-collage--gigantinho .image-collage__item::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(3, 33, 75, 0.08));
}

.image-collage--gigantinho .image-collage__item img {
    object-fit: contain;
    object-position: center;
}

.image-collage__item--welcome {
    background: #11141d;
}

.image-collage__item--spaces {
    z-index: 2;
    width: min(100%, 220px) !important;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(3, 38, 83, 0.24) !important;
    transform: translateY(-5px);
}

.image-collage__item--play {
    background: #09bfc7;
}

.institutional__dots {
    position: absolute;
    z-index: 1;
    top: -3px;
    right: -8px;
    width: 92px;
    height: 72px;
    opacity: 0.95;
    background-image: radial-gradient(circle, var(--orange-strong) 1.15px, transparent 1.3px);
    background-size: 9px 9px;
}

.institutional__curve {
    position: absolute;
    z-index: 1;
    top: -69px;
    right: -75px;
    width: 182px;
    height: 405px;
    border: 2px solid var(--orange-strong);
    border-left-color: transparent;
    border-radius: 50%;
    transform: rotate(-12deg);
}

.institutional__curve::after {
    position: absolute;
    inset: 13px;
    border: 1.5px solid var(--blue);
    border-left-color: transparent;
    border-radius: inherit;
    content: "";
}

.site-footer {
    position: relative;
    min-height: 162px;
    padding: 18px 0 8px;
    color: var(--white);
    background:
        radial-gradient(circle at 11% 46%, rgba(7, 96, 184, 0.80), transparent 33%),
        linear-gradient(100deg, #054da3 0%, #022d6f 54%, #002c6b 100%);
}

.site-footer__grid {
    display: grid;
    min-height: 100px;
    align-items: center;
    grid-template-columns: 29% 43% 28%;
}

.footer-brand,
.footer-contact,
.footer-social {
    min-height: 82px;
}

.footer-brand {
    display: flex;
    padding-left: 12px;
    align-items: center;
}

.footer-brand__logo-frame {
    display: grid;
    width: 176px;
    min-height: 140px;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.footer-brand__logo {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-contact {
    display: flex;
    padding: 0 54px;
    flex-direction: column;
    justify-content: center;
    border-inline: 1px solid rgba(255, 255, 255, 0.30);
    font-style: normal;
    font-size: 12px;
    line-height: 1.48;
}

.footer-contact strong {
    margin-bottom: 7px;
    font-weight: 600;
}

.footer-contact a {
    width: fit-content;
    margin-top: 2px;
    border-bottom: 1px solid transparent;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
    border-bottom-color: currentColor;
}

.footer-social {
    display: flex;
    padding-left: 48px;
    flex-direction: column;
    justify-content: center;
}

.footer-social p {
    font-size: 12px;
}

.footer-social__links {
    display: flex;
    margin-top: 11px;
    gap: 10px;
}

.footer-social__links a {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-social__links a:hover,
.footer-social__links a:focus-visible {
    color: var(--navy);
    background: var(--white);
    transform: translateY(-2px);
}

.footer-social__links svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.55;
}

.footer-social__links .fill-icon {
    fill: currentColor;
    stroke: none;
}

.site-footer__copyright {
    margin-top: 5px;
    text-align: center;
    font-size: 12px;
}

.link-notice {
    position: fixed;
    z-index: 2200;
    right: 24px;
    bottom: 24px;
    max-width: min(360px, calc(100vw - 48px));
    padding: 13px 18px;
    border-left: 4px solid var(--orange-strong);
    border-radius: 8px;
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 14px 40px rgba(2, 23, 57, 0.28);
    font-size: 14px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.link-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    :root {
        --page-gutter: clamp(22px, 4vw, 40px);
    }

    .brand__logo-frame {
        width: 145px;
    }

    .brand__department {
        font-size: 15px;
    }

    .hero__content {
        width: 55%;
    }

    .hero h1 {
        font-size: clamp(39px, 5vw, 48px);
    }

    .systems-grid {
        width: min(100%, 630px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }

    .system-card:nth-child(3) {
        width: calc(50% - 13px);
        justify-self: center;
        grid-column: 1 / -1;
    }

    .institutional {
        min-height: 360px;
    }

    .institutional__inner {
        min-height: 360px;
        grid-template-columns: minmax(230px, 36%) minmax(0, 1fr);
        gap: 28px;
    }

    .institutional__content {
        padding-left: 0;
    }

    .image-collage {
        height: 292px;
    }

    .footer-contact {
        padding-inline: 28px;
    }

    .footer-social {
        padding-left: 28px;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 82px;
    }

    .brand {
        gap: 10px;
    }

    .brand__logo-frame {
        width: 122px;
        height: 42px;
    }

    .brand__divider {
        height: 39px;
    }

    .brand__department {
        font-size: 12px;
    }

    .header-access span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .header-access svg {
        width: 34px;
        height: 34px;
    }

    .hero {
        min-height: 610px;
    }

    .hero__inner {
        min-height: 610px;
        align-items: flex-start;
    }

    .hero__content {
        width: 100%;
        padding: 46px 0 250px;
    }

    .hero h1 {
        font-size: clamp(37px, 9vw, 48px);
    }

    .hero__lead {
        width: min(100%, 430px);
    }

    .hero__media {
        inset: auto 0 0;
        width: 100%;
        height: 235px;
        clip-path: polygon(0 24%, 18% 0, 100% 0, 100% 100%, 0 100%);
    }

    .hero__montage-card {
        border-width: 2px;
        border-radius: 12px;
        box-shadow: 0 12px 25px rgba(0, 21, 61, 0.34);
    }

    .hero__montage-card--building {
        top: 20px;
        right: 29%;
        width: 52%;
        transform: rotate(-2.2deg);
    }

    .hero__montage-card--children {
        top: 4px;
        right: 2%;
        transform: rotate(2deg);
    }

    .hero__orange-wedge {
        display: none;
    }

    .systems-section {
        padding: 48px 0 56px;
    }

    .systems-grid {
        width: min(100%, 360px);
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .system-card:nth-child(3) {
        width: 100%;
        grid-column: auto;
    }

    .system-card {
        min-height: 352px;
    }

    .institutional {
        min-height: 0;
    }

    .institutional__inner {
        min-height: 0;
        padding-block: 54px 60px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .institutional__content h2 {
        font-size: 32px;
    }

    .institutional__content > p:last-of-type {
        width: min(100%, 470px);
        font-size: 14px;
    }

    .image-collage {
        height: 310px;
    }

    .institutional__dots {
        opacity: 0.62;
    }

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

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

    .footer-brand,
    .footer-contact,
    .footer-social {
        min-height: 0;
        padding: 0;
        border: 0;
    }

    .footer-contact {
        padding-block: 24px;
        border-block: 1px solid rgba(255, 255, 255, 0.25);
    }

    .footer-social {
        align-items: flex-start;
    }

    .site-footer__copyright {
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    :root {
        --page-gutter: 20px;
    }

    .brand__logo-frame {
        width: 105px;
        height: 38px;
    }

    .brand__divider {
        height: 34px;
    }

    .brand__department {
        max-width: 83px;
        font-size: 10px;
        white-space: normal;
    }

    .hero {
        min-height: 610px;
    }

    .hero__inner {
        min-height: 610px;
    }

    .hero__content {
        padding-top: 40px;
    }

    .eyebrow {
        font-size: 11.5px;
    }

    .hero h1 {
        margin-top: 12px;
        font-size: clamp(33px, 10vw, 42px);
    }

    .hero__lead {
        margin-top: 18px;
        font-size: 14.5px;
    }

    .duo-rule {
        margin-top: 24px;
    }

    .section-heading h2 {
        font-size: 25px;
    }

    .section-heading p {
        font-size: 13px;
    }

    .image-collage {
        height: 286px;
        grid-template-columns: 48% 52%;
        grid-template-rows: 53% 47%;
    }

    .image-collage__item--large {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .image-collage__item--wide {
        grid-column: 2;
        grid-row: 1;
    }

    .image-collage__item--detail-one {
        display: none;
    }

    .image-collage__item--detail-two {
        grid-column: 2;
        grid-row: 2;
    }

    .link-notice {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 330px) {
    .site-header__inner {
        gap: 10px;
    }

    .brand {
        gap: 7px;
    }

    .brand__logo-frame {
        width: 86px;
        height: 34px;
    }

    .brand__divider {
        height: 30px;
    }

    .brand__department {
        max-width: 66px;
        font-size: 8.5px;
    }

    .header-access svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 760px) {
    .image-collage--gigantinho {
        height: 498px;
        padding: 4px 0;
        overflow: visible;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 250px 232px;
        gap: 8px;
    }

    .image-collage--gigantinho .image-collage__item {
        width: 100%;
        height: 100%;
        transform: none;
    }

    .image-collage--gigantinho .image-collage__item--spaces {
        width: min(100%, 230px) !important;
        justify-self: center;
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .image-collage--gigantinho .image-collage__item--welcome {
        grid-column: 1;
        grid-row: 2;
    }

    .image-collage--gigantinho .image-collage__item--play {
        grid-column: 2;
        grid-row: 2;
    }
}

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

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

@supports not (color: color-mix(in srgb, white, black)) {
    .system-card:hover,
    .system-card:focus-visible {
        border-color: var(--theme);
    }

    .system-card__button {
        box-shadow: 0 6px 14px rgba(2, 31, 82, 0.16);
    }
}
