/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --header-height: 3.75rem;
  --gutter: clamp(20px, 4vw, 60px);
  --gap: clamp(20px, 3vw, 40px);
  --gap-md: clamp(16px, 2vw, 30px);
  --gap-sm: clamp(4px, 1vw, 10px);
}

html {
  font-size: 16px;
}

body {
  font-family: "articulat-cf", "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  -webkit-text-size-adjust: 100%;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  word-break: keep-all;
}

.font-italic {
  font-style: italic;
}

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

.fw-50 {
  font-weight: 50;
}

.fw-100 {
  font-weight: 100;
}

.fw-150 {
  font-weight: 150;
}

.fw-200 {
  font-weight: 200;
}

.fw-250 {
  font-weight: 250;
}

.fw-300 {
  font-weight: 300;
}

.fw-350 {
  font-weight: 350;
}

.fw-400 {
  font-weight: 400;
}

.fw-450 {
  font-weight: 450;
}

.fw-500 {
  font-weight: 500;
}

.fw-550 {
  font-weight: 550;
}

.fw-600 {
  font-weight: 600;
}

.fw-650 {
  font-weight: 650;
}

.fw-700 {
  font-weight: 700;
}

.fw-750 {
  font-weight: 750;
}

.fw-800 {
  font-weight: 800;
}

.fw-850 {
  font-weight: 850;
}

.fw-900 {
  font-weight: 900;
}

.fw-950 {
  font-weight: 950;
}

.fw-1000 {
  font-weight: 1000;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.display-inline {
  display: inline-block;
}

.fc-white {
  color: #fff;
}

.fc-black {
  color: #000;
}

.uppercase {
  text-transform: uppercase;
}

.title-lg {
  font-size: clamp(1.5rem, 3.5190615836vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
}

.title-md {
  font-size: clamp(1.125rem, 2.3460410557vw, 1.5rem);
  font-weight: 700;
  line-height: 1.125;
}

.body-lg {
  font-size: clamp(0.875rem, 1.9550342131vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
}

[data-anims] [data-anim] {
  will-change: transform, opacity;
  opacity: 0;
  font-kerning: none;
  text-rendering: optimizeSpeed;
}
[data-anims] [data-anim].--animated {
  opacity: 1;
}
[data-anims] .line,
[data-anims] .word {
  clip-path: inset(0);
}
@media (max-width: 767px) {
  [data-anims] .__sentence br {
    display: none;
  }
}

button {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  outline: none;
  box-shadow: none;
}

.__cta {
  display: flex;
}
.__cta button {
  font-size: clamp(1rem, 1.9550342131vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6666666667em 1em;
}

.video-container {
  position: relative;
  aspect-ratio: 16/9;
}
.video-container iframe,
.video-container video {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

.section {
  position: relative;
}
.section.--overflow-hidden {
  overflow: hidden;
  clip-path: inset(0);
}
.section .py-lg {
  padding: clamp(5rem, 15.6402737048vw, 10rem) 0;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-3 {
  margin-bottom: 3em;
}

* {
  box-sizing: border-box;
}

html, body {
  background: #fff;
}

.wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
}

.container {
  padding: 0 var(--gutter);
}
.container .__boxed {
  margin-left: auto;
  margin-right: auto;
}
.container .__boxed.--lg {
  max-width: 90rem;
}
.container .__boxed.--md {
  max-width: 81.25rem;
}
.container .__boxed.--sm {
  max-width: 63.75rem;
}
.container .__boxed.--xs {
  max-width: 47.9375rem;
}

img,
video,
svg {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.swiper .swiper-slide {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .hide-t {
    display: none;
  }
}
@media (max-width: 767px) {
  .hide-m {
    display: none;
  }
}
#header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  --color: #000;
  --bg-color: #fff;
}
#header .header-inner {
  color: var(--color, #000);
  background: var(--bg-color, #fff);
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
}
#header .header-content {
  height: var(--header-height, 3.75rem);
  align-items: center;
  display: flex;
  gap: 1rem;
}
#header .brand {
  margin-right: auto;
}
#header .brand a {
  display: flex;
  align-items: center;
  position: relative;
}
#header .brand svg {
  display: block;
  height: 1.25rem;
  width: auto;
}
#header .toggle-nav {
  display: none;
  position: relative;
  z-index: 5;
}
#header .nav-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
#header .gnb {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.125rem;
  display: flex;
  gap: 2em;
}
#header .sns {
  display: flex;
  gap: 0.75rem;
}
#header .sns a svg {
  display: block;
  width: 2rem;
  aspect-ratio: 1/1;
  height: auto;
}

