:root {
  --stage-width: 1920;
  --stage-height: 1080;
  --home-card-width: 461px;
  --home-card-height: 618px;
  --category-node-width: 291px;
  --category-node-height: 344px;
  --category-visual-size: 240px;
  --service-bubble-width: 350px;
  --service-bubble-height: 180px;
  --service-platform-width: 390px;
  --service-platform-height: 302px;
  --service-detail-width: 350px;
  --service-detail-padding-top: 201px;
  --service-detail-padding-right: 22px;
  --service-detail-padding-bottom: 38px;
  --service-detail-padding-left: 21px;
  --service-modal-width: 820px;
  --search-home-width: 750px;
  --search-secondary-width: 615px;
  --search-compact-width: 155px;
  --search-compact-scale: 0.94;
  --search-compact-blur: 0.8px;
  --search-panel-transition: 920ms cubic-bezier(0.19, 1, 0.22, 1);
  --search-content-transition: 1040ms cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
}

.search-input {
  -webkit-user-select: text;
  user-select: text;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  font-family: "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  background: linear-gradient(90deg, #8d79e6 0%, #d4a8e8 100%);
}

body {
  min-height: 100%;
  height: 100%;
}

button,
input {
  padding: 0;
  border: 0;
  font: inherit;
  background: transparent;
  appearance: none;
}

button {
  cursor: pointer;
}

.viewport {
  position: relative;
  width: var(--vp-w, 100vw);
  height: var(--vp-h, 100vh);
  overflow: hidden;
  background: linear-gradient(90deg, #8d79e6 0%, #d4a8e8 100%);
}

.viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/_E8_83_8C_E6_99_AF.png") center / cover no-repeat;
  z-index: 0;
}

.viewport[data-view="enterprise"]::before {
  background-image: url("../assets/_E8_83_8C_E6_99_AF2-_E4_BC_81_E4_B8_9A.png");
}

.viewport[data-view="talent"]::before {
  background-image: url("../assets/_E8_83_8C_E6_99_AF2-_E4_BA_BA_E6_89_8D.png");
}

.viewport[data-view="coop"]::before {
  background-image: url("../assets/_E8_83_8C_E6_99_AF2-_E5_90_88_E4_BD_9C.png");
}

.viewport[data-view^="enterprise-"]::before,
.viewport[data-view^="talent-"]::before,
.viewport[data-view^="coop-"]::before {
  background-image: url("../assets/_E8_83_8C_E6_99_AF3.png");
}

.stage {
  position: absolute;
  width: calc(var(--stage-width) * 1px);
  height: calc(var(--stage-height) * 1px);
  transform-origin: top left;
  overflow: hidden;
  z-index: 1;
}

.brand-watermark {
  position: absolute;
  left: 782px;
  top: 42px;
  display: block;
  width: 357px;
  height: 75px;
  object-fit: contain;
  z-index: 3;
  transition: opacity 180ms ease;
}

.category-view[hidden],
.group-view[hidden],
.home-cards[hidden],
.back-button[hidden] {
  display: none;
}

