:root {
  color-scheme: light;
  --ink: #111418;
  --muted: #6e767e;
  --line: #e7eaee;
  --cyan: #0bb8c8;
  --orange: #f28c28;
  --dark: #05090c;
  --header-h: 76px;
  --mega-menu-panel-h: 250px;
  --header-content-max: 1180px;
  --header-edge: max(20px, calc((100% - var(--header-content-max)) / 2));
  --nav-column-w: clamp(70px, 4vw, 88px);
  --nav-gap: clamp(28px, 2.4vw, 44px);
  --media-radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Pretendard", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

html {
  overflow-y: scroll;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: var(--header-h);
  display: block;
  padding: 0;
  background: linear-gradient(180deg, rgba(3, 7, 10, 0.78), rgba(3, 7, 10, 0));
  transition: background 180ms ease, color 180ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  height: 1px;
  background: rgba(17, 20, 24, 0.08);
  opacity: 0;
  transition: opacity 160ms ease;
}

.brand {
  position: absolute;
  left: var(--header-edge);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-weight: 900;
  line-height: 1;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: invert(1);
  display: block;
  transition: filter 180ms ease;
}

.brand-tagline {
  color: rgba(244, 251, 255, 0.68);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav {
  position: absolute;
  right: var(--header-edge);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: repeat(6, var(--nav-column-w));
  align-items: center;
  justify-content: end;
  justify-items: center;
  gap: var(--nav-gap);
  color: rgba(244, 251, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 0;
  color: inherit;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -26px;
  height: 3px;
  background: #3fae58;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover {
  color: #f4fbff;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  background: var(--orange);
}

.header-tools {
  display: none;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  background: #fff;
  color: #172029;
  border-top: 1px solid rgba(17, 20, 24, 0.08);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.16);
  transform: translateY(-18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease, visibility 0ms linear 220ms;
}

.mega-menu-inner {
  width: fit-content;
  max-width: calc(100% - (var(--header-edge) * 2));
  margin: 0 var(--header-edge) 0 auto;
  min-height: var(--mega-menu-panel-h);
  padding: 32px 0 38px;
  display: grid;
  grid-template-columns: repeat(6, var(--nav-column-w));
  gap: var(--nav-gap);
}

.mega-column {
  display: grid;
  align-content: start;
  justify-content: center;
  justify-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  text-align: center;
}

.mega-column a {
  position: relative;
  display: inline-block;
  color: #3a424a;
  white-space: nowrap;
  transition: color 150ms ease;
}

.mega-column a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 170ms ease;
}

.mega-column a:hover,
.mega-column a:focus-visible {
  color: #0b8f9d;
}

.mega-column a:hover::after,
.mega-column a:focus-visible::after {
  transform: scaleX(1);
}

.site-header:hover,
.site-header:focus-within {
  background: #fff;
  color: #111418;
}

.site-header:hover::after,
.site-header:focus-within::after {
  opacity: 1;
}

.site-header:hover .brand-logo,
.site-header:focus-within .brand-logo {
  filter: none;
}

.site-header:hover .brand-tagline,
.site-header:focus-within .brand-tagline {
  color: #5b646c;
}

.site-header:hover .nav,
.site-header:focus-within .nav {
  color: #111418;
}

.site-header:hover .nav a:hover,
.site-header:focus-within .nav a:focus-visible {
  color: #0b8f9d;
}

.site-header:hover .mega-menu,
.site-header:focus-within .mega-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0ms;
}

.page-visual {
  position: relative;
  min-height: calc(var(--header-h) + var(--mega-menu-panel-h) + 1px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--dark);
}

.page-visual img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.move-page .page-visual img {
  object-position: center 32%;
  transform: translateX(14%) scale(1.14);
  transform-origin: center center;
}

.terrarium-page .page-visual img {
  object-position: center 20%;
  transform: translateX(17%) scale(1.08);
  transform-origin: center center;
}

.page-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.26) 50%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.48) 100%);
}

.page-visual-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 18px;
  color: #fff;
}

.page-title {
  margin: 0;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.subnav {
  border-bottom: 1px solid var(--line);
}

.subnav-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 14px;
  font-weight: 900;
}

.subnav a {
  position: relative;
  height: 64px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  transition: color 160ms ease;
}

.subnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: background 160ms ease, transform 180ms ease;
}

.subnav a[aria-current="page"] {
  color: var(--cyan);
}

.subnav a:hover,
.subnav a:focus-visible {
  color: var(--orange);
}

.subnav a:hover::after,
.subnav a:focus-visible::after,
.subnav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.subnav a:hover::after,
.subnav a:focus-visible::after {
  background: var(--orange);
}

.subnav a:focus-visible {
  outline: none;
}

.content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: clamp(40px, 8vw, 104px);
  align-items: start;
}

.content-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 span {
  display: block;
}

.lead {
  margin: 24px 0 0;
  color: #353c43;
  font-size: 19px;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.fact-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.fact-list div {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

#studio .fact-list div,
#expertise .fact-list div {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
}

.fact-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  color: #171b1f;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}

.list {
  display: grid;
  gap: 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.list span {
  color: #4e5963;
  line-height: 1.7;
}

.about-content {
  display: grid;
  gap: clamp(82px, 11vw, 150px);
}

.about-section {
  scroll-margin-top: calc(var(--header-h) + 88px);
}

#studio.content-grid,
#expertise.content-grid,
.leadership-section {
  grid-template-columns: minmax(0, 0.68fr) minmax(360px, 0.52fr);
}

.section-heading {
  width: min(860px, 100%);
}

#philosophy .section-heading,
#culture .section-heading {
  width: min(1040px, 100%);
}

.leadership-copy {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  max-width: 720px;
}

.leadership-copy p {
  margin: 0;
  color: #3d4650;
  font-size: 17px;
  line-height: 1.78;
  word-break: keep-all;
}

.leadership-copy strong {
  display: block;
  margin-bottom: 5px;
  color: #111418;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 950;
}

.leadership-list div {
  grid-template-columns: 154px minmax(0, 1fr);
  gap: 18px;
}

.leadership-list dt {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  color: #66727d;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  word-break: keep-all;
}

.leadership-list dt time,
.leadership-list dt span {
  display: block;
}

.leadership-list dd {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  word-break: keep-all;
}

.company-history-section {
  --history-content-w: min(1040px, 100%);
}

.company-history-section .section-heading,
.company-history-grid {
  width: var(--history-content-w);
}

.company-history-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
  margin-top: clamp(42px, 6vw, 68px);
}

.company-history-year {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.company-history-year > span {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.company-history-year strong {
  display: block;
  color: #111418;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1;
  font-weight: 950;
}

.company-history-year ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.company-history-year li {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
}

.company-history-year time {
  color: #66727d;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.company-history-year p {
  margin: 0;
  color: #3d4650;
  font-size: 16px;
  line-height: 1.62;
  word-break: keep-all;
}

.about-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
  margin-top: clamp(34px, 5vw, 58px);
}

.about-point {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.about-point span {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.about-point strong {
  display: block;
  color: #111418;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
  font-weight: 950;
}

.about-point p {
  margin: 14px 0 0;
  color: #4b555f;
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

#culture .about-point {
  display: flex;
  flex-direction: column;
}

#culture .about-point p {
  margin-bottom: 24px;
}

.about-point-media {
  overflow: hidden;
  margin: auto 0 0;
  aspect-ratio: 16 / 10;
  border-radius: var(--media-radius);
  background: #eef1f3;
}

.about-point-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--cyan);
  color: #111418;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  transition: color 150ms ease, border-color 150ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: #0b8f9d;
  border-color: #0b8f9d;
}

.careers-content {
  display: grid;
  gap: clamp(76px, 10vw, 136px);
}

.careers-section {
  scroll-margin-top: calc(var(--header-h) + 88px);
}

.recruit-contact {
  margin: 18px 0 0;
  color: #111418;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.5;
}

.recruit-contact a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}

#join-us.content-grid {
  row-gap: clamp(26px, 3vw, 42px);
}

.location-list dd {
  word-break: keep-all;
}

.joinus-photo-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
  margin-top: 0;
}

.joinus-photo {
  min-width: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.joinus-photo span {
  display: block;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.joinus-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  border-radius: var(--media-radius);
  background: #eef1f3;
}

.map-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--cyan);
  color: #111418;
  font-size: 14px;
  font-weight: 950;
  transition: color 150ms ease, border-color 150ms ease;
}

