:root {
  --ink:#172220;
  --paper:#eeeae0;
  --muted:#b8c2ba;
  --olive:#4b6052;
  --amber:#e8ba70;
  --line:#3b4940;
  --gutter:clamp(22px,5vw,84px);
  color-scheme:dark;
  font-family:"Noto Sans CJK KR","Noto Sans KR","Apple SD Gothic Neo",sans-serif;
  font-synthesis:none;
  text-rendering:optimizeLegibility;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:94px;
}
body {
  margin:0;
  color:var(--paper);
  background:var(--ink);
  line-height:1.75;
  word-break:keep-all;
  overflow-wrap:anywhere;
}
a {
  color:inherit;
  text-underline-offset:5px;
}
a,button {
  touch-action:manipulation;
}
button {
  font:inherit;
}
img,video {
  display:block;
  max-width:100%;
  height:auto;
}
h1,h2,h3,p,figure {
  margin:0;
}
h1,h2,h3 {
  line-height:1.18;
  letter-spacing:-.055em;
  text-wrap:balance;
}
h2 {
  font-size:clamp(34px,4.1vw,62px);
  font-weight:800;
}
h3 {
  font-size:clamp(23px,2.25vw,34px);
  font-weight:750;
}
button,a {
  -webkit-tap-highlight-color:transparent;
}
button:focus-visible,a:focus-visible,[tabindex]:focus-visible {
  outline:3px solid var(--amber);
  outline-offset:5px;
}
.paper a:focus-visible {
  outline-color:var(--olive);
}
.skip-link {
  position:fixed;
  top:-100px;
  left:20px;
  z-index:20;
  background:var(--amber);
  color:var(--ink);
  padding:12px 22px;
}
.skip-link:focus {
  top:8px;
}
.site-header {
  height:88px;
  padding:0 var(--gutter);
  display:flex;
  align-items:center;
  gap:40px;
  border-bottom:1px solid var(--line);
  background:var(--ink);
}
.brand {
  font-size:30px;
  font-weight:950;
  letter-spacing:-.09em;
  text-decoration:none;
  white-space:nowrap;
  line-height:1;
}
.brand span {
  color:var(--amber);
}
nav {
  display:flex;
  gap:34px;
  margin-left:auto;
}
nav a,.language {
  font-size:13px;
  text-decoration:none;
  min-height:44px;
  display:flex;
  align-items:center;
  gap:12px;
}
.language {
  margin-left:32px;
  color:var(--amber);
}
nav a:hover,.language:hover {
  text-decoration:underline;
}
.hero {
  position:relative;
  isolation:isolate;
  min-height:720px;
  height:calc(100svh - 88px);
  max-height:1020px;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.hero-backdrop {
  position:absolute;
  z-index:-2;
  inset:0 0 0 26%;
  background:var(--ink);
}
.hero-backdrop img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:52% 44%;
}
.hero-backdrop:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,var(--ink) 0%,rgba(23,34,32,.73) 25%,rgba(23,34,32,.05) 76%),linear-gradient(0deg,rgba(23,34,32,.9),transparent 28%);
}
.hero-content {
  padding:clamp(48px,6vw,90px) var(--gutter) 68px;
  max-width:950px;
}
.eyebrow {
  font-size:11px;
  letter-spacing:.14em;
  font-weight:750;
  line-height:1.6;
  margin-bottom:24px;
  color:var(--amber);
}
.hero .eyebrow {
  font-size:12px;
  letter-spacing:.15em;
}
.hero .eyebrow span {
  margin-inline:10px;
}
.development-label {
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:11px;
  margin-bottom:22px;
}
.development-label>span {
  width:5px;
  height:5px;
  background:var(--amber);
}
h1 {
  font-size:clamp(58px,7.3vw,112px);
  font-weight:900;
  line-height:1.09;
  max-width:750px;
}
h1 em {
  font-style:normal;
  color:var(--amber);
}
html[lang=en] .hero-content {
  max-width:none;
}
html[lang=en] h1 {
  font-size:clamp(55px,6vw,94px);
  letter-spacing:-.06em;
  max-width:1100px;
}
.hero-intro {
  font-size:clamp(17px,1.5vw,22px);
  line-height:1.8;
  margin-top:27px;
  color:#d8ded7;
}
.actions {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:26px;
  margin-top:35px;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  background:var(--amber);
  color:var(--ink);
  min-height:54px;
  padding:14px 24px;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  line-height:1.5;
}
.button:hover {
  background:var(--paper);
}
.button>span {
  font-size:22px;
  line-height:1;
}
.text-link {
  font-size:13px;
  display:inline-flex;
  align-items:center;
  gap:18px;
  min-height:44px;
  text-decoration:none;
}
.text-link:hover {
  text-decoration:underline;
}
.hero-foot {
  margin-top:auto;
  padding:0 var(--gutter) 25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  font-size:11px;
  color:var(--muted);
}
.section {
  padding:clamp(75px,8vw,122px) var(--gutter);
}
.paper {
  background:var(--paper);
  color:var(--ink);
  color-scheme:light;
}
.paper .eyebrow {
  color:var(--olive);
}
.section-heading {
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:clamp(32px,6vw,100px);
  align-items:end;
  margin-bottom:52px;
}
.section-heading>p,.concept-intro>p {
  font-size:16px;
  max-width:43em;
  color:var(--muted);
}
.paper .section-heading>p,.concept-intro>p {
  color:#4d5c51;
}
.team {
  margin-top:30px;
  padding-top:20px;
  border-top:1px solid #c4c9bd;
}
.team>p:first-child {
  font-size:11px;
  color:#596a5a;
}
.team-roles {
  display:flex;
  gap:22px;
  margin-top:11px;
  align-items:center;
}
.team-role {
  display:flex;
  gap:8px;
  align-items:center;
  font-size:13px;
  font-weight:750;
  white-space:nowrap;
}
.person {
  display:inline-block;
  width:15px;
  height:16px;
  border-radius:50% 50% 2px 2px;
  background:var(--olive);
  position:relative;
  margin-top:9px;
}
.person:before {
  content:"";
  position:absolute;
  width:8px;
  height:8px;
  top:-9px;
  left:3.5px;
  background:inherit;
  border-radius:50%;
}
.person.king {
  background:#ab7835;
}
.person.secret {
  background:#844e3e;
}
.person.squad {
  margin-left:3px;
}
.team .team-note {
  font-size:11px;
  margin-top:15px;
  color:#647063;
}
.role-pair {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.role {
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  background:#dce0d1;
  overflow:hidden;
  min-height:275px;
}
.role-hidden {
  background:#e1d6c3;
}
.role-portrait img {
  width:100%;
  height:280px;
  object-fit:contain;
  object-position:center bottom;
}
.role-copy {
  padding:26px 26px 26px 4px;
}
.role-copy .eyebrow {
  font-size:10px;
  margin-bottom:12px;
}
.role-copy h3 {
  font-size:clamp(23px,2vw,29px);
}
.role-copy>p:last-child {
  font-size:13px;
  line-height:1.8;
  margin-top:16px;
  color:#4c594d;
}
.figure-note {
  font-size:10px;
  color:#687265;
  text-align:right;
  margin-top:10px;
}
.rounds {
  margin-top:90px;
}
.rounds>h2 {
  font-size:clamp(28px,3vw,44px);
}
.rounds ol {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  list-style:none;
  gap:40px;
  margin:38px 0 0;
  padding:0;
}
.rounds li {
  border-top:1px solid #bfc7b9;
  padding-top:20px;
}
.step-index {
  color:#778570;
  font-size:13px;
  display:block;
  margin-bottom:18px;
}
.rounds h3 {
  font-size:19px;
  line-height:1.4;
}
.rounds li>p {
  font-size:13px;
  color:#596a5a;
  margin-top:12px;
  line-height:1.9;
}
.gallery {
  background:#172220;
}
.gallery-tabs {
  display:flex;
  gap:0;
  border-bottom:1px solid var(--line);
  margin-bottom:24px;
  overflow-x:auto;
}
.gallery-tabs button {
  flex:1;
  background:none;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  padding:18px 12px;
  cursor:pointer;
  border:0;
  border-bottom:3px solid transparent;
  white-space:nowrap;
  min-height:54px;
}
.gallery-tabs button[aria-selected=true] {
  color:var(--amber);
  border-bottom-color:var(--amber);
}
.gallery-tabs button:hover {
  background:#202e29;
  color:var(--paper);
}
.game-image {
  display:block;
  position:relative;
  background:#101918;
  border:1px solid var(--line);
}
.game-image img {
  width:100%;
  aspect-ratio:1280/739;
  object-fit:contain;
}
.image-enlarge {
  position:absolute;
  right:16px;
  top:16px;
  background:#172220df;
  color:var(--paper);
  width:38px;
  height:38px;
  display:grid;
  place-content:center;
  font-size:25px;
}
.scene-caption {
  display:flex;
  gap:30px;
  justify-content:space-between;
  margin-top:23px;
}
.scene-caption h3 {
  font-size:22px;
  letter-spacing:-.035em;
}
.scene-caption p {
  font-size:13px;
  color:var(--muted);
  max-width:690px;
  margin-top:9px;
}
.capture-note {
  font-size:10px;
  text-align:right;
  color:#9cac9f;
  flex-shrink:0;
  padding-top:5px;
}
.video-story {
  display:grid;
  grid-template-columns:1fr 1.25fr;
  gap:70px;
  align-items:center;
  border-top:1px solid var(--line);
  margin-top:70px;
  padding-top:60px;
}
.video-story h3 {
  font-size:29px;
}
.video-story p:not(.eyebrow) {
  font-size:14px;
  color:var(--muted);
  margin-top:16px;
}
.video-story video {
  width:100%;
  background:#111b18;
  border:1px solid var(--line);
}
.video-sequence {
  display:block;
  margin-top:27px;
  font-size:10px;
  letter-spacing:.13em;
  color:#aebcac;
}
.video-sequence b {
  margin-inline:12px;
  color:var(--amber);
}
.updates .section-heading {
  grid-template-columns:1fr auto;
}
.field-date {
  font-size:12px;
  line-height:1.6;
  color:#627060;
  letter-spacing:.1em;
  text-align:right;
}
.field-date strong {
  font-size:40px;
  line-height:1;
  font-weight:500;
  letter-spacing:-.07em;
  color:var(--ink);
}
.updates-list {
  padding:0;
  margin:0;
  list-style:none;
  border-top:1px solid #bfc7b9;
}
.updates-list li {
  display:grid;
  grid-template-columns:80px 1fr;
  padding:29px 0;
  border-bottom:1px solid #bfc7b9;
  gap:16px;
}
.updates-list li>span {
  font-size:13px;
  color:#6b7964;
  padding-top:3px;
}
.updates-list li>div {
  display:grid;
  grid-template-columns:.9fr 1fr;
  gap:60px;
}
.updates-list h3 {
  font-size:24px;
  line-height:1.5;
}
.updates-list p {
  font-size:14px;
  color:#566552;
}
.status {
  margin-top:65px;
  display:grid;
  grid-template-columns:1.35fr 1fr;
  gap:60px;
  align-items:center;
  padding-top:16px;
}
.status .development-label {
  color:#53644f;
}
.status .development-label>span {
  background:#8f642b;
}
.status h3 {
  font-size:27px;
}
.status p:not(.development-label) {
  font-size:13px;
  color:#5b6856;
  margin-top:16px;
  max-width:590px;
}
.status>div:last-child {
  text-align:right;
}
.dark-button {
  background:var(--ink);
  color:var(--paper);
}
.dark-button:hover {
  background:#354c3c;
}
.status .guide-note {
  font-size:11px;
  text-align:right;
  margin-left:auto;
}
footer {
  padding:50px var(--gutter);
  display:flex;
  justify-content:space-between;
  gap:35px;
}
footer p {
  font-size:11px;
  color:var(--muted);
  margin-top:20px;
}
.footer-links {
  display:flex;
  flex-wrap:wrap;
  justify-content:end;
  align-content:center;
  gap:13px 30px;
  max-width:450px;
  font-size:11px;
}
.footer-links>span {
  flex-basis:100%;
  text-align:right;
  color:#899b8a;
  font-size:10px;
}
@media(min-width:1600px) {
  .hero-content {
    padding-top:95px;
  }
  .section,footer,.site-header {
    padding-inline:max(var(--gutter),calc((100vw - 1440px)/2));
  }
  .hero-content,.hero-foot {
    padding-left:max(var(--gutter),calc((100vw - 1440px)/2));
    padding-right:max(var(--gutter),calc((100vw - 1440px)/2));
  }
}
@media(max-width:1050px) {
  .hero {
    min-height:690px;
    max-height:820px;
  }
  .hero-backdrop {
    left:16%;
  }
  .hero-backdrop:after {
    background:linear-gradient(90deg,var(--ink),rgba(23,34,32,.48) 55%,rgba(23,34,32,.15)),linear-gradient(0deg,rgba(23,34,32,.85),transparent 30%);
  }
  .role {
    grid-template-columns:1fr;
    min-height:0;
  }
  .role-portrait img {
    height:240px;
  }
  .role-copy {
    padding:0 26px 30px;
  }
  .scene-caption {
    display:block;
  }
  .capture-note {
    display:block;
    text-align:left;
    margin-top:16px;
  }
  .video-story {
    gap:35px;
  }
  .updates-list li>div {
    gap:35px;
  }
  .status {
    gap:35px;
  }
}
@media(max-width:700px) {
  html {
    scroll-padding-top:20px;
  }
  .site-header {
    height:auto;
    min-height:78px;
    flex-wrap:wrap;
    gap:12px 20px;
    padding-block:17px;
  }
  .brand {
    font-size:27px;
  }
  .language {
    margin-left:auto;
    font-size:12px;
    min-height:36px;
  }
  nav {
    order:3;
    flex-basis:100%;
    margin:0;
    gap:26px;
    border-top:1px solid var(--line);
    padding-top:6px;
  }
  nav a {
    font-size:12px;
    min-height:33px;
  }
  .hero {
    height:auto;
    min-height:720px;
    max-height:none;
  }
  .hero-backdrop {
    left:0;
    top:40%;
  }
  .hero-backdrop img {
    object-position:52% 50%;
  }
  .hero-backdrop:after {
    background:linear-gradient(180deg,var(--ink),rgba(23,34,32,.08) 65%,rgba(23,34,32,.85)),linear-gradient(90deg,rgba(23,34,32,.5),transparent);
  }
  .hero-content {
    padding-top:34px;
    padding-bottom:225px;
    max-width:100%;
  }
  .hero .eyebrow {
    font-size:9px;
    margin-bottom:17px;
  }
  .hero .development-label {
    font-size:10px;
    margin-bottom:18px;
  }
  h1 {
    font-size:clamp(53px,11.5vw,80px);
  }
  html[lang=en] h1 {
    font-size:clamp(47px,10.5vw,75px);
  }
  .hero-intro {
    font-size:16px;
    margin-top:21px;
  }
  .actions {
    margin-top:25px;
    gap:10px 22px;
  }
  .button {
    font-size:12px;
    min-height:50px;
    padding:13px 18px;
    gap:15px;
  }
  .text-link {
    font-size:11px;
    gap:9px;
  }
  .hero-foot {
    display:block;
    padding-bottom:22px;
    font-size:10px;
  }
  .hero-foot>span {
    display:block;
  }
  .hero-foot>span:last-child {
    margin-top:6px;
    font-size:9px;
  }
  .section-heading {
    grid-template-columns:1fr;
    gap:30px;
    margin-bottom:35px;
  }
  .section-heading>p,.concept-intro>p {
    font-size:14px;
  }
  .eyebrow {
    font-size:10px;
    margin-bottom:18px;
  }
  .team-roles {
    gap:18px;
  }
  .team-role {
    font-size:12px;
  }
  .role-pair {
    grid-template-columns:1fr;
    gap:18px;
  }
  .role {
    grid-template-columns:42% 1fr;
    min-height:230px;
  }
  .role-portrait img {
    height:220px;
  }
  .role-copy {
    padding:24px 20px 24px 0;
  }
  .role-copy h3 {
    font-size:24px;
  }
  .role-copy>p:last-child {
    font-size:12px;
  }
  .role-copy .eyebrow {
    font-size:9px;
  }
  .rounds {
    margin-top:58px;
  }
  .rounds ol {
    grid-template-columns:1fr;
    gap:24px;
    margin-top:28px;
  }
  .rounds li {
    display:grid;
    grid-template-columns:35px 1fr;
    gap:0 15px;
    padding-top:20px;
  }
  .step-index {
    grid-row:1/3;
    margin:0;
    line-height:1.8;
  }
  .rounds h3 {
    font-size:18px;
  }
  .rounds li>p {
    grid-column:2;
    font-size:12px;
    margin-top:9px;
  }
  .gallery-tabs {
    margin-inline:calc(-1 * var(--gutter));
    padding-inline:var(--gutter);
  }
  .gallery-tabs button {
    font-size:11px;
    min-width:85px;
    line-height:1.5;
    padding:15px 11px;
  }
  .scene-caption h3 {
    font-size:21px;
  }
  .scene-caption p {
    font-size:12px;
  }
  .game-image {
    margin-inline:calc(-1 * var(--gutter));
    border-inline:0;
  }
  .image-enlarge {
    width:30px;
    height:30px;
    font-size:20px;
    top:10px;
    right:10px;
  }
  .video-story {
    grid-template-columns:1fr;
    gap:27px;
    margin-top:40px;
    padding-top:40px;
  }
  .video-story h3 {
    font-size:25px;
  }
  .video-story p:not(.eyebrow) {
    font-size:13px;
  }
  .video-sequence {
    margin-top:18px;
  }
  .updates .section-heading {
    gap:20px;
  }
  .field-date strong {
    font-size:29px;
  }
  .field-date {
    font-size:9px;
  }
  .updates-list li {
    grid-template-columns:30px 1fr;
    padding:23px 0;
    gap:12px;
  }
  .updates-list li>div {
    grid-template-columns:1fr;
    gap:10px;
  }
  .updates-list h3 {
    font-size:21px;
  }
  .updates-list p {
    font-size:12px;
  }
  .status {
    grid-template-columns:1fr;
    gap:28px;
    margin-top:42px;
  }
  .status h3 {
    font-size:24px;
  }
  .status>div:last-child,.status .guide-note {
    text-align:left;
  }
  .status .guide-note {
    margin-left:0;
  }
  footer {
    display:block;
    padding-block:35px;
  }
  .footer-links {
    justify-content:start;
    margin-top:26px;
  }
  .footer-links>span {
    text-align:left;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  * {
    animation:none!important;
    transition:none!important;
  }
}