.back-button {
  position: absolute;
  left: 95px;
  top: 57px;
  width: 66px;
  height: 46px;
  z-index: 12;
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.back-button:hover {
  transform: translateX(-3px) scale(1.02);
  filter: brightness(1.08);
}

.back-button-icon {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../assets/_E8_BF_94_E5_9B_9E.png") center / contain no-repeat;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.35));
  will-change: transform;
}

.back-button:hover .back-button-icon {
  animation: back-button-drift 1s ease-in-out infinite;
}

@keyframes back-button-drift {
  0% {
    transform: translateX(0) scale(1);
  }

  45% {
    transform: translateX(-16px) scale(1.08);
  }

  60% {
    transform: translateX(-16px) scale(1.08);
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

.search-panel {
  position: absolute;
  z-index: 10;
  will-change: left, top, width;
  transition:
    left var(--search-panel-transition),
    top var(--search-panel-transition),
    width var(--search-panel-transition);
}

.stage[data-view="home"] .search-panel {
  left: 585px;
  top: 216px;
  width: var(--search-home-width);
}

.stage[data-view="enterprise"] .search-panel,
.stage[data-view="talent"] .search-panel,
.stage[data-view="coop"] .search-panel,
.stage[data-view^="enterprise-"] .search-panel,
.stage[data-view^="talent-"] .search-panel,
.stage[data-view^="coop-"] .search-panel {
  left: 1209px;
  top: 40px;
  width: var(--search-secondary-width);
}

.search-bar {
  position: relative;
  width: var(--search-home-width);
  height: 80px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 36px rgba(132, 88, 196, 0.08);
  filter: blur(0) saturate(1);
  transform-origin: right center;
  will-change: width, transform, filter, background, border-color, box-shadow;
  transition:
    width var(--search-content-transition),
    filter var(--search-content-transition),
    background 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease,
    transform var(--search-content-transition);
}

.stage[data-view="home"] .search-bar {
  width: var(--search-home-width);
}

.stage[data-view="enterprise"] .search-bar,
.stage[data-view="talent"] .search-bar,
.stage[data-view="coop"] .search-bar,
.stage[data-view^="enterprise-"] .search-bar,
.stage[data-view^="talent-"] .search-bar,
.stage[data-view^="coop-"] .search-bar {
  width: var(--search-compact-width);
  transform: scale(var(--search-compact-scale));
  filter: blur(var(--search-compact-blur)) saturate(0.92);
}

.search-panel.is-active .search-bar {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 48px rgba(115, 71, 173, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.8);
  filter: blur(0) saturate(1);
  transform: scale(1);
}

.stage[data-view="enterprise"] .search-panel.is-active .search-bar,
.stage[data-view="talent"] .search-panel.is-active .search-bar,
.stage[data-view="coop"] .search-panel.is-active .search-bar,
.stage[data-view^="enterprise-"] .search-panel.is-active .search-bar,
.stage[data-view^="talent-"] .search-panel.is-active .search-bar,
.stage[data-view^="coop-"] .search-panel.is-active .search-bar {
  width: var(--search-secondary-width);
}

.search-icon {
  position: absolute;
  top: 20px;
  width: 40px;
  height: 41px;
  background: url("../assets/_E6_90_9C_E7_B4_A2.png") center / 100% 100% no-repeat;
  will-change: left, transform, opacity;
  z-index: 1;
  transform: scale(1);
  transition:
    left var(--search-content-transition),
    transform var(--search-content-transition),
    background-image 220ms ease,
    opacity 320ms ease;
}

.stage[data-view="home"] .search-icon,
.stage[data-view="enterprise"] .search-panel.is-active .search-icon,
.stage[data-view="talent"] .search-panel.is-active .search-icon,
.stage[data-view="coop"] .search-panel.is-active .search-icon,
.stage[data-view^="enterprise-"] .search-panel.is-active .search-icon,
.stage[data-view^="talent-"] .search-panel.is-active .search-icon,
.stage[data-view^="coop-"] .search-panel.is-active .search-icon {
  left: 27px;
}

.stage[data-view="enterprise"] .search-panel:not(.is-active) .search-icon,
.stage[data-view="talent"] .search-panel:not(.is-active) .search-icon,
.stage[data-view="coop"] .search-panel:not(.is-active) .search-icon,
.stage[data-view^="enterprise-"] .search-panel:not(.is-active) .search-icon,
.stage[data-view^="talent-"] .search-panel:not(.is-active) .search-icon,
.stage[data-view^="coop-"] .search-panel:not(.is-active) .search-icon {
  left: calc(50% - 20px);
  transform: scale(0.9);
}

.search-panel.is-active .search-icon {
  background-image: url("../assets/_E6_90_9C_E7_B4_A2_E6_BF_80_E6_B4_BB.png");
}

.search-input {
  position: absolute;
  top: 19px;
  left: 87px;
  right: 124px;
  height: 42px;
  outline: none;
  background: transparent;
  color: rgba(255, 255, 255, 1);
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
  caret-color: #b876e0;
  will-change: opacity, transform, color;
  z-index: 1;
  transition:
    color 300ms ease,
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.stage[data-view="enterprise"] .search-input,
.stage[data-view="talent"] .search-input,
.stage[data-view="coop"] .search-input,
.stage[data-view^="enterprise-"] .search-input,
.stage[data-view^="talent-"] .search-input,
.stage[data-view^="coop-"] .search-input {
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
}

.search-panel.is-active .search-input {
  color: #b876e0;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition-delay: 120ms;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  transition: color 180ms ease;
}

.search-panel.is-active .search-input::placeholder {
  color: rgba(184, 118, 224, 0.92);
}

.search-submit {
  position: absolute;
  top: 19px;
  right: 30px;
  width: 60px;
  height: 42px;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 42px;
  text-align: center;
  will-change: opacity, transform, color;
  z-index: 1;
  transition:
    color 300ms ease,
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.stage[data-view="enterprise"] .search-submit,
.stage[data-view="talent"] .search-submit,
.stage[data-view="coop"] .search-submit,
.stage[data-view^="enterprise-"] .search-submit,
.stage[data-view^="talent-"] .search-submit,
.stage[data-view^="coop-"] .search-submit {
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
}

.search-panel.is-active .search-submit {
  color: #7c3ea2;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition-delay: 160ms;
}

.search-results {
  position: relative;
  width: 100%;
  height: 429px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.2);
  scrollbar-width: none;
}

.search-results::-webkit-scrollbar {
  display: none;
}

.search-results[hidden] {
  display: none;
}

.search-results::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.92);
  filter: blur(50px);
  transform: scale(1.02);
  pointer-events: none;
  z-index: 0;
}

.search-results-list {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 10px 0 45px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}

.search-results-list::-webkit-scrollbar {
  display: none;
}

.search-results::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
  z-index: 3;
}

.search-result {
  width: 100%;
  min-height: 72px;
  padding: 12px 27px;
  color: #b876e0;
  text-align: left;
  transition: background 160ms ease, color 160ms ease;
}

.search-result + .search-result {
  position: relative;
}

.search-result + .search-result::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 0;
  width: calc(100% - 54px);
  height: 2px;
  background: #f5ebfb;
  opacity: 1;
}

