:root {
    --gix-blue: #002060;
    --gix-blue-deep: #001541;
    --gix-ink: #080b12;
    --gix-body: #202733;
    --gix-muted: #5d6572;
    --gix-line: #cbd1d9;
    --gix-soft: #f1f3f6;
    --gix-white: #ffffff;
    --gix-shell: 1240px;
    --gix-header: 100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gix-body);
    background: var(--gix-white);
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.gix-menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input {
    font: inherit;
}

.gix-shell {
    width: min(calc(100% - 64px), var(--gix-shell));
    margin-inline: auto;
}

.gix-skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--gix-white);
    background: var(--gix-blue);
    transform: translateY(-160%);
}

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

.gix-header {
    position: relative;
    z-index: 100;
    height: var(--gix-header);
    background: var(--gix-white);
    border-bottom: 1px solid #dce0e6;
}

.gix-header__inner {
    width: min(calc(100% - 56px), 1440px);
    height: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 250px 1fr auto;
    align-items: center;
    gap: 42px;
}

.gix-header__brand img {
    width: 238px;
    height: auto;
}

.gix-header__nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.5vw, 42px);
}

.gix-header__nav a {
    position: relative;
    padding-block: 36px;
    color: var(--gix-ink);
    font-weight: 600;
    white-space: nowrap;
}

.gix-header__nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 27px;
    left: 0;
    height: 1px;
    background: var(--gix-ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.gix-header__nav a:hover::after,
.gix-header__nav a:focus-visible::after,
.gix-header__nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.gix-header__actions,
.gix-header__socials {
    display: flex;
    align-items: center;
}

.gix-header__actions {
    gap: 24px;
}

.gix-header__socials {
    gap: 17px;
}

.gix-header__socials a {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
}

.gix-header__socials img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.gix-search-trigger {
    position: relative;
    display: block;
    width: 58px;
    height: 58px;
    border: 1px solid #d9e0ea;
    border-radius: 50%;
}

.gix-search-trigger span {
    position: absolute;
    top: 17px;
    left: 18px;
    width: 19px;
    height: 19px;
    border: 2px solid var(--gix-blue);
    border-radius: 50%;
}

.gix-search-trigger span::after {
    content: "";
    position: absolute;
    right: -7px;
    bottom: -4px;
    width: 10px;
    height: 2px;
    background: var(--gix-blue);
    transform: rotate(48deg);
    transform-origin: left center;
}

.gix-menu-trigger {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
}

.gix-menu-trigger span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 7px auto;
    background: var(--gix-ink);
    transition: transform 180ms ease;
}

.gix-menu-open .gix-menu-trigger span:first-child {
    transform: translateY(4.5px) rotate(45deg);
}

.gix-menu-open .gix-menu-trigger span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
}

.gix-mobile-nav {
    position: fixed;
    z-index: 90;
    inset: var(--gix-header) 0 0;
    padding: 42px 32px;
    background: var(--gix-white);
}

.gix-mobile-nav a {
    display: block;
    padding: 16px 0;
    color: var(--gix-ink);
    border-bottom: 1px solid var(--gix-line);
    font-size: 1.25rem;
    font-weight: 600;
}

.gix-mobile-nav a[aria-current="page"] {
    color: var(--gix-blue);
}

.gix-search-panel {
    padding: 30px 0;
    background: var(--gix-soft);
    border-bottom: 1px solid var(--gix-line);
}

.gix-search-panel form {
    width: min(calc(100% - 64px), var(--gix-shell));
    margin-inline: auto;
}

.gix-search-panel label {
    display: block;
    margin-bottom: 10px;
    color: var(--gix-ink);
    font-weight: 600;
}

.gix-search-panel form div {
    display: flex;
}

.gix-search-panel input {
    min-width: 0;
    flex: 1;
    padding: 13px 16px;
    color: var(--gix-ink);
    background: var(--gix-white);
    border: 1px solid var(--gix-line);
}

