:root {
  --ink: #050507;
  --paper: #f5f5f2;
  --white: #ffffff;
  --muted: #a2a2aa;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #16d9ff;
  --violet: #8f55ff;
  --shell: min(1380px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

main {
  overflow: hidden;
}

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

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

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

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

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

.eyebrow {
  margin: 0;
  color: #a9a9b2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 50%;
  display: grid;
  width: var(--shell);
  height: 104px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.brand-mark::after {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.brand-mark span {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
}

.brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
}

.brand-name small {
  display: block;
  margin-top: 5px;
  color: #99999f;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.46em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  color: #c5c5ca;
  font-size: 13px;
  font-weight: 600;
}

.main-nav a,
.social-links a {
  position: relative;
}

.main-nav a::after,
.social-links a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

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

.nav-cta {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-cta svg,
.text-link svg,
.read-more svg,
.store-link svg,
.button svg,
.round-arrow svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 220ms ease;
}

.nav-cta:hover svg,
.store-link:hover svg,
.read-more:hover svg,
.round-arrow:hover svg {
  transform: translate(3px, -3px);
}

.hero {
  position: relative;
  display: flex;
  min-height: 920px;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #030305;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, #030305 0%, rgba(3, 3, 5, 0.97) 27%, rgba(3, 3, 5, 0.28) 66%, rgba(3, 3, 5, 0.2) 100%),
    linear-gradient(0deg, #030305 0%, transparent 28%);
  content: "";
}

.hero-art {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, black 65%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: rise-in 700ms 120ms both ease-out;
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.live-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(22, 217, 255, 0.5);
  border-radius: 50%;
  content: "";
  animation: pulse 2s infinite ease-out;
}

.hero h1 {
  max-width: 920px;
  margin: 32px 0 0;
  font-size: clamp(76px, 8.8vw, 148px);
  font-weight: 750;
  letter-spacing: -0.075em;
  line-height: 0.83;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  animation: rise-in 850ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.hero h1 span:nth-child(1) { animation-delay: 170ms; }
.hero h1 span:nth-child(2) { animation-delay: 240ms; }
.hero h1 span:nth-child(3) { animation-delay: 310ms; }

.gradient-text {
  width: max-content;
  padding-right: 0.08em;
  background: linear-gradient(105deg, #ffffff 4%, #a5f1ff 48%, #b08aff 92%);
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 470px;
  margin: 35px 0 0;
  color: #b3b3ba;
  font-size: 18px;
  line-height: 1.65;
  animation: rise-in 700ms 410ms both ease-out;
}

.hero-actions {
  display: flex;
  margin-top: 36px;
  align-items: center;
  gap: 34px;
  animation: rise-in 700ms 490ms both ease-out;
}

.button {
  display: inline-flex;
  width: max-content;
  min-height: 58px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover svg {
  transform: translateX(4px);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c3c3c8;
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  transition: transform 220ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero-footer {
  position: absolute;
  right: 0;
  bottom: 40px;
  left: 0;
  display: flex;
  align-items: flex-end;
  gap: 70px;
}

.hero-footer > div:not(.hero-index) {
  display: grid;
  gap: 6px;
}

.hero-footer span {
  color: #74747b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-footer strong {
  font-size: 13px;
  font-weight: 650;
}

.hero-index {
  margin-left: auto;
  color: #96969c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-index span {
  margin-inline: 9px;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #07070a;
}

.ticker-track {
  display: flex;
  width: max-content;
  height: 76px;
  align-items: center;
  gap: 30px;
  animation: ticker 38s linear infinite;
  will-change: transform;
}

.ticker-track span {
  color: #c8c8cd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.ticker-track i {
  color: var(--violet);
  font-size: 11px;
  font-style: normal;
}

.games-section {
  padding-block: 150px 130px;
}

.section-heading {
  display: grid;
  margin-bottom: 82px;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.studio-section h2,
.contact-section h2 {
  margin: 24px 0 0;
  font-size: clamp(62px, 7.2vw, 114px);
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 0.87;
  text-transform: uppercase;
}

.section-intro {
  max-width: 470px;
  margin: 0 0 10px;
  color: #8f8f97;
  font-size: 18px;
  line-height: 1.7;
}

.world-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cubus-card {
  display: grid;
  min-height: 790px;
  grid-template-columns: 43% 57%;
  background:
    radial-gradient(circle at 81% 25%, rgba(82, 35, 191, 0.42), transparent 34%),
    linear-gradient(135deg, #0c0c12 0%, #11101b 54%, #08080c 100%);
}

.cubus-card::before {
  position: absolute;
  right: -16%;
  bottom: -60%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(157, 117, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(100, 65, 226, 0.15) inset;
  content: "";
}

.world-copy {
  position: relative;
  z-index: 4;
  display: flex;
  padding: 58px 0 58px 60px;
  flex-direction: column;
}

.world-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.world-number {
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.status-pill {
  display: inline-flex;
  padding: 9px 13px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #c7c7cb;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6cff93;
  box-shadow: 0 0 10px rgba(108, 255, 147, 0.7);
}

.world-kicker {
  margin: 76px 0 0;
  color: #8e8e99;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.world-copy h3 {
  margin: 20px 0 0;
  font-size: clamp(76px, 8vw, 126px);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.world-tagline {
  margin: 30px 0 0;
  color: #d7cbff;
  font-size: 17px;
  font-weight: 650;
}

.world-description {
  max-width: 440px;
  margin: 22px 0 0;
  color: #9f9fa9;
  font-size: 15px;
  line-height: 1.75;
}

.store-links {
  display: flex;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 10px;
}

.store-link {
  display: inline-flex;
  min-width: 140px;
  height: 48px;
  padding: 0 14px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.03);
  color: #dddddf;
  font-size: 11px;
  font-weight: 700;
  transition: border-color 220ms ease, background 220ms ease;
}

.store-link:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.phone-stage {
  position: relative;
  min-height: 790px;
  perspective: 1400px;
}

.phone-glow {
  position: absolute;
  top: 15%;
  left: 12%;
  width: 74%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 72, 255, 0.32), transparent 67%);
  filter: blur(40px);
}

.phone {
  position: absolute;
  bottom: -4%;
  left: 50%;
  width: auto;
  height: 78%;
  border-radius: 30px;
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.55));
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
}

.phone-center {
  z-index: 3;
  transform: translateX(-50%) translateY(-4%) rotate(1deg);
}

.phone-left {
  z-index: 1;
  height: 68%;
  opacity: 0.64;
  transform: translateX(-118%) translateY(-3%) rotate(-9deg) rotateY(13deg);
}

.phone-right {
  z-index: 2;
  height: 71%;
  opacity: 0.82;
  transform: translateX(18%) translateY(-2%) rotate(8deg) rotateY(-12deg);
}

.cubus-card:hover .phone-center {
  transform: translateX(-50%) translateY(-7%) rotate(0deg);
}

.cubus-card:hover .phone-left {
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.65));
  transform: translateX(-122%) translateY(-6%) rotate(-7deg) rotateY(10deg);
}

.cubus-card:hover .phone-right {
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.65));
  transform: translateX(22%) translateY(-5%) rotate(6deg) rotateY(-9deg);
}

.periodic-card {
  background: #eeeeea;
  color: var(--ink);
}

.periodic-visual {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  aspect-ratio: 2048 / 614;
  background: #080e1e;
}

.periodic-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(5, 5, 7, 0.28));
  content: "";
}

.periodic-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.periodic-card:hover .periodic-visual img {
  transform: scale(1.025);
}

.periodic-copy {
  display: grid;
  padding: 54px 58px 62px;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas:
    "top top"
    "kicker description"
    "title description"
    "title stats"
    "title action";
  column-gap: 74px;
}

.periodic-copy .world-topline {
  grid-area: top;
  margin-bottom: 48px;
}

.periodic-copy .world-number {
  color: rgba(5, 5, 7, 0.45);
}

.periodic-copy .status-pill {
  border-color: rgba(5, 5, 7, 0.18);
  background: rgba(5, 5, 7, 0.03);
  color: #505058;
}

.periodic-copy .world-kicker {
  grid-area: kicker;
  margin: 0 0 20px;
  color: #73737b;
}

.periodic-copy h3 {
  grid-area: title;
  margin: 0;
  font-size: clamp(55px, 5.3vw, 84px);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}

.periodic-copy .world-description {
  grid-area: description;
  max-width: 560px;
  margin: 0;
  color: #56565e;
  font-size: 16px;
}

.periodic-stats {
  display: grid;
  grid-area: stats;
  margin: 35px 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.periodic-stats div {
  display: grid;
  gap: 5px;
  border-left: 1px solid rgba(5, 5, 7, 0.19);
  padding-left: 15px;
}

.periodic-stats strong {
  font-size: 25px;
  letter-spacing: -0.045em;
}

.periodic-stats span {
  color: #77777e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.periodic-copy .button {
  grid-area: action;
}

.more-worlds {
  display: flex;
  min-height: 148px;
  padding: 34px 42px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(90deg, rgba(22, 217, 255, 0.05), rgba(143, 85, 255, 0.05));
  color: #d8d8dd;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  transition: background 260ms ease, border-color 260ms ease;
}

.more-worlds:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(90deg, rgba(22, 217, 255, 0.1), rgba(143, 85, 255, 0.11));
}

.more-worlds small {
  display: block;
  margin-bottom: 10px;
  color: #777780;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.round-arrow {
  display: grid;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.studio-section {
  position: relative;
  padding-block: 150px 90px;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.studio-section .eyebrow {
  color: #66666d;
}

.studio-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 90px;
}

.studio-section h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(5, 5, 7, 0.55);
}

.studio-copy {
  max-width: 560px;
  padding-top: 66px;
}

.studio-lead {
  margin: 0 0 30px;
  font-size: 26px;
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.studio-copy > p:not(.studio-lead) {
  margin: 0;
  color: #606067;
  font-size: 16px;
  line-height: 1.75;
}

.text-link-dark {
  margin-top: 35px;
  color: var(--ink);
}

.text-link-dark:hover svg {
  transform: translateX(4px);
}

.studio-orbit {
  position: absolute;
  top: -340px;
  right: -320px;
  width: 830px;
  height: 830px;
  border: 1px solid rgba(5, 5, 7, 0.09);
  border-radius: 50%;
}

.studio-orbit::before,
.studio-orbit::after {
  position: absolute;
  border: 1px solid rgba(5, 5, 7, 0.06);
  border-radius: 50%;
  content: "";
}

.studio-orbit::before { inset: 95px; }
.studio-orbit::after { inset: 210px; }

.studio-orbit span {
  position: absolute;
  bottom: 102px;
  left: 105px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 24px rgba(143, 85, 255, 0.65);
}

.studio-facts {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 120px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(5, 5, 7, 0.2);
}

.studio-facts div {
  display: grid;
  min-height: 130px;
  padding-top: 32px;
  gap: 10px;
  border-right: 1px solid rgba(5, 5, 7, 0.14);
}

.studio-facts div:not(:first-child) {
  padding-left: 32px;
}

.studio-facts div:last-child {
  border-right: 0;
}

.studio-facts strong {
  font-size: 24px;
  font-weight: 720;
  letter-spacing: -0.045em;
}

.studio-facts span {
  color: #77777d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.updates-section {
  padding-block: 150px;
}

.compact-heading {
  align-items: end;
}

.compact-heading .text-link {
  width: max-content;
  margin: 0 0 13px auto;
}

.compact-heading .text-link:hover svg {
  transform: translate(3px, -3px);
}

.update-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.update-card {
  position: relative;
  display: flex;
  min-height: 690px;
  padding: 36px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #0a0a0e;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease;
}

.update-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-7px);
}

.update-art {
  position: relative;
  height: 300px;
  margin: -36px -36px 32px;
  overflow: hidden;
  background-color: #101018;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-size 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.update-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, #0a0a0e 100%);
  content: "";
}

.update-art-cube {
  background-position: center 46%;
  background-size: 116%;
}

.update-art-atlas {
  background-size: auto 100%;
}

.update-card:hover .update-art-cube { background-size: 124%; }
.update-card:hover .update-art-atlas { background-size: auto 107%; }

.update-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #77777f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.update-meta time {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #bcbcc2;
  font-size: 9px;
}

