:root {
  --paper: #f4eedf;
  --paper-light: #fffaf0;
  --paper-deep: #e7dcc5;
  --ink: #142f2c;
  --ink-soft: #284943;
  --ink-deep: #0c2422;
  --jade: #1f9e91;
  --jade-light: #70c5b9;
  --red: #e64a2e;
  --yellow: #f3c64c;
  --sky: #98d6df;
  --white: #fffef8;
  --line: rgba(20, 47, 44, 0.17);
  --header-h: 86px;
  --nav-offset: 70px;
  --side-pad: clamp(28px, 6vw, 112px);
  --content-w: 1520px;
  --stable-vh: 1svh;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

@supports not (height: 1svh) {
  :root {
    --stable-vh: 1vh;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-offset);
  background: var(--ink-deep);
}

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

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 3000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(225px, 1fr) auto minmax(225px, 1fr);
  align-items: center;
  height: var(--header-h);
  padding: 0 clamp(24px, 3.4vw, 64px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(9, 31, 29, .76), rgba(9, 31, 29, .08));
  transition:
    height .35s var(--ease),
    background-color .35s var(--ease),
    backdrop-filter .35s var(--ease);
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(12, 36, 34, .93);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .13);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  outline-offset: 7px;
}

.brand-logo {
  width: auto;
  height: 68px;
  object-fit: contain;
  transition: height .35s var(--ease);
}

.site-header.is-scrolled .brand-logo {
  height: 56px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.25vw, 43px);
  height: 100%;
}

.main-nav a {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
  transition: color .25s ease;
}

.main-nav a::after {
  position: absolute;
  bottom: 16px;
  left: 50%;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow);
  content: "";
  transform: translateX(-50%);
  transition: width .3s var(--ease);
}

.site-header.is-scrolled .main-nav a::after {
  bottom: 10px;
}

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

.main-nav a.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header-tag {
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-decoration: none;
  transition: color .2s ease;
}

.header-tag:hover,
.header-tag:focus-visible {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--white);
  transition: transform .3s var(--ease);
}

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

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

.mobile-menu {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  display: none;
  height: calc(var(--stable-vh) * 100);
  padding: 120px 30px 38px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(112, 197, 185, .09) 25%, transparent 25%) 0 0 / 32px 32px,
    var(--ink-deep);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-18px);
  transition:
    opacity .35s ease,
    transform .5s var(--ease),
    visibility .5s;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__paper {
  position: absolute;
  right: -80px;
  bottom: -140px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(243, 198, 76, .22);
  border-radius: 50%;
}

.mobile-menu nav {
  position: relative;
  z-index: 1;
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  font-size: clamp(23px, 7vw, 34px);
  font-weight: 800;
}

.mobile-menu nav a span {
  width: 30px;
  color: var(--yellow);
  font-size: 11px;
  letter-spacing: .08em;
}

.mobile-menu > p {
  position: absolute;
  bottom: max(32px, env(safe-area-inset-bottom));
  left: 30px;
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
}

.section-rail {
  position: fixed;
  top: 50%;
  right: clamp(18px, 2.3vw, 43px);
  z-index: 500;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
  mix-blend-mode: difference;
  pointer-events: none;
}

.section-rail button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  padding: 0;
  color: rgba(255, 255, 255, .45);
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.section-rail button::after {
  width: 12px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: width .3s var(--ease);
}

.section-rail span {
  font-size: 10px;
  font-weight: 900;
}

.section-rail em {
  max-width: 0;
  overflow: hidden;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  line-height: 12px;
  letter-spacing: .1em;
  white-space: nowrap;
  opacity: 0;
  transition:
    max-width .4s var(--ease),
    opacity .25s ease;
}

.section-rail button:hover em,
.section-rail button.is-active em {
  max-width: 90px;
  opacity: 1;
}

.section-rail button.is-active {
  color: var(--white);
}

.section-rail button.is-active::after {
  width: 31px;
}

.back-to-top {
  position: fixed;
  right: calc(22px + env(safe-area-inset-right));
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 700;
  display: grid;
  width: 56px;
  height: 56px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(12, 36, 34, .22);
  border-radius: 50%;
  color: var(--ink-deep);
  background: var(--yellow);
  box-shadow: 0 16px 34px rgba(7, 25, 23, .24);
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    color .22s ease,
    background-color .22s ease,
    opacity .22s ease,
    transform .28s var(--ease),
    visibility .22s;
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--yellow);
  background: var(--ink-deep);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(243, 198, 76, .42);
  outline-offset: 3px;
}

.panel {
  position: relative;
  min-height: calc(var(--stable-vh) * 100);
  overflow: hidden;
  isolation: isolate;
}

.panel-index {
  position: absolute;
  top: 95px;
  right: clamp(75px, 8vw, 150px);
  z-index: -1;
  color: rgba(20, 47, 44, .055);
  font-size: clamp(160px, 21vw, 390px);
  font-weight: 950;
  line-height: .72;
  letter-spacing: -.1em;
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow span {
  color: var(--ink);
  letter-spacing: .08em;
}

.section-heading {
  position: relative;
  z-index: 3;
}

.section-heading h2,
.universe-intro h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 90px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.07em;
  word-break: keep-all;
}

.section-heading h2 em,
.universe-intro h2 em {
  color: var(--jade);
  font-style: normal;
}

.section-heading > p:last-child,
.universe-intro > p:last-child {
  max-width: 650px;
  margin: 27px 0 0;
  color: rgba(20, 47, 44, .68);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.9;
  word-break: keep-all;
}

.section-heading--light {
  color: var(--white);
}

.section-heading--light .eyebrow {
  color: var(--yellow);
}

.section-heading--light .eyebrow span {
  color: var(--white);
}

.section-heading--light h2 em {
  color: var(--yellow);
}

.section-heading--light > p:last-child {
  color: rgba(255, 255, 255, .68);
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity .8s ease,
    transform 1s var(--ease);
}

.reveal--late {
  transition-delay: .14s;
}

.reveal--later {
  transition-delay: .26s;
}

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

/* Hero */
.hero-panel {
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 50px) var(--side-pad) 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 32%, rgba(117, 207, 191, .29), transparent 27%),
    radial-gradient(circle at 18% 85%, rgba(230, 74, 46, .16), transparent 31%),
    linear-gradient(135deg, #0a2625 0%, #15483f 55%, #0d302e 100%);
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(115deg, transparent 0 62px, rgba(255, 255, 255, .018) 62px 63px),
    repeating-linear-gradient(25deg, transparent 0 62px, rgba(255, 255, 255, .015) 62px 63px);
  content: "";
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: var(--ink-deep);
  pointer-events: none;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-panel__paper {
  position: absolute;
  inset: -10%;
  z-index: -1;
  opacity: .2;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.hero-panel__pattern {
  position: absolute;
  top: 13%;
  right: 1.5%;
  width: min(58vw, 970px);
  aspect-ratio: 1;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
}

.hero-panel__pattern::before,
.hero-panel__pattern::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 50%;
  content: "";
}

.hero-panel__pattern::before {
  inset: 9%;
}

.hero-panel__pattern::after {
  inset: 19%;
}

.sun-orbit {
  position: absolute;
  z-index: -1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 11px rgba(243, 198, 76, .12);
}

.sun-orbit--one {
  top: 18%;
  right: 36%;
}

.sun-orbit--two {
  right: 11%;
  bottom: 21%;
  width: 8px;
  height: 8px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(47vw, 750px);
  margin-top: calc(var(--stable-vh) * -1);
}

.hero-copy .eyebrow {
  color: var(--yellow);
}

.hero-copy .eyebrow span {
  color: var(--white);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(70px, 7.5vw, 142px);
  font-weight: 950;
  line-height: .89;
  letter-spacing: -.085em;
  text-shadow: 0 12px 38px rgba(0, 0, 0, .14);
  word-break: keep-all;
}

.hero-copy h1 span {
  display: inline-block;
  color: var(--yellow);
}

.hero-copy__lead {
  max-width: 620px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.85;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 35px;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform .3s var(--ease),
    color .3s ease,
    background-color .3s ease;
}

.pill-button:hover,
.pill-button:focus-visible {
  transform: translateY(-3px);
}

.pill-button--primary {
  gap: 14px;
  color: var(--ink-deep);
  border-color: var(--yellow);
  background: var(--yellow);
}

.pill-button--ghost:hover {
  color: var(--ink-deep);
  background: var(--white);
}

.hero-character {
  position: absolute;
  right: clamp(5.5vw, 9vw, 180px);
  bottom: clamp(50px, 4.5vw, 90px);
  z-index: 3;
  width: min(50vw, 900px);
  pointer-events: none;
}

.hero-character img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 32px 35px rgba(0, 0, 0, .25));
}

.hero-character__halo {
  position: absolute;
  top: 1%;
  right: 2%;
  width: 75%;
  aspect-ratio: 1;
  border: 1px solid rgba(243, 198, 76, .45);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(243, 198, 76, .14) 0deg 1deg, transparent 1deg 15deg);
  animation: slow-spin 42s linear infinite;
}

.hero-character__halo::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  content: "";
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

.character-stamp {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  background: rgba(230, 74, 46, .86);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  backdrop-filter: blur(7px);
}

.character-stamp small {
  margin-top: 3px;
  font-size: 8px;
  letter-spacing: .1em;
}

.character-stamp--mir {
  top: 29%;
  left: 7%;
}

.character-stamp--bori {
  top: 10%;
  right: 6%;
  background: rgba(31, 158, 145, .9);
}

.story-tree {
  position: absolute;
  right: 2%;
  bottom: -10%;
  z-index: 1;
  width: min(56vw, 980px);
  height: min(76vw, 980px);
  opacity: .17;
  pointer-events: none;
}

.story-tree__trunk {
  position: absolute;
  bottom: 0;
  left: 52%;
  width: 10%;
  height: 55%;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 48% 48% 0 0;
  transform: skew(-4deg);
}

.story-tree__crown {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
}

.story-tree__crown--1 {
  top: 5%;
  left: 20%;
  width: 55%;
  height: 46%;
}

.story-tree__crown--2 {
  top: 15%;
  right: 1%;
  width: 46%;
  height: 40%;
}

.story-tree__crown--3 {
  top: 30%;
  left: 5%;
  width: 50%;
  height: 38%;
}

.story-tree__branch {
  position: absolute;
  top: 43%;
  left: 55%;
  width: 32%;
  height: 1px;
  background: rgba(255, 255, 255, .5);
  transform-origin: left center;
}

