:root {
    --ink: #080909;
    --ink-soft: #101212;
    --panel: #151717;
    --panel-light: #1b1e1e;
    --line: rgba(224, 232, 228, 0.18);
    --line-strong: rgba(224, 232, 228, 0.36);
    --paper: #e7ebe7;
    --muted: #929b97;
    --gold: #d4aa26;
    --gold-bright: #ffe33a;
    --gold-muted: #a5842d;
    --header-height: 72px;
    --shell: min(1440px, calc(100vw - 96px));
    --display: "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
    --body: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
    font: inherit;
}

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

::selection {
    background: var(--gold-bright);
    color: var(--ink);
}

:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 5px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 16px;
    left: 16px;
    padding: 10px 16px;
    transform: translateY(-160%);
    background: var(--gold-bright);
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

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

.page-shell {
    width: var(--shell);
    margin-inline: auto;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid transparent;
    background: rgba(5, 6, 6, 0.9);
    backdrop-filter: blur(16px);
    transition: border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    background: rgba(5, 6, 6, 0.97);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--shell);
    height: 100%;
    margin-inline: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.2vw, 38px);
}

.wordmark,
.site-nav a,
.language-switcher,
.menu-toggle {
    font-family: var(--display);
    font-size: 0.83rem;
    font-stretch: condensed;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--gold);
}

.wordmark__mark {
    width: 8px;
    height: 8px;
    background: var(--gold-bright);
    box-shadow: 0 0 18px rgba(255, 227, 58, 0.34);
    transform: rotate(45deg);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.25vw, 42px);
}

.site-nav a {
    position: relative;
    padding-block: 6px;
    color: #9ca4a0;
    transition: color 160ms ease;
}

.site-nav a:nth-child(1) {
    color: var(--gold-muted);
}

.site-nav a:nth-child(3) {
    color: #a89070;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--paper);
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    background: currentColor;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #59615d;
    font-size: 0.68rem;
}

.language-switcher a {
    padding: 5px 2px;
    color: var(--muted);
    transition: color 160ms ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a.is-active {
    color: var(--gold-bright);
}

.language-switcher a.is-active {
    cursor: default;
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle__lines {
    display: grid;
    gap: 5px;
    width: 24px;
}

.menu-toggle__lines i {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
}

.hero {
    position: relative;
    display: flex;
    min-height: 100svh;
    overflow: hidden;
    align-items: center;
    border-bottom: 1px solid var(--line);
    isolation: isolate;
}

.hero::before {
    position: absolute;
    z-index: -3;
    inset: 0;
    content: "";
    background:
        linear-gradient(105deg, rgba(8, 9, 9, 0.98) 0%, rgba(8, 9, 9, 0.78) 54%, rgba(8, 9, 9, 0.54) 100%),
        radial-gradient(circle at 79% 47%, #303837 0, #181d1c 25%, #0d0f0f 49%, #080909 72%);
}

.hero::after {
    position: absolute;
    z-index: -1;
    top: 16%;
    right: -9vw;
    width: min(58vw, 900px);
    aspect-ratio: 1;
    border: 1px solid rgba(212, 170, 38, 0.18);
    border-radius: 50%;
    content: "";
    box-shadow:
        0 0 0 9vw rgba(212, 170, 38, 0.014),
        0 0 0 18vw rgba(212, 170, 38, 0.009);
}

.hero__noise {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.18;
    background-image:
        repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(255, 255, 255, 0.02) 4px),
        repeating-linear-gradient(90deg, transparent 0, transparent 91px, rgba(255, 255, 255, 0.018) 92px);
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    z-index: -1;
    top: 30%;
    right: 12%;
    width: 10vw;
    min-width: 120px;
    aspect-ratio: 1 / 2.8;
    background: var(--gold);
    filter: blur(100px);
    opacity: 0.14;
    transform: rotate(18deg);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--header-height) + 8vh);
    padding-bottom: 11vh;
}