@media (max-width: 767px) {
  #header .toggle-nav {
    display: block;
  }
  #header #nav {
    position: fixed;
    right: 0;
    top: 0;
    box-sizing: border-box;
    height: 100vh;
    height: 100svh;
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
    padding-top: var(--header-height);
    background: rgb(255, 255, 255);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    will-change: transform;
    overflow: auto;
  }
  #header #nav .nav-inner {
    flex-direction: column;
    min-height: 100%;
    gap: 2.5rem;
    padding: 3.75rem;
    padding-bottom: 7.5rem;
    text-align: center;
    width: 100vw;
    justify-content: center;
  }
  #header #nav .gnb {
    flex-direction: column;
    gap: 1em;
    font-size: 1.5rem;
  }
  .--nav-open {
    overflow: hidden;
  }
  .--nav-open #header #nav {
    transform: translateX(0);
  }
}
#footer {
  padding: 3.75em 0;
  font-size: clamp(0.625rem, 1.5640273705vw, 1rem);
}
#footer .brand {
  margin-bottom: 1.25rem;
}
#footer .brand img,
#footer .brand svg {
  display: block;
  width: 7.5em;
  margin: 0 auto;
}
#footer .copy {
  text-align: center;
  line-height: 1.25;
  font-weight: 500;
}

.page-main #footer {
  display: none;
}

.main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  overflow: hidden;
  width: 100%;
}
.main-grid .pixels {
  position: relative;
}
.main-grid .pixels img {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.main-grid .pixels canvas {
  display: block;
  width: 100%;
}
.main-grid .pixels {
  background: #fff;
}
.main-grid .pixels[data-index="1"] {
  background-color: #f5d216;
}
.main-grid .pixels[data-index="2"] {
  background-color: #fd3502;
}
.main-grid .pixels[data-index="3"] {
  background-color: #0276e7;
}
.main-grid .__desc {
  position: relative;
  overflow: hidden;
}
.main-grid .__desc article {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--gutter);
  font-size: clamp(1rem, 2.1505376344vw, 1.375rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.2727272727em;
  color: #000;
  background: #fff;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
}
.main-grid .__desc article small {
  font-size: 0.8em;
}
.main-grid .__desc article i {
  display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  left: 50%;
  top: 30%;
  pointer-events: none;
}
.main-grid .__desc article i img,
.main-grid .__desc article i svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: clamp(7.5rem, 21.5053763441vw, 13.75rem);
  height: auto;
  display: block;
  filter: brightness(0);
}
.main-grid .__desc article.--active {
  opacity: 1;
  visibility: visible;
}
.main-grid .__desc article[data-index="1"] {
  background-color: #f5d216;
}
.main-grid .__desc article[data-index="2"] {
  background-color: #fd3502;
}
.main-grid .__desc article[data-index="3"] {
  background-color: #0276e7;
}
.main-grid {
  overflow: hidden;
}
@media (max-width: 767px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
  .main-grid .pixels,
  .main-grid .__desc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .main-grid .pixels {
    z-index: 2;
  }
  .main-grid .pixels.--hide {
    z-index: -1;
    opacity: 0;
  }
}

.profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.profiles .profile-item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.profiles .profile-item img {
  transform: scale(1.005);
}
.profiles .profile-item .__msg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}
.profiles .profile-item .__title {
  position: absolute;
  top: 0;
  padding: var(--gutter);
  font-size: clamp(0.75rem, 2.3460410557vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  left: 0;
  right: 0;
}
.profiles .profile-item .__msg,
.profiles .profile-item .__title {
  opacity: 0;
  transition: opacity 0.2s;
}
.profiles .profile-item:hover .__msg,
.profiles .profile-item:hover .__title {
  opacity: 1;
}

#music {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1023px) {
  #music {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
#music .btn-music {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.25rem, 2.4615384615vw, 2rem);
  font-weight: 700;
  padding: var(--gutter);
}
#music .btn-music.__signal {
  text-decoration: underline;
  text-underline-offset: 0.1em;
  line-height: 1.25;
}
#music .btn-music[data-color] {
  background: #0e72ff;
}
#music .btn-music[data-color="2"] {
  background: #f5d216;
}
#music .btn-music[data-color="3"] {
  background: #fd3502;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.modal.--active {
  opacity: 1;
  visibility: visible;
  z-index: 99999;
}
.modal .toons {
  width: 90vw;
  max-width: 1280px;
  padding: clamp(0.75rem, 3.128054741vw, 2rem);
  background: #fff;
  position: relative;
}
.modal .toons .swiper {
  padding-bottom: 0;
}
.modal .toons .swiper-pagination {
  position: relative;
  margin: 1rem auto 0;
  font-size: 0.6875rem;
  font-weight: 700;
}
.modal .toons .__nav {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 0 0;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(0.875rem, 1.7595307918vw, 1.125rem);
}
.modal .close {
  position: absolute;
  bottom: 100%;
  right: 0rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 3rem;
  font-weight: 200;
}