.story-tree__branch--1 {
  transform: rotate(-28deg);
}

.story-tree__branch--2 {
  left: 30%;
  transform: rotate(205deg);
}

.story-seed {
  position: absolute;
  width: 10px;
  height: 15px;
  border: 1px solid var(--yellow);
  border-radius: 60% 40% 60% 40%;
  background: rgba(243, 198, 76, .3);
}

.story-seed--1 { top: 17%; left: 39%; }
.story-seed--2 { top: 29%; right: 18%; }
.story-seed--3 { top: 39%; left: 14%; }
.story-seed--4 { top: 51%; right: 31%; }

.hero-manifesto {
  position: absolute;
  right: clamp(25px, 4.5vw, 88px);
  bottom: 27px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, .61);
  font-size: 10px;
}

.hero-manifesto span {
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: .12em;
}

.hero-manifesto strong {
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  bottom: 25px;
  left: var(--side-pad);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, .45);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.scroll-cue i {
  position: relative;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .25);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--yellow);
  content: "";
  transform: translateX(-100%);
  animation: scroll-line 2.2s ease infinite;
}

@keyframes scroll-line {
  50%, 100% { transform: translateX(100%); }
}

/* Character hero slider */
.hero-panel {
  --hero-bg-a: #071f34;
  --hero-bg-b: #0b5b61;
  --hero-glow: rgba(69, 224, 216, .34);
  --hero-accent: #f3c64c;
  --hero-accent-soft: rgba(243, 198, 76, .22);
  overflow: clip;
  background:
    radial-gradient(circle at 79% 27%, var(--hero-glow), transparent 30%),
    radial-gradient(circle at 14% 86%, var(--hero-accent-soft), transparent 28%),
    linear-gradient(135deg, var(--hero-bg-a) 0%, var(--hero-bg-b) 100%);
}

.hero-panel__wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .75;
  background:
    linear-gradient(102deg, rgba(3, 16, 22, .74) 0%, rgba(3, 16, 22, .26) 47%, transparent 73%),
    radial-gradient(circle at 73% 52%, var(--hero-glow), transparent 37%);
  transform: scale(1.03);
  transition:
    opacity .65s ease,
    transform 1.15s var(--ease);
}

.hero-panel.is-theme-arriving .hero-panel__wash {
  animation: hero-wash-in 1.1s var(--ease) both;
}

@keyframes hero-wash-in {
  0% {
    opacity: .24;
    transform: scale(1.12);
  }
  100% {
    opacity: .75;
    transform: scale(1.03);
  }
}

.hero-panel__pattern {
  border-color: color-mix(in srgb, var(--hero-accent) 24%, transparent);
  transition: border-color .55s ease;
}

.hero-panel__pattern::before,
.hero-panel__pattern::after {
  border-color: color-mix(in srgb, var(--hero-accent) 16%, transparent);
}

.sun-orbit {
  background: var(--hero-accent);
  box-shadow: 0 0 0 11px var(--hero-accent-soft);
  transition:
    background-color .5s ease,
    box-shadow .5s ease;
}

.hero-copy {
  width: min(51vw, 820px);
  transition:
    opacity .28s ease,
    transform .38s var(--ease);
}

.hero-copy.is-switching {
  opacity: 0;
  transform: translate3d(-24px, 0, 0);
}

.hero-copy .eyebrow {
  max-width: 100%;
  color: var(--hero-accent);
}

.hero-copy .eyebrow span:first-child {
  flex: 0 0 auto;
  color: var(--white);
}

.hero-copy .eyebrow span:last-child {
  overflow: hidden;
  color: var(--hero-accent);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-copy h1 {
  font-size: clamp(47px, 4.2vw, 80px);
  line-height: .95;
  letter-spacing: -.075em;
}

.hero-copy h1 .hero-title__lead {
  color: var(--white);
}

.hero-copy h1 span:last-child {
  color: var(--hero-accent);
  transition: color .5s ease;
}

.hero-character-name {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin: 20px 0 0;
}

.hero-name-row {
  display: block;
}

.hero-character-name strong {
  color: var(--white);
  font-size: clamp(55px, 4.25vw, 78px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .92;
}

.hero-character-name span {
  color: var(--hero-accent);
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
}

.hero-copy__lead {
  min-height: 67px;
  margin-top: 14px;
}

.pill-button--primary {
  border-color: var(--hero-accent);
  background: var(--hero-accent);
  transition:
    transform .3s var(--ease),
    color .3s ease,
    background-color .45s ease,
    border-color .45s ease;
}

.hero-slider-controls {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 640px);
  min-height: 46px;
  gap: 12px;
  margin-top: 25px;
  padding-bottom: 8px;
}

.hero-arrow {
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .29);
  border-radius: 50%;
  background: rgba(3, 18, 22, .16);
  cursor: pointer;
  transition:
    color .28s ease,
    border-color .28s ease,
    background-color .28s ease,
    transform .28s var(--ease);
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  color: var(--ink-deep);
  border-color: var(--hero-accent);
  background: var(--hero-accent);
  transform: scale(1.08);
}

.hero-slide-count {
  display: flex;
  flex: 0 0 48px;
  align-items: baseline;
  gap: 4px;
  margin: 0;
  color: rgba(255, 255, 255, .46);
  font-size: 9px;
  font-weight: 800;
}

.hero-slide-count strong {
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.hero-dots {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: clamp(4px, .48vw, 8px);
}

.hero-dots button {
  position: relative;
  display: grid;
  flex: 0 1 19px;
  place-items: center;
  min-width: 7px;
  height: 24px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.hero-dots button span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .38);
  transition:
    width .3s var(--ease),
    border-radius .3s var(--ease),
    background-color .3s ease,
    box-shadow .3s ease;
}

.hero-dots button:hover span,
.hero-dots button:focus-visible span {
  background: rgba(255, 255, 255, .82);
}

.hero-dots button[aria-selected="true"] span {
  width: 19px;
  border-radius: 99px;
  background: var(--hero-accent);
  box-shadow: 0 0 16px var(--hero-accent-soft);
}

.hero-auto-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .12);
}

.hero-auto-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--hero-accent);
}

.hero-character {
  right: clamp(20px, 5.2vw, 100px);
  bottom: clamp(50px, 4.2vw, 82px);
  width: min(47vw, 860px);
  height: min(calc(var(--stable-vh) * 77), 840px);
  opacity: 1;
  transform: none;
}

.hero-character__figure {
  --hero-parallax-x: 0px;
  --hero-parallax-y: 0px;
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: end center;
  transform: translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0);
  transition: transform .65s var(--ease);
  will-change: transform;
}

.hero-character__float {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  transform-origin: 50% 100%;
  animation: hero-walk-in-place var(--hero-motion-duration, 2.46s) cubic-bezier(.45, 0, .55, 1) infinite;
  will-change: transform;
}

.hero-character__float::after {
  position: absolute;
  right: 20%;
  bottom: 1.5%;
  left: 20%;
  z-index: 0;
  height: 3.5%;
  border-radius: 50%;
  background: rgba(0, 0, 0, .26);
  content: "";
  filter: blur(10px);
  pointer-events: none;
  transform-origin: center;
  animation: hero-walk-shadow var(--hero-motion-duration, 2.46s) ease-in-out infinite;
}

.hero-character img {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: none;
  margin: auto;
  object-fit: contain;
  object-position: center bottom;
  opacity: 1;
  filter:
    drop-shadow(0 32px 35px rgba(0, 0, 0, .26))
    drop-shadow(0 0 35px var(--hero-glow));
  transform:
    translate3d(var(--hero-image-x, 0), var(--hero-image-y, 0), 0)
    scale(var(--hero-image-scale, 1));
  transform-origin: 50% 88%;
  transition:
    opacity .26s ease,
    filter .5s ease,
    transform .3s var(--ease);
  will-change: opacity, transform;
}

.hero-character.is-leaving img {
  opacity: 0;
  transform:
    translate3d(calc(var(--hero-image-x, 0%) - 42px), calc(var(--hero-image-y, 0%) + 18px), 0)
    scale(.88)
    rotate(-3deg);
}

.hero-character.is-entering img {
  animation: hero-character-arrive .98s var(--ease) both;
}

.hero-character__halo {
  top: 8%;
  right: 4%;
  width: 77%;
  border-color: color-mix(in srgb, var(--hero-accent) 52%, transparent);
  background:
    repeating-conic-gradient(from 0deg, var(--hero-accent-soft) 0deg 1deg, transparent 1deg 15deg);
  transition:
    border-color .5s ease,
    background .5s ease;
}

