:root {
    --gix-home-mint: #33ffdd;
    --gix-home-black: #0a0b0a;
    --gix-home-deep: #040000;
    --gix-home-gray: #282828;
    --gix-home-line: #4b4b4b;
    --gix-home-footer: #d7d7d7;
    --gix-home-on-mint: #000;
    --gix-home-width: 1320px;
}

body.gix-home-page {
    color: var(--gx-ink);
    background: var(--gix-home-black);
    font-family: var(--gx-sans);
}

.gix-home-page .gx-backdrop {
    display: none;
}

.gix-home-page .gx-main {
    width: 100%;
    min-height: 0;
}

.gix-home-page .gx-shell,
.gix-home-page .gix-shell {
    width: min(calc(100% - 40px), var(--gix-home-width));
    margin-inline: auto;
}

/* Shared reference header */
.gx-header {
    height: auto;
    min-height: 72px;
    border: 0;
    color: var(--gix-home-on-mint);
    background: var(--gix-home-mint);
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.gx-header-status {
    display: none;
}

.gx-header-main {
    height: auto;
    min-height: 72px;
    gap: 0;
}

.gx-home-brand {
    width: 170px;
    height: 20px;
    display: block;
    flex: 0 0 170px;
}

.gx-home-brand > img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.gx-brand-fallback {
    height: 100%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gix-home-on-mint);
    line-height: 1;
}

.gx-brand-fallback strong {
    font-size: 2rem;
    letter-spacing: -0.08em;
}