.gix-search-panel button {
    padding: 13px 24px;
    color: var(--gix-white);
    background: var(--gix-blue);
    border: 1px solid var(--gix-blue);
    font-weight: 600;
}

.gix-kicker {
    margin: 0 0 22px;
    color: var(--gix-blue);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.gix-kicker--light {
    color: #d8e2f5;
}

.gix-wwa-hero {
    position: relative;
    min-height: 540px;
    max-height: 740px;
    aspect-ratio: 12 / 5;
    overflow: hidden;
    color: var(--gix-white);
    background: var(--gix-blue-deep);
}

.gix-wwa-hero__media,
.gix-wwa-hero__shade {
    position: absolute;
    inset: 0;
}

.gix-wwa-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gix-wwa-hero__shade {
    background: linear-gradient(90deg, rgba(0, 15, 42, 0.86) 0%, rgba(0, 15, 42, 0.58) 43%, rgba(0, 15, 42, 0.08) 72%);
}

.gix-wwa-hero__content {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 72px;
}

.gix-wwa-hero h1 {
    max-width: 790px;
    margin: 0;
    color: var(--gix-white);
    font-size: clamp(3rem, 4.8vw, 4.9rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.gix-wwa-hero__content > p:last-child {
    max-width: 690px;
    margin: 32px 0 0;
    color: #f0f3f8;
    font-size: clamp(1.08rem, 1.45vw, 1.3rem);
    line-height: 1.55;
}

.gix-identity {
    padding: 112px 0 96px;
}

.gix-identity__intro {
    display: grid;
    grid-template-columns: 1.08fr 0.72fr;
    gap: 100px;
    align-items: end;
    padding-bottom: 72px;
    border-bottom: 1px solid var(--gix-ink);
}

.gix-identity h2,
.gix-continuity h2,
.gix-direction h2,
.gix-values h2,
.gix-team h2,
.gix-work h2,
.gix-next h2 {
    margin: 0;
    color: var(--gix-ink);
    font-size: clamp(2.45rem, 3.9vw, 4.25rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.gix-identity__copy p {
    margin: 0 0 22px;
    font-size: 1.08rem;
}

.gix-identity__copy p:last-child {
    margin-bottom: 0;
}

.gix-identity__facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.gix-identity__facts div {
    min-height: 150px;
    padding: 34px 28px 28px 0;
    border-right: 1px solid var(--gix-line);
}

.gix-identity__facts div:not(:first-child) {
    padding-left: 28px;
}

.gix-identity__facts div:last-child {
    border-right: 0;
}

.gix-identity__facts strong,
.gix-identity__facts span {
    display: block;
}

.gix-identity__facts strong {
    color: var(--gix-ink);
    font-size: clamp(1.65rem, 2.3vw, 2.45rem);
    font-weight: 600;
    line-height: 1.15;
}

.gix-identity__facts span {
    margin-top: 10px;
    color: var(--gix-muted);
    font-size: 0.94rem;
}

.gix-continuity {
    padding: 108px 0 116px;
    color: var(--gix-white);
    background: var(--gix-blue-deep);
}

.gix-continuity h2,
.gix-team h2,
.gix-next h2 {
    color: var(--gix-white);
}

.gix-continuity__head,
.gix-work__head {
    display: grid;
    grid-template-columns: 1fr 0.62fr;
    gap: 100px;
    align-items: end;
    margin-bottom: 70px;
}

.gix-continuity__head > p,
.gix-work__head > p {
    margin: 0;
    padding-top: 22px;
    border-top: 1px solid currentColor;
    font-size: 1.08rem;
}

.gix-continuity__head > p {
    color: #dfe6f2;
}

.gix-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.gix-timeline article {
    padding: 38px 34px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.gix-timeline article:not(:first-child) {
    padding-left: 34px;
}

.gix-timeline article:last-child {
    border-right: 0;
}

.gix-timeline time {
    color: #cbd8ee;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.gix-timeline h3 {
    margin: 30px 0 18px;
    color: var(--gix-white);
    font-size: 1.45rem;
    line-height: 1.25;
}

.gix-timeline p {
    margin: 0;
    color: #dfe6f2;
}

.gix-direction {
    padding: 112px 0 120px;
}

.gix-direction__head {
    max-width: 850px;
    margin-bottom: 68px;
}

.gix-direction__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--gix-ink);
}

.gix-direction__grid article {
    padding: 42px 54px 0 0;
}

.gix-direction__grid article + article {
    padding-right: 0;
    padding-left: 54px;
    border-left: 1px solid var(--gix-line);
}

.gix-direction__grid span {
    color: var(--gix-blue);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.gix-direction__grid h3 {
    margin: 28px 0 24px;
    color: var(--gix-ink);
    font-size: clamp(1.55rem, 2.3vw, 2.45rem);
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: -0.025em;
}

.gix-direction__grid p {
    max-width: 570px;
    margin: 0;
    font-size: 1.04rem;
}

.gix-values {
    padding: 104px 0;
    background: var(--gix-soft);
}

.gix-values__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 110px;
    align-items: start;
}

.gix-values__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--gix-ink);
}

.gix-values__list span {
    min-height: 78px;
    display: flex;
    align-items: center;
    padding: 20px 20px 20px 0;
    color: var(--gix-ink);
    border-bottom: 1px solid var(--gix-line);
    font-size: 1.08rem;
    font-weight: 600;
}

.gix-values__list span:nth-child(even) {
    padding-left: 28px;
    border-left: 1px solid var(--gix-line);
}

.gix-team {
    padding: 106px 0;
    color: var(--gix-white);
    background: var(--gix-blue);
}

.gix-team__grid,
.gix-next__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.65fr;
    gap: 110px;
    align-items: end;
}

.gix-team__copy,
.gix-next__grid > div:last-child {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.gix-team__copy p,
.gix-next__grid > div:last-child p {
    margin: 0 0 22px;
    color: #e4eafa;
    font-size: 1.05rem;
}

.gix-team__copy a,
.gix-next__actions a {
    display: inline-block;
    color: var(--gix-white);
    border-bottom: 1px solid currentColor;
    font-weight: 700;
}

.gix-work {
    padding: 112px 0 124px;
}

.gix-work__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--gix-ink);
}