.hero-character__glyph {
  position: absolute;
  top: 2%;
  right: 4%;
  z-index: 0;
  color: color-mix(in srgb, var(--hero-accent) 13%, transparent);
  font-family: "Noto Serif KR", "AppleMyungjo", serif;
  font-size: clamp(240px, 27vw, 520px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  transform: rotate(6deg);
  transition: color .5s ease;
}

.hero-character__trail {
  position: absolute;
  z-index: 1;
  display: block;
  width: 31%;
  height: 2px;
  opacity: .32;
  background: linear-gradient(90deg, transparent, var(--hero-accent));
  transform-origin: right center;
  animation: hero-trail 2.9s ease-in-out infinite;
}

.hero-character__trail--one {
  top: 35%;
  left: 5%;
  transform: rotate(-9deg);
}

.hero-character__trail--two {
  top: 46%;
  left: -3%;
  width: 38%;
  animation-delay: -.8s;
}

.hero-character__trail--three {
  top: 57%;
  left: 8%;
  width: 24%;
  transform: rotate(7deg);
  animation-delay: -1.7s;
}

.hero-manifesto span {
  color: var(--hero-accent);
  transition: color .5s ease;
}

.scroll-cue i::after {
  background: var(--hero-accent);
  transition: background-color .5s ease;
}

.hero-character[data-motion="rush"] {
  --hero-enter-x: 150px;
  --hero-enter-y: 35px;
  --hero-enter-rotate: 7deg;
  --hero-enter-scale: .8;
  --hero-float-x: 8px;
  --hero-float-y: -13px;
  --hero-float-rotate: -1deg;
}

.hero-character[data-motion="float"] {
  --hero-enter-x: 0px;
  --hero-enter-y: 120px;
  --hero-enter-rotate: -2deg;
  --hero-enter-scale: .82;
  --hero-float-x: -6px;
  --hero-float-y: -17px;
  --hero-float-rotate: 1.1deg;
}

.hero-character[data-motion="bounce"] {
  --hero-enter-x: -35px;
  --hero-enter-y: 160px;
  --hero-enter-rotate: -8deg;
  --hero-enter-scale: .68;
  --hero-float-x: 5px;
  --hero-float-y: -21px;
  --hero-float-rotate: -1.5deg;
}

.hero-character[data-motion="glide"] {
  --hero-enter-x: 170px;
  --hero-enter-y: -12px;
  --hero-enter-rotate: 9deg;
  --hero-enter-scale: .84;
  --hero-float-x: -9px;
  --hero-float-y: -10px;
  --hero-float-rotate: .7deg;
}

.hero-character[data-motion="rise"] {
  --hero-enter-x: 0px;
  --hero-enter-y: 170px;
  --hero-enter-rotate: 0deg;
  --hero-enter-scale: .74;
  --hero-float-x: 4px;
  --hero-float-y: -13px;
  --hero-float-rotate: -1deg;
}

.hero-character[data-motion="charge"] {
  --hero-enter-x: -165px;
  --hero-enter-y: 45px;
  --hero-enter-rotate: -7deg;
  --hero-enter-scale: .8;
  --hero-float-x: 10px;
  --hero-float-y: -9px;
  --hero-float-rotate: 1.4deg;
}

.hero-character[data-motion="dash"] {
  --hero-enter-x: 190px;
  --hero-enter-y: 24px;
  --hero-enter-rotate: 10deg;
  --hero-enter-scale: .83;
  --hero-float-x: -11px;
  --hero-float-y: -10px;
  --hero-float-rotate: -1.1deg;
}

.hero-character[data-motion="orbit"] {
  --hero-enter-x: 95px;
  --hero-enter-y: -110px;
  --hero-enter-rotate: 14deg;
  --hero-enter-scale: .66;
  --hero-float-x: 7px;
  --hero-float-y: -18px;
  --hero-float-rotate: 1.7deg;
}

.hero-character[data-motion="swing"] {
  --hero-enter-x: -120px;
  --hero-enter-y: -75px;
  --hero-enter-rotate: -13deg;
  --hero-enter-scale: .78;
  --hero-float-x: 12px;
  --hero-float-y: -15px;
  --hero-float-rotate: -1.8deg;
}

.hero-character[data-motion="drift"] {
  --hero-enter-x: 60px;
  --hero-enter-y: 95px;
  --hero-enter-rotate: 4deg;
  --hero-enter-scale: .78;
  --hero-float-x: -8px;
  --hero-float-y: -20px;
  --hero-float-rotate: 1deg;
}

.hero-character[data-motion="pop"] {
  --hero-enter-x: 0px;
  --hero-enter-y: 25px;
  --hero-enter-rotate: -3deg;
  --hero-enter-scale: .5;
  --hero-float-x: 6px;
  --hero-float-y: -14px;
  --hero-float-rotate: -1deg;
}

.hero-character[data-motion="leap"] {
  --hero-enter-x: -105px;
  --hero-enter-y: 145px;
  --hero-enter-rotate: -10deg;
  --hero-enter-scale: .72;
  --hero-float-x: 10px;
  --hero-float-y: -18px;
  --hero-float-rotate: 1.5deg;
}

@keyframes hero-character-arrive {
  0% {
    opacity: 0;
    filter:
      drop-shadow(0 12px 18px rgba(0, 0, 0, .08))
      drop-shadow(0 0 0 transparent);
    transform:
      translate3d(
        calc(var(--hero-image-x, 0%) + var(--hero-enter-x, 0px)),
        calc(var(--hero-image-y, 0%) + var(--hero-enter-y, 100px)),
        0
      )
      scale(var(--hero-enter-scale, .78))
      rotate(var(--hero-enter-rotate, 0deg));
  }
  68% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    filter:
      drop-shadow(0 32px 35px rgba(0, 0, 0, .26))
      drop-shadow(0 0 35px var(--hero-glow));
    transform:
      translate3d(var(--hero-image-x, 0%), var(--hero-image-y, 0%), 0)
      scale(var(--hero-image-scale, 1))
      rotate(0deg);
  }
}

@keyframes hero-walk-in-place {
  0%, 100% {
    transform: translate3d(-2px, 0, 0) rotate(-.35deg) scaleY(1);
  }
  25% {
    transform: translate3d(0, -8px, 0) rotate(0deg) scaleY(.995);
  }
  50% {
    transform: translate3d(2px, 0, 0) rotate(.35deg) scaleY(1);
  }
  75% {
    transform: translate3d(0, -8px, 0) rotate(0deg) scaleY(.995);
  }
}

@keyframes hero-walk-shadow {
  0%, 50%, 100% {
    opacity: .24;
    transform: scaleX(1);
  }
  25%, 75% {
    opacity: .14;
    transform: scaleX(.9);
  }
}

@keyframes hero-trail {
  0%, 100% {
    opacity: .08;
    scale: .65 1;
  }
  50% {
    opacity: .45;
    scale: 1 1;
  }
}

/* Characters */
.character-panel {
  min-height: 860px;
  padding: 112px var(--side-pad) 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(20, 47, 44, .055) 50%, transparent 50.1%),
    var(--paper);
}

.character-panel::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .28;
  background:
    radial-gradient(circle at 2% 12%, rgba(230, 74, 46, .25), transparent 18%),
    radial-gradient(circle at 88% 76%, rgba(31, 158, 145, .22), transparent 25%);
  content: "";
}

.character-panel__ink {
  position: absolute;
  right: -8%;
  bottom: -23%;
  z-index: -1;
  width: 55vw;
  height: 55vw;
  border: clamp(30px, 5vw, 86px) solid rgba(20, 47, 44, .035);
  border-radius: 45% 55% 48% 52%;
  transform: rotate(-16deg);
}

.character-panel .section-heading {
  max-width: 620px;
}

.character-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, .75fr) minmax(480px, 1.25fr);
  align-items: center;
  width: 100%;
  min-height: 535px;
  margin: -54px 0 0;
}

.character-info {
  position: relative;
  top: -30px;
  z-index: 4;
  align-self: center;
  max-width: 500px;
  padding: 0 0 56px;
}

.character-number {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.character-zodiac {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  margin: 0 0 13px;
  padding: 0 13px;
  color: var(--white);
  border-radius: 999px;
  background: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.character-info h3 {
  margin: 0;
  font-size: clamp(60px, 6.6vw, 112px);
  font-weight: 950;
  line-height: .95;
  letter-spacing: -.08em;
}

.character-info h3 small {
  display: inline-block;
  margin-left: 10px;
  color: rgba(20, 47, 44, .28);
  font-size: .21em;
  font-weight: 900;
  letter-spacing: .13em;
  vertical-align: middle;
}

.character-role {
  margin: 0;
  color: var(--jade);
  font-size: 20px;
  font-weight: 900;
}

.character-description {
  min-height: 86px;
  margin: 15px 0 0;
  color: rgba(20, 47, 44, .68);
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.trait-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.trait-list li {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.character-visual {
  position: relative;
  top: -135px;
  align-self: stretch;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  place-items: center;
  min-height: 590px;
}

.character-visual__disc {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(39vw, 610px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from -10deg, transparent 0deg 11deg, rgba(20, 47, 44, .035) 11deg 12deg),
    var(--paper-deep);
  transform: translate(-50%, -50%);
}

.character-visual__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(43vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(20, 47, 44, .13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.character-visual__ring::before,
.character-visual__ring::after {
  position: absolute;
  border: 1px solid rgba(20, 47, 44, .09);
  border-radius: 50%;
  content: "";
}

.character-visual__ring::before { inset: 8%; }
.character-visual__ring::after { inset: 17%; }

.character-visual__figure {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  animation: character-story-float 8s ease-in-out infinite;
}

.character-visual img {
  position: relative;
  width: min(46vw, 725px);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 28px 21px rgba(20, 47, 44, .18));
}

.character-controls {
  position: absolute;
  right: 0;
  bottom: 32px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
}

.round-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 250, 240, .6);
  cursor: pointer;
  transition:
    color .25s ease,
    border-color .25s ease,
    background-color .25s ease,
    transform .25s var(--ease);
}

.round-arrow:hover,
.round-arrow:focus-visible {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
  transform: scale(1.06);
}

.character-progress {
  width: 100px;
  height: 2px;
  overflow: hidden;
  background: rgba(20, 47, 44, .12);
}

.character-progress span {
  display: block;
  width: 8.333%;
  height: 100%;
  background: var(--red);
  transform-origin: left center;
  transition: width .5s var(--ease);
}

.zodiac-tabs {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(12, minmax(65px, 1fr));
  width: min(100%, var(--content-w));
  margin: 8px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.zodiac-tabs button {
  position: relative;
  display: grid;
  place-items: center;
  gap: 6px;
  min-width: 0;
  min-height: 82px;
  padding: 11px 4px;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition:
    color .25s ease,
    background-color .25s ease;
}

.zodiac-tabs button:first-child {
  border-left: 1px solid var(--line);
}

.zodiac-tabs b {
  font-family: Georgia, serif;
  font-size: 20px;
}

.zodiac-tabs span {
  color: rgba(20, 47, 44, .55);
  font-size: 11px;
  font-weight: 700;
}

.zodiac-tabs button:hover,
.zodiac-tabs button:focus-visible,
.zodiac-tabs button[aria-selected="true"] {
  color: var(--white);
  background: var(--ink);
}

.zodiac-tabs button[aria-selected="true"]::before {
  position: absolute;
  top: -1px;
  right: 25%;
  left: 25%;
  height: 3px;
  background: var(--yellow);
  content: "";
}

.zodiac-tabs button[aria-selected="true"] span,
.zodiac-tabs button:hover span {
  color: rgba(255, 255, 255, .68);
}

.animation-gallery {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.3vw, 20px);
  width: min(100%, var(--content-w));
  margin: -4px auto 0;
}

.world-layout > .animation-gallery--world {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: calc(clamp(-90px, -5vw, -45px) + 20px);
}

.animation-shot {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 47, 44, .14);
  border-radius: clamp(10px, 1.2vw, 18px);
  background: var(--paper-deep);
  box-shadow: 0 18px 40px rgba(20, 47, 44, .1);
}

.animation-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}

.animation-shot:hover img {
  transform: scale(1.025);
}

@keyframes character-story-float {
  0%,
  100% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(8px);
  }
}