.map-link:hover,
.map-link:focus-visible {
  color: #0b8f9d;
  border-color: #0b8f9d;
}

.terrarium-content {
  padding-top: clamp(52px, 7vw, 96px);
}

.terrarium-overview {
  scroll-margin-top: calc(var(--header-h) + 88px);
}

.project-video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--media-radius);
  background: #05090c;
  margin-bottom: clamp(46px, 7vw, 84px);
}

.project-video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.terrarium-summary {
  align-items: start;
}

.terrarium-nau-characters {
  display: grid;
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  margin-top: clamp(64px, 8vw, 112px);
  scroll-margin-top: calc(var(--header-h) + 88px);
}

.nau-character-copy {
  min-width: 0;
  padding-top: 24px;
  padding-bottom: clamp(8px, 2vw, 26px);
  border-top: 1px solid var(--line);
}

.nau-character-copy h2 {
  font-size: clamp(34px, 4vw, 60px);
}

.nau-character-copy .lead {
  margin-top: 20px;
}

.nau-character-copy .lead strong {
  color: #111418;
  font-weight: 950;
}

.nau-character-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
  align-items: end;
  min-width: 0;
}

.nau-character-figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--media-radius);
  background: #f4f6f7;
}

.nau-character-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.terrarium-tps-combat,
.terrarium-base-hub,
.terrarium-field-play,
.terrarium-story-arc {
  display: grid;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  margin-top: clamp(64px, 8vw, 112px);
  scroll-margin-top: calc(var(--header-h) + 88px);
}

.terrarium-tps-combat,
.terrarium-field-play {
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.32fr);
}

.terrarium-base-hub,
.terrarium-story-arc {
  grid-template-columns: minmax(300px, 0.32fr) minmax(0, 0.68fr);
}

.tps-combat-media,
.base-hub-media,
.field-play-media,
.story-arc-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--media-radius);
  background: #05090c;
}

.tps-combat-media img,
.base-hub-media img,
.field-play-media img,
.story-arc-media img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.tps-combat-media img {
  aspect-ratio: 1420 / 792;
}

.base-hub-media img {
  aspect-ratio: 1408 / 780;
}

.field-play-media img {
  aspect-ratio: 1408 / 789;
}

.story-arc-media img {
  aspect-ratio: 2752 / 1536;
}

.tps-combat-copy,
.base-hub-copy,
.field-play-copy,
.story-arc-copy {
  min-width: 0;
  padding-top: 24px;
  padding-bottom: clamp(8px, 2vw, 26px);
  border-top: 1px solid var(--line);
}

.tps-combat-copy h2,
.base-hub-copy h2,
.field-play-copy h2,
.story-arc-copy h2 {
  font-size: clamp(34px, 4vw, 60px);
}

.tps-combat-copy .lead,
.base-hub-copy .lead,
.field-play-copy .lead,
.story-arc-copy .lead {
  margin-top: 20px;
}

.terrarium-lineup {
  margin-top: clamp(72px, 9vw, 132px);
  padding-top: clamp(32px, 5vw, 56px);
  border-top: 1px solid var(--line);
}

.terrarium-lineup-media {
  display: flex;
  justify-content: center;
  margin: 0;
}

.terrarium-lineup-media img {
  display: block;
  width: min(892px, 100%);
  height: auto;
}

.move-content {
  padding-top: clamp(50px, 7vw, 92px);
}

.move-overview {
  scroll-margin-top: calc(var(--header-h) + 88px);
}

.move-hero {
  position: relative;
  width: 100vw;
  min-height: clamp(520px, 52vw, 760px);
  display: flex;
  align-items: flex-end;
  margin: 0 calc(50% - 50vw) clamp(54px, 7vw, 90px);
  overflow: hidden;
  isolation: isolate;
  background: #05090c;
}

.move-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.move-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 6, 8, 0.9) 0%, rgba(3, 6, 8, 0.52) 45%, rgba(3, 6, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 6, 8, 0.06) 0%, rgba(3, 6, 8, 0.84) 100%);
}

.move-hero-copy {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 120px) 0;
  color: #f4fbff;
}

.move-hero h2 {
  max-width: 860px;
  color: #fff;
  font-size: clamp(42px, 5.4vw, 80px);
}