.gix-work__list article {
    padding: 34px 42px 38px 0;
    border-bottom: 1px solid var(--gix-line);
}

.gix-work__list article:nth-child(even) {
    padding-right: 0;
    padding-left: 42px;
    border-left: 1px solid var(--gix-line);
}

.gix-work__list h3 {
    margin: 0 0 14px;
    color: var(--gix-ink);
    font-size: 1.35rem;
}

.gix-work__list p {
    max-width: 520px;
    margin: 0;
}

.gix-next {
    padding: 100px 0;
    color: var(--gix-white);
    background: var(--gix-blue-deep);
}

.gix-next__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 34px;
    margin-top: 30px;
}

.gix-footer {
    padding: 82px 0 28px;
    color: var(--gix-body);
    background: var(--gix-white);
}

.gix-footer__main {
    display: grid;
    grid-template-columns: 1.45fr 1fr 0.8fr 0.9fr;
    gap: 60px;
    padding-bottom: 68px;
}

.gix-footer__brand img {
    width: min(100%, 280px);
    height: auto;
    margin-bottom: 24px;
}

.gix-footer__brand p {
    max-width: 310px;
    margin: 0;
    color: var(--gix-muted);
}

.gix-footer__links h2 {
    margin: 0 0 22px;
    color: var(--gix-ink);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gix-footer__links a {
    display: block;
    width: fit-content;
    margin: 0 0 10px;
    color: var(--gix-muted);
    font-size: 0.94rem;
}

.gix-footer__links a:hover,
.gix-footer__links a:focus-visible {
    color: var(--gix-blue);
    text-decoration: underline;
}

.gix-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    color: var(--gix-muted);
    border-top: 1px solid var(--gix-line);
    font-size: 0.84rem;
}