.update-card h3 {
  margin: 26px 0 18px;
  font-size: clamp(42px, 4.2vw, 66px);
  font-weight: 690;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-transform: uppercase;
}

.update-card p {
  max-width: 460px;
  margin: 0;
  color: #8e8e97;
  font-size: 14px;
  line-height: 1.7;
}

.read-more {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 12px;
  color: #d4d4d8;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 55%, rgba(79, 52, 166, 0.2), transparent 33%),
    #050507;
  text-align: center;
}

.contact-content {
  position: relative;
  z-index: 3;
}

.contact-section h2 {
  margin-top: 28px;
  font-size: clamp(68px, 8.2vw, 132px);
}

.contact-button {
  margin: 42px auto 0;
  min-width: 190px;
}

.contact-rings i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.contact-rings i:nth-child(1) { width: 420px; height: 420px; }
.contact-rings i:nth-child(2) { width: 690px; height: 690px; }
.contact-rings i:nth-child(3) { width: 980px; height: 980px; }

.site-footer {
  display: grid;
  min-height: 230px;
  padding-block: 55px 34px;
  grid-template-columns: 1fr auto;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  grid-column: 1;
}

.site-footer > p {
  grid-column: 1;
  margin: 24px 0 0;
  color: #72727a;
  font-size: 12px;
}