.gx-brand-fallback small {
    color: var(--gix-home-on-mint);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.gx-home-nav {
    max-width: 750px;
    margin-left: 70px;
    display: flex;
    justify-content: space-between;
    flex: 1 1 750px;
    gap: clamp(34px, 3.7vw, 82px);
}

.gx-home-nav > a {
    min-height: 72px;
    gap: 0;
    color: var(--gix-home-on-mint);
    font-size: 19px;
    font-weight: 700;
    opacity: 1;
}

.gx-home-nav > .gx-nav-disabled {
    min-height: 72px;
    display: flex;
    align-items: center;
    color: var(--gix-home-on-mint);
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0.58;
}

.gx-home-nav > a::after {
    right: 0;
    bottom: 12px;
    left: 0;
    height: 2px;
    background: var(--gix-home-on-mint);
    box-shadow: none;
}

.gx-home-nav > a:hover,
.gx-home-nav > a:focus-visible {
    color: var(--gix-home-on-mint);
}

.gx-nav-dropdown {
    position: relative;
    min-width: 0;
    min-height: 72px;
    display: flex;
    align-items: stretch;
    flex: 0 0 auto;
}

.gx-nav-dropdown__trigger {
    position: relative;
    min-height: 72px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    color: var(--gix-home-on-mint);
    background: transparent;
    font: 700 19px/1 var(--gx-sans);
    white-space: nowrap;
    cursor: pointer;
}

.gx-nav-dropdown__trigger::after {
    position: absolute;
    right: 0;
    bottom: 12px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--gix-home-on-mint);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.gx-nav-dropdown__trigger i {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    display: block;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.gx-nav-dropdown__trigger:focus-visible {
    outline: 2px solid var(--gix-home-on-mint);
    outline-offset: -5px;
}

.gx-nav-dropdown.is-open .gx-nav-dropdown__trigger::after {
    transform: scaleX(1);
    transform-origin: left;
}

.gx-nav-dropdown.is-open .gx-nav-dropdown__trigger i {
    margin-top: 4px;
    transform: rotate(225deg);
}

.gx-nav-dropdown__menu {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    z-index: 110;
    width: max-content;
    min-width: 210px;
    max-width: min(300px, calc(100vw - 32px));
    max-height: min(60vh, 420px);
    padding: 8px;
    display: none;
    overflow-y: auto;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.38);
    border-radius: 0 0 8px 8px;
    background: var(--gix-home-black);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
    transform: translateX(-50%);
}

.gx-nav-dropdown.is-open .gx-nav-dropdown__menu {
    display: grid;
}

.gx-nav-dropdown__menu > a,
.gx-nav-dropdown__menu > .gx-nav-dropdown__disabled,
.gx-nav-dropdown__menu > .gx-nav-dropdown__empty {
    min-height: 42px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(var(--gx-event-accent-rgb), 0.15);
    color: var(--gx-ink);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.35;
    white-space: normal;
}

.gx-nav-dropdown__menu > :last-child {
    border-bottom: 0;
}

.gx-nav-dropdown__menu > a {
    transition:
        color 160ms ease,
        background 160ms ease;
}

.gx-nav-dropdown__menu > a:hover,
.gx-nav-dropdown__menu > a:focus-visible {
    color: var(--gix-home-on-mint);
    background: var(--gix-home-mint);
}

.gx-nav-dropdown__menu > a:focus-visible {
    outline: 2px solid var(--gix-home-mint);
    outline-offset: -2px;
}

.gx-nav-dropdown__menu > .gx-nav-dropdown__disabled,
.gx-nav-dropdown__menu > .gx-nav-dropdown__empty {
    color: var(--gx-muted);
}

.gx-nav-dropdown__menu > .gx-nav-dropdown__disabled {
    cursor: not-allowed;
}

/* Reference-style six-column navigation. */
.gx-home-nav[data-gx-mega-nav] {
    position: relative;
    width: min(100%, 750px);
    max-width: 750px;
    align-self: stretch;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
}

.gx-home-nav[data-gx-mega-nav] > .gx-mega-trigger {
    min-width: 0;
    padding: 12px 10px;
    display: block;
    align-content: center;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
}

.gx-home-mega {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 120;
    width: 100%;
    min-height: 132px;
    padding: 13px 0 18px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    color: var(--gix-home-on-mint);
    background: var(--gix-home-mint);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
        opacity 150ms ease,
        visibility 150ms ease,
        transform 150ms ease;
}

.gx-home-nav[data-gx-mega-nav]:hover .gx-home-mega,
.gx-home-nav[data-gx-mega-nav]:focus-within .gx-home-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.gx-home-mega__column {
    min-width: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.gx-home-mega__column > a,
.gx-home-mega__column > span {
    width: 100%;
    min-height: 24px;
    padding-inline: 8px;
    display: block;
    align-content: center;
    color: var(--gix-home-on-mint);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
}

.gx-home-mega__column > a:hover,
.gx-home-mega__column > a:focus-visible {
    color: var(--gix-home-on-mint);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.gx-home-mega__column > a:focus-visible {
    outline: 2px solid var(--gix-home-on-mint);
    outline-offset: 3px;
}

.gx-home-mega__column > span[aria-disabled='true'] {
    opacity: 0.48;
}

/* Keep long desktop navigation labels inside a dedicated center track. */
.gx-header-main.gx-header--compact {
    grid-template-columns: 170px minmax(0, 1fr) max-content;
    column-gap: 16px;
    display: grid;
}

.gx-header-main.gx-header--compact .gx-home-nav {
    width: min(100%, 760px);
    max-width: 760px;
    margin-left: 0;
    flex-basis: auto;
    justify-self: center;
    gap: 0;
}

.gx-header-main.gx-header--compact .gx-home-nav > .gx-mega-trigger {
    min-width: 0;
    padding-inline: 10px;
    font-size: 18px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
}

.gx-header-main.gx-header--compact .gx-nav-dropdown__trigger {
    min-width: 0;
    padding-inline: 2px;
    font-size: 16px;
    line-height: 1.15;
    text-align: center;
}

.gx-header-main.gx-header--compact .gx-home-apply {
    width: 176px;
    font-size: 12px;
}

.gx-header-main.gx-header--compact .gx-home-account {
    width: auto;
    min-width: 176px;
    margin-left: 0;
}

.gx-home-account {
    margin-left: auto;
}

.gx-home-account .gx-user {
    color: var(--gix-home-on-mint);
    font-weight: 700;
}

.gx-home-account .gx-user i {
    background: currentColor;
    box-shadow: none;
}

.gx-home-account-link {
    height: 40px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    color: var(--gix-home-on-mint);
    background: transparent;
    font: 700 12px/1 var(--gx-sans);
    cursor: pointer;
    transition:
        color 160ms ease,
        background 160ms ease;
}

.gx-home-account-link:hover,
.gx-home-account-link:focus-visible {
    color: var(--gix-home-mint);
    background: var(--gix-home-on-mint);
}

.gx-home-login-submenu {
    position: fixed;
    top: clamp(118px, 24vh, 250px);
    right: 0;
    z-index: 90;
    min-width: 104px;
    min-height: 54px;
    padding: 9px 14px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--gix-home-on-mint);
    border-right: 0;
    border-radius: 6px 0 0 6px;
    color: var(--gix-home-on-mint);
    background: var(--gix-home-mint);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    transition:
        color 160ms ease,
        background 160ms ease,
        transform 160ms ease;
}

.gx-home-login-submenu small {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    opacity: 0.65;
}

.gx-home-login-submenu span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.gx-home-login-submenu b {
    font-size: 13px;
    font-weight: 500;
}

.gx-home-login-submenu:hover,
.gx-home-login-submenu:focus-visible {
    color: var(--gix-home-mint);
    background: var(--gix-home-on-mint);
    transform: translateX(-4px);
}

.gix-auth-page .gx-home-login-submenu {
    display: none;
}

.gx-home-apply {
    width: 214px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--gix-home-mint);
    background: var(--gix-home-on-mint);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition:
        color 160ms ease,
        background 160ms ease;
}

.gx-home-apply span {
    font-size: 20px;
    font-weight: 400;
}

.gx-home-apply:hover,
.gx-home-apply:focus-visible {
    color: var(--gix-home-on-mint);
    background: #fff;
}

.gx-header a:focus-visible,
.gx-home-mobile-nav > summary:focus-visible {
    outline-color: var(--gix-home-on-mint);
}

.gx-home-mobile-nav {
    margin-left: auto;
}

.gx-home-mobile-nav > summary {
    border-color: var(--gix-home-on-mint);
}

.gx-home-mobile-nav > summary span {
    background: var(--gix-home-on-mint);
}

.gx-home-mobile-nav > nav {
    max-height: calc(100vh - 86px);
    max-height: calc(100dvh - 86px);
    overflow-y: auto;
    border-color: #191919;
    color: #fff;
    background: #0a0b0a;
}

.gx-home-mobile-nav > nav a:focus-visible,
.gx-home-mobile-nav .gx-mobile-logout button:focus-visible {
    outline-color: var(--gix-home-mint);
}

.gx-home-mobile-nav .gx-mobile-nav-disabled {
    color: #8c8c8c;
    border-color: #242424;
}

.gx-mobile-board-menu {
    border-bottom: 1px solid #242424;
}

.gx-mobile-board-menu > summary {
    min-height: 42px;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #c7d5d5;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.gx-mobile-board-menu > summary::-webkit-details-marker {
    display: none;
}

.gx-mobile-board-menu > summary i {
    width: 8px;
    height: 8px;
    margin: -4px 2px 0 0;
    display: block;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.gx-mobile-board-menu[open] > summary {
    color: var(--gix-home-mint);
    background: rgba(var(--gx-event-accent-rgb), 0.08);
}

.gx-mobile-board-menu[open] > summary i {
    margin-top: 4px;
    transform: rotate(225deg);
}

.gx-mobile-board-menu > summary:hover {
    color: var(--gix-home-mint);
    background: rgba(var(--gx-event-accent-rgb), 0.05);
}

.gx-mobile-board-menu > summary:focus-visible {
    outline: 2px solid var(--gix-home-mint);
    outline-offset: -2px;
}

.gx-mobile-board-menu__items {
    display: grid;
    background: #101211;
}

.gx-home-mobile-nav .gx-mobile-board-menu__items > a,
.gx-home-mobile-nav .gx-mobile-board-menu__items > .gx-mobile-nav-disabled,
.gx-mobile-board-menu__items > .gx-mobile-board-menu__empty {
    min-height: 40px;
    padding: 10px 12px 10px 28px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #242424;
    font-size: 0.77rem;
    line-height: 1.35;
}

.gx-mobile-board-menu__items > .gx-mobile-board-menu__empty {
    color: #8c8c8c;
    font-weight: 700;
}

.gix-year-nav {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.gix-year-nav a {
    min-width: 72px;
    min-height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.24);
    color: var(--gx-copy);
    font-size: 13px;
    font-weight: 800;
}

.gix-year-nav a:hover,
.gix-year-nav a:focus-visible,
.gix-year-nav a[aria-current="page"] {
    border-color: var(--gix-home-mint);
    color: var(--gix-home-on-mint);
    background: var(--gix-home-mint);
}

/* Reference hero */
.gix-landing {
    width: 100%;
    overflow-x: hidden;
    color: var(--gx-ink);
    background: var(--gix-home-black);
}

.gix-landing--empty {
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
}

.gix-hero {
    --gix-hero-base-height: 774px;
    position: relative;
    height: auto;
    min-height: var(--gix-hero-height, var(--gix-hero-base-height));
    overflow: hidden;
    background: linear-gradient(90deg, var(--gix-home-black) 0 44%, #070605 60%, var(--gix-home-deep) 100%);
}

.gix-hero--image .gix-globe-column--overlay {
    display: none;
}

@media (max-width: 700px) {
    .gix-hero--mobile-image .gix-globe-column--mobile-overlay {
        display: none;
    }
}

.gix-hero--image .gix-hero-copy {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.gix-hero::before,
.gix-hero::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    z-index: 20;
    height: 4px;
    content: '';
    background: var(--gix-home-line);
}

.gix-hero::after {
    bottom: 0;
    height: 2px;
    background: var(--gix-home-mint);
}

.gix-hero-shell {
    position: relative;
    height: calc(var(--gix-hero-height, var(--gix-hero-base-height)) - 6px);
}

.gix-hero-shell::after {
    position: absolute;
    top: 482px;
    left: 50%;
    z-index: 1;
    width: 100vw;
    height: 1px;
    content: '';
    background: #585757;
    transform: translateX(-50%);
}

.gix-side-rail {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 44px;
    z-index: 8;
    width: 2px;
    border-right: 2px solid #585757;
}

.gix-side-rail-image {
    position: absolute;
    top: 30px;
    left: -44px;
    width: 22px;
    max-width: none;
    height: 425px;
    display: block;
    object-fit: contain;
}

.gix-rail-dots {
    position: absolute;
    bottom: 27px;
    left: -37px;
    display: grid;
    gap: 27px;
}

.gix-rail-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a9a9a9;
}

.gix-hero-copy {
    position: absolute;
    top: 48px;
    left: 122px;
    z-index: 10;
    width: 690px;
}

.gix-hero-logo {
    margin: 0;
    width: 550px;
    height: auto;
}

.gix-hero-logo > img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.gix-side-rail-text {
    position: absolute;
    top: 30px;
    left: -44px;
    width: 22px;
    height: 425px;
    display: block;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #aeb7b7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: pre-wrap;
    line-height: 1.35;
}

.gix-hero-logo-fallback {
    min-height: 230px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--gx-ink);
    line-height: 0.86;
}

.gix-hero-logo-fallback small {
    margin-bottom: 16px;
    color: var(--gix-home-mint);
    font-size: 1.2rem;
    letter-spacing: 0.12em;
}

.gix-hero-logo-fallback strong {
    font-size: clamp(4rem, 8vw, 7.2rem);
    letter-spacing: -0.075em;
}

.gix-hero-subtitle {
    margin: 23px 0 0;
    color: var(--gix-home-mint);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.15;
}

.gix-hero-fallback-text {
    margin: 32px 0 0;
    color: #ddd;
}

.gix-hero-kicker {
    margin: 20px 0 0 4px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1.38;
}

.gix-hero-description {
    margin: 8px 0 0 4px;
    color: #ddd;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.82;
    white-space: pre-line;
}

.gix-hero-description span {
    position: relative;
    color: #f5f5f5;
}

.gix-hero--2026 .gix-hero-description {
    max-width: 550px;
    word-break: keep-all;
    text-wrap: balance;
}

.gix-event-meta {
    margin: 62px 0 0 8px;
}

.gix-hero--2026 .gix-event-meta {
    margin-left: 4px;
}

@media (min-width: 1051px) {
    .gix-hero--2026 .gix-event-meta {
        margin-top: 124px;
    }
}

@media (min-width: 641px) and (max-width: 1050px) {
    .gix-hero--2026 .gix-event-meta {
        margin-top: 20px;
    }
}

.gix-event-meta p {
    margin: 0;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1.22;
}

.gix-event-meta p:first-child {
    font-size: 48px;
}

.gix-event-meta p + p {
    margin-top: 4px;
    font-size: 36px;
}

.gix-apply-button {
    width: 355px;
    height: 61px;
    margin: 28px 0 0 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: var(--gix-home-on-mint);
    background: var(--gix-home-mint);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1;
    transition:
        color 160ms ease,
        background 160ms ease;
}

.gix-apply-button span {
    font-size: 31px;
    font-weight: 300;
}

.gix-apply-button:hover,
.gix-apply-button:focus-visible {
    color: #000;
    background: #fff;
}

/* Canvas globe and fixed HUD */
.gix-globe-column {
    position: absolute;
    top: -26px;
    right: -113px;
    z-index: 4;
    width: 820px;
    height: 820px;
}

.gix-globe-zone {
    position: relative;
    width: 100%;
    height: 100%;
    isolation: isolate;
}

.gix-globe-zone::before {
    position: absolute;
    top: 9.5%;
    right: 10%;
    bottom: 9.5%;
    left: 14%;
    z-index: -2;
    content: '';
    background:
        linear-gradient(90deg, rgba(var(--gx-event-accent-rgb), 0.055) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        radial-gradient(circle at 50% 48%, rgba(var(--gx-event-accent-rgb), 0.12), transparent 58%), rgba(8, 10, 9, 0.5);
    background-size:
        58px 100%,
        100% 17px,
        auto,
        auto;
    box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.65);
    opacity: 0.84;
}

.gix-globe-zone::after {
    position: absolute;
    top: 12.5%;
    left: 10.9%;
    z-index: 2;
    width: 75%;
    height: 75%;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.25);
    border-radius: 50%;
    content: '';
    background:
        linear-gradient(90deg, transparent 49.85%, rgba(var(--gx-event-accent-rgb), 0.13) 50%, transparent 50.15%),
        linear-gradient(transparent 49.85%, rgba(var(--gx-event-accent-rgb), 0.1) 50%, transparent 50.15%);
    box-shadow:
        inset 0 0 60px rgba(var(--gx-event-accent-rgb), 0.05),
        0 0 36px rgba(var(--gx-event-accent-rgb), 0.06);
    pointer-events: none;
}

