:root {
  color-scheme: light;
  --paper: #f7f5ef;
  --ink: #212a29;
  --muted: #69716a;
  --line: #dcded5;
  --mint: #b5e6cf;
  --green: #365e4e;
  --night: #061632;
  --night-text: #faf5df;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: #b5e6cf;
  color: #162b24;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  color: var(--green);
}
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #438f7a;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
}
button,
a {
  touch-action: manipulation;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.2;
}
.wrap {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 20;
  top: 10px;
  left: 16px;
  padding: 10px 20px;
  background: var(--mint);
  transform: translateY(-160%);
  color: var(--ink);
}
.skip-link:focus {
  transform: translateY(0);
}
.bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 750;
  font-size: 17px;
  letter-spacing: -0.4px;
  line-height: 1.3;
}
.brand img {
  border-radius: 11px;
  flex-shrink: 0;
}
.brand small {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 6px;
}
.bar nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 550;
}
.bar nav a {
  text-decoration: none;
  padding-block: 12px;
}
.bar nav .language {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.language span {
  margin-left: 9px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 2.2px;
  line-height: 1.6;
  text-transform: uppercase;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
}
.hero {
  background: var(--night);
  color: var(--night-text);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  min-height: 646px;
}
.hero-copy {
  padding: 96px 0 70px;
  position: relative;
  z-index: 2;
}
.hero .eyebrow {
  color: var(--mint);
  margin-bottom: 29px;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.8vw, 70px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -2.8px;
}
.hero h1 em {
  color: var(--mint);
  font-weight: 400;
}
.hero-intro {
  max-width: 400px;
  font-size: 15px;
  line-height: 1.85;
  color: #b6c2cd;
  margin-top: 27px;
}
.release-badge {
  margin-top: 32px;
  padding: 13px 18px;
  border: 1px solid #647788;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  border-radius: 5px;
  background: #ffffff05;
}
.release-badge strong {
  font-weight: 550;
  font-size: 15px;
  display: block;
  line-height: 1.4;
}
.release-badge small {
  font-size: 11px;
  color: #b6c2cd;
  display: block;
}
.release-dot {
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: var(--mint);
  margin-left: 15px;
}
.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  width: fit-content;
  gap: 28px;
  font-size: 12px;
}
.hero-link {
  margin-top: 30px;
  color: #b8c8ce;
}
.hero-link:hover,
.hero-bottom a:hover {
  color: var(--mint);
}
.hero-art {
  position: relative;
  margin-right: -56px;
  overflow: hidden;
}
.hero-art img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center 64%;
}
.hero-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--night), transparent 28%),
    linear-gradient(0deg, var(--night), transparent 18%);
  pointer-events: none;
}
.art-caption {
  position: absolute;
  z-index: 1;
  inset: 30px 30px auto 40px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #b3c2d6;
  letter-spacing: 1.7px;
}
.hero-bottom {
  border-top: 1px solid #b2c8cf26;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 63px;
  font-size: 10px;
  letter-spacing: 1.3px;
  color: #98a9ba;
}
.hero-bottom a {
  font-size: 20px;
  color: var(--mint);
  text-decoration: none;
  padding: 8px 15px;
}
.ribbon {
  background: #e9eddf;
  border-bottom: 1px solid #d9dfcf;
}
.ribbon .wrap {
  display: flex;
  min-height: 65px;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #475343;
}
.ribbon i {
  font-size: 13px;
  font-style: normal;
  color: #779176;
}
.intro-section {
  padding-block: 104px 108px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
}
.section-heading .eyebrow {
  color: var(--green);
  margin-bottom: 24px;
}
.section-heading h2,
.closing h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3.4vw, 49px);
  line-height: 1.16;
  letter-spacing: -1.5px;
  font-weight: 400;
}
.section-description {
  max-width: 340px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  padding-bottom: 3px;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
}
.feature-item {
  padding: 0 38px;
  border-left: 1px solid var(--line);
}
.feature-item:first-child {
  padding-left: 0;
  border: 0;
}
.feature-item:last-child {
  padding-right: 0;
}
.feature-number {
  font-size: 10px;
  color: #778479;
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feature-number span {
  font-size: 31px;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
}
.feature-item h3 {
  margin: 27px 0 17px;
  font-size: 24px;
  font-weight: 550;
  line-height: 1.3;
  letter-spacing: -0.7px;
}
.feature-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 295px;
}
.world-section {
  padding-block: 94px 54px;
  background: #eaece5;
  border-block: 1px solid #dfe2d8;
}
.gallery {
  display: flex;
  gap: 23px;
  overflow-x: auto;
  margin-top: 49px;
  padding: 0 2px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #9da99b transparent;
}
.gallery figure {
  flex: 0 0 calc((100% - 92px) / 5);
  min-width: 178px;
  scroll-snap-align: start;
}
.shot-frame {
  background: #14211e;
  padding: 5px;
  border-radius: 17px;
  border: 1px solid #46514b;
  box-shadow: 0 7px 14px #26362c0d;
  overflow: hidden;
}
.shot-frame img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}
.gallery figcaption {
  padding-top: 20px;
}
.gallery figcaption span {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #667665;
}
.gallery h3 {
  font-size: 13px;
  font-weight: 550;
  margin-top: 6px;
  line-height: 1.5;
}
.gallery-note {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #cfd5c9;
  padding-top: 17px;
  margin-top: 11px;
  font-size: 9px;
  letter-spacing: 1.3px;
  color: #687664;
}
.gallery-note span span {
  font-size: 18px;
  padding-left: 10px;
}
.closing {
  padding-block: 100px 105px;
  text-align: center;
}
.closing .eyebrow {
  color: var(--green);
  margin-bottom: 22px;
}
.closing h2 {
  font-size: clamp(40px, 4vw, 58px);
}
.closing > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  margin-top: 21px;
}
.coming-label {
  margin: 25px auto 0;
  display: inline-block;
  border-bottom: 1px solid #9fb3a4;
  padding: 0 4px 10px;
  font-size: 12px;
  color: var(--green);
}
.footer {
  background: #132721;
  color: #e4e9dc;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-block: 40px;
}
.footer .brand small {
  font-size: 11px;
  letter-spacing: 0;
  color: #a6b9ac;
  font-weight: 400;
  margin-top: 8px;
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 12px;
  color: #c1cfc4;
}
.footer nav a,
.footer-bottom a {
  text-decoration: none;
}
.footer a:hover {
  color: var(--mint);
}
.footer-bottom {
  border-top: 1px solid #ffffff21;
  padding-block: 20px 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: #acbeb1;
}
.footer-bottom > :last-child {
  font-size: 8px;
  letter-spacing: 1.8px;
}
/* Policies share the site's frame, with a quieter reading surface. */
.legal-main {
  padding-block: 43px 90px;
}
.back-link {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}
.doc-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 38px;
}
.doc-heading .eyebrow {
  color: var(--green);
  margin-top: 44px;
  margin-bottom: 14px;
}
.doc-heading h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -1.7px;
}
.meta {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
}
.doc-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 74px;
  align-items: start;
  padding-top: 38px;
}
.doc-sidebar {
  position: sticky;
  top: 120px;
  font-size: 12px;
}
.legal-nav {
  display: grid;
  gap: 4px;
  margin-bottom: 35px;
}
.legal-nav a {
  padding: 12px 15px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-radius: 3px;
}
.legal-nav a[aria-current="page"] {
  background: #e2e9df;
  color: #284e3b;
  font-weight: 650;
}
.legal-nav a:not([aria-current]):hover {
  background: #eceee6;
}
.desktop-toc {
  padding-inline: 15px;
}
.desktop-toc .eyebrow {
  font-size: 9px;
  color: var(--muted);
  margin-bottom: 13px;
}
.toc {
  display: grid;
  gap: 10px;
}
.toc a {
  text-decoration: none;
  color: #626e64;
  font-size: 11px;
  line-height: 1.5;
  padding-block: 2px;
}
.toc a:hover {
  color: #153e2b;
  text-decoration: underline;
}
.sidebar-contact {
  display: block;
  border-top: 1px solid var(--line);
  margin: 25px 15px 0;
  padding-top: 19px;
  text-decoration: none;
  color: var(--green);
}
.doc {
  min-width: 0;
  max-width: 825px;
  font-size: 14px;
  line-height: 1.95;
  color: #48514b;
}
.doc p {
  margin-bottom: 18px;
}
.doc > p:first-of-type {
  font-size: 16px;
  color: #394c3f;
  line-height: 1.9;
}
.doc h2 {
  color: var(--ink);
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.45px;
  margin: 43px 0 17px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 12px;
}
.doc a {
  color: #2d6750;
  overflow-wrap: anywhere;
}
.doc strong {
  color: #253e30;
  font-weight: 650;
}
.doc code {
  font-size: 12px;
  overflow-wrap: anywhere;
}
.doc ul,
.doc ol {
  padding-left: 22px;
  margin-block: 14px 23px;
}
.doc li {
  padding-left: 6px;
  margin-block: 9px;
}
.doc li::marker {
  color: #557b62;
}
.table-scroll {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 5px;
  margin-block: 23px;
}
.doc table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  line-height: 1.8;
}
.doc th {
  text-align: left;
  background: #e9ede4;
  color: #354d3b;
  font-weight: 600;
}
.doc td,
.doc th {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.doc tr:last-child td {
  border-bottom: 0;
}
.doc td:first-child {
  min-width: 115px;
  color: #344d3d;
}
.doc .note {
  border-left: 3px solid #8aa084;
  background: #eaece3;
  padding: 22px 25px;
  color: #475342;
  font-size: 13px;
}
.contact-panel {
  border-top: 1px solid var(--line);
  background: #eef0e8;
  padding: 27px;
  margin-top: 42px;
}
.contact-panel h2 {
  border: 0;
  padding: 0;
  margin: 0 0 8px;
  font-size: 18px;
}
.contact-panel p {
  font-size: 13px;
  margin: 0 0 18px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding: 12px 18px;
  border-radius: 3px;
  background: #284d3d;
  color: #fff !important;
  font-size: 12px;
  font-weight: 550;
  text-decoration: none;
}
.button:hover {
  background: #193d2d;
}
.back-top {
  display: block;
  width: fit-content;
  margin-top: 28px;
  font-size: 11px;
  text-decoration: none;
}
.mobile-toc {
  display: none;
}
.error-page {
  text-align: center;
  padding-block: 80px 100px;
}
.error-page .eyebrow {
  color: var(--green);
}
.error-moon {
  display: block;
  font-size: 95px;
  line-height: 1.5;
  color: #738f70;
}
.error-page h1 {
  font:
    400 clamp(32px, 4vw, 52px) / 1.2 Georgia,
    serif;
}
.error-page > p:not(.eyebrow) {
  max-width: 420px;
  margin: 20px auto 30px;
  color: var(--muted);
}
.error-page .text-link {
  margin: 20px auto 0;
}
:lang(ko) {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
:lang(ko) .hero h1 {
  font-family: inherit;
  font-size: clamp(38px, 4.2vw, 61px);
  font-weight: 700;
  line-height: 1.27;
  letter-spacing: -2.6px;
}
:lang(ko) .hero h1 em {
  font-style: normal;
  font-weight: 700;
}
:lang(ko) .section-heading h2,
:lang(ko) .closing h2 {
  font-family: inherit;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -1.9px;
}
:lang(ko) .doc-heading h1 {
  font-family: inherit;
  font-weight: 650;
}
@media (min-width: 1450px) {
  .hero-art {
    margin-right: 0;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero-inner {
    min-height: 580px;
    grid-template-columns: 1.15fr 1fr;
  }
  .hero-copy {
    padding-block: 77px 60px;
  }
  .hero h1 {
    font-size: 49px;
  }
  :lang(ko) .hero h1 {
    font-size: 45px;
  }
  .hero-art {
    margin-right: -32px;
  }
  .hero-intro {
    max-width: 335px;
    font-size: 14px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-description {
    max-width: 280px;
  }
  .feature-item {
    padding-inline: 26px;
  }
  .feature-item h3 {
    font-size: 21px;
  }
  .gallery figure {
    min-width: 195px;
  }
  .doc-layout {
    grid-template-columns: 195px minmax(0, 1fr);
    gap: 38px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 88px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 72px;
    gap: 12px;
  }
  .brand {
    font-size: 14px;
    gap: 9px;
  }
  .brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-top: 4px;
  }
  .bar nav {
    gap: 18px;
    font-size: 11px;
  }
  .bar nav .nav-scenes,
  .bar nav .nav-support {
    display: none;
  }
  .bar nav .language {
    padding-left: 16px;
  }
  .language span {
    margin-left: 3px;
  }
  .hero-inner {
    display: block;
    min-height: auto;
  }
  .hero-copy {
    padding: 51px 0 0;
  }
  .hero .eyebrow {
    margin-bottom: 23px;
    font-size: 9px;
  }
  .hero h1 {
    font-size: clamp(38px, 8.7vw, 59px);
    letter-spacing: -1.9px;
  }
  :lang(ko) .hero h1 {
    font-size: clamp(35px, 8.3vw, 55px);
    letter-spacing: -1.8px;
  }
  .hero-intro {
    margin-top: 22px;
    max-width: 390px;
    font-size: 13px;
  }
  .release-badge {
    margin-top: 24px;
    padding: 10px 15px;
  }
  .hero-link {
    margin-top: 21px;
  }
  .hero-art {
    height: 410px;
    margin: 0 -20px;
  }
  .hero-art img {
    object-position: center 65%;
  }
  .hero-art:after {
    background:
      linear-gradient(0deg, var(--night), transparent 20%),
      linear-gradient(180deg, var(--night), transparent 26%);
  }
  .art-caption {
    inset: auto 25px 29px;
    font-size: 8px;
  }
  .hero-bottom {
    min-height: 54px;
    font-size: 8px;
    letter-spacing: 0.8px;
  }
  .hero-bottom > span:nth-child(2) {
    display: none;
  }
  .ribbon .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 22px;
    padding-block: 18px;
    font-size: 10px;
  }
  .ribbon i {
    display: none;
  }
  .ribbon .wrap > span:before {
    content: "✦";
    margin-right: 8px;
    color: #799072;
  }
  .intro-section {
    padding-block: 65px;
  }
  .section-heading {
    display: block;
  }
  .section-heading .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }
  .section-heading h2 {
    font-size: 35px;
  }
  .section-description {
    max-width: 420px;
    font-size: 13px;
    margin-top: 24px;
  }
  .features {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }
  .feature-item,
  .feature-item:first-child,
  .feature-item:last-child {
    padding: 25px 0;
    border: 0;
    border-top: 1px solid var(--line);
  }
  .feature-number {
    float: right;
    flex-direction: column;
    gap: 22px;
    margin: 5px 5px 0 20px;
  }
  .feature-number span {
    font-size: 29px;
  }
  .feature-item h3 {
    margin: 0 0 14px;
    font-size: 23px;
  }
  .feature-item p {
    max-width: 85%;
    font-size: 13px;
  }
  .world-section {
    padding-block: 60px 34px;
  }
  .gallery {
    margin-top: 33px;
    gap: 18px;
  }
  .gallery figure {
    flex-basis: 64%;
    min-width: 0;
    max-width: 245px;
  }
  .gallery-note {
    font-size: 7px;
    letter-spacing: 0.6px;
  }
  .closing {
    padding-block: 65px;
  }
  .closing h2 {
    font-size: 38px;
  }
  .closing .eyebrow {
    font-size: 8px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding-block: 32px;
  }
  .footer nav {
    gap: 14px 20px;
    font-size: 11px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 9px;
  }
  .footer-bottom > :last-child {
    display: none;
  }
  .legal-main {
    padding-block: 28px 55px;
  }
  .doc-heading {
    padding-bottom: 27px;
  }
  .doc-heading .eyebrow {
    margin-top: 33px;
    font-size: 9px;
  }
  .doc-heading h1 {
    font-size: 35px;
    letter-spacing: -1.2px;
  }
  .meta {
    font-size: 11px;
    max-width: 350px;
    line-height: 1.8;
  }
  .doc-layout {
    display: block;
    padding-top: 19px;
  }
  .doc-sidebar {
    position: static;
  }
  .legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 24px;
  }
  .legal-nav a {
    font-size: 10px;
    padding: 9px 12px;
  }
  .legal-nav a span {
    display: none;
  }
  .desktop-toc,
  .sidebar-contact {
    display: none;
  }
  .mobile-toc {
    display: block;
    border-block: 1px solid var(--line);
    padding-block: 13px;
    margin-bottom: 28px;
  }
  .mobile-toc summary {
    font-size: 12px;
    color: var(--green);
    cursor: pointer;
  }
  .mobile-toc .toc {
    padding: 20px 4px 5px;
  }
  .toc a {
    font-size: 12px;
    padding-block: 5px;
  }
  .doc {
    font-size: 13px;
  }
  .doc > p:first-of-type {
    font-size: 14px;
  }
  .doc h2 {
    font-size: 19px;
    margin-top: 32px;
    scroll-margin-top: 12px;
  }
  .doc table {
    min-width: 480px;
    font-size: 12px;
  }
  .doc th,
  .doc td {
    padding: 13px;
  }
  .doc .note {
    padding: 18px;
  }
  .contact-panel {
    padding: 22px;
  }
}
@media (max-width: 370px) {
  .bar .nav-game {
    display: none;
  }
  .brand {
    font-size: 13px;
  }
  :lang(ko) .hero h1 {
    font-size: 32px;
  }
  .hero-art {
    height: 365px;
  }
  .hero-bottom {
    font-size: 7px;
  }
  .legal-nav a {
    padding-inline: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
@media print {
  .bar,
  .footer,
  .doc-sidebar,
  .mobile-toc,
  .contact-panel,
  .back-top,
  .back-link {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  .wrap {
    width: 100%;
  }
  .legal-main {
    padding: 0;
  }
  .doc-layout {
    display: block;
  }
  .doc {
    max-width: none;
    font-size: 11pt;
  }
  .doc-heading .eyebrow {
    margin-top: 0;
  }
  .doc h2 {
    break-after: avoid;
  }
  .table-scroll {
    overflow: visible;
  }
}
