@charset "UTF-8";
/* ================================
   Main
================================ */

main {
  position: relative;
}

main .wrap {
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main .titlebox {
  margin-bottom: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main .p24 {
  letter-spacing: 0.1em;
}

main .topbox {
  margin-bottom: 4rem;
}

main .txtbox {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

main h2 {
  font-family: "Helvetica", sans-serif;
  font-size: clamp(7rem, 10vw, 11rem);
  line-height: 1.3em;
}

main span.game-pill {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #000;
  background-color: var(--main);
  width: 42rem;
  height: 13rem;
  border-radius: 99px;
  overflow: hidden;
  line-height: 1.3em;
}

main .game-track {
  display: inline-flex;
  white-space: nowrap;
  animation: game-marquee 5s linear infinite;
}

main .game-word {
  font-size: clamp(7rem, 10vw, 11rem);
  display: inline-block;
  padding: 0 1.8rem;
}

main .downbox {
  margin-top: 2rem;
  display: flex;
  gap: 5rem;
}

main .downbox .p18 {
  color: #999;
}

/* 오른쪽 → 왼쪽으로 계속 흐르는 애니메이션 */
@keyframes game-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

main .svgbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  border-radius: 99px;
  background-color: var(--main);
  margin: 0 auto;
}

@keyframes flowDown {
  0% {
    transform: translateY(-3px); /* 원래 위치보다 위에서 시작 */
    opacity: 0; /* 투명하게 시작 */
  }
  30% {
    opacity: 1; /* 중간에 선명해짐 */
  }
  70% {
    opacity: 1; /* 선명함 유지 */
  }
  100% {
    transform: translateY(2px); /* 아래로 이동 */
    opacity: 0; /* 투명하게 사라짐 */
  }
}

/* SVG 자체에 애니메이션 적용 */
.arrow-flow {
  animation: flowDown 1.8s ease-in-out infinite;
}

/* ================================
   Pre-Order
================================ */
.pre-order .pre-order__box {
  width: 121.6rem;
  max-width: 100%;
  min-height: 46rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 999px;
  background: #0c0c0c;
}

.pre-order .pre-order__slider {
  width: 121.6rem;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.pre-order .pre-order__track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.pre-order .pre-order__track .pre-order__box {
  width: 100%;
  max-width: none;
  flex: 0 0 100%;
}

.pre-order .pre-order__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #151428;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.pre-order .pre-order__image img {
  width: 78%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  transform: translateX(2.5rem);
}

.pre-order .pre-order__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem;
}

.pre-order .topbox {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pre-order .pre-order__content .p24 {
  margin-bottom: 0;
}

.pre-order .pre-order__content .p15 {
  margin-bottom: 2.5rem;
  color: #999;
  font-weight: 300;
  line-height: 1.4em;
}

.pre-order .topbox .p16 {
  color: #999;
}

.pre-order .p16 {
  color: #fff;
}

.pre-order .pre-order__info {
  margin-bottom: 5rem;
}

.pre-order .pre-order__info .p15 {
  margin-bottom: 0;
}

.pre-order .pre-order__cta {
  width: fit-content;
  background-color: var(--main);
  font-family: "pretendard", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.9rem 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.pre-order .pre-order__cta img {
  width: 100%;
  height: auto;
  max-width: 2rem;
}

.pre-order .pre-order__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 6rem;
  margin-top: 0;
  flex-shrink: 0;
}

.pre-order .pre-order__btn {
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.pre-order .pre-order__btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.pre-order .pre-order__btn svg {
  width: 1.8rem;
  height: 1.8rem;
}

.pre-order .pre-order__progress {
  position: relative;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}

.pre-order .pre-order__progress svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.pre-order .pre-order__progress-bg {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 2;
}

.pre-order .pre-order__progress-ring {
  stroke: var(--main);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 94.2;
  stroke-dashoffset: 94.2;
  transition: none;
}

.pre-order .pre-order__progress-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Helvetica", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pre-order .pre-order__pagination {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pre-order .pre-order__pagination li {
  width: 4rem;
  height: 0.3rem;
  border-radius: 999px;
  background: #999;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}

.pre-order .pre-order__pagination li.is-active {
  background: var(--main);
}

/* ================================
   Coming Soon
================================ */
.coming-soon {
  overflow-x: hidden; /* section에서만 클립 — wrap 경계에서 안 잘림 */
  margin-bottom: 20rem;
}

/* Slider Area */
.coming-soon .coming-soon__slider-area {
  display: flex;
  align-items: center;
  gap: 3.6rem;
}

/* Arrow Button */
.coming-soon .coming-soon__arrow-btn {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--main);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  transition: transform 0.25s ease, background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.coming-soon .coming-soon__arrow-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--main);
  opacity: 0.2;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: -1;
}

.coming-soon .coming-soon__arrow-btn svg {
  width: 2.8rem;
  height: 2.8rem;
  flex-shrink: 0;
}

/* Track Wrapper — 왼쪽만 마스킹, 오른쪽은 허용 */
.coming-soon .coming-soon__track-wrapper {
  flex: 1;
  clip-path: inset(0 -9999px 0 0);
}

/* Track */
.coming-soon .coming-soon__track {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  will-change: transform;
}

/* Card — /3.2로 키움 */
.coming-soon .coming-soon__card {
  flex-shrink: 0;
  width: calc((min(146.4rem, 100vw) - 6rem - 3.6rem) / 3.2);
  position: relative;
}

/* Thumbnail */
.coming-soon .coming-soon__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(140deg, #1c1c1c 0%, #282828 60%, #1e1e1e 100%);
  overflow: hidden;
  margin-bottom: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease;
  border-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.coming-soon .coming-soon__thumb img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  image-rendering: auto;
}

.sale-products__thumb img {
  image-rendering: auto;
}

/* Badge */
.coming-soon .coming-soon__badge {
  border: 0.5px solid #555;
  border-radius: 999px;
  padding: 0.7rem 2rem;
  color: #fff;
  font-family: "Pretendard", sans-serif;
  font-size: clamp(12px, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  align-self: flex-start;
}

/* Card Footer (info + badge) */
.coming-soon .coming-soon__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 2.5rem;
  background-color: #080808;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}

/* Card Info */
.coming-soon .coming-soon__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.coming-soon .coming-soon__info h5 {
  margin-bottom: 0;
  font-family: "Pretendard", sans-serif;
  font-size: clamp(12px, 2vw, 1.4rem);
  font-weight: 600;
  color: #888;
  line-height: 1;
  white-space: nowrap;
}

.coming-soon .p20 {
  font-size: clamp(16px, 2vw, 2rem);
  font-weight: 600;
  color: #fff;
}

/* ================================
   Page Intro (shop / notice 공통 상단 배너)
================================ */
.sale-products {
  margin-top: 0;
  padding: 15rem 0;
}

.page-intro {
  width: 100%;
  height: 25rem;
  margin-top: 70px; /* fixed header 높이만큼 내려서 header 바로 아래 위치 */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #111;
  border-bottom: 0.5px solid #333;
}

.page-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
}

.page-intro .wrap {
  position: relative;
  z-index: 1;
}

.page-intro .title {
  margin-bottom: 0;
}

/* ================================
   Sale Products
================================ */
/* Grid */
.sale-products .sale-products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.14s var(--ease), transform 0.14s var(--ease);
}