#gixGlobeCanvas {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: block;
    cursor: grab;
    opacity: 1;
    touch-action: none;
}

#gixGlobeCanvas:active {
    cursor: grabbing;
}

.gix-globe-fallback {
    position: absolute;
    top: 15.8%;
    left: 15.8%;
    z-index: 2;
    width: 68.4%;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.52);
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle, transparent 0 12px, rgba(var(--gx-event-accent-rgb), 0.08) 13px 14px),
        repeating-linear-gradient(90deg, transparent 0 19px, rgba(var(--gx-event-accent-rgb), 0.08) 20px 21px),
        radial-gradient(circle at 36% 30%, rgba(var(--gx-event-accent-rgb), 0.17), transparent 25%), #061110;
    box-shadow:
        inset -45px -30px 80px rgba(0, 0, 0, 0.7),
        0 0 70px rgba(var(--gx-event-accent-rgb), 0.13);
    transition: opacity 450ms ease;
    animation: gix-fallback-rotate 18s linear infinite;
}

.gix-globe-fallback::before,
.gix-globe-fallback::after {
    position: absolute;
    inset: 7%;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.25);
    border-radius: 50%;
    content: '';
    transform: rotate(58deg) scaleX(0.3);
}

.gix-globe-fallback::after {
    transform: rotate(-22deg) scaleX(0.3);
}