.move-hero .lead {
  max-width: 680px;
  color: rgba(244, 251, 255, 0.78);
}

.move-summary {
  align-items: start;
}

.move-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
  margin-top: clamp(44px, 6vw, 72px);
}

.move-visuals {
  margin-top: clamp(76px, 10vw, 132px);
  scroll-margin-top: calc(var(--header-h) + 88px);
}

.move-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 42px) 18px;
  margin-top: clamp(34px, 5vw, 56px);
}

.move-feature {
  min-width: 0;
  margin: 0;
}

.move-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border-radius: var(--media-radius);
  background: #111820;
}

.move-feature figcaption {
  display: grid;
  gap: 8px;
  min-height: 74px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.move-feature figcaption span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.move-feature figcaption strong {
  color: #111418;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.38;
  font-weight: 950;
  word-break: keep-all;
}

.media-content,
.news-content {
  display: grid;
  gap: clamp(78px, 11vw, 142px);
  padding-top: clamp(50px, 7vw, 92px);
}

.media-section {
  scroll-margin-top: calc(var(--header-h) + 88px);
}

.media-section-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.media-section-heading h2 {
  font-size: clamp(34px, 4.5vw, 58px);
}

.news-state {
  margin: 0 0 24px;
  color: #5a646e;
  font-size: 15px;
  font-weight: 700;
}

.news-state[hidden] {
  display: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 44px) 24px;
}

.news-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}

.news-card-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--media-radius);
  background: #111820;
}

.news-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0 solid var(--cyan);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16));
  transition: border-width 180ms ease, background 180ms ease;
}

.news-card-image-empty::before {
  content: "GPUN";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  font-weight: 950;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #101820, #172a32);
}

.news-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.news-card-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.news-card-meta {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-card strong {
  color: #111418;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 950;
  line-height: 1.34;
  word-break: keep-all;
}

.news-card-copy > span:last-child {
  color: #4b555f;
  font-size: 15px;
  line-height: 1.72;
  word-break: keep-all;
}

.news-card:hover img,
.news-card:focus-visible img {
  transform: scale(1.045);
}

.news-card:hover .news-card-image::after,
.news-card:focus-visible .news-card-image::after {
  border-width: 4px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(11, 184, 200, 0.18));
}

.news-card:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 5px;
}

.trailer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 44px) 24px;
}

.trailer-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}

.trailer-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--media-radius);
  background: #111820;
}

.trailer-video iframe,
.trailer-video img {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.trailer-thumb-link {
  position: relative;
  display: block;
  height: 100%;
}

.trailer-thumb-link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 40px;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background: rgba(0, 188, 212, 0.9);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}

.trailer-thumb-link::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 20px;
  transform: translate(-38%, -50%);
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.trailer-video img {
  object-fit: cover;
}

.trailer-video-empty::before {
  content: "TRAILER";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  font-weight: 950;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #101820, #172a32);
}

.trailer-card-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.trailer-card strong {
  color: #111418;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 950;
  line-height: 1.34;
  word-break: keep-all;
}

.trailer-card-copy > span:last-of-type {
  color: #4b555f;
  font-size: 15px;
  line-height: 1.72;
  word-break: keep-all;
}

.trailer-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--cyan);
  color: #111418;
  font-size: 13px;
  font-weight: 950;
  transition: color 150ms ease, border-color 150ms ease;
}

.trailer-link:hover,
.trailer-link:focus-visible {
  color: #0b8f9d;
  border-color: #0b8f9d;
}

.gallery-content {
  display: grid;
  gap: clamp(64px, 9vw, 118px);
  padding-top: clamp(46px, 6vw, 86px);
}

.gallery-visual-section {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  scroll-margin-top: calc(var(--header-h) + 88px);
}