.sale-products .sale-products__grid.is-ready {
  opacity: 1;
}

/* ================================
   Scroll Down
================================ */
.scroll-down {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 10;
  pointer-events: none;
}

.scroll-down__mouse {
  width: 2.2rem;
  height: 3.6rem;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.1rem;
  position: relative;
  overflow: hidden;
}

.scroll-down__wheel {
  width: 0.4rem;
  height: 0.8rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.5rem;
  animation: scroll-wheel 1.6s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% {
    top: 0.5rem;
    opacity: 1;
  }
  60% {
    top: 2.1rem;
    opacity: 0;
  }
  61% {
    top: 0.5rem;
    opacity: 0;
  }
  100% {
    top: 0.5rem;
    opacity: 1;
  }
}

.scroll-down__label {
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-family: "Pretendard", sans-serif;
}

/* Card */
.sale-products .sale-products__card {
  cursor: pointer;
  position: relative;
}

/* Thumbnail */
.sale-products .sale-products__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 1.8rem;
  background-color: #1a1a1a;
  transition: box-shadow 0.4s ease;
  border-radius: 16px;
  text-decoration: none;
}

.sale-products .sale-products__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sale-products .sale-products__card:hover .sale-products__thumb {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
}

.sale-products .sale-products__card:hover .sale-products__thumb img {
  transform: scale(1.1);
}