.search-result-title {
  display: block;
  font-size: 23px;
  font-weight: 400;
  line-height: 32px;
}

.search-result-path {
  display: block;
  margin-top: 2px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(124, 62, 162, 0.82);
}

.search-result:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #9d59ce;
}

.search-result:hover .search-result-path {
  color: rgba(124, 62, 162, 0.96);
}

.home-cards {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.home-card {
  position: absolute;
  width: var(--home-card-width);
  height: var(--home-card-height);
  transform-origin: center bottom;
  transition: transform 220ms ease, filter 220ms ease;
}

.home-card::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 554px;
  width: 407px;
  height: 43px;
  border-radius: 999px;
  background: rgba(37, 92, 179, 0.46);
  filter: blur(18px);
  z-index: 0;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    filter 220ms ease;
}

.home-card-enterprise {
  left: 228px;
  top: 329px;
}

.home-card-talent {
  left: 730px;
  top: 329px;
}

.home-card-coop {
  left: 1232px;
  top: 329px;
}

.home-card-frame,
.home-card-illustration,
.home-card-button {
  position: absolute;
  pointer-events: none;
}

.home-card-frame {
  inset: 0;
  background: url("../assets/_E4_B8_80_E7_BA_A7_E9_A1_B5_E9_9D_A2_E8_83_8C_E6_99_AF_E6_A1_86.png") center / 461px 618px no-repeat;
  filter:
    drop-shadow(0 20px 26px rgba(77, 41, 155, 0.14))
    drop-shadow(0 8px 34px rgba(116, 85, 196, 0.18));
  z-index: 1;
  transition: filter 220ms ease;
}

.home-card-illustration {
  left: 54px;
  top: 90px;
  width: 353px;
  height: 390px;
  object-fit: contain;
  z-index: 2;
  transition: transform 220ms ease, filter 220ms ease;
}

.home-card-button {
  left: 92px;
  top: 432px;
  width: 276px;
  height: 104px;
  background: url("../assets/_E4_B8_80_E7_BA_A7_E9_A1_B5_E9_9D_A2_E6_8C_89_E9_92_AE.png") center / 100% 100% no-repeat;
  z-index: 3;
  transition: transform 220ms ease, filter 220ms ease;
}

.home-card-button-label {
  position: absolute;
  left: 69px;
  top: 19px;
  width: 138px;
  height: 49px;
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: -0.02px;
  text-align: center;
  white-space: nowrap;
  z-index: 4;
}

.home-card:hover {
  transform: translateY(-14px) scale(1.02);
  filter: brightness(1.02);
}

.home-card:hover::after {
  opacity: 0.88;
  filter: blur(22px);
  transform: scaleX(1.04);
}

.home-card:hover .home-card-frame {
  filter:
    drop-shadow(0 28px 34px rgba(77, 41, 155, 0.18))
    drop-shadow(0 14px 46px rgba(116, 85, 196, 0.24));
}

.home-card:hover .home-card-illustration {
  transform: translateY(-8px);
  filter: brightness(1.04) saturate(1.04);
}