.social-links {
  display: flex;
  grid-row: 1;
  grid-column: 2;
  gap: 30px;
  color: #bfbfc4;
  font-size: 12px;
  font-weight: 650;
}

.site-footer > small {
  align-self: end;
  grid-column: 1 / -1;
  color: #55555c;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(0.6); }
  75%, 100% { opacity: 0; transform: scale(1.7); }
}

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

@media (max-width: 1180px) {
  :root { --shell: min(100% - 48px, 1100px); }

  .hero h1 { font-size: clamp(70px, 9.7vw, 112px); }
  .cubus-card { grid-template-columns: 47% 53%; }
  .world-copy { padding-left: 45px; }
  .world-copy h3 { font-size: 91px; }
  .phone { height: 70%; }
  .phone-left { height: 61%; }
  .phone-right { height: 64%; }
  .periodic-copy { column-gap: 45px; }
}

@media (max-width: 900px) {
  :root { --shell: calc(100% - 40px); }

  .site-header {
    height: 86px;
    grid-template-columns: 1fr auto;
  }

  .main-nav { display: none; }

  .hero {
    min-height: 860px;
    align-items: flex-end;
  }

  .hero::after {
    background:
      linear-gradient(0deg, #030305 8%, rgba(3, 3, 5, 0.84) 51%, rgba(3, 3, 5, 0.12) 100%),
      linear-gradient(90deg, rgba(3, 3, 5, 0.5), transparent);
  }

  .hero-art {
    height: 70%;
  }

  .hero-art img {
    object-position: 66% top;
  }

  .hero-content {
    padding: 0 0 160px;
  }

  .hero h1 {
    margin-top: 25px;
    font-size: clamp(57px, 12vw, 94px);
    line-height: 0.86;
  }

  .hero-copy { max-width: 430px; }
  .hero-footer { bottom: 30px; gap: 32px; }
  .hero-index { display: none; }

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

  .section-heading { gap: 36px; }
  .section-intro { max-width: 550px; }

  .cubus-card {
    min-height: 1160px;
    grid-template-columns: 1fr;
  }

  .world-copy {
    min-height: 590px;
    padding: 44px;
  }

  .world-kicker { margin-top: 55px; }
  .store-links { margin-top: 40px; }
  .phone-stage { min-height: 570px; }
  .phone { height: 91%; }
  .phone-left { height: 78%; }
  .phone-right { height: 82%; }

  .periodic-visual {
    min-height: 270px;
    aspect-ratio: 2.2 / 1;
  }

  .periodic-copy {
    grid-template-columns: 1fr;
    grid-template-areas: "top" "kicker" "title" "description" "stats" "action";
  }

  .periodic-copy h3 { margin-bottom: 28px; }

  .studio-copy {
    max-width: 630px;
    padding-top: 0;
  }

  .studio-facts { grid-template-columns: repeat(2, 1fr); }
  .studio-facts div:nth-child(2) { border-right: 0; }
  .studio-facts div:nth-child(3),
  .studio-facts div:nth-child(4) { border-top: 1px solid rgba(5, 5, 7, 0.14); }
  .studio-facts div:nth-child(3) { padding-left: 0; }

  .update-card { min-height: 620px; }
  .update-art { height: 250px; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }

  .site-header { height: 76px; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-name { font-size: 12px; }
  .nav-cta { font-size: 10px; }
  .nav-cta svg { display: none; }

  .hero { min-height: 780px; }
  .hero-content { padding-bottom: 150px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.16em; }
  .hero h1 { font-size: clamp(48px, 15.4vw, 74px); letter-spacing: -0.07em; }
  .hero-copy { margin-top: 25px; font-size: 15px; }
  .hero-actions { margin-top: 28px; gap: 20px; }
  .button { min-height: 52px; padding-inline: 18px; gap: 14px; font-size: 10px; }
  .hero-actions .text-link { display: none; }
  .hero-footer > div:nth-child(2) { display: none; }

  .ticker-track { height: 62px; }

  .games-section,
  .updates-section { padding-block: 95px; }
  .section-heading { margin-bottom: 52px; }
  .section-heading h2,
  .studio-section h2 { font-size: clamp(50px, 16vw, 78px); }
  .section-intro { font-size: 15px; }

  .cubus-card { min-height: 940px; }
  .world-copy { min-height: 535px; padding: 28px 24px 36px; }
  .world-copy h3 { font-size: clamp(68px, 24vw, 96px); }
  .world-kicker { margin-top: 40px; }
  .world-description { font-size: 13px; }
  .store-links { gap: 7px; }
  .store-link { min-width: calc(50% - 4px); }
  .phone-stage { min-height: 410px; }
  .phone { height: 90%; border-radius: 20px; }
  .phone-left { height: 72%; transform: translateX(-112%) translateY(-4%) rotate(-7deg); }
  .phone-right { height: 75%; transform: translateX(12%) translateY(-4%) rotate(7deg); }

  .periodic-visual { min-height: 220px; aspect-ratio: 1.6 / 1; }
  .periodic-visual img { object-position: 50% center; }
  .periodic-copy { padding: 30px 24px 36px; }
  .periodic-copy .world-topline { margin-bottom: 36px; }
  .periodic-copy h3 { font-size: 49px; }
  .periodic-stats { grid-template-columns: 1fr; }
  .periodic-stats div { min-height: 48px; align-content: center; }
  .periodic-stats strong { font-size: 20px; }

  .more-worlds { min-height: 125px; padding: 25px 22px; gap: 20px; font-size: 16px; }
  .round-arrow { width: 45px; height: 45px; flex-basis: 45px; }

  .studio-section { padding-block: 95px 60px; }
  .studio-layout { gap: 45px; }
  .studio-lead { font-size: 22px; }
  .studio-copy > p:not(.studio-lead) { font-size: 14px; }
  .studio-facts { margin-top: 75px; }
  .studio-facts div { min-height: 105px; padding-top: 24px; }
  .studio-facts div:not(:first-child) { padding-left: 16px; }
  .studio-facts div:nth-child(3) { padding-left: 0; }
  .studio-facts strong { font-size: 18px; }

  .compact-heading .text-link { margin-left: 0; }
  .update-grid { grid-template-columns: 1fr; }
  .update-card { min-height: 585px; padding: 25px; }
  .update-art { height: 255px; margin: -25px -25px 25px; }
  .update-card h3 { font-size: 45px; }

  .contact-section { min-height: 610px; }
  .contact-section h2 { font-size: clamp(52px, 17vw, 82px); }
  .contact-rings i:nth-child(1) { width: 280px; height: 280px; }
  .contact-rings i:nth-child(2) { width: 470px; height: 470px; }
  .contact-rings i:nth-child(3) { width: 680px; height: 680px; }

  .site-footer { min-height: 290px; grid-template-columns: 1fr; }
  .social-links { grid-row: auto; grid-column: 1; margin-top: 36px; }
  .site-footer > small { margin-top: 50px; }
}

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