@charset "UTF-8";

:root {
  --ink: #1c0b18;
  --ink-soft: #311126;
  --paper: #fff4f8;
  --white: #ffffff;
  --line: rgba(67, 17, 49, 0.16);
  --violet: #ef3f91;
  --violet-bright: #ff9ac6;
  --coral: #e92f76;
  --coral-soft: #ff75aa;
  --gold: #ffc1dc;
  --plum: #5a2048;
  --mint: #ffd3e5;
  --weird-bg: #141519;
  --weird-gold: #ffd447;
  --weird-red: #ef4f68;
  --stock-ink: #473449;
  --stock-pink: #f0435a;
  --stock-purple: #7955f6;
  --stock-blue: #408df4;
  --stock-paper: #fff7fa;
  --shadow: 0 28px 70px rgba(67, 17, 49, 0.18);
  --page-width: 1280px;
  --header-height: 92px;
  --radius-lg: 44px;
  --radius-md: 26px;
  --ease-out: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: clip;
  background: var(--ink);
}

html.menu-open {
  overflow: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ink);
  font-family:
    "Pretendard Variable",
    Pretendard,
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    "Malgun Gothic",
    system-ui,
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    height 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(28, 11, 24, 0.84);
  backdrop-filter: blur(18px) saturate(1.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--page-width));
  height: 100%;
  margin: 0 auto;
}

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

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 13px;
  background: #fcf8e9;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.22);
  transform: rotate(-3deg);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--violet-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

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

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

.site-nav .nav-contact {
  padding: 12px 20px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 32%, rgba(239, 63, 145, 0.34), transparent 37%),
    linear-gradient(150deg, #170713 0%, #300d27 52%, #180714 100%);
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 26%, #000 74%, transparent);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.25;
  pointer-events: none;
}

.hero-glow-one {
  top: -20vw;
  left: -12vw;
  background: var(--coral);
}

.hero-glow-two {
  right: -20vw;
  bottom: -24vw;
  background: var(--violet);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
  width: min(calc(100% - 64px), var(--page-width));
  margin: auto;
  padding: 140px 0 116px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--violet-bright);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Impact, "Arial Black", "Pretendard Variable", sans-serif;
  font-size: clamp(4.4rem, 8.2vw, 8.8rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.055em;
}

.hero-title-accent {
  display: block;
  padding-left: 0.18em;
  color: transparent;
  -webkit-text-stroke: 2px var(--violet-bright);
  transform: skewX(-7deg);
}

.hero-lead {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 500;
  line-height: 1.75;
}

.hero-lead strong {
  color: var(--white);
  font-weight: 800;
}

.hero-actions,
.game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--violet-bright);
  box-shadow: 0 12px 30px rgba(239, 63, 145, 0.3);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(239, 63, 145, 0.4);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 28px rgba(9, 10, 24, 0.17);
}

.button-arrow {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 17px;
}

.button-arrow::before {
  position: absolute;
  top: 8px;
  left: 1px;
  width: 14px;
  height: 2px;
  content: "";
  background: currentColor;
}

.button-arrow::after {
  position: absolute;
  top: 4px;
  right: 1px;
  width: 9px;
  height: 9px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 540px;
  margin: 52px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-facts div {
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts dt {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.07em;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  min-height: 720px;
  perspective: 1300px;
}

.hero-game-card {
  position: absolute;
  display: block;
  width: min(92%, 580px);
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.94);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.42);
  transition:
    transform 420ms var(--ease-out),
    box-shadow 420ms ease;
}

.hero-game-card > img {
  width: 100%;
  aspect-ratio: 1540 / 660;
  object-fit: cover;
}

.hero-card-flash {
  z-index: 2;
  top: 20px;
  left: 0;
  transform: rotate(-6deg) translateZ(18px);
}

.hero-card-nyang {
  z-index: 3;
  top: 148px;
  right: 0;
  transform: rotate(5deg) translateZ(36px);
}