@keyframes gix-fallback-rotate {
    to {
        transform: rotate(360deg);
    }
}

#gixGlobeZone.is-ready #gixGlobeFallback {
    opacity: 0;
    pointer-events: none;
}

#gixGlobeZone.is-fallback #gixGlobeCanvas {
    opacity: 0;
}

.gix-reticle {
    position: absolute;
    top: 50%;
    left: 48.4%;
    z-index: 1;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.2);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.gix-reticle-outer {
    width: 75%;
    height: 75%;
}

.gix-reticle-inner {
    width: 66%;
    height: 66%;
    border-style: dashed;
    opacity: 0.55;
    animation: gix-reticle-rotate 34s linear infinite;
}

@keyframes gix-reticle-rotate {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.gix-globe-decor {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.gix-globe-decor i {
    position: absolute;
    height: 18px;
    background: rgba(var(--gx-event-accent-rgb), 0.26);
    clip-path: polygon(0 0, 88% 0, 100% 100%, 12% 100%);
}

.gix-globe-decor i:nth-child(1) {
    top: 15%;
    right: 9%;
    width: 198px;
    height: 35px;
}

.gix-globe-decor i:nth-child(2) {
    top: 11%;
    right: 23%;
    width: 102px;
    height: 15px;
    background: rgba(var(--gx-event-accent-rgb), 0.19);
}

.gix-globe-decor i:nth-child(3) {
    right: 13%;
    bottom: 20%;
    width: 132px;
    height: 16px;
}

.gix-globe-decor i:nth-child(4) {
    bottom: 14%;
    left: 5%;
    width: 160px;
    height: 34px;
    background: rgba(255, 255, 255, 0.16);
}

.gix-globe-decor i:nth-child(5) {
    bottom: 21%;
    left: 25%;
    width: 110px;
    height: 19px;
    background: rgba(var(--gx-event-accent-rgb), 0.23);
}

.gix-globe-topline,
.gix-globe-side-tag,
.gix-hud,
.gix-globe-status {
    position: absolute;
    z-index: 7;
    margin: 0;
    font-family: Consolas, 'Liberation Mono', monospace;
    pointer-events: none;
}

.gix-commercial-panel {
    position: absolute;
    bottom: 11.5%;
    left: 26.7%;
    z-index: 8;
    width: 245px;
    min-height: 66px;
    margin: 0;
    padding: 17px 18px 12px 27px;
    border: 0;
    color: rgba(233, 237, 236, 0.96);
    background: url('../images/globe-commercial-frame.svg') center / 100% 100% no-repeat;
    box-shadow: none;
    font:
        400 17px/1.65 Consolas,
        'Liberation Mono',
        monospace;
    letter-spacing: -0.045em;
    text-shadow: 0 1px 0 #101111;
    pointer-events: none;
}

.gix-globe-topline {
    top: 13.2%;
    left: 18.5%;
    color: rgba(215, 255, 249, 0.34);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
}

.gix-globe-topline b {
    color: var(--gix-home-mint);
}

.gix-globe-side-tag {
    right: 13%;
    bottom: 15.5%;
    color: rgba(220, 255, 250, 0.56);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.gix-globe-side-tag::after {
    width: 108px;
    height: 7px;
    margin-left: 8px;
    display: inline-block;
    content: '';
    background: repeating-linear-gradient(60deg, var(--gix-home-mint) 0 12px, transparent 12px 18px);
    clip-path: polygon(0 0, 93% 0, 100% 100%, 7% 100%);
    vertical-align: -1px;
}

.gix-hud {
    color: rgba(122, 255, 238, 0.54);
    font-size: 13px;
    letter-spacing: 0.07em;
    line-height: 1.6;
    opacity: 0.76;
}

.gix-hud-a {
    top: 26%;
    left: 18%;
}

.gix-hud-b {
    top: 26%;
    right: 10%;
    text-align: right;
}

.gix-hud-c {
    bottom: 22%;
    left: 14%;
}

.gix-globe-status {
    right: 12%;
    bottom: 17.8%;
    width: 363px;
    min-height: 96px;
    padding: 17px 20px 14px;
    border: 0;
    color: rgba(239, 243, 242, 0.98);
    background: url('../images/globe-status-frame.svg') center / 100% 100% no-repeat;
    box-shadow: none;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.65;
    text-shadow: 0 1px 0 #101111;
}

.gix-globe-status::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 26px;
    content: '';
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.gix-globe-status::before {
    position: absolute;
    right: 28px;
    bottom: 6px;
    width: 5px;
    height: 5px;
    content: '';
    background: #777;
}

.gix-globe-status i {
    display: none;
}

.gix-globe-motion {
    position: absolute;
    bottom: 4.5%;
    left: 25%;
    z-index: 8;
    height: 28px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.34);
    color: rgba(221, 255, 249, 0.72);
    background: rgba(5, 13, 12, 0.78);
    font:
        700 13px/1 Consolas,
        'Liberation Mono',
        monospace;
    letter-spacing: 0.07em;
}

.gix-globe-motion i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gix-home-mint);
    box-shadow: 0 0 8px var(--gix-home-mint);
}

