:root {
  --ink: #07070a;
  --panel: #0e0e14;
  --panel-light: #15151d;
  --line: rgba(255, 255, 255, 0.14);
  --muted: #9a9aa5;
  --white: #f5f4ef;
  --deep-blue: #4d6de8;
  --violet: #9d7cff;
  --cyan: #55e6ff;
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

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

body::selection {
  background: var(--deep-blue);
  color: var(--white);
}

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

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 99px;
  background: var(--deep-blue);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--deep-blue);
  outline-offset: 4px;
}

.shell {
  width: min(100%, 1500px);
  margin-inline: auto;
  padding-inline: clamp(22px, 4vw, 64px);
}

.section {
  padding-block: clamp(110px, 13vw, 200px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(245, 244, 239, 0.62);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  min-height: 84px;
  padding-inline: clamp(22px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 10, 0.68);
  backdrop-filter: blur(22px);
}

.brand {
  --logo-size: 31px;
  --logo-svet-size: 20px;
  --logo-games-size: 7px;
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
}

.logo-symbol {
  position: relative;
  display: grid;
  flex: 0 0 var(--logo-size);
  width: var(--logo-size);
  height: var(--logo-size);
  place-items: center;
  isolation: isolate;
}

.logo-symbol::before {
  position: absolute;
  width: 112%;
  height: 48%;
  border: 1px solid rgba(85, 230, 255, 0.72);
  border-right-color: var(--deep-blue);
  border-left-color: rgba(157, 124, 255, 0.22);
  border-radius: 50%;
  content: "";
  filter: drop-shadow(0 0 5px rgba(85, 230, 255, 0.28));
  transform: rotate(-32deg);
}

.logo-symbol::after {
  position: absolute;
  width: 56%;
  height: 56%;
  border: 2px solid rgba(245, 244, 239, 0.82);
  border-top-color: var(--deep-blue);
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(-38deg);
}

.logo-core {
  position: relative;
  z-index: 1;
  width: 18%;
  height: 18%;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 7px var(--white),
    0 0 15px var(--deep-blue),
    0 0 26px rgba(85, 230, 255, 0.68);
}

.logo-core::before,
.logo-core::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  background: linear-gradient(90deg, transparent, var(--deep-blue), transparent);
  content: "";
  transform: translate(-50%, -50%);
}

.logo-core::before {
  width: 320%;
  height: 1px;
}

.logo-core::after {
  width: 1px;
  height: 320%;
  background: linear-gradient(180deg, transparent, var(--white), transparent);
}

.logo-wordmark {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  color: var(--white);
  font-family: var(--display);
  font-size: var(--logo-svet-size);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-transform: uppercase;
}

.logo-svet {
  position: relative;
}

.logo-svet::after {
  position: absolute;
  right: -0.02em;
  bottom: -0.18em;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--deep-blue));
  content: "";
}

.logo-games {
  margin-left: 0.72em;
  color: var(--deep-blue);
  font-family: var(--body);
  font-size: var(--logo-games-size);
  font-weight: 800;
  letter-spacing: 0.2em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3.1vw, 52px);
}

.nav a {
  position: relative;
  padding-block: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--deep-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 940px;
  height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 78% 32%, rgba(85, 65, 190, 0.34), transparent 46%),
    radial-gradient(ellipse at 58% 108%, rgba(37, 82, 165, 0.22), transparent 48%),
    linear-gradient(135deg, #04050c 0%, #09091a 48%, #030409 100%);
}

.hero-shade,
.star-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-shade {
  background:
    radial-gradient(circle at 70% 42%, rgba(98, 67, 205, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(7, 7, 10, 0.94) 0%, rgba(7, 7, 10, 0.72) 44%, rgba(7, 7, 10, 0.18) 72%, rgba(7, 7, 10, 0.68) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 26%, rgba(7, 7, 10, 0.45) 100%);
}

.star-field {
  opacity: 0.58;
  background-image:
    radial-gradient(circle at 12% 28%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 74% 18%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 45% 68%, var(--violet) 0 1px, transparent 1.8px),
    radial-gradient(circle at 88% 72%, var(--cyan) 0 1px, transparent 1.8px),
    radial-gradient(circle at 32% 82%, rgba(255, 255, 255, 0.8) 0 0.7px, transparent 1.2px),
    radial-gradient(circle at 92% 38%, rgba(255, 255, 255, 0.72) 0 0.7px, transparent 1.2px);
  background-size: 230px 190px, 310px 270px, 370px 310px, 430px 380px, 170px 150px, 290px 230px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100%;
  padding-top: clamp(142px, 17vh, 196px);
  padding-bottom: 38px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 1030px);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--deep-blue);
  box-shadow: 0 0 0 4px rgba(77, 109, 232, 0.12), 0 0 18px var(--deep-blue);
}