.gix-footer__bottom p {
    margin: 0;
}

:focus-visible {
    outline: 3px solid #7ca5ed;
    outline-offset: 3px;
}

@media (max-width: 1180px) {
    .gix-header__inner {
        grid-template-columns: 220px 1fr auto;
        gap: 24px;
    }

    .gix-header__brand img {
        width: 210px;
    }

    .gix-header__nav {
        gap: 22px;
    }

    .gix-header__socials {
        display: none;
    }

    .gix-identity__intro,
    .gix-continuity__head,
    .gix-values__grid,
    .gix-team__grid,
    .gix-work__head,
    .gix-next__grid {
        gap: 70px;
    }
}

@media (max-width: 980px) {
    :root {
        --gix-header: 84px;
    }

    .gix-shell {
        width: min(calc(100% - 48px), var(--gix-shell));
    }

    .gix-header__inner {
        width: calc(100% - 40px);
        grid-template-columns: 1fr auto;
    }

    .gix-header__brand img {
        width: 205px;
    }

    .gix-header__nav,
    .gix-search-trigger {
        display: none;
    }

    .gix-menu-trigger {
        display: block;
    }

    .gix-wwa-hero {
        min-height: 500px;
        aspect-ratio: auto;
    }

    .gix-identity__intro,
    .gix-continuity__head,
    .gix-values__grid,
    .gix-team__grid,
    .gix-work__head,
    .gix-next__grid {
        gap: 54px;
    }

    .gix-identity__facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .gix-identity__facts div:nth-child(2) {
        border-right: 0;
    }

    .gix-identity__facts div:nth-child(n + 3) {
        border-top: 1px solid var(--gix-line);
    }

    .gix-footer__main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .gix-shell,
    .gix-search-panel form {
        width: calc(100% - 36px);
    }

    .gix-wwa-hero {
        display: grid;
        min-height: 0;
        max-height: none;
        overflow: visible;
        background: var(--gix-blue-deep);
    }

    .gix-wwa-hero__media {
        position: relative;
        aspect-ratio: 12 / 5;
    }

    .gix-wwa-hero__media img {
        object-fit: cover;
    }

    .gix-wwa-hero__shade {
        display: none;
    }

    .gix-wwa-hero__content {
        min-height: 0;
        padding-block: 58px 64px;
    }

    .gix-wwa-hero h1 {
        font-size: clamp(2.7rem, 12vw, 4rem);
    }

    .gix-identity,
    .gix-direction,
    .gix-work {
        padding-block: 82px;
    }

    .gix-continuity,
    .gix-values,
    .gix-team,
    .gix-next {
        padding-block: 76px;
    }

    .gix-identity__intro,
    .gix-continuity__head,
    .gix-values__grid,
    .gix-team__grid,
    .gix-work__head,
    .gix-next__grid,
    .gix-direction__grid {
        grid-template-columns: 1fr;
    }

    .gix-identity__intro {
        padding-bottom: 50px;
    }

    .gix-identity__facts {
        grid-template-columns: 1fr;
    }

    .gix-identity__facts div,
    .gix-identity__facts div:not(:first-child) {
        min-height: 0;
        padding: 24px 0;
        border-top: 1px solid var(--gix-line);
        border-right: 0;
    }

    .gix-timeline {
        grid-template-columns: 1fr;
    }

    .gix-timeline article,
    .gix-timeline article:not(:first-child) {
        padding: 32px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .gix-direction__grid article,
    .gix-direction__grid article + article {
        padding: 34px 0;
        border-bottom: 1px solid var(--gix-line);
        border-left: 0;
    }

    .gix-values__list,
    .gix-work__list {
        grid-template-columns: 1fr;
    }

    .gix-values__list span:nth-child(even),
    .gix-work__list article:nth-child(even),
    .gix-work__list article {
        padding-right: 0;
        padding-left: 0;
        border-left: 0;
    }

    .gix-footer__main {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .gix-footer__bottom {
        flex-direction: column;
        gap: 8px;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