.gix-globe-motion[aria-pressed='false'] {
    color: rgba(221, 255, 249, 0.42);
}

.gix-globe-motion[aria-pressed='false'] i {
    background: #6e7d7a;
    box-shadow: none;
}

.gix-globe-motion:hover,
.gix-globe-motion:focus-visible {
    border-color: var(--gix-home-mint);
    color: #fff;
}

#gixGlobeZone.is-fallback .gix-globe-motion {
    display: none;
}

#gixGlobeZone.is-motion-paused .gix-reticle-inner {
    animation-play-state: paused;
}

/* Sections below the fold */
.gix-premise,
.gix-shortcuts,
.gix-text-section,
.gx-shared-footer {
    box-sizing: border-box;
}

.gix-premise {
    position: relative;
    min-height: 150px;
    padding-bottom: 23px;
    border-bottom: 2px solid var(--gix-home-line);
    background: var(--gix-home-black);
}

.gix-section-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.82);
}

.gix-premise > .gix-centered-copy,
.gix-text-section > .gix-centered-copy {
    position: relative;
    z-index: 1;
}

.gix-centered-copy {
    text-align: center;
}

.gix-premise .gix-centered-copy {
    padding-top: 23px;
}

.gix-premise .gix-centered-copy::before,
.gix-premise .gix-centered-copy::after {
    position: absolute;
    top: 14px;
    bottom: -1px;
    width: 10px;
    border-top: 2px solid var(--gix-home-mint);
    border-bottom: 2px solid var(--gix-home-mint);
    content: '';
}

.gix-premise .gix-centered-copy::before {
    left: 0;
    border-left: 2px solid var(--gix-home-mint);
}