.hero h1 {
  margin: clamp(26px, 4vh, 46px) 0 0;
  font-family: var(--display);
  font-size: clamp(78px, 10.3vw, 158px);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.072em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 244, 239, 0.64);
}

.hero-copy-bottom {
  display: flex;
  align-items: flex-end;
  gap: 42px;
  width: min(100%, 720px);
  margin-top: clamp(38px, 5vh, 62px);
  margin-left: clamp(0px, 18vw, 268px);
}

.hero-copy-bottom p {
  max-width: 410px;
  margin: 0;
  color: rgba(245, 244, 239, 0.72);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
}

.primary-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 220px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.primary-button:hover {
  border-color: var(--deep-blue);
  background: var(--deep-blue);
  color: var(--white);
}

.hero-visual {
  position: absolute;
  top: 11%;
  right: -4%;
  width: min(53vw, 820px);
  aspect-ratio: 1;
  animation: visual-enter 1.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-ship {
  position: absolute;
  top: 22%;
  right: 7%;
  z-index: 2;
  width: 67%;
  filter: drop-shadow(0 42px 70px rgba(0, 0, 0, 0.76)) drop-shadow(0 0 38px rgba(85, 230, 255, 0.2));
  transform: rotate(-7deg);
  animation: ship-float 8s ease-in-out infinite;
}

.planet-glow {
  position: absolute;
  top: 17%;
  left: 20%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 44% 38%, rgba(173, 152, 255, 0.42), rgba(75, 46, 158, 0.15) 42%, transparent 70%);
  filter: blur(2px);
}

.orbit {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  transform: rotate(-22deg) scaleY(0.43);
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--deep-blue);
  box-shadow: 0 0 18px var(--deep-blue);
  content: "";
}

.orbit-two {
  inset: 2%;
  border-color: rgba(157, 124, 255, 0.22);
  transform: rotate(30deg) scaleY(0.56);
}

.orbit-two::after {
  right: -4px;
  left: auto;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.telemetry {
  position: absolute;
  z-index: 4;
  min-width: 145px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 7, 10, 0.64);
  backdrop-filter: blur(14px);
}

.telemetry span,
.telemetry strong {
  display: block;
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.telemetry span {
  margin-bottom: 4px;
  color: var(--muted);
}

.telemetry strong {
  font-weight: 700;
}

.telemetry-top {
  top: 18%;
  right: 2%;
}

.telemetry-bottom {
  right: 17%;
  bottom: 18%;
}

.telemetry i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--deep-blue);
  box-shadow: 0 0 10px var(--deep-blue);
}

.hero-meta {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  gap: clamp(18px, 4vw, 68px);
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-meta p {
  margin: 0;
  color: rgba(245, 244, 239, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-meta .hero-scroll {
  justify-self: end;
  color: rgba(245, 244, 239, 0.72);
}

.hero-scroll span {
  color: var(--deep-blue);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--deep-blue);
  color: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  padding-block: 18px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  animation: ticker-scroll 24s linear infinite;
}

.ticker-track i {
  font-style: normal;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 410px);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(62px, 7vw, 108px);
}

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

.section-heading h2,
.worlds-header h2,
.studio h2,
.process h2,
.closing h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 7.3vw, 112px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.87;
  text-transform: uppercase;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}