.eyebrow,
.section-kicker {
    margin-bottom: clamp(24px, 4vw, 54px);
    color: var(--muted);
    font-family: var(--display);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow i {
    margin-inline: 10px;
    color: var(--gold-bright);
    font-style: normal;
}

.hero__title {
    max-width: 1120px;
    margin-bottom: clamp(44px, 7vw, 96px);
    font-family: var(--display);
    font-size: clamp(4rem, 8.4vw, 9rem);
    font-stretch: condensed;
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.82;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero__title-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(231, 235, 231, 0.53);
}

.hero__title-solid,
.hero__title-outline {
    white-space: nowrap;
}

.hero__bottom {
    display: flex;
    align-items: flex-end;
    gap: 48px;
    justify-content: space-between;
    max-width: 940px;
}

.hero__intro {
    max-width: 560px;
    margin-bottom: 0;
    color: #b9c0bd;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    line-height: 1.65;
}

.text-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 16px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--line-strong);
    font-family: var(--display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: border-color 160ms ease, color 160ms ease;
}

.text-link > span[aria-hidden="true"] {
    color: var(--gold-bright);
    font-size: 1rem;
    transition: transform 160ms ease;
}

.text-link:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
}

.text-link:hover > span[aria-hidden="true"] {
    transform: translate(3px, 3px);
}

.hero__index {
    position: absolute;
    right: 30px;
    bottom: 34px;
    display: flex;
    gap: 15px;
    color: rgba(231, 235, 231, 0.35);
    font-family: var(--display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    writing-mode: vertical-rl;
}

.scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-family: var(--display);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    transform: translateX(-50%);
}

.scroll-cue i {
    position: relative;
    width: 42px;
    height: 1px;
    overflow: hidden;
    background: var(--line);
}

.scroll-cue i::after {
    position: absolute;
    inset: 0;
    content: "";
    background: var(--gold-bright);
    animation: scroll-line 2.2s ease-in-out infinite;
}

.reveal {
    animation: reveal-up 720ms both cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero__title.reveal {
    animation-delay: 100ms;
}

.hero__bottom.reveal {
    animation-delay: 220ms;
}

.section {
    padding-block: clamp(96px, 11vw, 176px);
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr minmax(200px, 0.55fr);
    margin-bottom: clamp(48px, 7vw, 100px);
    column-gap: 64px;
}

.section-heading .section-kicker {
    grid-column: 1 / -1;
}

.section-heading h2,
.studio-grid h2,
.internship-copy h2,
.support-grid h2,
.site-footer h2,
.steam-section h2 {
    margin-bottom: 0;
    font-family: var(--display);
    font-size: clamp(3rem, 6.8vw, 7rem);
    font-stretch: condensed;
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.85;
    text-transform: uppercase;
}

.section-heading > p:last-child {
    align-self: end;
    max-width: 430px;
    margin-bottom: 4px;
    color: var(--muted);
}

.games-section {
    background: var(--ink-soft);
}

.project-card {
    border-top: 1px solid var(--line-strong);
}

.project-card + .project-card {
    margin-top: clamp(86px, 10vw, 150px);
}

.project-card__visual {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #050606;
}

.project-card__visual::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(5, 6, 6, 0.04) 48%, rgba(5, 6, 6, 0.82) 100%),
        linear-gradient(90deg, rgba(5, 6, 6, 0.22), transparent 45%);
    transition: background-color 240ms ease;
}

.project-card__screenshot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.08);
    opacity: 0;
    transform: scale(1.025);
    transition:
        opacity 500ms ease,
        filter 450ms ease,
        transform 850ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.project-card__screenshot.is-active {
    opacity: 1;
    transform: scale(1);
}

.game-carousel__track {
    position: absolute;
    inset: 0;
}

.project-card__cover-link {
    position: absolute;
    z-index: 2;
    bottom: clamp(20px, 3vw, 42px);
    left: clamp(20px, 3vw, 42px);
    width: clamp(190px, 28%, 420px);
    transition: transform 180ms ease;
}

.project-card__cover {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(231, 235, 231, 0.28);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.44);
}

.project-card__cover-link:hover {
    transform: translateY(-4px);
}