/* World */
.world-panel {
  min-height: 980px;
  padding: 135px var(--side-pad) 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(243, 198, 76, .14), transparent 24%),
    linear-gradient(140deg, #102f2c, #0b2423 62%, #153e37);
}

.world-panel .panel-index,
.video-panel .panel-index {
  color: rgba(255, 255, 255, .035);
}

.world-panel__moon {
  position: absolute;
  top: 11%;
  right: 12%;
  z-index: -2;
  width: min(29vw, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 80px rgba(243, 198, 76, .13);
}

.world-panel__moon::after {
  position: absolute;
  top: -4%;
  right: -5%;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #102f2c;
  content: "";
}

.world-panel__mountains {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 48%;
  opacity: .37;
}

.world-panel__mountains i {
  position: absolute;
  bottom: -33%;
  width: 47%;
  aspect-ratio: 1.75;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 52% 48% 0 0;
  transform: rotate(45deg);
}

.world-panel__mountains i:nth-child(1) { left: -9%; }
.world-panel__mountains i:nth-child(2) { left: 25%; bottom: -45%; }
.world-panel__mountains i:nth-child(3) { right: 10%; bottom: -36%; }
.world-panel__mountains i:nth-child(4) { right: -28%; bottom: -44%; }

.world-layout {
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(60px, 7vw, 135px);
  width: min(100%, var(--content-w));
  margin: 0 auto;
}

.world-gates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
}

.world-card {
  position: relative;
  min-height: 400px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(10px);
  transition:
    transform .4s var(--ease),
    background-color .3s ease;
}

.world-card:nth-child(2) {
  transform: translateY(-42px);
}

.world-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-12px);
}

.world-card:nth-child(2):hover {
  transform: translateY(-54px);
}

.world-card > span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.world-card__symbol {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 205px;
  margin: 10px 0 4px;
  color: rgba(255, 255, 255, .8);
  font-family: Georgia, serif;
  font-size: 96px;
  text-shadow: 8px 9px 0 rgba(243, 198, 76, .1);
}

.world-card h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.world-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.65;
  word-break: keep-all;
}

/* Villain */
.mangtae-panel {
  min-height: 980px;
  padding: 125px var(--side-pad) 82px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 42%, rgba(230, 74, 46, .2), transparent 31%),
    radial-gradient(circle at 82% 12%, rgba(243, 198, 76, .12), transparent 26%),
    linear-gradient(135deg, #151116 0%, #152722 48%, #071816 100%);
}

.mangtae-panel .panel-index {
  color: rgba(255, 255, 255, .035);
}

.mangtae-panel__weave {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .23;
  background:
    repeating-linear-gradient(28deg, transparent 0 17px, rgba(255, 255, 255, .035) 17px 18px),
    repeating-linear-gradient(-28deg, transparent 0 17px, rgba(255, 255, 255, .025) 17px 18px);
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .2) 62%, transparent);
}

.mangtae-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(430px, .95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: clamp(58px, 7vw, 130px);
  width: min(100%, var(--content-w));
  margin: 0 auto;
}

.mangtae-copy {
  grid-column: 2;
  grid-row: 1;
}

.mangtae-copy .eyebrow {
  color: var(--yellow);
}

.mangtae-copy .eyebrow span {
  color: rgba(255, 255, 255, .72);
}

.mangtae-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(53px, 5.2vw, 96px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: -.075em;
  word-break: keep-all;
}

.mangtae-copy h2 em {
  color: var(--yellow);
  font-style: normal;
}

.mangtae-record {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 28px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.mangtae-record__index {
  display: grid;
  gap: 2px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .38);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: .15em;
}

.mangtae-record__index strong {
  color: var(--red);
  font-size: 10px;
}

.mangtae-record h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(27px, 2.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -.045em;
}

.mangtae-record > div > p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  line-height: 1.9;
  word-break: keep-all;
}

.mangtae-record blockquote {
  position: relative;
  max-width: 690px;
  margin: 27px 0 0;
  padding: 4px 0 4px 24px;
  color: var(--yellow);
  border-left: 2px solid var(--red);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.65;
  word-break: keep-all;
}

.mangtae-turn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.mangtae-turn article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  min-height: 90px;
  padding: 17px 15px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.mangtae-turn article:last-child {
  border-right: 0;
}

.mangtae-turn article > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 950;
}

.mangtae-turn article div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.mangtae-turn strong {
  font-size: 15px;
}

.mangtae-turn small {
  color: rgba(255, 255, 255, .42);
  font-size: 10px;
  line-height: 1.5;
  word-break: keep-all;
}

.mangtae-visual {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  display: grid;
  place-items: center;
  min-height: 660px;
}

.mangtae-visual--mobile {
  display: none;
}

.mangtae-visual::before,
.mangtae-visual::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(39vw, 610px);
  aspect-ratio: 1;
  border: 1px solid rgba(243, 198, 76, .16);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.mangtae-visual::after {
  width: min(31vw, 490px);
  border-color: rgba(255, 255, 255, .08);
}

.mangtae-sigil {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, .035);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(210px, 26vw, 430px);
  font-weight: 900;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.mangtae-sack {
  position: relative;
  z-index: 3;
  width: min(29vw, 405px);
  aspect-ratio: .78;
  border: 1px solid rgba(243, 198, 76, .48);
  border-radius: 41% 43% 48% 50% / 28% 28% 68% 70%;
  background:
    repeating-linear-gradient(32deg, transparent 0 13px, rgba(255, 255, 255, .055) 13px 14px),
    repeating-linear-gradient(-32deg, transparent 0 13px, rgba(255, 255, 255, .04) 13px 14px),
    linear-gradient(145deg, #392b24, #1c1a18 62%, #0c1311);
  box-shadow:
    inset 0 0 55px rgba(243, 198, 76, .08),
    0 38px 80px rgba(0, 0, 0, .42);
  animation: mangtae-sack-breathe 6.8s ease-in-out infinite;
}

.mangtae-sack__mouth {
  position: absolute;
  top: -5%;
  left: 50%;
  width: 48%;
  height: 15%;
  border: 1px solid rgba(243, 198, 76, .55);
  border-radius: 50%;
  background:
    repeating-linear-gradient(90deg, #30251f 0 8px, #715433 8px 10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
  transform: translateX(-50%) rotate(-3deg);
}

.mangtae-sack__seal {
  position: absolute;
  top: 38%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 82px;
  aspect-ratio: 1;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 8px;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 44px;
  font-weight: 900;
  transform: translate(-50%, -50%) rotate(-7deg);
  opacity: .84;
}

.mangtae-seed {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 70px;
  aspect-ratio: 1;
  border: 1px solid rgba(243, 198, 76, .42);
  border-radius: 50%;
  color: var(--yellow);
  background: rgba(13, 28, 24, .75);
  box-shadow: 0 0 34px rgba(243, 198, 76, .13);
  backdrop-filter: blur(7px);
  animation: mangtae-seed-drift 5.6s ease-in-out infinite;
}

.mangtae-seed b {
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 25px;
}

.mangtae-seed--one {
  top: 13%;
  left: 3%;
}

.mangtae-seed--two {
  top: 23%;
  right: 1%;
  width: 55px;
  animation-delay: -1.8s;
}

.mangtae-seed--three {
  right: 7%;
  bottom: 14%;
  width: 62px;
  animation-delay: -3.6s;
}

.mangtae-visual > p {
  position: absolute;
  bottom: 5%;
  left: 50%;
  z-index: 5;
  margin: 0;
  color: rgba(255, 255, 255, .38);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .24em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.mangtae-footnote {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: min(100%, var(--content-w));
  margin: 48px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.mangtae-footnote span {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .17em;
}

.mangtae-footnote p {
  margin: 0;
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
  line-height: 1.7;
  text-align: right;
  word-break: keep-all;
}

@keyframes mangtae-sack-breathe {
  0%, 100% { transform: translateY(8px) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes mangtae-seed-drift {
  0%, 100% { transform: translateY(8px) rotate(-5deg); }
  50% { transform: translateY(-13px) rotate(5deg); }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .mangtae-layout {
    grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
    gap: 42px;
  }

  .mangtae-copy h2 {
    font-size: clamp(48px, 5.4vw, 64px);
  }

  .mangtae-record {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
  }

  .mangtae-turn article {
    grid-template-columns: 22px 1fr;
    padding-right: 9px;
    padding-left: 9px;
  }
}

/* Video */
.video-panel {
  min-height: 960px;
  padding: 125px var(--side-pad) 95px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 8%, rgba(112, 197, 185, .15), transparent 32%),
    radial-gradient(circle at 88% 75%, rgba(230, 74, 46, .16), transparent 27%),
    #091f1e;
}

.video-panel::before,
.video-panel::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
}

.video-panel::before {
  top: -28vw;
  right: -8vw;
  width: 68vw;
  aspect-ratio: 1;
}

.video-panel::after {
  right: 18vw;
  bottom: -31vw;
  width: 55vw;
  aspect-ratio: 1;
}

.video-panel__grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .14;
  background:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px) 0 0 / 62px 62px,
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px) 0 0 / 62px 62px;
  mask-image: linear-gradient(to bottom right, #000, transparent 82%);
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: clamp(55px, 7vw, 125px);
  width: min(100%, var(--content-w));
  min-height: 730px;
  margin: 0 auto;
}

.video-layout .section-heading {
  max-width: 560px;
}

.video-layout .section-heading h2 {
  font-size: clamp(50px, 5.1vw, 84px);
}

.video-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 35px;
}

.video-status span {
  padding: 10px 13px;
  color: rgba(255, 255, 255, .6);
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.video-teaser {
  position: relative;
  padding: clamp(12px, 1.4vw, 21px);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 45px 100px rgba(0, 0, 0, .3);
}

.video-teaser::before {
  position: absolute;
  top: -15px;
  right: 27px;
  width: 82px;
  height: 30px;
  border: solid rgba(243, 198, 76, .34);
  border-width: 1px 1px 0;
  content: "";
}

.video-teaser__screen {
  position: relative;
  display: grid;
  place-content: center;
  min-height: 500px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(7, 27, 25, .46), rgba(7, 27, 25, .9)),
    url("./assets/animation/mir-tales-forest.jpg") center / cover;
}

.video-teaser__screen::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, .4);
  content: "";
}

.video-teaser--youtube .video-teaser__screen {
  background: #000;
}