.hero-card-weird {
  z-index: 4;
  top: 276px;
  left: 0;
  transform: rotate(-4deg) translateZ(54px);
}

.hero-card-stock {
  z-index: 5;
  right: 0;
  bottom: 0;
  transform: rotate(2deg) translateZ(76px);
}

.hero-card-flash:hover,
.hero-card-flash:focus-visible {
  z-index: 7;
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.54);
  transform: rotate(-2deg) translateY(-12px) translateZ(52px);
}

.hero-card-nyang:hover,
.hero-card-nyang:focus-visible {
  z-index: 7;
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.54);
  transform: rotate(2deg) translateY(-12px) translateZ(58px);
}

.hero-card-weird:hover,
.hero-card-weird:focus-visible {
  z-index: 7;
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.54);
  transform: rotate(-1deg) translateY(-12px) translateZ(78px);
}

.hero-card-stock:hover,
.hero-card-stock:focus-visible {
  z-index: 7;
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.54);
  transform: rotate(-1deg) translateY(-12px) translateZ(92px);
}

.hero-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 13px;
  color: var(--ink);
}

.hero-card-meta > img {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 12px;
}

.hero-card-meta span {
  display: grid;
  gap: 2px;
}

.hero-card-meta strong {
  font-size: 0.9rem;
  font-weight: 950;
}