.project-card__number,
.project-card__open {
    position: absolute;
    z-index: 2;
    top: clamp(18px, 2.4vw, 34px);
    font-family: var(--display);
    font-size: 0.63rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.project-card__number {
    left: clamp(20px, 3vw, 42px);
    color: var(--gold-bright);
}

.project-card__open {
    right: clamp(20px, 3vw, 42px);
    padding: 9px 12px;
    background: rgba(5, 6, 6, 0.7);
    color: var(--paper);
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    transition: background-color 180ms ease, color 180ms ease;
}

.project-card__visual:hover .project-card__screenshot.is-active {
    filter: saturate(1) contrast(1.04);
    transform: scale(1.025);
}

.project-card__visual:hover .project-card__open {
    background: var(--gold-bright);
    color: var(--ink);
}

.game-carousel__controls {
    position: absolute;
    z-index: 3;
    right: clamp(20px, 3vw, 42px);
    bottom: clamp(20px, 3vw, 42px);
    display: flex;
    align-items: center;
    gap: 6px;
}

.game-carousel__controls button {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(231, 235, 231, 0.34);
    background: rgba(5, 6, 6, 0.78);
    color: var(--paper);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.game-carousel__controls button:hover {
    border-color: var(--gold-bright);
    background: var(--gold-bright);
    color: var(--ink);
}

.game-carousel__counter {
    min-width: 66px;
    padding-inline: 9px;
    color: var(--paper);
    text-align: center;
    font-family: var(--display);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.project-card__info {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 0.43fr);
    gap: 64px;
    padding-block: 34px;
    border-bottom: 1px solid var(--line-strong);
}

.project-card__status {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.project-card__status i,
.availability i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 14px currentColor;
}

.project-card h3 {
    margin-bottom: 0;
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 3.5rem);
    font-stretch: condensed;
    letter-spacing: -0.04em;
    line-height: 1;
}

.project-card__meta {
    margin: 16px 0 0;
    color: var(--muted);
    font-family: var(--display);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.project-card__summary {
    align-self: end;
}

.project-card__summary > p {
    margin-bottom: 0;
    color: var(--muted);
}

.project-card__summary .text-link {
    margin-top: 24px;
}

.steam-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    padding-block: clamp(96px, 12vw, 170px);
    background: var(--gold-bright);
    color: var(--ink);
}

.steam-section__backdrop {
    position: absolute;
    right: -0.05em;
    bottom: -0.25em;
    color: rgba(8, 9, 9, 0.075);
    font-family: var(--display);
    font-size: min(33vw, 500px);
    font-weight: 900;
    letter-spacing: -0.1em;
    line-height: 0.8;
    pointer-events: none;
}

.steam-section__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(120px, 0.4fr) 1fr auto;
    align-items: end;
    gap: clamp(32px, 6vw, 100px);
}

.steam-section .section-kicker {
    align-self: start;
    color: rgba(8, 9, 9, 0.58);
}

.steam-section h2 {
    font-size: clamp(4rem, 8vw, 8.5rem);
}

.steam-section__content > div p {
    max-width: 420px;
    margin: 30px 0 0;
    color: rgba(8, 9, 9, 0.68);
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 16px 24px;
    border: 1px solid var(--line-strong);
    background: var(--paper);
    color: var(--ink);
    font-family: var(--display);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
    border-color: var(--gold-bright);
    background: var(--gold-bright);
}

.button--dark {
    border-color: rgba(8, 9, 9, 0.34);
    background: var(--ink);
    color: var(--paper);
}

.button--dark:hover {
    border-color: var(--ink);
    background: transparent;
    color: var(--ink);
}

.studio-section {
    background: var(--paper);
    color: var(--ink);
}

.studio-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.85fr) 1fr;
    gap: clamp(60px, 9vw, 150px);
}

.studio-grid .section-kicker {
    color: #616965;
}