.video-teaser--youtube .video-teaser__screen::before {
  z-index: 1;
  box-shadow: none;
  pointer-events: none;
}

.video-teaser--youtube iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-teaser--poster .video-teaser__screen {
  isolation: isolate;
  background: #061c1a;
}

.video-teaser--poster .video-teaser__screen::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 22, 20, .22), rgba(4, 22, 20, .76)),
    linear-gradient(90deg, rgba(4, 22, 20, .22), transparent 42%);
  pointer-events: none;
}

.video-teaser__poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-teaser__coming {
  position: relative;
  z-index: 2;
  padding: 28px;
  text-align: center;
}

.video-teaser__symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, .055);
  font-family: Georgia, serif;
  font-size: clamp(280px, 27vw, 460px);
  line-height: 1;
  transform: translate(-50%, -53%);
}

.video-teaser__play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 30px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  background: rgba(8, 33, 31, .38);
  box-shadow: 0 0 0 13px rgba(255, 255, 255, .06);
}

.video-teaser__play i {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--yellow);
}

.video-teaser__screen p,
.video-teaser__screen strong,
.video-teaser__screen small {
  position: relative;
  z-index: 1;
  display: block;
}

.video-teaser__screen p {
  margin: 0;
  color: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .23em;
}

.video-teaser__screen strong {
  margin-top: 9px;
  font-size: clamp(38px, 4.7vw, 77px);
  font-weight: 950;
  line-height: .94;
  letter-spacing: -.055em;
}

.video-teaser__screen small {
  margin-top: 16px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  letter-spacing: .03em;
}

.video-teaser__timeline {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 13px;
  min-height: 43px;
  color: rgba(255, 255, 255, .43);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.video-teaser__timeline i {
  height: 2px;
  background: linear-gradient(90deg, var(--yellow) 0 12%, rgba(255, 255, 255, .14) 12%);
}

@media (min-width: 901px) {
  .video-panel {
    display: flex;
    align-items: center;
    height: calc(var(--stable-vh) * 100 - var(--nav-offset));
    min-height: 620px;
    padding-top: clamp(24px, 4vh, 38px);
    padding-bottom: clamp(24px, 4vh, 38px);
  }

  .video-layout {
    height: 100%;
    min-height: 0;
  }
}

/* Product universe */
.products-panel {
  min-height: 1160px;
  padding: 125px var(--side-pad) 100px;
  background:
    radial-gradient(circle at 97% 6%, rgba(243, 198, 76, .22), transparent 27%),
    radial-gradient(circle at 0 100%, rgba(31, 158, 145, .14), transparent 31%),
    var(--paper-light);
}

.products-panel__pattern {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .25;
  background:
    linear-gradient(45deg, transparent 49.6%, rgba(20, 47, 44, .08) 49.6% 50.4%, transparent 50.4%) 0 0 / 86px 86px,
    linear-gradient(-45deg, transparent 49.6%, rgba(20, 47, 44, .05) 49.6% 50.4%, transparent 50.4%) 0 0 / 86px 86px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.products-panel .section-heading,
.product-showcase {
  width: min(100%, var(--content-w));
  margin-right: auto;
  margin-left: auto;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(360px, 1fr));
  gap: 13px;
  margin-top: 58px;
}

.product-mockup {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 254, 248, .8);
  transition:
    border-color .35s ease,
    box-shadow .45s var(--ease),
    transform .45s var(--ease);
}

.product-mockup:hover {
  z-index: 2;
  border-color: rgba(20, 47, 44, .44);
  box-shadow: 0 30px 70px rgba(20, 47, 44, .12);
  transform: translateY(-9px);
}

.product-mockup--figure {
  grid-row: 1 / 3;
}

.product-mockup__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 255px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, .86), transparent 53%),
    #e7deca;
}

.product-mockup__visual::before {
  display: none;
}

.product-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #e9e0d2;
}

.product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter .55s ease,
    transform .75s var(--ease);
}

.product-mockup:hover .product-photo img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.product-mockup--figure .product-photo img {
  object-position: center 47%;
}

.product-mockup__copy {
  position: relative;
  z-index: 3;
  min-height: 130px;
  padding: 20px 23px 22px;
  background: rgba(255, 254, 248, .94);
}

.product-mockup__copy > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.product-mockup__copy h3 {
  margin: 7px 0 0;
  font-size: clamp(23px, 1.8vw, 31px);
  font-weight: 950;
  letter-spacing: -.055em;
}

.product-mockup__copy p {
  margin: 8px 0 0;
  color: rgba(20, 47, 44, .58);
  font-size: 12px;
  line-height: 1.6;
  word-break: keep-all;
}

.figure-box {
  position: relative;
  width: min(78%, 390px);
  aspect-ratio: .69;
  padding: 30px 24px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  box-shadow: 24px 28px 0 rgba(230, 74, 46, .16);
  transform: rotate(-3deg);
  transition: transform .65s var(--ease);
}

.product-mockup:hover .figure-box {
  transform: rotate(0) scale(1.025);
}

.figure-box > b {
  position: absolute;
  top: 26px;
  left: 24px;
  z-index: 2;
  color: var(--yellow);
  font-size: clamp(23px, 2.1vw, 38px);
  font-weight: 950;
  line-height: .83;
  letter-spacing: -.08em;
}

.figure-box__window {
  position: absolute;
  top: 23px;
  right: 21px;
  bottom: 58px;
  left: 21px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .19);
  background:
    radial-gradient(circle at 65% 38%, rgba(152, 214, 223, .35), transparent 35%),
    #1d4640;
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%, 0 24%);
}

.figure-box__window img {
  position: absolute;
  right: -14%;
  bottom: -7%;
  width: 105%;
  height: 93%;
  object-fit: contain;
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, .28));
}

.figure-box > small {
  position: absolute;
  right: 22px;
  bottom: 22px;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .16em;
}

.product-mockup--apparel .product-mockup__visual {
  background: #d6ebea;
}

.apparel-shirt {
  position: relative;
  display: grid;
  place-items: center;
  width: 42%;
  min-width: 130px;
  aspect-ratio: .82;
  color: var(--white);
  background: var(--jade);
  box-shadow: 18px 23px 0 rgba(20, 47, 44, .09);
  clip-path: polygon(24% 0, 39% 6%, 61% 6%, 76% 0, 100% 24%, 84% 39%, 75% 31%, 75% 100%, 25% 100%, 25% 31%, 16% 39%, 0 24%);
  transform: rotate(3deg);
}

.apparel-shirt img {
  width: 56%;
  margin-top: -5%;
  filter: brightness(0) invert(1);
}

.apparel-shirt span {
  position: absolute;
  right: 20%;
  bottom: 22%;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  writing-mode: vertical-rl;
}

.product-mockup--book .product-mockup__visual {
  background: #f0d2bd;
}

.story-book {
  position: relative;
  width: min(54%, 190px);
  aspect-ratio: .72;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
  box-shadow:
    10px 11px 0 #fff8e8,
    18px 19px 0 rgba(20, 47, 44, .18);
  transform: perspective(700px) rotateY(-11deg) rotateZ(2deg);
}

.story-book::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 26, 24, .91), transparent 70%);
  content: "";
}

.story-book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-book b,
.story-book small {
  position: absolute;
  z-index: 2;
}

.story-book b {
  bottom: 23px;
  left: 15px;
  font-size: 23px;
  font-weight: 950;
  line-height: .84;
  letter-spacing: -.06em;
}

.story-book small {
  top: 13px;
  right: 11px;
  color: var(--yellow);
  font-size: 7px;
  font-weight: 900;
}

.product-mockup--stationery .product-mockup__visual {
  background: #f5e2a9;
}

.stationery-set {
  position: relative;
  width: 68%;
  aspect-ratio: 1.35;
}

.stationery-set__book {
  position: absolute;
  inset: 5% 24% 2% 0;
  display: flex;
  align-items: flex-end;
  padding: 17px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 12px 13px 0 rgba(230, 74, 46, .19);
  transform: rotate(-5deg);
}

.stationery-set__book b {
  font-size: 24px;
  line-height: .84;
}

.stationery-set__sticker {
  position: absolute;
  top: -4%;
  right: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: 50%;
  background: var(--jade-light);
  box-shadow: 0 12px 25px rgba(20, 47, 44, .16);
  transform: rotate(8deg);
}

.stationery-set__sticker img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.stationery-set > i {
  position: absolute;
  right: 8%;
  bottom: -4%;
  width: 9px;
  height: 90%;
  border-radius: 9px;
  background: var(--red);
  box-shadow: 4px 0 0 var(--yellow);
  transform: rotate(38deg);
}

.product-mockup--lifestyle .product-mockup__visual {
  background: #cce4dd;
}

.lifestyle-bag {
  position: relative;
  display: grid;
  place-items: center;
  width: min(52%, 200px);
  aspect-ratio: .86;
  margin-top: 11%;
  color: var(--ink);
  background: #f6ead2;
  box-shadow: 18px 19px 0 rgba(20, 47, 44, .11);
  transform: rotate(3deg);
}

.lifestyle-bag > span {
  position: absolute;
  bottom: 96%;
  left: 18%;
  width: 64%;
  height: 50%;
  border: 9px solid #f6ead2;
  border-bottom: 0;
  border-radius: 60px 60px 0 0;
}

.lifestyle-bag img {
  position: relative;
  z-index: 2;
  width: 72%;
  max-height: 68%;
  object-fit: contain;
}

.lifestyle-bag b {
  position: absolute;
  right: 9px;
  bottom: 9px;
  font-size: 8px;
  line-height: .9;
  text-align: right;
}

/* Universe */
.universe-panel {
  min-height: 1080px;
  padding: 130px 0 0;
  background:
    radial-gradient(circle at 78% 15%, rgba(31, 158, 145, .16), transparent 29%),
    var(--paper);
}

.universe-panel::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(20, 47, 44, .05) 50%, transparent calc(50% + .5px)),
    linear-gradient(transparent calc(50% - .5px), rgba(20, 47, 44, .05) 50%, transparent calc(50% + .5px));
  content: "";
}

.universe-panel__circle {
  position: absolute;
  top: 80px;
  right: -11vw;
  z-index: -1;
  width: min(63vw, 1040px);
  aspect-ratio: 1;
  border: clamp(30px, 6vw, 100px) solid rgba(31, 158, 145, .075);
  border-radius: 50%;
}