.gix-premise .gix-centered-copy::after {
    right: 0;
    border-right: 2px solid var(--gix-home-mint);
}

.gix-centered-copy h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.35;
}

.gix-premise p {
    margin: 10px 0 0;
    color: #ddd;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.62;
    white-space: pre-line;
}

.gix-premise strong {
    color: #fff;
    font-weight: 700;
}

.gix-shortcuts {
    min-height: 344px;
    padding: 16px 0 24px;
    border-bottom: 2px solid #269ee8;
    background: var(--gix-home-gray);
}

.gix-shortcut-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.gix-shortcut-card {
    min-height: 294px;
    padding: 18px 20px 16px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    border: 1px solid #58aee3;
    color: #000;
    background: #fff;
    text-align: center;
}

.gix-shortcut-thumb {
    width: 118px;
    height: 118px;
    display: block;
    flex: 0 0 118px;
    background: transparent;
}

.gix-shortcut-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.gix-shortcut-copy {
    min-width: 0;
    width: 100%;
    display: block;
}

.gix-shortcut-copy strong {
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.55;
}

.gix-shortcut-copy small {
    margin-top: 8px;
    display: block;
    color: #111;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.7;
}

.gix-shortcut-copy small > span {
    display: block;
}

.gix-shortcut-copy small > span::before {
    margin-right: 3px;
    content: '·';
}

.gix-text-section {
    position: relative;
    min-height: 170px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gix-home-line);
}

.gix-text-section--dark {
    background: var(--gix-home-black);
}

.gix-text-section--gray {
    background: var(--gix-home-gray);
}

.gix-text-section .gix-centered-copy {
    padding-top: 24px;
}

.gix-text-section p {
    margin: 9px 0 0;
    color: #eee;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.62;
    white-space: pre-line;
}

/* Shared reference footer */
.gx-shared-footer {
    position: relative;
    z-index: 1;
    min-height: 130px;
    padding: 0;
    border: 0;
    color: #000;
    background: var(--gix-home-footer);
}

.gx-shared-footer-grid {
    min-height: 94px;
    padding: 13px 0 8px;
    display: grid;
    grid-template-columns: minmax(250px, 1.12fr) minmax(190px, 0.88fr) minmax(390px, 1.25fr);
    align-items: start;
    gap: clamp(28px, 4vw, 64px);
}

.gx-shared-footer .gx-footer-brand > span {
    color: #333;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}

.gx-shared-footer .gx-footer-brand > strong {
    margin: 1px 0 5px;
    display: block;
    color: #000;
    font-size: 29px;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
}

.gx-shared-footer .gx-footer-brand > p {
    margin: 0;
    color: #333;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.45;
}

.gx-shared-footer .gx-footer-label {
    margin: 1px 0 7px;
    color: #111;
    font: 800 10px/1.2 var(--gx-sans);
    letter-spacing: 0.08em;
}

.gx-shared-footer .gx-footer-column nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
}

.gx-shared-footer .gx-footer-column nav a,
.gx-shared-footer .gx-footer-column nav > .gx-footer-link-disabled {
    min-width: 0;
    padding: 2px 0;
    border: 0;
    color: #2c2c2c;
    font-size: 11px;
    line-height: 1.4;
}

.gx-shared-footer .gx-footer-column nav > .gx-footer-link-disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.gx-shared-footer .gx-footer-column nav a span {
    color: #111;
}

.gx-shared-footer .gx-footer-column nav a:hover,
.gx-shared-footer .gx-footer-column nav a:focus-visible {
    color: #000;
    text-decoration: underline;
}

.gx-shared-footer .gx-footer-column dl {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 0.85fr 1.4fr;
    gap: 14px;
}

.gx-shared-footer .gx-footer-column dl > div {
    min-width: 0;
    display: block;
    font-size: 11px;
}

.gx-shared-footer .gx-footer-column dt {
    color: #555;
    font: 700 9px/1.2 var(--gx-sans);
}

.gx-shared-footer .gx-footer-column dd {
    margin: 3px 0 0;
    color: #111;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
}

.gx-shared-footer .gx-footer-bottom {
    min-height: 36px;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    color: #555;
    font: 700 9px/1.3 var(--gx-sans);
    letter-spacing: 0.05em;
}

.gx-shared-footer .gx-footer-bottom i {
    background: #111;
    box-shadow: none;
}

/* Compact 2026 reference footer. */
.gix-reference-footer {
    min-height: 100px;
    padding: 14px 0 12px;
    display: grid;
    grid-template-columns: 150px minmax(430px, 1fr) minmax(220px, auto);
    align-items: center;
    gap: 34px;
}

.gix-reference-footer__brand img {
    width: 142px;
    height: 58px;
    display: block;
    object-fit: contain;
}

.gix-reference-footer__info {
    color: #151515;
    font-size: 12px;
    letter-spacing: -0.025em;
    line-height: 1.55;
}

.gix-reference-footer__info p {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 22px;
}

.gix-reference-footer__privacy {
    margin: 0;
    padding: 0;
    border: 0;
    color: #777;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.gix-reference-footer__privacy:hover,
.gix-reference-footer__privacy:focus-visible {
    color: #111;
    text-decoration: underline;
}

html.gix-modal-open {
    overflow: hidden;
}

.gix-privacy-dialog {
    width: min(calc(100% - 32px), 790px);
    height: min(82vh, 680px);
    max-width: none;
    max-height: none;
    padding: 0;
    overflow: hidden;
    border: 1px solid #19c7b2;
    border-radius: 0;
    color: #111;
    background: #fff;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.38);
}

.gix-privacy-dialog::backdrop {
    background: rgba(0, 0, 0, 0.58);
}

.gix-privacy-dialog[open] {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
}

.gix-privacy-dialog__header {
    min-height: 42px;
    padding: 0 16px 0 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px dotted #087d70;
    background: #2ef0d3;
}

.gix-privacy-dialog__header h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
}

