: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;
    width: 10px;
    height: 2px;
    right: -7px;
    bottom: -4px;
    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 24px;
    color: var(--gix-blue);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

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

.gix-careers-hero {
    border-bottom: 1px solid var(--gix-line);
}

.gix-careers-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
    min-height: 680px;
}

.gix-careers-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 86px clamp(50px, 7vw, 128px) 86px max(32px, calc((100vw - var(--gix-shell)) / 2));
}

.gix-careers-hero h1 {
    max-width: 780px;
    margin: 0;
    color: var(--gix-ink);
    font-size: clamp(3.2rem, 5.7vw, 6.25rem);
    font-weight: 600;
    line-height: 0.99;
    letter-spacing: -0.055em;
}

.gix-careers-hero__lead {
    max-width: 650px;
    margin: 42px 0 0;
    color: var(--gix-body);
    font-size: clamp(1.2rem, 1.8vw, 1.65rem);
    line-height: 1.45;
}

.gix-careers-hero__image {
    background: var(--gix-soft);
    border-left: 1px solid var(--gix-line);
}

.gix-careers-hero__image img {
    width: 100%;
    height: auto;
}

.gix-careers-status {
    color: var(--gix-white);
    background: var(--gix-blue-deep);
}

.gix-careers-status__grid {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 80px;
    align-items: start;
    padding-block: 72px;
}

.gix-careers-status h2 {
    margin: 0;
    color: var(--gix-white);
    font-size: clamp(2rem, 3.2vw, 3.6rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.gix-careers-status__copy {
    padding-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.gix-careers-status__copy p {
    max-width: 690px;
    margin: 25px 0 0;
    color: #e3e9f3;
    font-size: 1.125rem;
}

.gix-profile {
    padding: 118px 0 126px;
}

.gix-profile__intro {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 100px;
    align-items: end;
    padding-bottom: 72px;
    border-bottom: 1px solid var(--gix-line);
}

.gix-profile h2,
.gix-areas h2,
.gix-clarity h2 {
    margin: 0;
    color: var(--gix-ink);
    font-size: clamp(2.65rem, 4.7vw, 5.25rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.gix-profile__copy p {
    margin: 0 0 22px;
    font-size: 1.125rem;
}

.gix-profile__copy p:last-of-type {
    margin-bottom: 32px;
}

.gix-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 14px 22px;
    color: var(--gix-white);
    background: var(--gix-blue);
    border: 1px solid var(--gix-blue);
    font-weight: 600;
    transition: color 180ms ease, background 180ms ease;
}

.gix-button:hover,
.gix-button:focus-visible {
    color: var(--gix-blue);
    background: var(--gix-white);
}

.gix-profile__notice {
    margin: 44px 0 0;
    padding-left: 20px;
    color: var(--gix-muted);
    border-left: 3px solid var(--gix-blue);
    font-size: 0.94rem;
    line-height: 1.65;
}

.gix-areas {
    padding: 114px 0;
    background: var(--gix-soft);
}

.gix-areas__head {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 100px;
    align-items: end;
    margin-bottom: 70px;
}

.gix-areas__head > p {
    margin: 0;
    padding-top: 22px;
    border-top: 1px solid var(--gix-ink);
    font-size: 1.125rem;
}

.gix-areas__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--gix-line);
    border-left: 1px solid var(--gix-line);
}

.gix-areas__list span {
    min-height: 112px;
    display: flex;
    align-items: center;
    padding: 24px 28px;
    color: var(--gix-ink);
    background: var(--gix-white);
    border-right: 1px solid var(--gix-line);
    border-bottom: 1px solid var(--gix-line);
    font-size: 1.15rem;
    font-weight: 600;
}

.gix-areas__context {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid var(--gix-line);
}

.gix-areas__context span {
    color: var(--gix-muted);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.gix-clarity {
    padding: 118px 0 130px;
}

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

.gix-clarity__items {
    border-top: 1px solid var(--gix-ink);
}

.gix-clarity__item {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--gix-line);
}

.gix-clarity__item h3 {
    margin: 0;
    color: var(--gix-ink);
    font-size: 1rem;
    font-weight: 700;
}

.gix-clarity__item p {
    margin: 0;
}

.gix-privacy {
    color: var(--gix-white);
    background: var(--gix-blue);
}

.gix-privacy__grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 100px;
    padding-block: 82px;
}

.gix-privacy h2 {
    max-width: 720px;
    margin: 0;
    color: var(--gix-white);
    font-size: clamp(2.4rem, 4.2vw, 4.6rem);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.gix-privacy__copy {
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.gix-privacy__copy p {
    margin: 0 0 24px;
    color: #e4eafa;
}

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

.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;
    border-top: 1px solid var(--gix-line);
    color: var(--gix-muted);
    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-careers-hero__grid {
        grid-template-columns: 1.1fr 0.75fr;
    }

    .gix-careers-hero__content {
        padding-right: 56px;
    }
}

@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-careers-hero__grid {
        grid-template-columns: 1fr 0.78fr;
        min-height: 0;
    }

    .gix-careers-hero__content {
        padding: 72px 42px 72px 24px;
    }

    .gix-careers-hero h1 {
        font-size: clamp(3rem, 7vw, 4.6rem);
    }

    .gix-careers-status__grid,
    .gix-profile__intro,
    .gix-areas__head,
    .gix-clarity__grid,
    .gix-privacy__grid {
        gap: 54px;
    }

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

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

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

    .gix-careers-hero__grid,
    .gix-careers-status__grid,
    .gix-profile__intro,
    .gix-areas__head,
    .gix-clarity__grid,
    .gix-privacy__grid {
        grid-template-columns: 1fr;
    }

    .gix-careers-hero__content {
        padding: 64px 18px;
    }

    .gix-careers-hero__image {
        border-top: 1px solid var(--gix-line);
        border-left: 0;
    }

    .gix-careers-status__grid,
    .gix-privacy__grid {
        padding-block: 62px;
    }

    .gix-profile,
    .gix-areas,
    .gix-clarity {
        padding-block: 82px;
    }

    .gix-profile__intro {
        padding-bottom: 52px;
    }

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

    .gix-areas__context {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gix-clarity__item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .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;
    }
}