.universe-intro,
.universe-grid,
.final-manifesto,
.universe-panel footer {
  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.universe-intro {
  max-width: none;
  padding-right: var(--side-pad);
  padding-left: var(--side-pad);
}

.universe-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 901px) {
  .universe-grid {
    width: calc(100% - (var(--side-pad) * 2));
    max-width: var(--content-w);
  }
}

.universe-grid article {
  min-height: 210px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  transition:
    color .3s ease,
    background-color .3s ease,
    transform .4s var(--ease);
}

.universe-grid article:first-child {
  border-left: 1px solid var(--line);
}

.universe-grid article:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-8px);
}

.universe-grid span {
  display: block;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.universe-grid b {
  display: block;
  margin-top: 54px;
  font-size: clamp(17px, 1.45vw, 24px);
  font-weight: 950;
}

.universe-grid p {
  margin: 9px 0 0;
  color: rgba(20, 47, 44, .56);
  font-size: 12px;
  line-height: 1.6;
  word-break: keep-all;
}

.universe-grid article:hover p {
  color: rgba(255, 255, 255, .57);
}

.final-manifesto {
  position: relative;
  margin-top: 85px;
  padding: 62px clamp(30px, 5vw, 90px);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 20%, rgba(243, 198, 76, .22), transparent 25%),
    var(--ink);
}

.final-manifesto::before {
  position: absolute;
  top: 0;
  right: 5%;
  width: 24%;
  height: 100%;
  opacity: .16;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, var(--yellow) 14px 16px);
  content: "";
}

.final-manifesto span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .17em;
}

.mobile-slogan-break {
  display: none;
}

.final-manifesto h3 {
  position: relative;
  margin: 20px 0 0;
  font-size: clamp(36px, 4.3vw, 75px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -.065em;
}

.universe-panel footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
  min-height: 150px;
  padding: 45px var(--side-pad) 38px;
}

.footer-brand {
  display: inline-flex;
  width: fit-content;
}

.footer-brand img {
  width: clamp(155px, 14vw, 235px);
  max-height: 88px;
  object-fit: contain;
  object-position: left center;
}

.universe-panel footer small {
  margin: 0;
  color: rgba(20, 47, 44, .45);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: right;
}

@media (min-width: 901px) {
  .character-role {
    font-size: 22px;
  }

  .character-description {
    font-size: 18px;
  }

  .universe-panel footer {
    align-items: end;
  }

  .universe-panel footer small {
    align-self: end;
    font-size: 11px;
    line-height: 1;
  }
}