.hero-card-meta small {
  color: rgba(9, 10, 24, 0.52);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-sticker {
  position: absolute;
  z-index: 7;
  right: 4%;
  bottom: 2%;
  display: grid;
  width: 118px;
  height: 118px;
  place-content: center;
  color: var(--ink);
  text-align: center;
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 7px 7px 0 var(--violet);
  transform: rotate(-10deg);
}

.hero-sticker::before {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px dashed rgba(9, 10, 24, 0.45);
  border-radius: inherit;
}

.hero-sticker span,
.hero-sticker strong {
  position: relative;
  z-index: 1;
}

.hero-sticker span {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.hero-sticker strong {
  font-size: 1.34rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 154, 198, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::after {
  position: absolute;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--violet-bright);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--violet-bright);
}

.hero-orbit-one {
  inset: 2% -8% 16% 2%;
  transform: rotate(16deg);
  animation: orbit-drift 9s ease-in-out infinite alternate;
}

.hero-orbit-one::after {
  top: 14%;
  right: 10%;
}

.hero-orbit-two {
  inset: 16% 6% 0 -12%;
  transform: rotate(-13deg);
  animation: orbit-drift 11s ease-in-out -3s infinite alternate-reverse;
}

.hero-orbit-two::after {
  bottom: 15%;
  left: 11%;
  background: var(--coral-soft);
  box-shadow: 0 0 18px var(--coral-soft);
}

.pixel {
  position: absolute;
  z-index: 6;
  width: 12px;
  height: 12px;
  background: var(--mint);
  box-shadow: 12px 0 0 var(--mint), 0 12px 0 var(--mint);
  transform: rotate(45deg);
}

.pixel-one {
  top: 5%;
  right: 4%;
}

.pixel-two {
  bottom: 19%;
  left: -2%;
  background: var(--coral-soft);
  box-shadow: 12px 0 0 var(--coral-soft), 0 12px 0 var(--coral-soft);
  transform: rotate(12deg) scale(0.7);
}

.pixel-three {
  top: 46%;
  left: 3%;
  transform: rotate(45deg) scale(0.5);
}

.scroll-cue {
  position: absolute;
  right: 40px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.scroll-cue i::before {
  position: absolute;
  top: 8px;
  left: 11px;
  width: 6px;
  height: 6px;
  content: "";
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  transform: rotate(45deg);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--ink);
  background: var(--violet-bright);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  padding: 17px 0;
  animation: ticker 22s linear infinite;
}

.ticker span {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.ticker i {
  width: 9px;
  height: 9px;
  background: var(--ink);
  transform: rotate(45deg);
}

.games-section {
  position: relative;
  padding: clamp(110px, 12vw, 180px) 0 clamp(100px, 12vw, 170px);
  background:
    radial-gradient(circle at 90% 8%, rgba(239, 63, 145, 0.17), transparent 20%),
    var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px 80px;
  width: min(calc(100% - 64px), 1120px);
  margin: 0 auto clamp(74px, 9vw, 130px);
}

.eyebrow-dark {
  grid-column: 1 / -1;
  color: #ce2d78;
  margin-bottom: 0;
}

.section-heading h2,
.studio-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.section-heading > p:last-child {
  align-self: end;
  margin: 0 0 4px;
  color: rgba(9, 10, 24, 0.58);
  font-size: 1rem;
  font-weight: 560;
  line-height: 1.9;
}

.game-showcase {
  position: relative;
  width: min(calc(100% - 48px), var(--page-width));
  margin: 0 auto;
  padding: clamp(36px, 5.5vw, 76px);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 12px 14px 0 var(--ink);
}

.game-showcase + .game-showcase {
  margin-top: clamp(96px, 12vw, 170px);
}

.game-flash {
  color: var(--ink);
  background:
    linear-gradient(rgba(67, 17, 49, 0.045) 1px, transparent 1px),
    #fff9fb;
  background-size: 100% 52px;
}

.game-nyang {
  color: var(--plum);
  background:
    radial-gradient(circle at 96% 2%, rgba(255, 255, 255, 0.72), transparent 23%),
    linear-gradient(140deg, #ffe8f2 0%, #f7b8d3 54%, #ec91ba 100%);
  box-shadow: 12px 14px 0 var(--plum);
  border-color: var(--plum);
}

.game-weird {
  color: #fffaf0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--weird-bg);
  background-size: 52px 52px;
  border-color: #fffaf0;
  box-shadow: 12px 14px 0 var(--weird-gold);
}

.game-stock {
  color: var(--stock-ink);
  background:
    radial-gradient(circle at 96% 2%, rgba(255, 255, 255, 0.76), transparent 24%),
    linear-gradient(135deg, var(--stock-paper) 0%, #f8eaf4 48%, #eee7fb 100%);
  border-color: var(--stock-ink);
  box-shadow: 12px 14px 0 var(--stock-pink);
}

.game-number {
  position: absolute;
  top: 30px;
  right: 42px;
  color: transparent;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 1;
  -webkit-text-stroke: 1px rgba(9, 10, 24, 0.16);
  pointer-events: none;
}

.game-nyang .game-number {
  -webkit-text-stroke-color: rgba(67, 40, 62, 0.19);
}

.game-weird .game-number {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.18);
}

.game-stock .game-number {
  -webkit-text-stroke-color: rgba(71, 52, 73, 0.19);
}

.game-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(430px, 1.18fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: center;
}

.game-layout-reverse .game-copy {
  order: 2;
}

.game-layout-reverse .game-feature-image {
  order: 1;
}

.game-identity {
  display: flex;
  align-items: center;
  gap: 18px;
}

.game-identity > img {
  flex: 0 0 auto;
  overflow: hidden;
  border: 3px solid currentColor;
  border-radius: 22px;
  box-shadow: 5px 5px 0 currentColor;
}

.game-kicker {
  margin: 0 0 5px;
  color: rgba(9, 10, 24, 0.48);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.game-nyang .game-kicker {
  color: rgba(67, 40, 62, 0.58);
}

.game-identity h3 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.game-identity h3 span {
  color: var(--coral);
}

.game-nyang .game-identity h3 span {
  color: #cc2f72;
}

.game-tagline {
  margin: 44px 0 22px;
  font-size: clamp(1.8rem, 3.3vw, 3.15rem);
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: -0.055em;
}

.game-description {
  max-width: 520px;
  margin: 0;
  color: rgba(9, 10, 24, 0.64);
  font-size: 0.98rem;
  font-weight: 550;
  line-height: 1.84;
}

.game-nyang .game-description {
  color: rgba(67, 40, 62, 0.72);
}

.game-features {
  margin: 34px 0 0;
  padding: 0;
  border-top: 2px solid currentColor;
  list-style: none;
}

.game-features li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid rgba(9, 10, 24, 0.16);
}

.game-features li > span {
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 950;
}

.game-nyang .game-features li > span {
  color: #b52865;
}

.game-features strong {
  font-size: 0.9rem;
  font-weight: 850;
}

.game-features small {
  color: rgba(9, 10, 24, 0.48);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: right;
}

.game-nyang .game-features small {
  color: rgba(67, 40, 62, 0.56);
}

.game-weird .game-kicker,
.game-weird .game-description,
.game-weird .game-features small,
.game-weird .platform-label,
.game-weird .game-feature-image figcaption span {
  color: rgba(255, 250, 240, 0.64);
}

.game-weird .game-identity > img {
  border-color: var(--weird-gold);
  box-shadow: 5px 5px 0 var(--weird-red);
}

.game-weird .game-identity h3 span,
.game-weird .game-features li > span {
  color: var(--weird-gold);
}

.game-weird .game-features li {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.game-weird .button-dark {
  color: var(--weird-bg);
  background: var(--weird-gold);
  box-shadow: 0 14px 28px rgba(255, 212, 71, 0.2);
}

.game-stock .game-kicker,
.game-stock .game-description,
.game-stock .game-features small {
  color: rgba(71, 52, 73, 0.66);
}

.game-stock .game-identity > img {
  border-color: var(--stock-ink);
  box-shadow: 5px 5px 0 var(--stock-pink);
}

.game-stock .game-identity h3 span,
.game-stock .game-features li > span {
  color: var(--stock-pink);
}

.game-stock .button-dark {
  color: var(--white);
  background: linear-gradient(90deg, var(--stock-purple), var(--stock-blue));
  box-shadow: 0 14px 28px rgba(121, 85, 246, 0.22);
}

.platform-label {
  color: rgba(9, 10, 24, 0.46);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


.game-feature-image {
  position: relative;
  margin: 0;
  padding: 0 0 56px;
}

.game-feature-image > img {
  width: 100%;
  aspect-ratio: 1024 / 500;
  object-fit: cover;
  border: 5px solid currentColor;
  border-radius: 28px;
  box-shadow: 14px 15px 0 var(--coral);
  transform: rotate(2deg);
  transition: transform 420ms var(--ease-out);
}

.game-nyang .game-feature-image > img {
  box-shadow: 14px 15px 0 var(--plum);
  transform: rotate(-2deg);
}

.game-weird .game-feature-image > img {
  box-shadow: 14px 15px 0 var(--weird-red);
  transform: rotate(1.5deg);
}

.game-stock .game-feature-image > img {
  box-shadow: 14px 15px 0 var(--stock-purple);
  transform: rotate(-1.5deg);
}

.game-feature-image:hover > img {
  transform: rotate(0deg) scale(1.012);
}

.game-feature-image figcaption {
  position: absolute;
  right: 18px;
  bottom: 3px;
  left: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.game-feature-image figcaption span {
  color: rgba(9, 10, 24, 0.48);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-feature-image figcaption strong {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.screen-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 38px);
  max-width: 1040px;
  margin: clamp(70px, 8vw, 112px) auto 0;
  padding: clamp(26px, 4vw, 48px);
  color: var(--white);
  background: var(--ink);
  border-radius: 34px;
}

.screen-strip::before {
  position: absolute;
  top: -15px;
  left: 50%;
  width: 150px;
  height: 30px;
  content: "GAME SCREENS";
  color: var(--ink);
  background: var(--violet-bright);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 950;
  line-height: 27px;
  letter-spacing: 0.14em;
  text-align: center;
  transform: translateX(-50%);
}

.screen-strip-nyang {
  color: var(--plum);
  background: #fff0f6;
  border: 3px solid var(--plum);
}

.screen-strip-nyang::before {
  color: #fff0f6;
  background: var(--plum);
  border-color: var(--plum);
}

.screen-strip-weird {
  color: var(--weird-bg);
  background: var(--weird-gold);
  border: 3px solid var(--weird-bg);
}

.screen-strip-weird::before {
  color: var(--weird-gold);
  background: var(--weird-bg);
  border-color: var(--weird-bg);
}

.screen-strip-stock {
  color: var(--stock-ink);
  background: #fff1f7;
  border: 3px solid var(--stock-ink);
}

.screen-strip-stock::before {
  color: var(--white);
  background: var(--stock-purple);
  border-color: var(--stock-ink);
}

.screen-strip figure {
  margin: 0;
}

.screen-strip figure:nth-child(2) {
  transform: translateY(-20px);
}

.screen-strip img {
  width: 100%;
  aspect-ratio: 560 / 923;
  object-fit: cover;
  object-position: top;
  border: 3px solid currentColor;
  border-radius: 22px;
  box-shadow: 8px 9px 0 rgba(239, 63, 145, 0.62);
}

.screen-strip-nyang img {
  aspect-ratio: 720 / 1280;
  box-shadow: 8px 9px 0 rgba(214, 51, 118, 0.56);
}

.screen-strip-weird img {
  aspect-ratio: 720 / 1280;
  box-shadow: 8px 9px 0 rgba(239, 79, 104, 0.72);
}

.screen-strip-stock img {
  aspect-ratio: 720 / 1280;
  box-shadow: 8px 9px 0 rgba(240, 67, 90, 0.62);
}

.screen-strip figcaption {
  margin-top: 18px;
  font-size: 0.72rem;
  font-weight: 850;
  text-align: center;
}

.studio-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    var(--ink);
  background-size: 64px 64px;
}

.studio-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(480px, 1.32fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: center;
  width: min(calc(100% - 64px), 1140px);
  margin: 0 auto;
  padding: clamp(110px, 14vw, 210px) 0;
}

.studio-brand {
  text-align: center;
}

.logo-frame {
  position: relative;
  width: min(100%, 380px);
  margin: 0 auto;
  padding: 20px;
  background: #fcf8e9;
  border: 4px solid var(--white);
  border-radius: 32px;
  box-shadow:
    14px 14px 0 var(--violet),
    28px 28px 0 rgba(233, 47, 118, 0.72);
  transform: rotate(-3deg);
}

.logo-frame::before,
.logo-frame::after {
  position: absolute;
  width: 15px;
  height: 15px;
  content: "";
  background: var(--gold);
  transform: rotate(45deg);
}

.logo-frame::before {
  top: 22px;
  left: 26px;
}

.logo-frame::after {
  right: 26px;
  bottom: 22px;
  background: var(--mint);
}

.logo-frame img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.studio-brand > p {
  margin: 48px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.studio-brand > p span {
  margin: 0 8px;
  color: var(--violet-bright);
}

.studio-copy h2 {
  max-width: 780px;
}

.studio-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  font-weight: 520;
  line-height: 1.9;
}

.studio-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.studio-values > div {
  display: grid;
  min-height: 142px;
  align-content: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 220ms var(--ease-out),
    background 220ms ease;
}

.studio-values > div:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.studio-values span {
  align-self: start;
  margin-bottom: auto;
  color: var(--violet-bright);
  font-size: 0.64rem;
  font-weight: 900;
}

.studio-values strong {
  font-size: 1rem;
  font-weight: 900;
}

.studio-values small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  font-weight: 650;
}

.studio-email {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
  align-items: center;
  margin-top: 48px;
  padding: 22px 58px 22px 24px;
  color: var(--ink);
  background: var(--violet-bright);
  border-radius: 22px;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms ease;
}

.studio-email:hover {
  box-shadow: 8px 9px 0 var(--coral);
  transform: translate(-4px, -4px);
}

.studio-email span {
  grid-column: 1;
  font-size: 0.7rem;
  font-weight: 800;
}

.studio-email strong {
  grid-column: 1;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 950;
  letter-spacing: -0.03em;
}

.studio-email i {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.studio-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.16;
}

.studio-orb-one {
  top: -160px;
  right: -100px;
  width: 440px;
  height: 440px;
  background: var(--violet);
}

.studio-orb-two {
  bottom: -220px;
  left: -140px;
  width: 480px;
  height: 480px;
  background: var(--coral);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px 50px;
  align-items: center;
  padding: 56px max(32px, calc((100% - var(--page-width)) / 2));
  color: var(--white);
  background: #10050d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand > div {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.footer-links {
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.74rem;
  font-weight: 750;
}

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

.site-footer > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.34);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

html:not(.no-js) .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms var(--ease-out),
    transform 760ms var(--ease-out);
}

html:not(.no-js) .reveal[data-delay="1"] {
  transition-delay: 120ms;
}

html:not(.no-js) .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbit-drift {
  to {
    transform: rotate(22deg) translate3d(10px, -12px, 0);
  }
}

@keyframes scroll-cue {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0) rotate(45deg);
  }
  50% {
    opacity: 1;
    transform: translateY(5px) rotate(45deg);
  }
}

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