/* Info */
.sale-products .sale-products__info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0 0.4rem;
}

.sale-products .sale-products__info h5 {
  margin-bottom: 0;
  font-family: "Pretendard", sans-serif;
  font-size: clamp(12px, 2vw, 1.3rem);
  font-weight: 500;
  color: #888;
  line-height: 1;
  white-space: nowrap;
}

.sale-products .p20 {
  font-size: clamp(14px, 2vw, 1.6rem);
  font-weight: 600;
}

.sale-products .sale-products__grid.pg-fading {
  opacity: 0;
  transform: translateY(8px);
}

.sale-products__card.pg-hidden {
  display: none;
}

/* ================================
   Library
================================ */
.library-sec .library-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.library-card__thumb {
  position: relative;
}

.library-sec .sale-products__info {
  align-items: center;
  text-align: center;
}

.library-card__thumb::after {
  content: "View";
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 94, 16, 0.92);
  color: #fff;
  font-family: "Helvetica", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.library-card:hover .library-card__thumb::after {
  opacity: 1;
  transform: translateY(0);
}

.library-pg {
  display: flex;
}

.library-view-sec {
  margin-top: 0;
  padding: 8rem 0 14rem;
}

.library-depth {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.4rem;
  color: rgba(255, 255, 255, 0.42);
}

.library-depth a,
.library-depth p,
.library-depth span {
  margin: 0;
  font-family: "Pretendard", sans-serif;
  font-size: 1.4rem;
  color: inherit;
}

.library-depth a {
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.library-depth a:hover {
  color: #fff;
}

.library-depth svg {
  width: 1.8rem;
  height: 1.8rem;
}

.library-depth p {
  color: rgba(255, 255, 255, 0.82);
}

.library-back {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 4rem;
  padding: 1rem 1.6rem 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.4rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.library-back:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.library-back svg {
  width: 1.8rem;
  height: 1.8rem;
}

.library-view {
  width: 100%;
}

.library-video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  position: relative;
}

.library-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  position: relative;
  z-index: 1;
}

.library-video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: blur(18px) saturate(0.8);
  transform: scale(1.08);
}

.library-video-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
}

.library-youtube-link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1.8rem 0 0 auto;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Pretendard", sans-serif;
  font-size: 1.4rem;
  transition: color 0.2s ease;
}

.library-youtube-link:hover {
  color: #fff;
}

.library-youtube-link svg {
  width: 1.7rem;
  height: 1.7rem;
}

.library-download {
  width: fit-content;
  margin: 6rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.7rem 3.2rem;
  border-radius: 999px;
  background: var(--main);
  color: #fff;
  font-family: "Pretendard", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(255, 94, 16, 0.25);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.library-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(255, 94, 16, 0.34);
}

.library-download .library-download__text {
  font-family: "Pretendard", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fff;
}

.library-download svg {
  width: 2rem;
  height: 2rem;
}

/* ================================
   Pagination
================================ */
.pg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8rem;
  user-select: none;
}

.pg-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.pg-arrow svg {
  width: 1.8rem;
  height: 1.8rem;
}

.pg-arrow:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.pg-arrow:disabled {
  cursor: pointer;
}

.pg-arrow.is-disabled {
  cursor: pointer;
  opacity: 0.45;
}

.pg-nums {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0 2.4rem;
}

.pg-num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.28);
  font-size: clamp(1.2px, 2vw, 1.4rem);
  font-weight: 500;
  font-family: "Helvetica", sans-serif;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.22s var(--ease), background 0.22s var(--ease),
    transform 0.2s var(--ease);
}

