@charset "UTF-8";

/* ================================
   Main
================================ */
main {
  width: 100%;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bnr-slider {
  width: 100%;
  flex: 1;
  overflow: hidden;
  position: relative;
  padding-top: 70px;
}

.bnr-track {
  display: flex;
  height: 100%;
  transition: transform 1.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  touch-action: pan-y;
}

.bnr-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  contain: paint;
}

.bnr {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
}

.bnr-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.bnr-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: none;
}

/* Controls — 이미지 밖 하단 */
.bnr-controls {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 6rem;
  flex-shrink: 0;
}

.bnr-btn {
  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;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.bnr-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.bnr-pagination li {
  width: 2.4rem;
  height: 0.3rem;
  border-radius: 99px;
  background: #999;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}

.bnr-pagination li.is-active {
  width: 4rem;
  background: var(--main);
}

.bnr-progress {
  position: relative;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}

.bnr-progress svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* 12시 방향 시작 */
}

.bnr-progress__bg {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 2;
}

.bnr-progress__ring {
  stroke: var(--main);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 94.2; /* 2 * π * r(15) ≈ 94.2 */
  stroke-dashoffset: 94.2;
  transition: none;
}

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

/* ================================
   Coming Soon
================================ */
.coming-soon {
  background-color: #111;
  padding: 14rem 0;
  overflow-x: hidden; /* section에서만 클립 — wrap 경계에서 안 잘림 */
  margin-top: 0;
}

/* 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 {
  background-color: var(--main);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  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;
}

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

/* 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;
}

/* 페이지 전환 fade + slide */
.sale-products .sale-products__grid {
  transition: opacity 0.14s var(--ease), transform 0.14s var(--ease);
}

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

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

/* ================================
   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: 1.2rem;
  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: 12px;
  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: 12px;
  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: 13px;
  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: 13px;
}

.notice-table th p,
.notice-table td p {
  margin: 0;
  font-size: 13px;
}

.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(22px, 3vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.notice-view__date {
  font-family: "Helvetica", sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.35);
}

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

.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;
}