@media (max-width: 1120px) {
  .hero-inner {
    grid-template-columns: 1fr;
    width: min(calc(100% - 56px), 840px);
    padding-top: 150px;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
  }

  .hero h1 {
    font-size: clamp(5rem, 15vw, 8.6rem);
  }

  .hero-stage {
    min-height: 720px;
    margin-top: -10px;
  }

  .hero-game-card {
    width: min(76%, 580px);
  }

  .hero-card-flash {
    left: 2%;
  }

  .hero-card-nyang {
    right: 2%;
  }

  .scroll-cue {
    display: none;
  }

  .game-layout {
    grid-template-columns: 1fr;
  }

  .game-layout-reverse .game-copy,
  .game-layout-reverse .game-feature-image {
    order: initial;
  }

  .game-feature-image {
    width: min(100%, 780px);
    margin: 0 auto;
  }

  .game-copy {
    max-width: 760px;
  }

  .game-description {
    max-width: 680px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
    --radius-lg: 32px;
  }

  .header-inner {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    display: grid;
    width: min(84vw, 390px);
    height: 100dvh;
    align-content: center;
    gap: 14px;
    padding: 80px 36px;
    background: rgba(28, 11, 24, 0.97);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.35);
    transform: translateX(105%);
    transition: transform 260ms var(--ease-out);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 16px 0;
    font-size: 1.2rem;
  }

  .site-nav .nav-contact {
    margin-top: 14px;
    padding: 16px 20px;
    text-align: center;
  }

  .section-heading {
    grid-template-columns: 1fr;
    width: min(calc(100% - 40px), 680px);
  }

  .eyebrow-dark {
    grid-column: auto;
  }

  .section-heading > p:last-child {
    margin-top: 14px;
  }

  .game-showcase {
    width: min(calc(100% - 28px), var(--page-width));
    padding: 46px 28px;
    box-shadow: 7px 8px 0 var(--ink);
  }

  .game-nyang {
    box-shadow: 7px 8px 0 var(--plum);
  }

  .game-weird {
    box-shadow: 7px 8px 0 var(--weird-gold);
  }

  .game-stock {
    box-shadow: 7px 8px 0 var(--stock-pink);
  }

  .game-number {
    top: 22px;
    right: 24px;
  }

  .screen-strip {
    display: flex;
    max-width: none;
    margin-right: -28px;
    margin-left: -28px;
    padding: 42px 28px 30px;
    overflow-x: auto;
    border-radius: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .screen-strip::-webkit-scrollbar {
    display: none;
  }

  .screen-strip figure {
    flex: 0 0 min(72vw, 320px);
    scroll-snap-align: center;
  }

  .screen-strip figure:nth-child(2) {
    transform: none;
  }

  .studio-inner {
    grid-template-columns: 1fr;
    width: min(calc(100% - 40px), 680px);
  }

  .studio-brand {
    max-width: 360px;
    margin: 0 auto;
  }

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

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

@media (max-width: 600px) {
  .brand-copy small {
    display: none;
  }

  .hero-inner {
    width: min(calc(100% - 32px), 520px);
    padding: 126px 0 78px;
  }

  .hero h1 {
    font-size: clamp(4.15rem, 20.8vw, 6.4rem);
    line-height: 0.82;
  }

  .hero-title-accent {
    padding-left: 0.05em;
    -webkit-text-stroke-width: 1.5px;
  }

  .hero-lead br {
    display: none;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .hero-facts {
    gap: 0;
  }

  .hero-facts div {
    padding: 0 10px;
  }

  .hero-facts dt {
    font-size: 0.82rem;
  }

  .hero-facts dd {
    font-size: 0.56rem;
  }

  .hero-stage {
    min-height: 570px;
    margin-top: 18px;
  }

  .hero-game-card {
    width: 92%;
    border-width: 3px;
    border-radius: 18px;
  }

  .hero-card-flash {
    top: 18px;
    left: 0;
  }

  .hero-card-nyang {
    top: 132px;
    right: 0;
    bottom: auto;
  }

  .hero-card-weird {
    top: 246px;
    left: 0;
  }

  .hero-card-stock {
    right: 0;
    bottom: 8px;
  }

  .hero-card-meta {
    gap: 9px;
    padding: 8px 10px 9px;
  }

  .hero-card-meta > img {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .hero-card-meta strong {
    font-size: 0.76rem;
  }

  .hero-card-meta small {
    font-size: 0.52rem;
  }

  .hero-sticker {
    right: 0;
    bottom: -2px;
    width: 86px;
    height: 86px;
    box-shadow: 5px 5px 0 var(--violet);
  }

  .hero-sticker strong {
    font-size: 1rem;
  }

  .pixel {
    display: none;
  }

  .ticker-track {
    padding: 13px 0;
  }

  .section-heading h2,
  .studio-copy h2 {
    font-size: clamp(2.65rem, 13vw, 4.4rem);
  }

  .section-heading > p:last-child br {
    display: none;
  }

  .game-showcase {
    padding: 38px 20px;
    border-radius: 28px;
  }

  .game-layout {
    gap: 52px;
  }

  .game-identity {
    gap: 14px;
    padding-right: 42px;
  }

  .game-identity > img {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    box-shadow: 4px 4px 0 currentColor;
  }

  .game-identity h3 {
    font-size: 2.2rem;
  }

  .game-kicker {
    font-size: 0.56rem;
  }

  .game-tagline {
    margin-top: 34px;
    font-size: 2rem;
  }

  .game-features li {
    grid-template-columns: 30px 1fr;
    gap: 7px;
    padding: 11px 0;
  }

  .game-features small {
    grid-column: 2;
    text-align: left;
  }

  .game-actions {
    align-items: flex-start;
  }

  .platform-label {
    width: 100%;
    padding-left: 5px;
  }

  .game-feature-image {
    padding-bottom: 70px;
  }

  .game-feature-image > img {
    border-width: 3px;
    border-radius: 19px;
    box-shadow: 8px 9px 0 var(--coral);
  }

  .game-nyang .game-feature-image > img {
    box-shadow: 8px 9px 0 var(--plum);
  }

  .game-weird .game-feature-image > img {
    box-shadow: 8px 9px 0 var(--weird-red);
  }

  .game-stock .game-feature-image > img {
    box-shadow: 8px 9px 0 var(--stock-purple);
  }

  .game-feature-image figcaption {
    right: 0;
    bottom: 8px;
    left: 0;
    display: grid;
  }

  .game-feature-image figcaption strong {
    font-size: 1.05rem;
  }

  .screen-strip {
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .screen-strip figure {
    flex-basis: min(74vw, 290px);
  }

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

  .studio-values > div {
    min-height: 104px;
  }

  .studio-email {
    padding-right: 48px;
  }

  .studio-email strong {
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding-right: 24px;
    padding-left: 24px;
  }
}

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