.pg-num:hover:not(.is-active) {
  color: rgba(255, 255, 255, 0.75);
  transform: scale(1.12);
}

.pg-num.is-active {
  background: var(--main);
  color: #fff;
  font-weight: 600;
}

/* ================================
   Our Mission
================================ */
.about-sec {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: transparent;
  margin-top: 0;
  contain: layout paint;
}

/* overlay를 opacity로 전환 — background-color 직접 트랜지션보다 GPU 합성만 사용해 paint 없음 */
.about-sec__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--main);
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
  z-index: 0;
  transform: translateZ(0);
}

.about-sec.is-active .about-sec__overlay {
  opacity: 1;
}

.about-sec .wrap {
  position: relative;
  z-index: 1;
}

.about-sec h5 {
  color: #fff;
}

.about-sec h2 {
  font-family: "Helvetica", serif;
  margin-bottom: 3rem;
  font-size: clamp(24px, 4.5vw, 8rem);
  font-weight: 700;
}

.about-sec p {
  font-size: clamp(15px, 2vw, 1.8rem);
  color: #fff;
}

#earth {
  position: absolute;
  top: 4rem;
  right: 4rem;
  opacity: 0;
  transition: opacity 0.8s ease 0.4s;
  z-index: 1;
  will-change: opacity, transform;
  transform: translateZ(0);
}

#earth canvas {
  display: block;
}

#earth.is-visible {
  opacity: 1; /* ← 추가 */
}

/* ================================
   Search-sec
================================ */
.search-sec {
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  position: relative;
  contain: layout paint;
}

.search-sec .dice-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}

.search-sec .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.search-sec h2 {
  margin-bottom: 6rem;
}

.search-sec h5 {
  margin-bottom: 3rem;
}

.search-sec .search-bar {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 56.667rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 2.667rem;
  gap: 1rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.search-sec .search-bar:focus-within {
  border-color: var(--main);
  background: rgba(255, 94, 16, 0.04);
}

.search-sec .search-bar input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  font-family: "pretendard";
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  caret-color: var(--main);
}