.studio-copy__lead {
    max-width: 690px;
    margin-bottom: clamp(62px, 8vw, 110px);
    font-size: clamp(1.45rem, 2.4vw, 2.5rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.principles {
    border-top: 1px solid rgba(8, 9, 9, 0.3);
}

.principles article {
    display: grid;
    grid-template-columns: 45px minmax(150px, 0.6fr) 1fr;
    gap: 22px;
    padding-block: 24px;
    border-bottom: 1px solid rgba(8, 9, 9, 0.2);
}

.principles span,
.principles h3 {
    font-family: var(--display);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.principles h3,
.principles p {
    margin-bottom: 0;
}

.principles p {
    color: #5d6461;
    font-size: 0.9rem;
}

.internship-section {
    background: #111313;
}

.internship-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) 1fr;
    align-items: center;
    gap: clamp(60px, 10vw, 150px);
}

.internship-art {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    min-height: 720px;
    padding: clamp(28px, 4vw, 54px);
    background:
        linear-gradient(145deg, rgba(212, 170, 38, 0.18), transparent 36%),
        radial-gradient(circle at 62% 42%, #3a4140 0, #1f2423 26%, #121414 62%);
}

.internship-art::after {
    position: absolute;
    top: 19%;
    right: 14%;
    width: 70%;
    height: 62%;
    border: 1px solid rgba(231, 235, 231, 0.13);
    content: "";
    transform: rotate(-4deg);
}

.internship-board::before {
    position: absolute;
    right: -0.08em;
    bottom: -0.23em;
    color: rgba(255, 227, 58, 0.07);
    content: "UA";
    font-family: var(--display);
    font-size: clamp(15rem, 28vw, 30rem);
    font-weight: 900;
    letter-spacing: -0.12em;
    line-height: 0.8;
}

.internship-board__top,
.internship-board > ol,
.internship-board > p {
    position: relative;
    z-index: 2;
}

.internship-board__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-family: var(--display);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.internship-board__top strong {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    font-size: 0.72rem;
}

.internship-board ol {
    margin: auto 0;
    padding: clamp(70px, 11vw, 150px) 0;
    list-style: none;
}

.internship-board li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding-block: 22px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(1.15rem, 2vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.internship-board li:first-child {
    border-top: 1px solid var(--line);
}

.internship-board li span {
    color: var(--gold-bright);
    font-size: 0.64rem;
    letter-spacing: 0.12em;
}

.internship-board li strong {
    font-size: inherit;
    font-weight: inherit;
}

.internship-board > p {
    margin: 0;
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.internship-board > p i {
    margin-inline: 10px;
    color: var(--muted);
    font-style: normal;
}

.internship-copy > p:not(.section-kicker, .availability) {
    max-width: 600px;
    margin-block: 40px 30px;
    color: var(--muted);
    font-size: 1.05rem;
}

.university-note {
    max-width: 620px;
    margin-bottom: 30px;
    padding: 24px;
    border-left: 2px solid var(--gold-bright);
    background: rgba(255, 227, 58, 0.055);
}

.university-note span {
    display: block;
    margin-bottom: 12px;
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.university-note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.availability {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    color: var(--gold-muted);
    font-family: var(--display);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.support-section {
    padding-block: clamp(76px, 9vw, 130px);
    border-top: 1px solid var(--line);
    background: var(--panel);
}

.support-grid {
    display: grid;
    grid-template-columns: minmax(120px, 0.38fr) 1fr auto;
    align-items: end;
    gap: clamp(32px, 6vw, 100px);
}

.support-grid .section-kicker {
    align-self: start;
    margin-bottom: 0;
}

.support-grid h2 {
    font-size: clamp(3rem, 5.4vw, 6rem);
}

.support-grid > div p {
    max-width: 620px;
    margin: 26px 0 0;
    color: var(--muted);
}

.site-footer {
    padding-top: clamp(96px, 12vw, 180px);
    background: #050606;
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(120px, 0.38fr) 1fr;
    gap: clamp(32px, 6vw, 100px);
    margin-bottom: clamp(76px, 10vw, 140px);
}

.site-footer h2 {
    font-size: clamp(4rem, 8.2vw, 9rem);
}

.site-footer h2 .footer-title__accent {
    color: var(--gold-bright);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.contact-grid a {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 14px;
    padding: 30px 24px;
    border-right: 1px solid var(--line-strong);
    transition: background 160ms ease, color 160ms ease;
}

.contact-grid a:last-child {
    border-right: 0;
}

.contact-grid a:hover {
    background: var(--gold-bright);
    color: var(--ink);
}

.contact-grid span {
    color: var(--muted);
    font-family: var(--display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-grid a:hover span {
    color: rgba(8, 9, 9, 0.6);
}

.contact-grid strong {
    overflow: hidden;
    font-size: clamp(0.85rem, 1.4vw, 1.12rem);
    font-weight: 500;
    text-overflow: ellipsis;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-block: 26px;
    color: #606763;
    font-family: var(--display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer__bottom p {
    margin-bottom: 0;
}

.site-footer__bottom a {
    transition: color 160ms ease;
}

.site-footer__bottom a:hover {
    color: var(--gold-bright);
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll-line {
    0% {
        transform: translateX(-110%);
    }
    45%,
    55% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(110%);
    }
}

@media (max-width: 1024px) {
    :root {
        --shell: calc(100vw - 56px);
    }

    .hero::before {
        background:
            linear-gradient(90deg, rgba(8, 9, 9, 0.98) 0%, rgba(8, 9, 9, 0.72) 66%, rgba(8, 9, 9, 0.42) 100%),
            radial-gradient(circle at 85% 48%, #3f4e4e 0, #1a2020 24%, #080909 70%);
    }

    .steam-section__content,
    .support-grid {
        grid-template-columns: 0.35fr 1fr;
    }

    .steam-section .button,
    .support-grid .button {
        grid-column: 2;
        justify-self: start;
        margin-top: 12px;
    }

    .studio-grid {
        grid-template-columns: 1fr;
    }

    .studio-grid h2 {
        max-width: 700px;
    }

    .internship-grid {
        gap: 64px;
    }

    .internship-art {
        min-height: 600px;
    }

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

    .contact-grid a:nth-child(2) {
        border-right: 0;
    }

    .contact-grid a:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line-strong);
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 64px;
        --shell: calc(100vw - 36px);
    }

    .site-header__inner {
        width: calc(100vw - 36px);
    }

    .header-actions {
        gap: 14px;
    }

    .language-switcher {
        gap: 5px;
        font-size: 0.64rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 52px 18px;
        background: rgba(5, 6, 6, 0.98);
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav a {
        display: flex;
        width: 100%;
        align-items: center;
        min-height: 68px;
        border-bottom: 1px solid var(--line);
        font-size: 1.7rem;
        letter-spacing: 0.04em;
    }

    .site-nav a::after {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
        transform: translateY(3px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
        transform: translateY(-3px) rotate(-45deg);
    }

    .hero {
        min-height: 820px;
        align-items: flex-start;
    }

    .hero::after {
        top: 23%;
        right: -65%;
        width: 130vw;
    }

    .hero__content {
        padding-top: 155px;
        padding-bottom: 120px;
    }

    .hero__title {
        margin-bottom: 50px;
        font-size: clamp(3.75rem, 18vw, 6rem);
        line-height: 0.86;
    }

    .locale-uk .hero__title {
        font-size: clamp(3.1rem, 15.2vw, 5.5rem);
    }

    .hero__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 32px;
    }

    .hero__intro {
        max-width: 430px;
        font-size: 1rem;
    }

    .hero__index,
    .scroll-cue {
        display: none;
    }

    .section-heading,
    .project-card__info,
    .steam-section__content,
    .internship-grid,
    .support-grid,
    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .section-heading {
        gap: 28px;
    }

    .section-heading .section-kicker {
        grid-column: auto;
    }

    .project-card__visual {
        aspect-ratio: 4 / 3;
    }

    .project-card__info {
        gap: 28px;
    }

    .project-card__cover-link {
        bottom: 16px;
        left: 16px;
        width: min(62%, 260px);
    }

    .project-card__number {
        display: none;
    }

    .game-carousel__controls {
        top: 16px;
        right: 16px;
        bottom: auto;
    }

    .game-carousel__controls button {
        width: 40px;
        height: 40px;
    }

    .game-carousel__counter {
        min-width: 58px;
    }

    .project-card__open {
        display: none;
    }

    .steam-section {
        min-height: 620px;
    }

    .steam-section__content,
    .support-grid {
        align-items: start;
        gap: 35px;
    }

    .steam-section .section-kicker,
    .support-grid .section-kicker {
        margin-bottom: 10px;
    }

    .steam-section .button,
    .support-grid .button {
        grid-column: auto;
        width: 100%;
        margin-top: 10px;
    }

    .studio-copy__lead {
        margin-bottom: 60px;
    }

    .principles article {
        grid-template-columns: 36px 1fr;
    }

    .principles p {
        grid-column: 2;
    }

    .internship-art {
        min-height: 112vw;
    }

    .internship-copy {
        padding-bottom: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid a {
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .contact-grid a:last-child {
        border-bottom: 0;
    }

    .contact-grid a:hover {
        padding-inline: 16px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 420px) {
    .hero__title,
    .section-heading h2,
    .studio-grid h2,
    .internship-copy h2,
    .support-grid h2,
    .site-footer h2,
    .steam-section h2 {
        overflow-wrap: anywhere;
    }

    .game-carousel__toggle {
        display: none !important;
    }
}

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

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