.project-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.35fr);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.project-stage::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--project-accent);
  content: "";
  box-shadow: 0 0 30px color-mix(in srgb, var(--project-accent), transparent 48%);
}

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 4.5vw, 70px);
  border-right: 1px solid var(--line);
  animation: project-copy 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.project-labels {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.project-number {
  margin: 0 0 24px;
  color: var(--project-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.project-info h3 {
  max-width: 550px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(60px, 6.4vw, 102px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.84;
  text-transform: uppercase;
}

.project-description {
  max-width: 520px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.58;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 99px;
  color: rgba(245, 244, 239, 0.65);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.project-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    radial-gradient(circle at 54% 44%, color-mix(in srgb, var(--project-accent), transparent 75%), transparent 44%),
    #08080c;
  animation: project-image 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.project-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 8, 12, 0.48), transparent 22%), linear-gradient(0deg, rgba(8, 8, 12, 0.4), transparent 32%);
  content: "";
  pointer-events: none;
}

.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
}

.project-stage:hover .project-visual img {
  filter: saturate(1.14);
  transform: scale(1.035);
}

.project-scanline {
  position: absolute;
  inset: -100% 0 auto;
  z-index: 2;
  height: 48%;
  background: linear-gradient(transparent, color-mix(in srgb, var(--project-accent), transparent 92%), transparent);
  animation: scan 6s linear infinite;
  pointer-events: none;
}

.image-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.visual-corner {
  position: absolute;
  z-index: 3;
  width: 28px;
  height: 28px;
  border-color: var(--project-accent);
  border-style: solid;
  pointer-events: none;
}

.visual-corner-one {
  top: 22px;
  left: 22px;
  border-width: 1px 0 0 1px;
}

.visual-corner-two {
  right: 22px;
  bottom: 22px;
  border-width: 0 1px 1px 0;
}

.project-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  pointer-events: none;
}

.project-tabs,
.arrow-controls {
  display: flex;
  pointer-events: auto;
}

.project-tabs button,
.arrow-controls button {
  min-width: 68px;
  min-height: 58px;
  border-right: 1px solid var(--line);
  background: rgba(7, 7, 10, 0.84);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  backdrop-filter: blur(12px);
  transition: background 180ms ease, color 180ms ease;
}

.project-tabs button.active,
.project-tabs button:hover,
.arrow-controls button:hover {
  background: var(--project-accent);
  color: var(--project-contrast, var(--ink));
}

.arrow-controls button {
  border-right: 0;
  border-left: 1px solid var(--line);
  font-size: 20px;
}

.vision {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--panel);
}

.vision::before {
  position: absolute;
  top: -40%;
  right: -18%;
  width: 64vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 124, 255, 0.12), transparent 64%);
  content: "";
  pointer-events: none;
}

.section-heading--split {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.4fr minmax(280px, 0.6fr);
}

.section-heading--split .eyebrow {
  margin-bottom: 28px;
}

.capability-list {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
}

.capability-row {
  display: grid;
  grid-template-columns: 70px minmax(240px, 0.8fr) minmax(300px, 1fr) 200px 44px;
  gap: 28px;
  align-items: center;
  min-height: 146px;
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, padding 220ms ease;
}

.capability-row:hover {
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.capability-number,
.capability-meta {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.capability-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.capability-row > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.capability-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.capability-row:hover .capability-arrow {
  background: var(--deep-blue);
  color: var(--white);
  transform: rotate(45deg);
}

.worlds {
  padding-block: clamp(110px, 12vw, 180px) 0;
  overflow: hidden;
}

.worlds-header {
  margin-bottom: clamp(54px, 7vw, 100px);
}

.worlds-header h2 {
  margin-top: 28px;
}

.worlds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 610px;
  border-block: 1px solid var(--line);
}

.world-card {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #0d0d14;
}

.world-card:last-child {
  border-right: 0;
}

.world-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 10, 0.92), transparent 38%), linear-gradient(120deg, transparent 50%, rgba(77, 109, 232, 0.08));
  content: "";
}

.world-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.82);
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.world-card:hover img {
  filter: saturate(1.08) brightness(0.94);
  transform: scale(1.06);
}

.world-card figcaption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.world-card--2,
.world-card--4 {
  transform: translateY(54px);
}

.studio {
  padding-top: clamp(170px, 18vw, 270px);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(54px, 9vw, 150px);
  align-items: end;
}