.gallery-section-heading {
  max-width: 760px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.gallery-section-heading h2 {
  margin: 0;
  color: #111418;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.gallery-thumb {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111820;
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0 solid var(--cyan);
  background: rgba(0, 0, 0, 0);
  transition: border-width 180ms ease, background 180ms ease;
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  transform: scale(1.045);
}

.gallery-thumb:hover::after,
.gallery-thumb:focus-visible::after {
  border-width: 4px;
  background: rgba(0, 0, 0, 0.08);
}

.gallery-thumb:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

body.is-lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 86px clamp(20px, 4vw, 72px) 44px;
  background: rgba(3, 6, 8, 0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 0ms linear 180ms;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0ms;
}

.lightbox-figure {
  width: min(1440px, 100%);
  margin: 0;
}

.lightbox-image {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 14px;
  color: rgba(244, 251, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(244, 251, 255, 0.34);
  background: rgba(7, 13, 17, 0.72);
  color: #fff;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  border-color: rgba(244, 251, 255, 0.76);
  background: rgba(11, 184, 200, 0.82);
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 3px solid rgba(244, 251, 255, 0.7);
  outline-offset: 3px;
}

.lightbox-close {
  top: 24px;
  right: clamp(20px, 4vw, 72px);
  height: 42px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 76px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.lightbox-prev {
  left: clamp(20px, 3vw, 48px);
}

.lightbox-next {
  right: clamp(20px, 3vw, 48px);
}

@media (max-width: 940px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 18px;
  }

  .brand,
  .nav {
    position: static;
    transform: none;
  }

  .brand-tagline,
  .mega-menu,
  .header-tools {
    display: none;
  }

  .nav {
    display: flex;
    gap: 24px;
    font-size: 12px;
  }

  .nav a {
    padding: 0;
  }

  .page-visual {
    min-height: 216px;
  }

  .move-page .page-visual img {
    object-position: center 34%;
    transform: translateX(8%) scale(1.1);
  }

  .terrarium-page .page-visual img {
    object-position: center 25%;
    transform: translateX(9%) scale(1.08);
  }

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

  #studio.content-grid,
  #expertise.content-grid {
    grid-template-columns: 1fr;
  }

  .leadership-section {
    grid-template-columns: 1fr;
  }

  .company-history-grid {
    grid-template-columns: 1fr;
  }

  .move-point-grid,
  .move-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .terrarium-nau-characters {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .nau-character-copy {
    max-width: 720px;
  }

  .terrarium-tps-combat,
  .terrarium-base-hub,
  .terrarium-field-play,
  .terrarium-story-arc {
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
  }

  .tps-combat-copy,
  .base-hub-copy,
  .field-play-copy,
  .story-arc-copy {
    max-width: 720px;
  }

  .about-point-grid {
    grid-template-columns: 1fr;
  }

  .joinus-photo-grid {
    grid-template-columns: 1fr;
  }

  .news-grid,
  .trailer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thumbnail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
  }

  .nav {
    overflow-x: auto;
    justify-content: flex-start;
    max-width: calc(100vw - 104px);
    min-width: 0;
  }

  .page-visual-inner,
  .subnav-inner,
  .content {
    width: calc(100vw - 32px);
    max-width: 1180px;
  }

  .move-hero {
    min-height: 560px;
  }

  .move-hero img {
    object-position: 62% center;
  }

  .move-hero-copy {
    width: calc(100vw - 32px);
    max-width: 1180px;
    padding: 64px 0;
  }

  .move-hero h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .subnav-inner {
    overflow-x: auto;
    gap: 28px;
  }

  .fact-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #studio .fact-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .leadership-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .leadership-list dt {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  h2 {
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.08;
    word-break: break-all;
    line-break: anywhere;
  }

  #expertise h2 {
    max-width: none;
    word-break: keep-all;
    overflow-wrap: normal;
    line-break: auto;
  }

  h2,
  .lead {
    max-width: 358px;
  }

  .move-point-grid,
  .move-feature-grid {
    grid-template-columns: 1fr;
  }

  .nau-character-gallery {
    gap: 14px;
  }

  .nau-character-figure img {
    height: auto;
  }

  .move-feature figcaption {
    min-height: 0;
  }

  .lead {
    word-break: break-all;
    line-break: anywhere;
  }

  .news-grid,
  .trailer-grid {
    grid-template-columns: 1fr;
  }

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

  .lightbox {
    padding: 76px 14px 88px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 20px;
    width: 64px;
    height: 48px;
    transform: none;
  }

  .lightbox-nav:hover,
  .lightbox-nav:focus-visible {
    transform: scale(1.04);
  }

  .lightbox-prev {
    left: calc(50% - 72px);
  }

  .lightbox-next {
    right: calc(50% - 72px);
  }
}