@media (max-width: 1180px) {
  :root {
    --side-pad: 44px;
  }

  .site-header {
    grid-template-columns: 200px 1fr 130px;
  }

  .header-tag {
    display: none;
  }

  .hero-copy {
    width: 49vw;
  }

  .hero-character {
    right: 3vw;
    width: 56vw;
  }

  .character-stage {
    grid-template-columns: minmax(280px, .78fr) minmax(430px, 1.22fr);
  }

  .world-layout {
    grid-template-columns: 1fr;
    gap: 85px;
  }

  .world-panel {
    min-height: 1240px;
  }

  .world-panel .section-heading {
    max-width: 700px;
  }

  .world-gates {
    max-width: 920px;
  }

  .video-layout {
    grid-template-columns: minmax(280px, .8fr) minmax(440px, 1.2fr);
    gap: 48px;
  }

  .video-teaser__screen {
    min-height: 450px;
  }

  .product-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .product-mockup--figure {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .product-mockup--figure .product-mockup__visual {
    min-height: 570px;
  }

  .product-mockup--figure .product-photo {
    background:
      linear-gradient(rgba(240, 229, 211, .18), rgba(240, 229, 211, .18)),
      url("./assets/products/collectible-real.jpg") center / cover;
  }

  .product-mockup--figure .product-photo img {
    object-fit: contain;
    backdrop-filter: blur(12px);
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 72px;
    --nav-offset: 72px;
    --side-pad: 22px;
  }

  .product-mockup__copy > span {
    font-size: 9px;
  }

  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: 1fr auto;
    height: var(--header-h);
    padding: 0 18px;
    background: rgba(12, 36, 34, .92);
    backdrop-filter: blur(14px);
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo {
    height: 52px;
  }

  .main-nav,
  .section-rail {
    display: none;
  }

  .back-to-top {
    right: calc(16px + env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }

  .back-to-top svg {
    width: 21px;
    height: 21px;
  }

  .header-actions {
    grid-column: 2;
  }

  .menu-toggle,
  .mobile-menu {
    display: block;
  }

  .panel {
    min-height: auto;
  }

  .panel-index {
    top: 90px;
    right: 20px;
    font-size: 145px;
  }

  .section-heading h2,
  .universe-intro h2 {
    font-size: clamp(42px, 12.5vw, 70px);
    line-height: 1.01;
  }

  .section-heading > p:last-child,
  .universe-intro > p:last-child {
    margin-top: 21px;
    font-size: 15px;
    line-height: 1.8;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 11px;
  }

  .hero-panel {
    min-height: 850px;
    align-items: start;
    padding-top: 120px;
    padding-bottom: 65px;
  }

  .hero-panel__pattern {
    top: 37%;
    right: -34%;
    width: 110vw;
  }

  .sun-orbit--one {
    top: 43%;
    right: 23%;
  }

  .hero-copy {
    width: 100%;
    margin: 0;
  }

  .hero-copy h1 {
    font-size: clamp(60px, 17vw, 92px);
  }

  .hero-copy__lead {
    max-width: 92%;
    margin-top: 21px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 25px;
  }

  .pill-button {
    min-width: 0;
    min-height: 48px;
    padding: 0 17px;
    font-size: 12px;
  }

  .hero-character {
    right: -14%;
    bottom: 37px;
    width: 105vw;
  }

  .hero-character__halo {
    right: 12%;
    width: 67%;
  }

  .character-stamp {
    width: 56px;
    height: 56px;
    font-size: 13px;
  }

  .character-stamp--mir {
    top: 52%;
    left: 13%;
  }

  .character-stamp--bori {
    top: 25%;
    right: 14%;
  }

  .hero-manifesto {
    display: none;
  }

  .scroll-cue {
    bottom: 19px;
  }

  .character-panel {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 85px;
  }

  .character-stage {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin: 20px 0 0;
  }

  .character-visual {
    order: 1;
    width: 100%;
    min-height: 420px;
    margin-bottom: -50px;
  }

  .character-visual__disc {
    width: min(92vw, 520px);
  }

  .character-visual__ring {
    width: min(100vw, 570px);
  }

  .character-visual img {
    width: min(93vw, 535px);
    max-height: 470px;
  }

  .character-info {
    order: 2;
    align-self: stretch;
    max-width: none;
    padding: 0;
  }

  .character-info h3 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .character-description {
    min-height: 0;
  }

  .character-controls {
    position: static;
    order: 3;
    align-self: stretch;
    justify-content: flex-end;
    margin-top: 25px;
  }

  .character-progress {
    flex: 1;
  }

  .zodiac-tabs {
    grid-template-columns: repeat(6, 1fr);
    margin-top: 33px;
  }

  .zodiac-tabs button {
    min-height: 68px;
  }

  .zodiac-tabs button:nth-child(6) {
    border-right: 1px solid var(--line);
  }

  .animation-gallery {
    margin-top: 32px;
  }

  .world-panel {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 70px;
  }

  .world-layout {
    gap: 70px;
  }

  .world-panel__moon {
    display: none;
  }

  .world-gates {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .world-card,
  .world-card:nth-child(2) {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    min-height: 165px;
    padding: 18px;
    transform: none;
  }

  .world-card:hover,
  .world-card:nth-child(2):hover {
    transform: translateX(5px);
  }

  .world-card > span {
    position: absolute;
    top: 14px;
    left: 16px;
  }

  .world-card__symbol {
    grid-row: 1 / span 2;
    width: 60px;
    min-height: 110px;
    margin: 0;
    font-size: 63px;
  }

  .world-card h3 {
    align-self: end;
  }

  .world-card p {
    align-self: start;
  }

  .mangtae-panel {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 70px;
  }

  .mangtae-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mangtae-copy,
  .mangtae-visual {
    grid-column: 1;
    grid-row: auto;
  }

  .mangtae-visual--desktop {
    display: none;
  }

  .mangtae-visual--mobile {
    display: grid;
  }

  .mangtae-copy h2 {
    font-size: clamp(46px, 11.5vw, 76px);
  }

  .mangtae-visual {
    min-height: 530px;
    margin-top: 15px;
  }

  .mangtae-sack {
    width: min(58vw, 370px);
  }

  .mangtae-visual::before {
    width: min(90vw, 560px);
  }

  .mangtae-visual::after {
    width: min(72vw, 450px);
  }

  .mangtae-footnote {
    margin-top: 20px;
  }

  .video-panel {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 70px;
  }

  .video-layout {
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: 0;
  }

  .video-layout .section-heading {
    max-width: 670px;
  }

  .video-layout .section-heading h2 {
    font-size: clamp(42px, 11vw, 70px);
  }

  .video-status span {
    font-size: 10px;
  }

  .video-teaser {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .video-teaser__screen {
    min-height: 470px;
  }

  .products-panel {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 70px;
  }

  .product-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    margin-top: 40px;
  }

  .product-mockup--figure {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .product-mockup--figure .product-mockup__visual {
    min-height: 550px;
  }

  .product-mockup__visual {
    min-height: 300px;
  }

  .product-mockup__copy {
    min-height: 145px;
  }

  .universe-panel {
    min-height: auto;
    padding-top: 96px;
  }

  .universe-panel__circle {
    top: 90px;
    right: -55vw;
    width: 130vw;
  }

  .universe-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .universe-grid article {
    display: grid;
    grid-template-columns: 40px minmax(100px, .7fr) 1fr;
    align-items: center;
    min-height: 92px;
    padding: 18px 14px;
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .universe-grid article:hover {
    transform: translateX(4px);
  }

  .universe-grid b {
    margin: 0;
    font-size: 16px;
  }

  .universe-grid p {
    margin: 0;
  }

  .final-manifesto {
    margin-top: 48px;
    padding: 42px 24px;
    text-align: center;
  }

  .mobile-slogan-break {
    display: block;
  }

  .final-manifesto h3 {
    margin-top: 15px;
    width: 100%;
    font-size: clamp(22px, 7vw, 34px);
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }

  .universe-panel footer {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 190px;
    padding: 42px 0 35px;
    text-align: center;
  }

  .universe-panel footer small {
    display: block;
    width: 100%;
    text-align: center;
  }

  .universe-panel footer .footer-brand {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .universe-panel footer .footer-brand img {
    margin-right: auto;
    margin-left: auto;
    object-position: center;
  }
}

@media (max-width: 520px) {
  .hero-panel {
    min-height: 800px;
  }

  .hero-copy h1 {
    font-size: clamp(57px, 18vw, 78px);
  }

  .hero-copy__lead {
    max-width: 100%;
  }

  .pill-button {
    padding: 0 14px;
    font-size: 11px;
  }

  .hero-character {
    right: -22%;
    bottom: 33px;
    width: 118vw;
  }

  .scroll-cue {
    font-size: 8px;
  }

  .character-visual {
    min-height: 365px;
  }

  .character-visual img {
    max-height: 400px;
  }

  .character-info h3 small {
    display: block;
    margin: 9px 0 0 2px;
  }

  .animation-gallery {
    gap: 6px;
    margin-top: 24px;
  }

  .animation-shot {
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(20, 47, 44, .09);
  }

  .zodiac-tabs span {
    font-size: 10px;
  }

  .world-card {
    grid-template-columns: 61px 1fr;
  }

  .video-teaser {
    padding: 8px;
  }

  .video-teaser__screen {
    min-height: 390px;
  }

  .video-teaser__play {
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
  }

  .video-status {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-mockup--figure {
    grid-column: auto;
  }

  .product-mockup--figure .product-mockup__visual {
    min-height: 500px;
  }

  .product-mockup__visual {
    min-height: 335px;
  }

  .product-mockup__copy {
    min-height: 0;
  }

  .figure-box {
    width: min(74%, 310px);
  }

  .apparel-shirt {
    width: 38%;
  }

  .final-manifesto span {
    display: block;
    max-width: 250px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.6;
    text-align: center;
  }

  .footer-brand img {
    width: 170px;
  }
}

@media (max-width: 900px) {
  .hero-panel {
    min-height: 960px;
    padding-top: 108px;
    padding-bottom: 72px;
  }

  .hero-panel__wash {
    background:
      linear-gradient(180deg, rgba(3, 16, 22, .66) 0%, rgba(3, 16, 22, .24) 54%, rgba(3, 16, 22, .06) 100%),
      radial-gradient(circle at 68% 72%, var(--hero-glow), transparent 40%);
  }

  .hero-panel__pattern {
    top: 46%;
    right: -35%;
    width: 115vw;
  }

  .hero-copy {
    z-index: 7;
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 690px;
    font-size: clamp(47px, 10.4vw, 72px);
    line-height: .97;
  }

  .hero-copy .eyebrow {
    gap: 8px;
    margin-bottom: 13px;
    font-size: 9px;
  }

  .hero-character-name {
    margin-top: 15px;
  }

  .hero-character-name strong {
    font-size: 58px;
  }

  .hero-copy__lead {
    display: -webkit-box;
    max-width: 640px;
    min-height: 65px;
    margin-top: 10px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-slider-controls {
    width: min(100%, 620px);
    margin-top: 18px;
  }

  .hero-arrow {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .hero-dots {
    gap: 4px;
  }

  .hero-dots button {
    flex-basis: 15px;
  }

  .hero-dots button[aria-selected="true"] span {
    width: 15px;
  }

  .hero-character {
    right: -7%;
    bottom: 48px;
    width: 94vw;
    height: min(calc(var(--stable-vh) * 45), 470px);
  }

  .hero-character__halo {
    top: -6%;
    right: 5%;
    width: 70%;
  }

  .hero-character__glyph {
    top: -10%;
    right: 4%;
    font-size: min(63vw, 390px);
  }

  .hero-character__trail {
    height: 1px;
  }

  .sun-orbit--one {
    top: 53%;
  }
}

@media (max-width: 520px) {
  .hero-panel {
    min-height: 925px;
    padding-top: 100px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 11.6vw, 56px);
    letter-spacing: -.07em;
  }

  .hero-copy .eyebrow span:last-child {
    max-width: 54vw;
  }

  .hero-character-name {
    margin-top: 13px;
  }

  .hero-character-name strong {
    font-size: 53px;
  }

  .hero-character-name span {
    font-size: 23px;
  }

  .hero-copy__lead {
    min-height: 63px;
    font-size: 13px;
  }

  .hero-actions {
    gap: 7px;
    margin-top: 15px;
  }

  .hero-actions .pill-button {
    min-height: 44px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero-slider-controls {
    gap: 7px;
    margin-top: 14px;
  }

  .hero-arrow {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .hero-slide-count {
    flex-basis: 38px;
    gap: 2px;
  }

  .hero-slide-count strong {
    font-size: 14px;
  }

  .hero-dots {
    gap: 2px;
  }

  .hero-dots button {
    flex-basis: 10px;
    min-width: 5px;
  }

  .hero-dots button span {
    width: 5px;
    height: 5px;
  }

  .hero-dots button[aria-selected="true"] span {
    width: 10px;
  }

  .hero-character {
    right: -12%;
    bottom: 100px;
    width: 108vw;
    height: calc(var(--stable-vh) * 38);
    max-height: 340px;
  }

  .hero-character__trail--two {
    left: 2%;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero-copy h1 {
    font-size: clamp(30px, 9.2vw, 48px);
    letter-spacing: -.08em;
    line-height: 1.02;
  }

  .hero-panel:is(
    [data-hero-index="3"],
    [data-hero-index="8"],
    [data-hero-index="11"]
  ) .hero-copy h1 span {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .hero-slider-controls {
    padding-bottom: 5.2px;
  }

  .hero-character {
    transform: translateX(-50px);
  }
}

@media (max-width: 520px) {
  .character-panel {
    padding-right: 18px;
    padding-left: 18px;
  }

  .character-panel .section-heading {
    position: relative;
    top: -50px;
  }

  .world-gates {
    display: none;
  }

  .mangtae-panel {
    padding: 82px 18px 52px;
  }

  .mangtae-copy h2 {
    font-size: clamp(42px, 12.7vw, 59px);
    line-height: 1.01;
  }

  .mangtae-record {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
    padding-top: 22px;
  }

  .mangtae-record__index {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mangtae-record h3 {
    font-size: 29px;
  }

  .mangtae-record > div > p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
  }

  .mangtae-record blockquote {
    margin-top: 21px;
    padding-left: 17px;
    font-size: 14px;
  }

  .mangtae-turn {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .mangtae-turn article {
    grid-template-columns: 31px 1fr;
    min-height: 68px;
    padding: 13px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .mangtae-turn article:last-child {
    border-bottom: 0;
  }

  .mangtae-turn article div {
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 10px;
  }

  .mangtae-visual {
    min-height: 425px;
    margin-top: 7px;
  }

  .mangtae-sack {
    width: min(69vw, 290px);
  }

  .mangtae-sack__seal {
    width: 61px;
    font-size: 33px;
  }

  .mangtae-seed {
    width: 52px;
  }

  .mangtae-seed b {
    font-size: 19px;
  }

  .mangtae-seed--one {
    top: 12%;
    left: 0;
  }

  .mangtae-seed--two {
    top: 19%;
    right: 0;
    width: 44px;
  }

  .mangtae-seed--three {
    right: 2%;
    bottom: 13%;
    width: 48px;
  }

  .mangtae-visual > p {
    bottom: 1%;
    font-size: 7px;
    letter-spacing: .18em;
  }

  .mangtae-footnote {
    display: grid;
    gap: 10px;
    margin-top: 19px;
  }

  .mangtae-footnote p {
    font-size: 11px;
    text-align: left;
  }

  .character-visual {
    top: 25px;
  }

  .character-info {
    top: 115px;
    margin-bottom: 80px;
  }

  .character-visual__figure {
    animation-duration: 4s;
  }

  .world-layout > .animation-gallery--world {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin: -54px 0 0;
  }

  .hero-panel {
    height: calc(var(--stable-vh) * 100);
    min-height: calc(var(--stable-vh) * 100);
    max-height: calc(var(--stable-vh) * 100);
    margin-bottom: 0;
  }

  .hero-character {
    bottom: 25px;
    height: min(calc(var(--stable-vh) * 38 + 46px), 386px);
  }

  .hero-name-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    margin-top: 13px;
  }

  .hero-name-row .hero-character-name {
    flex: 0 0 auto;
    margin: 0;
    white-space: nowrap;
  }

  .hero-name-row > .hero-slider-controls.is-mobile-placement {
    flex: 0 0 43px;
    justify-content: space-between;
    width: 43px;
    min-height: 24px;
    gap: 3px;
    margin: 0 0 1px auto;
    padding-bottom: 3px;
    transform: translateY(-13px) scale(1.96);
    transform-origin: right bottom;
  }

  .hero-name-row > .hero-slider-controls .hero-slide-count,
  .hero-name-row > .hero-slider-controls .hero-dots {
    display: none;
  }

  .hero-name-row > .hero-slider-controls .hero-arrow {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
    font-size: 9px;
  }

  .hero-name-row > .hero-slider-controls .hero-slide-count {
    flex-basis: 22px;
    gap: 1px;
    font-size: 6px;
  }

  .hero-name-row > .hero-slider-controls .hero-slide-count strong {
    font-size: 10px;
  }

  .hero-name-row > .hero-slider-controls .hero-dots {
    gap: 0;
  }

  .hero-name-row > .hero-slider-controls .hero-dots button {
    flex-basis: 4px;
    min-width: 2px;
    height: 14px;
  }

  .hero-name-row > .hero-slider-controls .hero-dots button span {
    width: 3px;
    height: 3px;
  }

  .hero-name-row > .hero-slider-controls .hero-dots button[aria-selected="true"] span {
    width: 6px;
  }

  .hero-name-row > .hero-slider-controls .hero-auto-progress {
    bottom: -3px;
    height: 1px;
  }
}

@media (max-width: 900px) {
  :root {
    --mobile-section-top-space: 36px;
  }

  .character-panel,
  .world-panel,
  .mangtae-panel,
  .video-panel,
  .products-panel,
  .universe-panel {
    padding-top: var(--mobile-section-top-space);
  }
}

@media (max-width: 520px) {
  :root {
    --mobile-section-top-space: 28px;
  }

  .character-panel .section-heading {
    top: 0;
  }
}

/* Opening film / section 01 */
.opening-panel {
  display: grid;
  align-items: end;
  min-height: calc(var(--stable-vh) * 100);
  padding:
    calc(var(--header-h) + clamp(70px, 9vh, 128px))
    var(--side-pad)
    clamp(82px, 9vh, 126px);
  overflow: clip;
  color: var(--white);
  background: #071918;
}

.opening-video {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  background: #071918;
  pointer-events: none;
}

.opening-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.opening-panel__veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 18, 17, .92) 0%, rgba(5, 18, 17, .65) 41%, rgba(5, 18, 17, .12) 74%, rgba(5, 18, 17, .38) 100%),
    linear-gradient(0deg, rgba(5, 18, 17, .83) 0%, transparent 46%, rgba(5, 18, 17, .32) 100%);
}

.opening-panel__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .19;
  background:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px) 0 0 / 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .62) 42%, transparent 79%);
}

.opening-panel__frame {
  position: absolute;
  top: calc(var(--header-h) + 26px);
  right: clamp(22px, 3.2vw, 60px);
  bottom: clamp(25px, 3vw, 58px);
  left: clamp(22px, 3.2vw, 60px);
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .16);
  pointer-events: none;
}

.opening-panel__frame::before,
.opening-panel__frame::after {
  position: absolute;
  width: 54px;
  height: 54px;
  content: "";
}

.opening-panel__frame::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid var(--yellow);
  border-left: 3px solid var(--yellow);
}

.opening-panel__frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid rgba(255, 255, 255, .78);
  border-bottom: 3px solid rgba(255, 255, 255, .78);
}

.opening-typography {
  position: relative;
  z-index: 3;
  width: min(73vw, 1180px);
}

.opening-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 21px;
  color: var(--yellow);
  font-size: clamp(10px, .74vw, 13px);
  font-weight: 900;
  letter-spacing: .2em;
}

.opening-kicker::before {
  width: clamp(36px, 4vw, 72px);
  height: 2px;
  background: currentColor;
  content: "";
}

.opening-kicker strong {
  color: rgba(255, 255, 255, .74);
  font: inherit;
}

.opening-typography h1 {
  margin: 0;
  font-size: clamp(66px, 7.1vw, 136px);
  font-weight: 950;
  line-height: .88;
  letter-spacing: -.078em;
  text-shadow: 0 18px 46px rgba(0, 0, 0, .34);
  word-break: keep-all;
}

.opening-typography h1 span,
.opening-typography h1 em {
  display: block;
}

.opening-typography h1 em {
  margin-top: .08em;
  color: #ffad76;
  font-style: normal;
}

.opening-caption {
  display: grid;
  grid-template-columns: minmax(0, 650px) auto;
  align-items: start;
  gap: clamp(32px, 5vw, 85px);
  width: min(100%, 970px);
  margin-top: clamp(28px, 3vw, 48px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.opening-caption p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(14px, 1.08vw, 18px);
  line-height: 1.78;
  word-break: keep-all;
}

.opening-caption > span {
  color: var(--yellow);
  font-size: clamp(8px, .62vw, 11px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .16em;
  text-align: right;
  white-space: nowrap;
}

.opening-film-index {
  position: absolute;
  right: clamp(38px, 5vw, 96px);
  bottom: clamp(76px, 8vh, 120px);
  z-index: 3;
  display: grid;
  justify-items: end;
  gap: 9px;
  color: rgba(255, 255, 255, .54);
  text-align: right;
}

.opening-film-index span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.opening-film-index strong {
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 1.45vw, 27px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.02em;
}

.opening-scroll-cue {
  left: auto;
  right: clamp(38px, 5vw, 96px);
}

.character-slider-panel {
  scroll-margin-top: 0;
}

.character-slider-panel > .scroll-cue {
  color: rgba(255, 255, 255, .54);
}

@media (max-width: 900px) {
  .opening-panel {
    height: calc(var(--stable-vh) * 100);
    min-height: calc(var(--stable-vh) * 100);
    max-height: calc(var(--stable-vh) * 100);
    padding: 104px 22px 86px;
  }

  .opening-panel__veil {
    background:
      linear-gradient(0deg, rgba(5, 18, 17, .94) 0%, rgba(5, 18, 17, .62) 43%, rgba(5, 18, 17, .12) 75%, rgba(5, 18, 17, .34) 100%),
      linear-gradient(90deg, rgba(5, 18, 17, .42), rgba(5, 18, 17, .08));
  }

  .opening-panel__grid {
    opacity: .13;
    background-size: 44px 44px;
    mask-image: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, .5) 58%, transparent 88%);
  }

  .opening-panel__frame {
    top: calc(var(--header-h) + 17px);
    right: 16px;
    bottom: 17px;
    left: 16px;
  }

  .opening-typography {
    width: min(100%, 720px);
  }

  .opening-typography h1 {
    font-size: clamp(54px, 11.8vw, 92px);
  }

  .opening-caption {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
  }

  .opening-film-index {
    top: calc(var(--header-h) + 35px);
    right: 28px;
    bottom: auto;
  }

  .opening-scroll-cue {
    right: 22px;
    bottom: 30px;
  }
}

@media (max-width: 520px) {
  .opening-panel {
    padding: 92px 18px 74px;
  }

  .opening-video iframe {
    width: max(100vw, 177.78svh);
    height: max(100svh, 56.25vw);
  }

  .opening-panel__frame {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .opening-panel__frame::before,
  .opening-panel__frame::after {
    width: 35px;
    height: 35px;
  }

  .opening-kicker {
    flex-wrap: wrap;
    gap: 7px 10px;
    margin-bottom: 15px;
    font-size: 8px;
  }

  .opening-kicker::before {
    width: 28px;
  }

  .opening-typography h1 {
    font-size: clamp(42px, 12.3vw, 59px);
    line-height: .93;
    letter-spacing: -.07em;
  }

  .opening-caption {
    display: block;
    margin-top: 22px;
    padding-top: 13px;
  }

  .opening-caption p {
    max-width: 92%;
    font-size: 12px;
    line-height: 1.66;
  }

  .opening-caption > span {
    display: block;
    margin-top: 12px;
    font-size: 7px;
    line-height: 1.45;
    text-align: left;
  }

  .opening-film-index {
    top: 91px;
    right: 20px;
    gap: 5px;
  }

  .opening-film-index span {
    font-size: 6px;
  }

  .opening-film-index strong {
    font-size: 14px;
  }

  .opening-scroll-cue {
    display: none;
  }
}

/* Section 02 positioning */
@media (min-width: 901px) {
  #characters > .hero-copy,
  #characters > .hero-character,
  #characters > .hero-manifesto {
    translate: 0 -70px;
  }
}

@media (max-width: 900px) {
  #characters.character-slider-panel {
    width: 100%;
    height: auto;
    min-height: calc((var(--stable-vh) * 100) + 72px);
    max-height: none;
    padding-top: var(--mobile-section-top-space);
    background-position: center;
    background-size: cover;
  }

  #characters > .hero-character {
    bottom: 120px;
  }

  #characters > .hero-copy,
  #characters > .hero-character,
  #characters > .hero-manifesto {
    translate: none;
  }

  #characters > .hero-panel__paper,
  #characters > .hero-panel__wash {
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 520px) {
  #characters > .hero-character {
    bottom: 97px;
  }
}