.studio-title .eyebrow {
  margin-bottom: 30px;
}

.studio h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 244, 239, 0.5);
}

.studio-copy {
  padding-bottom: 6px;
}

.studio-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.studio-copy .studio-lead {
  margin-bottom: 34px;
  color: var(--white);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.35;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(72px, 9vw, 140px);
  border-block: 1px solid var(--line);
}

.principles article {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

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

.principles span {
  color: var(--deep-blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.principles h3 {
  margin: 88px 0 20px;
  font-family: var(--display);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.principles p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.process {
  border-block: 1px solid var(--line);
  background: #0b0b10;
}

.process-heading .eyebrow {
  margin-bottom: 28px;
}

.process-heading h2 {
  max-width: 900px;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(74px, 8vw, 130px);
}

.process-grid::before {
  position: absolute;
  top: 49px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-grid article {
  position: relative;
  padding-right: clamp(20px, 3vw, 54px);
}

.process-grid article > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process-node {
  position: relative;
  z-index: 2;
  width: 13px;
  height: 13px;
  margin: 30px 0 52px;
  border: 3px solid #0b0b10;
  border-radius: 50%;
  background: var(--deep-blue);
  box-shadow: 0 0 0 1px var(--deep-blue), 0 0 20px rgba(77, 109, 232, 0.36);
}

.process-grid h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.process-grid p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.closing {
  position: relative;
  display: grid;
  min-height: 860px;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 50% 52%, rgba(96, 55, 205, 0.28), transparent 34%),
    linear-gradient(180deg, #08080d, #050507);
}

.closing-stars {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    radial-gradient(circle at 20% 20%, #fff 0 1px, transparent 1.6px),
    radial-gradient(circle at 75% 60%, var(--violet) 0 1px, transparent 1.8px),
    radial-gradient(circle at 43% 78%, var(--cyan) 0 1px, transparent 1.8px);
  background-size: 250px 240px, 330px 310px, 420px 390px;
}

.closing-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(78vw, 1100px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%) scaleY(0.34) rotate(-8deg);
}

.closing-orbit::before,
.closing-orbit::after {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(157, 124, 255, 0.16);
  border-radius: inherit;
  content: "";
}

.closing-orbit::after {
  inset: 27%;
  border-color: rgba(85, 230, 255, 0.14);
}

.closing-orbit span {
  position: absolute;
  top: 48%;
  right: -7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--deep-blue);
  box-shadow: 0 0 30px var(--deep-blue);
}

.closing-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.closing-inner .eyebrow {
  justify-content: center;
}

.closing h2 {
  margin-top: 34px;
  font-size: clamp(66px, 9vw, 144px);
}

.closing h2 span {
  color: var(--deep-blue);
}

.closing-copy {
  max-width: 610px;
  margin: 42px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: end;
  padding-top: 70px;
  padding-bottom: 36px;
}

.footer-brand {
  --logo-size: clamp(44px, 5vw, 66px);
  --logo-svet-size: clamp(34px, 4vw, 54px);
  --logo-games-size: clamp(9px, 1vw, 13px);
  gap: clamp(14px, 1.6vw, 22px);
}

.footer-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--deep-blue);
}

.footer-meta {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(245, 244, 239, 0.38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.reveal-up {
  animation: reveal-up 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-delay-1 {
  animation-delay: 90ms;
}

.reveal-delay-2 {
  animation-delay: 180ms;
}

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

@keyframes visual-enter {
  from { opacity: 0; transform: translate(12%, 4%) scale(0.92); }
  to { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes ship-float {
  0%, 100% { transform: translateY(0) rotate(-7deg); }
  50% { transform: translateY(-22px) rotate(-4deg); }
}

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

@keyframes project-copy {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes project-image {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes scan {
  from { transform: translateY(0); }
  to { transform: translateY(420%); }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 170px 1fr 170px;
  }

  .hero {
    min-height: 850px;
  }

  .hero h1 {
    font-size: clamp(72px, 10.5vw, 118px);
  }

  .hero-visual {
    top: 17%;
    right: -12%;
    opacity: 0.72;
  }

  .project-stage {
    grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  }

  .capability-row {
    grid-template-columns: 48px minmax(220px, 0.8fr) 1fr 42px;
  }

  .capability-meta {
    display: none;
  }

  .world-card,
  .worlds-grid {
    min-height: 520px;
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .site-header .brand {
    --logo-size: 29px;
    --logo-svet-size: 18px;
    --logo-games-size: 6px;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 12px 8px;
    place-content: center;
    gap: 7px;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 23px;
    height: 1px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    padding: 90px 28px 40px;
    background: rgba(7, 7, 10, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    font-family: var(--display);
    font-size: 42px;
    letter-spacing: -0.04em;
  }

  .hero {
    height: auto;
    min-height: 880px;
  }

  .hero-content {
    padding-top: 140px;
  }

  .hero h1 {
    font-size: clamp(64px, 12.7vw, 104px);
  }

  .hero-copy-bottom {
    margin-left: 0;
  }

  .hero-visual {
    top: 29%;
    right: -18%;
    width: 70vw;
    opacity: 0.38;
  }

  .telemetry {
    display: none;
  }

  .section-heading,
  .section-heading--split,
  .studio-grid {
    grid-template-columns: 1fr;
  }

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

  .section-intro {
    max-width: 560px;
  }

  .project-stage {
    grid-template-columns: 1fr;
  }

  .project-info {
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-visual {
    min-height: 460px;
  }

  .project-controls {
    position: relative;
    grid-column: 1;
  }

  .capability-row {
    grid-template-columns: 42px 1fr 42px;
    gap: 18px;
    min-height: 160px;
  }

  .capability-row > p {
    grid-column: 2 / 4;
    padding-bottom: 26px;
  }

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

  .world-card {
    min-height: 520px;
    border-bottom: 1px solid var(--line);
  }

  .world-card--2,
  .world-card--4 {
    transform: none;
  }

  .studio {
    padding-top: clamp(120px, 16vw, 190px);
  }

  .studio-copy {
    max-width: 640px;
  }

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

  .principles article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles article:last-child {
    border-bottom: 0;
  }

  .principles h3 {
    margin-top: 50px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 26px;
  }

  .process-grid::before {
    display: none;
  }

  .process-node {
    margin-bottom: 30px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .shell {
    padding-inline: 20px;
  }

  .section {
    padding-block: 100px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-top: 124px;
    padding-bottom: 24px;
  }

  .hero h1 {
    margin-top: 32px;
    font-size: clamp(54px, 17vw, 78px);
    letter-spacing: -0.065em;
    line-height: 0.82;
  }

  .hero-copy-bottom {
    display: block;
    margin-top: 34px;
  }

  .primary-button {
    width: 100%;
    margin-top: 24px;
  }

  .hero-visual {
    top: 38%;
    right: -28%;
    width: 92vw;
    opacity: 0.26;
  }

  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .hero-meta .hero-scroll {
    display: none;
  }

  .hero-meta p {
    font-size: 8px;
  }

  .ticker-track {
    padding-block: 14px;
  }

  .section-heading,
  .section-heading--split {
    gap: 28px;
    margin-bottom: 54px;
  }

  .section-heading h2,
  .worlds-header h2,
  .studio h2,
  .process h2,
  .closing h2 {
    font-size: clamp(47px, 14.5vw, 72px);
  }

  .project-info {
    min-height: 500px;
    padding: 30px 26px 42px;
  }

  .project-labels span:last-child {
    display: none;
  }

  .project-info h3 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .project-visual {
    min-height: 330px;
  }

  .project-tabs button,
  .arrow-controls button {
    min-width: 52px;
  }

  .capability-row {
    grid-template-columns: 34px 1fr 34px;
    gap: 12px;
  }

  .capability-row h3 {
    font-size: 28px;
  }

  .capability-row > p {
    font-size: 14px;
  }

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

  .world-card {
    min-height: 520px;
    border-right: 0;
  }

  .principles article {
    padding: 28px 4px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .process-grid article {
    padding-right: 0;
  }

  .closing {
    min-height: 720px;
  }

  .closing-orbit {
    width: 130vw;
  }

  .closing-copy {
    margin-top: 30px;
  }

  .footer {
    gap: 42px;
    padding-top: 52px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

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

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