.search-sec .search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.search-sec .search-bar .search-btn {
  flex-shrink: 0;
  padding: 1.167rem 3rem;
  background: var(--main);
  border: none;
  border-radius: 999px;
  font-family: "pretendard";
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.search-sec .search-bar .search-btn:hover {
  background: #ff7a30;
  transform: scale(1.04);
}

.search-sec .search-tags {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.search-sec .search-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.search-sec .tag {
  padding: 0.667rem 1.833rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-family: "pretendard";
  font-size: clamp(13px, 2vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.search-sec .tag:hover {
  border-color: var(--main);
  color: var(--main);
  background: rgba(255, 94, 16, 0.08);
}

/* ================================
   Notice Section
================================ */
.notice-sec {
  margin-top: 0;
  padding: 15rem 0;
}

.notice-wrap {
  width: 100rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.notice-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.notice-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8rem;
  height: 3.8rem;
  border: 0.5px solid #333;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(11px, 2vw, 1.2rem);
  font-weight: 400;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.notice-all-btn:hover {
  border-color: var(--main);
  color: #fff;
}

.notice-search {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}

.notice-search label {
  display: flex;
  align-items: center;
  height: 3.8rem;
  padding-top: 0.3rem;
  box-sizing: border-box;
  font-family: "Pretendard", sans-serif;
  font-size: clamp(11px, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.notice-search input {
  width: 18rem;
  height: 3.8rem;
  padding: 0.3rem 0 0;
  box-sizing: border-box;
  border: 0;
  border-bottom: 0.5px solid #333;
  background: transparent;
  font-family: "Pretendard", sans-serif;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2;
  outline: none;
}

.notice-search input::-webkit-search-cancel-button,
.notice-search input::-webkit-search-decoration {
  appearance: none;
}

.notice-search input:focus {
  border-color: var(--main);
}

.notice-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.notice-table {
  width: 100%;
  border-collapse: collapse;
}

.notice-table thead th {
  padding: 1.1rem 1.2rem;
  font-family: "Pretendard", sans-serif;
  font-size: clamp(14px, 2vw, 1.6rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border-top: 0.5px solid #333;
  border-bottom: 0.5px solid #333;
}

.notice-table th:not(:first-child) {
  border-left: 0.5px solid #333;
}

.notice-table .col-no {
  width: 6rem;
}
.notice-table .col-date {
  width: 12rem;
}

.notice-table .notice-row {
  border-bottom: 0.5px solid #333;
  cursor: pointer;
  transition: background 0.16s ease;
}

.notice-table .notice-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.notice-table td {
  padding: 1.3rem 1.2rem;
  font-weight: 400;
}

.notice-table .td-no {
  font-family: "Pretendard", sans-serif;
  font-size: clamp(13px, 2vw, 1.3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  text-align: center;
}

.notice-table .td-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 13px 16px;
  font-size: clamp(12px, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
}

.notice-table .td-date {
  text-align: center;
  font-family: "Pretendard", sans-serif;
  font-size: clamp(13px, 2vw, 1.3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.02em;
}

.notice-table .td-no p,
.notice-table .td-date p {
  font-size: clamp(11px, 2vw, 1.2rem);
}

.notice-table th p,
.notice-table td p {
  margin: 0;
  font-size: clamp(12px, 2vw, 1.4rem);
}

.notice-badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.7rem;
  background: var(--main);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  font-family: "Helvetica", sans-serif;
  color: #fff;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  line-height: 1;
}

.notice-empty {
  text-align: center;
  padding: 8rem 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: 1.5rem;
}

.notice-pg {
  padding-top: 7.2rem;
}

.notice-pg .pg-arrow {
  width: 6rem;
  height: 6rem;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.notice-pg .pg-arrow.is-disabled {
  opacity: 1;
}

.notice-pg .pg-arrow:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.notice-pg .pg-arrow svg {
  width: 2.4rem;
  height: 2.4rem;
}

.notice-pg .pg-nums {
  margin: 0 3.2rem;
}

.notice-pg .pg-num {
  width: 5.6rem;
  height: 5.6rem;
  font-size: 1.8rem;
}

/* ================================
   Notice View Page
================================ */
.notice-view-sec {
  margin-top: 0;
  padding: 10rem 0 15rem;
}

.notice-view-wrap {
  width: 108rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.notice-view__meta {
  padding-bottom: 3.5rem;
  margin-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-view__title {
  font-size: clamp(18px, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.notice-view__date {
  font-family: "Helvetica", sans-serif;
  font-size: clamp(11px, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.35);
}

.notice-view__img {
  width: 100%;
  height: auto;
  display: block;
}

.notice-view__body {
  margin-top: 4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.notice-view__body * {
  font-weight: 400;
}

.notice-view__body:first-child {
  margin-top: 0;
}

.notice-view__body h3,
.notice-view__body h4 {
  margin: 3.2rem 0 1.2rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.45;
}

.notice-view__body h3 {
  font-size: clamp(18px, 2.5vw, 2.4rem);
}

.notice-view__body h4 {
  font-size: clamp(16px, 2.2vw, 2rem);
}

.notice-view__body p {
  margin: 0;
  min-height: 0 !important;
}

.notice-view__body .notice-view__blank {
  height: 0.35em !important;
  margin: 0 !important;
  font-size: 1rem !important;
  line-height: 0.35em !important;
}

.notice-view__body .notice-text-size-12 {
  font-size: clamp(10px, 2vw, 1.2rem);
  line-height: 1.45;
}

.notice-view__body .notice-text-size-14 {
  font-size: clamp(12px, 2vw, 1.4rem);
  line-height: 1.45;
}

.notice-view__body .notice-text-size-16 {
  font-size: clamp(14px, 2vw, 1.6rem);
  line-height: 1.45;
}

.notice-view__body .notice-text-size-18 {
  font-size: clamp(16px, 2vw, 1.8rem);
  line-height: 1.45;
}

.notice-view__body .notice-text-size-20 {
  font-size: clamp(17px, 2vw, 1.8rem);
  line-height: 1.45;
}

.notice-view__body .notice-text-size-24 {
  font-size: clamp(18px, 2vw, 2.4rem);
  line-height: 1.45;
}

.notice-view__body .notice-text-size-28 {
  font-size: clamp(20px, 2vw, 2.8rem);
  line-height: 1.45;
}

.notice-view__body .notice-text-size-34 {
  font-size: clamp(22px, 2vw, 3.4rem);
  line-height: 1.45;
}

.notice-view__body .notice-text-size-36 {
  font-size: clamp(22px, 3vw, 3.6rem);
  line-height: 1.45;
}

.notice-view__body .notice-text-size-40 {
  font-size: clamp(24px, 3vw, 4rem);
  line-height: 1.45;
}

.notice-view__body .notice-text-size-50 {
  font-size: clamp(28px, 3vw, 5rem);
  line-height: 1.45;
}

.notice-view__body .notice-text-size-70 {
  font-size: clamp(40px, 4vw, 7rem);
  line-height: 1.45;
}

.notice-view__body ul,
.notice-view__body ol {
  margin: 0 0 1.8rem 2.4rem;
  padding: 0;
}

.notice-view__body li {
  margin-bottom: 0.6rem;
}

.notice-view__body blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.6rem;
  border-left: 3px solid var(--main);
  background: rgba(255, 255, 255, 0.06);
}

.notice-view__body a {
  color: #ff8b4a;
  text-decoration: none;
}

.notice-view__body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2.4rem 0;
}

.notice-view__footer {
  margin-top: 7rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.notice-view__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.notice-view__back:hover {
  color: #fff;
}

/* ================================
   Work Process Page
================================ */
.work-process-sec {
  margin-top: 0;
  padding: 15rem 0;
}

.work-process-wrap {
  width: 128rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.work-process-table {
  width: 100%;
  border-collapse: collapse;
}

.work-process-table th {
  padding: 1.4rem 1.8rem;
  font-family: "Pretendard", sans-serif;
  font-size: clamp(14px, 2vw, 1.6rem);
  font-weight: 400;
  color: #fff;
  text-align: center;
  border-top: 0.5px solid #333;
  border-bottom: 0.5px solid #333;
}

.work-process-table th:not(:first-child) {
  border-left: 0.5px solid #333;
}

.work-process-table td {
  padding: 2.6rem 1.8rem;
  border-bottom: 0.5px solid #333;
  vertical-align: middle;
}

.work-process-table p {
  margin: 0;
  font-size: clamp(12px, 2vw, 1.5rem);
}

.work-process-col-no {
  width: 6rem;
}

.work-process-col-name {
  width: 18rem;
}

.work-process-col-info {
  width: 28rem;
}

.work-process-no {
  text-align: center;
}

.work-process-name,
.work-process-stage,
.work-process-info {
  text-align: center;
}

.work-process-name p {
  color: #fff;
}

.work-process-info p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.process-graph {
  --step-h: 5.8rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
  isolation: isolate;
}

.process-step {
  min-height: var(--step-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: relative;
  padding: 0 1.4rem;
  background: #242424;
  color: rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.process-step:first-child {
  border-radius: 999px 0 0 999px;
}

.process-step:last-child {
  border-radius: 0 999px 999px 0;
}

.process-step p,
.process-step__num {
  position: relative;
  z-index: 1;
}

.process-step p {
  color: currentColor;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.1rem;
  font-weight: 700;
}

.process-step--1.is-active {
  background: linear-gradient(135deg, #28d99a 0%, #19a86e 100%);
  color: #061812;
}

.process-step--2.is-active {
  background: linear-gradient(135deg, #41c7ff 0%, #2377ff 100%);
  color: #06111f;
}

.process-step--3.is-active {
  background: linear-gradient(135deg, #a779ff 0%, #6c3df4 100%);
  color: #12071f;
}

.process-step--4.is-active {
  background: linear-gradient(135deg, #ff6a8f 0%, #ff334e 100%);
  color: #24050a;
}

.process-step.is-active .process-step__num {
  background: rgba(255, 255, 255, 0.72);
}

.work-process-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
}

.work-process-pg .pg-num {
  text-decoration: none;
}