/* Center each desktop section's full content group like the channel section. */
@media (min-width: 901px) {
  .story-panel,
  .world-panel,
  .mangtae-panel,
  .products-panel,
  .universe-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(24px, 4vh, 38px);
    padding-bottom: clamp(24px, 4vh, 38px);
  }

  .products-panel {
    padding-top: clamp(96px, 11vh, 125px);
    padding-bottom: clamp(58px, 6.5vh, 72px);
  }

  .universe-panel {
    padding-top: clamp(100px, 11vh, 130px);
  }
}

@media (max-width: 900px) {
  #home .opening-typography {
    position: absolute;
    top: auto;
    right: 22px;
    bottom: 17px;
    left: 22px;
    width: auto;
    translate: none;
  }
}

@media (max-width: 520px) {
  #home .opening-typography {
    right: 18px;
    left: 18px;
  }
}

/* Keep the full mobile navigation and closing slogan inside the viewport. */
@media (max-width: 900px) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100vw;
    padding:
      calc(var(--header-h) + 8px)
      max(20px, env(safe-area-inset-right))
      max(18px, env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
    overflow: hidden;
    overscroll-behavior: none;
  }

  .mobile-menu__paper {
    pointer-events: none;
  }

  .mobile-menu nav {
    display: grid;
    grid-template-rows: repeat(8, minmax(0, 1fr));
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
  }

  .mobile-menu nav a {
    height: 100%;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    gap: 14px;
    padding: clamp(6px, 1.25vh, 11px) 0;
    font-size: clamp(22px, 6.4vw, 32px);
    line-height: 1.08;
  }

  .mobile-menu nav a span {
    flex: 0 0 26px;
    font-size: 10px;
  }

  .mobile-menu > p {
    position: relative;
    bottom: auto;
    left: auto;
    flex: 0 0 auto;
    margin: 10px 0 0;
    padding-top: 0;
    font-size: 9px;
    line-height: 1.4;
  }
}

/* Keep the menu scroll-free on very short mobile landscape screens. */
@media (max-width: 900px) and (max-height: 520px) {
  .mobile-menu {
    padding-top: calc(var(--header-h) + 2px);
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  .mobile-menu nav a {
    padding: 2px 0;
    font-size: 19px;
  }

  .mobile-menu > p {
    margin-top: 4px;
    font-size: 8px;
  }
}

/* Smooth, staggered entrance for the goods cards. */
@keyframes product-card-enter {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(24px) scale(.988);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.product-showcase .product-mockup.reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(24px) scale(.988);
}

.product-showcase .product-mockup.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
  animation: product-card-enter 1.05s cubic-bezier(.22, 1, .36, 1) backwards;
}

.product-showcase .product-mockup:nth-child(2).is-visible {
  animation-delay: .08s;
}

.product-showcase .product-mockup:nth-child(3).is-visible {
  animation-delay: .16s;
}

.product-showcase .product-mockup:nth-child(4).is-visible {
  animation-delay: .24s;
}

.product-showcase .product-mockup:nth-child(5).is-visible {
  animation-delay: .32s;
}

.product-showcase .product-mockup.reveal.is-visible:hover {
  transform: translateY(-9px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .product-showcase .product-mockup.reveal.is-visible {
    animation: none;
  }
}