.gix-privacy-dialog__header button {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.gix-privacy-dialog__header button::before,
.gix-privacy-dialog__header button::after {
    position: absolute;
    top: 16px;
    left: 9px;
    width: 16px;
    height: 1px;
    background: #111;
    content: '';
}

.gix-privacy-dialog__header button::before {
    transform: rotate(45deg);
}

.gix-privacy-dialog__header button::after {
    transform: rotate(-45deg);
}

.gix-privacy-dialog__header button:focus-visible {
    outline: 2px solid #111;
    outline-offset: -4px;
}

.gix-privacy-dialog__body {
    padding: 16px 26px 28px;
    overflow-y: auto;
    overscroll-behavior: contain;
    font-size: 14px;
    line-height: 1.6;
    scrollbar-color: #c6c6c6 transparent;
}

.gix-privacy-dialog__body p {
    margin: 0 0 22px;
}

.gix-privacy-dialog__body section {
    margin-top: 22px;
}

.gix-privacy-dialog__body h3,
.gix-privacy-dialog__body h4 {
    margin: 0;
    font: inherit;
    font-weight: 500;
}

.gix-privacy-dialog__body ul {
    margin: 2px 0 0;
    padding-left: 21px;
}

@media (max-width: 640px) {
    .gix-privacy-dialog {
        width: min(calc(100% - 20px), 790px);
        height: min(88vh, 680px);
    }

    .gix-privacy-dialog__header {
        padding-left: 16px;
    }

    .gix-privacy-dialog__header h2 {
        font-size: 16px;
    }

    .gix-privacy-dialog__body {
        padding: 16px 18px 24px;
        font-size: 13px;
    }
}

.gix-reference-footer__association {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: stretch;
}

.gix-reference-footer__association a {
    margin-left: auto;
    display: block;
}

.gix-reference-footer__association img {
    width: min(100%, 220px);
    height: auto;
    display: block;
}

@media (min-width: 1051px) {
    .gix-reference-footer {
        position: relative;
        padding-right: 254px;
        grid-template-columns: 150px minmax(0, 1fr);
        align-items: end;
    }

    .gix-reference-footer__association {
        position: absolute;
        top: auto;
        right: 0;
        bottom: 12px;
        width: 220px;
        transform: none;
    }
}

@media (max-width: 1400px) {
    .gx-home-nav {
        margin-left: 44px;
        gap: 0;
    }

    .gix-globe-column {
        right: -165px;
    }
}

@media (max-width: 900px) {
    .gx-home-nav,
    .gx-home-nav[data-gx-mega-nav],
    .gx-home-account {
        display: none;
    }

    .gx-home-login-submenu {
        display: none;
    }

    .gx-home-mobile-nav {
        display: block;
    }
}

@media (max-width: 1180px) {
    .gx-shared-footer-grid {
        grid-template-columns: minmax(230px, 0.8fr) minmax(170px, 0.6fr) minmax(340px, 1.2fr);
        gap: 24px;
    }

    .gix-hero-copy {
        left: 92px;
        transform: scale(0.9);
        transform-origin: top left;
    }

    .gix-globe-column {
        right: -215px;
    }

    .gix-premise p,
    .gix-text-section p {
        padding-inline: 24px;
    }
}

@media (max-width: 1050px) {
    html {
        scroll-padding-top: 72px;
    }

    .gx-header-main {
        height: auto;
        min-height: 72px;
    }

    .gix-hero {
        --gix-hero-base-height: 1170px;
    }

    .gix-hero-shell::after {
        top: 475px;
    }

    .gix-side-rail {
        left: 27px;
    }

    .gix-hero-copy {
        top: 42px;
        left: 72px;
        width: 700px;
        transform: scale(0.86);
    }

    .gix-globe-column {
        top: 414px;
        right: 50%;
        width: 820px;
        height: 820px;
        transform: translateX(50%);
    }

    .gix-globe-status {
        width: 330px;
        font-size: 14px;
    }

    .gix-premise,
    .gix-shortcuts,
    .gix-text-section {
        height: auto;
        min-height: 150px;
    }

    .gix-premise {
        padding-bottom: 24px;
    }

    .gix-shortcuts {
        padding: 26px 0;
    }

    .gix-shortcut-grid {
        grid-template-columns: 1fr;
    }

    .gix-text-section {
        padding: 0 0 28px;
    }

    .gx-shared-footer {
        min-height: 0;
    }

    .gx-shared-footer-grid {
        padding: 24px 0;
        grid-template-columns: 1fr 1fr;
        gap: 24px 36px;
    }

    .gx-shared-footer .gx-footer-brand {
        grid-column: 1 / -1;
    }

    .gx-shared-footer .gx-footer-bottom {
        padding: 10px 0;
    }

    .gix-reference-footer {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 18px 28px;
    }

    .gix-reference-footer__association {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

@media (max-width: 720px) {
    .gx-header .gx-shell,
    .gx-shared-footer .gx-shell,
    .gix-home-page .gx-shell,
    .gix-home-page .gix-shell {
        width: min(calc(100% - 32px), var(--gix-home-width));
    }

    .gix-premise .gix-centered-copy h2 {
        padding-inline: 16px;
        font-size: 16px;
        word-break: keep-all;
    }
}

@media (max-width: 640px) {
    .gx-home-brand {
        width: 132px;
        flex-basis: 132px;
    }

    .gix-year-nav {
        min-height: 52px;
        padding-inline: 2px;
        justify-content: flex-start;
    }

    .gix-hero {
        --gix-hero-base-height: 950px;
    }

    .gix-hero-shell::after {
        top: 388px;
    }

    .gix-side-rail {
        display: none;
    }

    .gix-hero-copy {
        top: 34px;
        left: 0;
        width: 690px;
        transform: scale(0.6);
    }

    .gix-globe-column {
        top: 337px;
        width: 650px;
        height: 650px;
    }

    #gixGlobeCanvas {
        touch-action: pan-y;
    }

    .gix-globe-status {
        width: 270px;
        min-height: 72px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .gix-commercial-panel {
        width: 210px;
        min-height: 52px;
        padding: 9px 12px;
        font-size: 13px;
    }

    .gix-globe-motion {
        bottom: 7%;
        left: 31%;
    }

    .gix-globe-topline,
    .gix-hud,
    .gix-globe-side-tag {
        display: none;
    }

    .gix-premise .gix-centered-copy,
    .gix-text-section .gix-centered-copy {
        padding-top: 25px;
    }

    .gix-centered-copy h2 {
        font-size: 22px;
    }

    .gix-premise p {
        font-size: 15px;
    }

    .gix-premise p br,
    .gix-text-section p br {
        display: none;
    }

    .gix-shortcut-card {
        height: auto;
        min-height: 270px;
        padding: 16px;
    }

    .gix-shortcut-thumb {
        width: 102px;
        height: 102px;
        flex-basis: 102px;
    }

    .gix-shortcut-copy strong {
        font-size: 18px;
    }

    .gix-shortcut-copy small,
    .gix-text-section p {
        font-size: 14px;
    }

    .gx-shared-footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .gx-shared-footer .gx-footer-brand {
        grid-column: auto;
    }

    .gx-shared-footer .gx-footer-brand > strong {
        font-size: 28px;
    }

    .gx-shared-footer .gx-footer-brand > p {
        font-size: 11px;
    }

    .gx-shared-footer .gx-footer-column nav,
    .gx-shared-footer .gx-footer-column dl {
        grid-template-columns: 1fr;
    }

    .gx-shared-footer .gx-footer-column nav a,
    .gx-shared-footer .gx-footer-column nav > .gx-footer-link-disabled,
    .gx-shared-footer .gx-footer-column dd {
        font-size: 12px;
    }

    .gix-reference-footer {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gix-reference-footer__association {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .gix-hero-copy {
        transform: scale(0.54);
    }

    .gix-globe-column {
        top: 318px;
        width: 610px;
        height: 610px;
    }

    .gix-shortcut-card {
        padding: 14px 10px;
        gap: 4px;
    }

    .gix-shortcut-thumb {
        width: 86px;
        height: 86px;
        flex-basis: 86px;
    }

}

@media (max-width: 390px) {
    .gix-hero-copy {
        transform: scale(0.5);
    }

    .gix-globe-column {
        top: 295px;
        width: 560px;
        height: 560px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gix-reticle-inner,
    .gix-globe-fallback {
        animation: none;
    }

    .gix-year-nav a,
    .gix-home-apply,
    .gx-home-login-submenu,
    .gx-nav-dropdown__trigger::after,
    .gx-nav-dropdown__trigger i,
    .gx-nav-dropdown__menu > a,
    .gx-home-mega,
    .gx-mobile-board-menu > summary i,
    .gix-apply-button {
        transition: none;
    }
}

/* Keep shared chrome unchanged elsewhere while enforcing the homepage text floor. */
body.gix-home-page .gx-header-main.gx-header--compact .gx-home-apply,
body.gix-home-page .gx-home-account .gx-user,
body.gix-home-page .gx-home-account-link,
body.gix-home-page .gx-home-login-submenu,
body.gix-home-page .gx-home-login-submenu small,
body.gix-home-page .gx-home-mobile-nav nav a,
body.gix-home-page .gx-home-mobile-nav .gx-mobile-logout button,
body.gix-home-page .gx-home-mobile-nav .gx-mobile-nav-disabled,
body.gix-home-page .gx-mobile-board-menu > summary,
body.gix-home-page .gx-mobile-board-menu__items > .gx-mobile-board-menu__empty,
body.gix-home-page .gx-archive-strip p,
body.gix-home-page .gx-archive-strip nav,
body.gix-home-page .gx-shared-footer .gx-footer-brand > span,
body.gix-home-page .gx-shared-footer .gx-footer-brand > p,
body.gix-home-page .gx-shared-footer .gx-footer-label,
body.gix-home-page .gx-shared-footer .gx-footer-column nav a,
body.gix-home-page .gx-shared-footer .gx-footer-column nav > .gx-footer-link-disabled,
body.gix-home-page .gx-shared-footer .gx-footer-column dl > div,
body.gix-home-page .gx-shared-footer .gx-footer-column dt,
body.gix-home-page .gx-shared-footer .gx-footer-column dd,
body.gix-home-page .gx-shared-footer .gx-footer-bottom {
    font-size: 13px;
}