.home-card:hover .home-card-button {
  transform: translateY(-4px);
  filter:
    drop-shadow(0 10px 20px rgba(67, 71, 212, 0.18))
    brightness(1.03);
}

.category-view {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.group-view {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.category-view-nodes {
  position: absolute;
  inset: 0;
}

.group-view-services {
  position: absolute;
  inset: 0;
}

.category-node {
  position: absolute;
  width: var(--category-node-width);
  height: var(--category-node-height);
  transform-origin: center center;
}

.category-node-visual,
.category-node-button {
  position: absolute;
  display: block;
}

.category-node-visual {
  left: 25px;
  top: 0;
  width: var(--category-visual-size);
  height: var(--category-visual-size);
  transition:
    transform 360ms ease,
    filter 360ms ease;
}

.category-node-illustration {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: transform, filter;
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.18))
    brightness(1.01);
  transition: transform 360ms ease, filter 360ms ease;
}

.category-node-button {
  left: 0;
  top: 200px;
  width: 291px;
  height: 144px;
  background: url("../assets/_E4_BA_8C_E7_BA_A7_E9_A1_B5_E9_9D_A2_E6_8C_89_E9_92_AE.png") center / 100% 100% no-repeat;
  filter:
    drop-shadow(0 16px 30px rgba(160, 130, 255, 0.18))
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.22));
}

.category-node-label {
  position: absolute;
  inset: 25px 0 auto;
  width: 100%;
  color: #b53bff;
  background: linear-gradient(45deg, #A836FF 0%, #8169FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 35px;
  font-weight: 600;
  line-height: 49px;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.28);
}

.category-node:hover .category-node-visual,
.category-node:focus-visible .category-node-visual {
  transform: translateY(-6px);
  filter:
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.5))
    drop-shadow(0 0 48px rgba(182, 91, 255, 0.38));
}

.category-node:hover .category-node-illustration,
.category-node:focus-visible .category-node-illustration {
  transform: scale(1.20);
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.38))
    drop-shadow(0 0 32px rgba(181, 59, 255, 0.3))
    brightness(1.06);
}

.category-node:focus-visible {
  outline: none;
}

.service-bubble {
  position: absolute;
  width: var(--bubble-platform-width, var(--service-platform-width));
  min-height: var(--bubble-node-min-height, 620px);
  overflow: visible;
  z-index: 2;
}

.service-bubble-platform,
.service-bubble-head,
.service-bubble-card,
.service-bubble-icon,
.service-bubble-label,
.service-bubble-detail {
  position: absolute;
  display: block;
}

.service-bubble-platform {
  left: -20px;
  top: 107px;
  width: var(--bubble-platform-width, var(--service-platform-width));
  height: var(--bubble-platform-height, var(--service-platform-height));
  background: url("../assets/_E5_85_89_E6_99_95-_E5_A4_A7.png") center / 100% 100% no-repeat;
  opacity: 0.96;
  filter:
    drop-shadow(0 18px 40px rgba(225, 163, 255, 0.18))
    drop-shadow(0 0 36px rgba(248, 203, 255, 0.12));
  z-index: 0;
}

.service-bubble-head {
  left: 0;
  top: 0;
  width: var(--bubble-card-width, var(--service-bubble-width));
  height: var(--bubble-card-height, var(--service-bubble-height));
  cursor: pointer;
  outline: none;
  z-index: 2;
}

.service-bubble-card {
  left: 0;
  top: 0;
  width: var(--bubble-card-width, var(--service-bubble-width));
  height: var(--bubble-card-height, var(--service-bubble-height));
  background: url("../assets/_E5_A4_A7_E5_AF_B9_E8_AF_9D_E6_A1_86.png") center / 100% 100% no-repeat;
  filter:
    drop-shadow(0 22px 32px rgba(137, 99, 226, 0.12))
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.12));
  z-index: 2;
}

.service-bubble.is-hovered,
.service-bubble.is-selected {
  z-index: 6;
}

.service-bubble.is-hovered .service-bubble-card,
.service-bubble.is-selected .service-bubble-card {
  filter:
    drop-shadow(0 24px 40px rgba(137, 99, 226, 0.18))
    drop-shadow(0 0 26px rgba(255, 255, 255, 0.18))
    brightness(1.02);
}

.service-bubble-icon {
  width: 51px;
  height: 51px;
  object-fit: contain;
  z-index: 3;
}

.service-bubble-label {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  line-height: 49px;
  white-space: nowrap;
  text-align: left;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.22);
  z-index: 3;
}

.service-bubble-detail {
  left: 0;
  top: 0;
  width: var(--bubble-detail-width, var(--service-detail-width));
  min-height: var(--bubble-detail-min-height, calc(var(--service-bubble-height) + 120px));
  padding:
    var(--bubble-detail-padding-top, var(--service-detail-padding-top))
    var(--bubble-detail-padding-right, var(--service-detail-padding-right))
    var(--bubble-detail-padding-bottom, var(--service-detail-padding-bottom))
    var(--bubble-detail-padding-left, var(--service-detail-padding-left));
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(146deg, rgba(248, 234, 255, 0.68) 0%, #fae2ff 100%);
  box-shadow:
    0 18px 40px rgba(151, 111, 219, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 calc(100% - var(--bubble-detail-peek-height, 188px)) 0 round 15px);
  transform: translateY(-14px);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 260ms ease,
    clip-path 460ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 460ms cubic-bezier(0.19, 1, 0.22, 1),
    visibility 0s linear 460ms;
  z-index: 1;
}

.service-bubble.service-bubble-up .service-bubble-detail {
  clip-path: inset(calc(100% - var(--bubble-detail-peek-height, 188px)) 0 0 0 round 15px);
  transform: translateY(14px);
  transform-origin: bottom center;
}

.service-bubble.is-hovered .service-bubble-detail {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0 round 15px);
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 260ms ease,
    clip-path 460ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 460ms cubic-bezier(0.19, 1, 0.22, 1),
    visibility 0s linear 0s;
}

.service-bubble-detail-text {
  margin: 0;
  overflow-y: auto;
  color: #7c3ea2;
  font-size: 27px;
  font-weight: 400;
  line-height: 54px;
  text-align: left;
  letter-spacing: -0.01px;
  word-break: break-word;
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 118, 224, 0.4) transparent;
}

.service-bubble-detail-text::-webkit-scrollbar {
  width: 4px;
}

.service-bubble-detail-text::-webkit-scrollbar-track {
  background: transparent;
}

.service-bubble-detail-text::-webkit-scrollbar-thumb {
  background: rgba(184, 118, 224, 0.4);
  border-radius: 2px;
}

.service-bubble-detail-text::-webkit-scrollbar-thumb:hover {
  background: rgba(184, 118, 224, 0.6);
}

.service-bubble-detail-status-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-bubble-detail-status-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.service-bubble-detail-status-label {
  position: absolute;
  color: #7c3ea2;
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: -0.01px;
  white-space: nowrap;
  text-align: left;
}

.service-modal {
  position: absolute;
  inset: 0;
  z-index: 24;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(46, 20, 92, 0.26);
  backdrop-filter: blur(8px);
}

.service-modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--service-modal-width);
  max-height: 860px;
  padding: 58px 58px 54px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 226, 255, 0.95) 100%);
  box-shadow:
    0 36px 88px rgba(81, 45, 145, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.service-modal-close {
  position: absolute;
  top: 24px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #8b4dc6;
  font-size: 34px;
  line-height: 48px;
  text-align: center;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 12px 24px rgba(133, 84, 201, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.service-modal-close:hover {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.92);
}

.service-modal-title {
  margin: 0 0 28px;
  color: #7c3ea2;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}

.service-modal-field + .service-modal-field {
  margin-top: 24px;
}

.service-modal-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(124, 62, 162, 0.72);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.service-modal-value {
  margin: 0;
  color: #7c3ea2;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.7;
  word-break: break-word;
}

.service-modal-value-path {
  color: rgba(124, 62, 162, 0.88);
}

.service-modal-value-detail {
  max-height: 360px;
  overflow-y: auto;
  white-space: pre-wrap;
  scrollbar-width: thin;
  scrollbar-color: #b876e0 rgba(212, 184, 232, 0.28);
}

.service-modal-value-detail::-webkit-scrollbar {
  width: 6px;
}

.service-modal-value-detail::-webkit-scrollbar-track {
  background: rgba(212, 184, 232, 0.28);
  border-radius: 3px;
}

.service-modal-value-detail::-webkit-scrollbar-thumb {
  background: #b876e0;
  border-radius: 3px;
}

.service-modal-value-detail::-webkit-scrollbar-thumb:hover {
  background: #9d59ce;
}

.group-breadcrumb {
  position: absolute;
  right: 30px;
  bottom: 30px;
  max-width: calc(var(--stage-width) * 1px - 60px);
  color: #f0cbff;
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  text-align: right;
  white-space: nowrap;
  z-index: 4;
}

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