/*
  [로컬 Pretendard 폰트 경로와 굵기 설정]

  1. 업로드 시 style.css는 www/Renewal/ 안에 위치합니다.
     CSS의 url()은 HTML이 아니라 style.css 위치를 기준으로 계산되므로,
     폰트 폴더를 가리키는 아래 상대 경로를 사용합니다.

  2. 현재는 WOFF 파일만 사용합니다. Light=300, Regular=400, SemiBold=600,
     Bold=700, ExtraBold=800으로 연결되어 있습니다.

  3. 폰트 파일명이나 폴더가 바뀌면 아래 src 경로와 new_index.htm 상단의
     preload 경로를 함께 수정합니다. 둘 중 하나만 바꾸면 일부 굵기가 기본 글꼴로 보일 수 있습니다.

  4. font-display: swap은 폰트 로딩 중에도 문구가 먼저 보이게 하는 설정이므로 유지합니다.
*/
@font-face {
  font-family: "Pretendard Local";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../new_gytni/common/fonts/Pretendard-Light.woff") format("woff");
}

@font-face {
  font-family: "Pretendard Local";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../new_gytni/common/fonts/Pretendard-Regular.woff") format("woff");
}

@font-face {
  font-family: "Pretendard Local";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../new_gytni/common/fonts/Pretendard-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "Pretendard Local";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../new_gytni/common/fonts/Pretendard-Bold.woff") format("woff");
}

@font-face {
  font-family: "Pretendard Local";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../new_gytni/common/fonts/Pretendard-ExtraBold.woff") format("woff");
}

/*
  [1·4·5페이지 공통 색상 변경]
  --ink는 주요 제목, --muted는 설명문, --cyan/--blue/--violet은 파형과 강조 색상입니다.
  색상만 조정할 때는 변수 값을 바꾸고 변수 이름은 그대로 유지합니다.
  2페이지 서비스와 3페이지 제품 색상은 아래의 별도 data-* 색상 설정에서 관리합니다.
*/
:root {
  color-scheme: light;
  --ink: #101b37;
  --muted: #61708f;
  --cyan: #18d8ee;
  --blue: #4d7dff;
  --violet: #8c6bff;
  --line: rgba(67, 98, 158, 0.14);
}

.experience,
.experience * {
  box-sizing: border-box;
}

/* 본문 텍스트는 마우스·터치로 선택하고 복사할 수 있게 유지합니다. */
.experience,
.experience * {
  -webkit-user-select: text;
  user-select: text;
}

.experience button,
.experience canvas,
.section-quick-nav,
.page-jump-nav,
.hero-pagination,
.core-service-nav,
.product-orbit-nav {
  -webkit-user-select: none;
  user-select: none;
}

.experience ::selection {
  background: rgba(68, 168, 235, 0.28);
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  overflow: hidden;
}

.experience button,
.experience a {
  -webkit-tap-highlight-color: transparent;
}

.experience {
  --wave-center-y: 59%;
  --core-wave-center-y: 50%;
  --shared-header-height: 0px;
  --shared-header-overlap: 0px;

  position: relative;
  isolation: isolate;
  width: 100%;
  height: calc(100vh - var(--shared-header-height) + 2px);
  height: calc(100svh - var(--shared-header-height) + 2px);
  margin-top: calc(var(--shared-header-overlap) - 2px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  touch-action: pan-y pinch-zoom;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scrollbar-width: none;
  color: var(--ink);
  font-family: "Pretendard Local", Pretendard, "Noto Sans KR", "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  background:
    linear-gradient(rgba(54, 95, 150, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 95, 150, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.97), rgba(247, 250, 255, 0.91) 58%, #f2f6fc 100%);
  background-size: 56px 56px, 56px 56px, auto;
}

/*
  공용 헤더와 푸터는 기존 파일의 내용과 디자인을 그대로 사용합니다.
  script.js가 공용 헤더의 실제 높이를 계산해 본문 높이에 반영하고,
  index.php가 공용 푸터를 이 스크롤 영역의 마지막에 포함합니다.
*/
.experience > .footer-main {
  position: relative !important;
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  scroll-snap-align: none;
}

/* 1페이지의 파형 위치는 유지하고, 2페이지와 3페이지 전환 중에는 중심을 위로 이동합니다. */
.experience.is-core-section,
.experience.is-product-section {
  --wave-center-y: var(--core-wave-center-y);
}

.experience::-webkit-scrollbar {
  display: none;
}

.panel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  isolation: isolate;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.panel--intro {
  background: transparent;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}

.panel--intro.is-dragging {
  cursor: grabbing;
}

.panel--core {
  z-index: 1;
  color: #f7f5ff;
  touch-action: pan-x pinch-zoom;
  background:
    radial-gradient(circle at 50% 50%, rgba(55, 113, 209, 0.18), transparent 31%),
    radial-gradient(circle at 22% 22%, rgba(45, 191, 218, 0.1), transparent 28%),
    linear-gradient(145deg, #070b14 0%, #050810 55%, #09091a 100%);
}

.panel--core::before,
.panel--core::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.panel--core::before {
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(rgba(158, 205, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 205, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
}

.panel--core::after {
  z-index: 1;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(4, 4, 8, 0.12) 46%, rgba(3, 3, 7, 0.78) 100%);
}

.core-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(53, 220, 239, 0.1), transparent 23%),
    radial-gradient(circle at 50% 50%, rgba(91, 91, 255, 0.1), transparent 42%);
}

.core-copy {
  position: relative;
  z-index: 7;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: clamp(94px, 13vh, 142px);
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  will-change: opacity, transform;
}

.core-kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 0 0 22px;
  color: rgba(183, 221, 255, 0.66);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.core-kicker span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4be1ef;
  box-shadow: 0 0 14px #4be1ef;
}

.core-copy h2 {
  max-width: 1060px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.05em;
  overflow-wrap: normal;
  word-break: keep-all;
  text-wrap: balance;
}

.core-copy h2 span {
  display: block;
  margin-bottom: 8px;
  color: rgba(230, 244, 255, 0.74);
  font-size: 72%;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.042em;
  word-break: keep-all;
  text-wrap: balance;
}

.core-copy h2 strong {
  display: block;
  margin-top: 0;
  color: transparent;
  font-weight: 700;
  line-height: inherit;
  word-break: keep-all;
  text-wrap: balance;
  background: linear-gradient(95deg, #ffffff 6%, #9feaf4 45%, #8c7dff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.core-description {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(226, 220, 239, 0.54);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.core-index {
  position: absolute;
  z-index: 7;
  right: clamp(24px, 5vw, 84px);
  bottom: 46px;
  margin: 0;
  color: rgba(174, 213, 255, 0.34);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

/*
  [2페이지 서비스별 강조 색상 설정]
  data-core-service="0", "1", "2"는 2-1, 2-2, 2-3 순서와 연결됩니다.
  --service-accent는 실제 강조 색상이고 --service-accent-rgb는 같은 색의 RGB 숫자입니다.
  두 값이 서로 다른 색이면 투명 배경과 테두리 색이 어색해지므로 반드시 같은 색으로 맞춥니다.

  네 번째 서비스를 추가할 때의 예시
  .experience[data-core-service="3"] {
    --service-accent: #52d6ff;
    --service-accent-rgb: 82, 214, 255;
  }
*/
.experience[data-core-service="0"] {
  --service-accent: #48e3ef;
  --service-accent-rgb: 72, 227, 239;
}

.experience[data-core-service="1"] {
  --service-accent: #5a96ff;
  --service-accent-rgb: 90, 150, 255;
}

.experience[data-core-service="2"] {
  --service-accent: #8e75ff;
  --service-accent-rgb: 142, 117, 255;
}

.core-background::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--service-accent-rgb), 0.1), transparent 25%),
    linear-gradient(110deg, rgba(var(--service-accent-rgb), 0.035), transparent 33%);
  transition: background 600ms ease;
}

.core-service-copy {
  position: absolute;
  top: 0;
  left: clamp(40px, 6.5vw, 112px);
  width: min(520px, 39vw);
  margin: 0;
  padding-top: clamp(98px, 14vh, 148px);
  text-align: left;
  pointer-events: auto;
}

.hero-copy,
.core-service-copy,
.product-intro,
.product-slide,
.news-shell,
.clients-shell {
  cursor: text;
}

.core-service-slides {
  display: grid;
  width: 100%;
}

.core-service-slide {
  position: relative;
  grid-area: 1 / 1;
  align-self: start;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  filter: blur(7px);
  transform: translate3d(0, 30px, 0);
  clip-path: inset(0 0 38% 0);
  transition:
    opacity 300ms ease,
    filter 420ms ease,
    transform 500ms cubic-bezier(0.18, 0.72, 0.16, 1),
    clip-path 500ms cubic-bezier(0.18, 0.72, 0.16, 1),
    visibility 0s linear 500ms;
}

.core-service-slide::before {
  position: absolute;
  z-index: 0;
  top: -54px;
  left: -20px;
  content: attr(data-service-number);
  color: rgba(var(--service-accent-rgb), 0.055);
  font-size: clamp(86px, 10vw, 148px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.core-service-slide > * {
  position: relative;
  z-index: 1;
}

.core-service-slide.is-current {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
  clip-path: inset(0 0 0 0);
  transition-delay: 80ms, 80ms, 80ms, 80ms, 0s;
}

.core-service-slide.is-leaving {
  z-index: 1;
  opacity: 0;
  visibility: visible;
  filter: blur(8px);
  transform: translate3d(0, -24px, 0);
  clip-path: inset(30% 0 0 0);
  transition-delay: 0s;
}

/* 2페이지의 설명과 우측 선택 메뉴를 화면 중앙보다 조금 위쪽에 나란히 배치합니다. */
.core-service-slide--centered {
  top: calc(45svh - clamp(98px, 14vh, 148px) - 150px);
}

.core-service-eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 22px;
  color: rgba(185, 215, 243, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.core-service-eyebrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 22px;
  padding: 0 8px;
  border: 1px solid rgba(var(--service-accent-rgb), 0.3);
  border-radius: 999px;
  background: rgba(var(--service-accent-rgb), 0.07);
  color: var(--service-accent);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.core-service-copy h2 {
  max-width: 540px;
  margin: 0;
  color: rgba(246, 250, 255, 0.94);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.052em;
  word-break: keep-all;
  text-wrap: balance;
}

.core-service-copy h2 strong {
  display: inline;
  margin: 0;
  color: transparent;
  font-weight: 750;
  line-height: inherit;
  background: linear-gradient(95deg, #ffffff 0%, var(--service-accent) 68%, #9c8dff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  word-break: keep-all;
}

.core-service-copy .core-description {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(211, 224, 241, 0.6);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.75;
  letter-spacing: -0.018em;
  word-break: keep-all;
  text-wrap: pretty;
}

.core-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.core-service-tags li {
  padding: 9px 14px;
  border: 1px solid rgba(var(--service-accent-rgb), 0.28);
  border-radius: 6px;
  background: rgba(var(--service-accent-rgb), 0.08);
  color: rgba(222, 239, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.core-service-nav {
  position: absolute;
  z-index: 12;
  top: 47%;
  right: clamp(24px, 5vw, 82px);
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: min(270px, 24vw);
  transform: translateY(-50%);
}

.core-service-nav::before {
  position: absolute;
  top: 12px;
  right: 3px;
  bottom: 12px;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, rgba(120, 184, 235, 0.16), transparent);
}

.core-service-nav-button {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr 7px;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 6px 0 6px 8px;
  border: 0;
  background: transparent;
  color: rgba(191, 211, 233, 0.42);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 260ms ease, transform 360ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.core-service-nav-index {
  color: rgba(149, 187, 221, 0.34);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: color 260ms ease;
}

.core-service-nav-label {
  overflow: hidden;
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.core-service-nav-button i {
  position: relative;
  z-index: 1;
  display: block;
  width: 4px;
  height: 4px;
  margin-left: auto;
  border-radius: 999px;
  background: rgba(97, 189, 234, 0.42);
  transition: height 320ms ease, background 260ms ease, box-shadow 260ms ease;
}

.core-service-nav-button:hover,
.core-service-nav-button:focus-visible,
.core-service-nav-button.is-current {
  color: rgba(242, 248, 255, 0.92);
  outline: none;
  transform: translateX(-6px);
}

.core-service-nav-button.is-current .core-service-nav-index {
  color: var(--service-accent);
}

.core-service-nav-button.is-current i {
  height: 22px;
  background: var(--service-accent);
  box-shadow: 0 0 14px rgba(var(--service-accent-rgb), 0.48);
}

/*
  [3페이지 제품 색상과 행성 추가 방법]

  index.htm에 네 번째 제품을 추가했다면 아래 예시를 이 제품 색상 영역에 추가합니다.
  data-product 값은 왼쪽 버튼의 data-product-slide 값과 같은 0부터 시작하는 번호입니다.

  .experience[data-product="3"] {
    --product-accent: #4fd6ff;
    --product-accent-soft: #187da8;
    --product-accent-rgb: 79, 214, 255;
    --product-deep: #061b29;
  }

  새 제품만의 행성 배경을 사용하는 경우:

  1. index.htm의 product-space 안에 다음 배경 요소를 추가합니다.
     <div class="product-planet product-planet-new"></div>

  2. 아래 기존 product-planet 색상 선언 옆에 다음처럼 색상을 지정합니다.
     .product-planet-new { --planet-rgb: 79, 214, 255; --planet-color: #4fd6ff; }

  3. 아래의 선택 제품 행성 표시 선택자 목록에 다음 한 줄을 쉼표로 연결합니다.
     .experience[data-product="3"].is-product-section .product-planet-new

  기존 행성 색을 재사용하려면 새 배경 요소를 만들지 않고, 3번 선택자만 기존 행성 클래스에
  연결해도 됩니다. 제품이 10개인 경우 data-product 값은 0부터 9까지 순서대로 사용합니다.
*/

.experience[data-product="0"] {
  --product-accent: #a76cff;
  --product-accent-soft: #6736d8;
  --product-accent-rgb: 167, 108, 255;
  --product-deep: #120827;
}

.experience[data-product="1"] {
  --product-accent: #ff654c;
  --product-accent-soft: #ca351f;
  --product-accent-rgb: 255, 101, 76;
  --product-deep: #290a08;
}

.experience[data-product="2"] {
  --product-accent: #e8bc43;
  --product-accent-soft: #ac7915;
  --product-accent-rgb: 232, 188, 67;
  --product-deep: #261c06;
}

.panel--products {
  z-index: 2;
  color: #f7fbff;
  background: #030713;
  cursor: grab;
  touch-action: pinch-zoom;
}

.panel--products.is-dragging {
  cursor: grabbing;
}

.product-space,
.product-starfield,
.product-color-sweep,
.product-planet,
.product-planet::before,
.product-planet::after {
  position: absolute;
  pointer-events: none;
}

.product-space {
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 44%, rgba(44, 78, 120, 0.08), transparent 31%),
    linear-gradient(145deg, #02050d 0%, #040713 58%, #02050c 100%);
}

.product-hub-morph {
  --hub-morph-target-x: 50%;
  --hub-morph-target-y: 58%;
  --hub-morph-size: 148px;
  --hub-morph-from-x: 0px;
  --hub-morph-from-y: 0px;
  --hub-morph-from-scale: 0.4;

  position: absolute;
  z-index: 14;
  top: var(--hub-morph-target-y);
  left: var(--hub-morph-target-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--hub-morph-size);
  height: var(--hub-morph-size);
  min-width: var(--hub-morph-size);
  min-height: var(--hub-morph-size);
  max-width: var(--hub-morph-size);
  max-height: var(--hub-morph-size);
  flex: 0 0 var(--hub-morph-size);
  aspect-ratio: 1;
  isolation: isolate;
  border: 1px solid rgba(var(--product-accent-rgb), 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 25%, rgba(255, 255, 255, 0.42), rgba(213, 237, 250, 0.08) 14%, transparent 27%),
    radial-gradient(circle at 48% 42%, rgba(30, 55, 78, 0.92), rgba(3, 9, 20, 0.97) 72%);
  box-shadow:
    inset -18px -20px 34px rgba(0, 0, 0, 0.4),
    inset 0 0 28px rgba(var(--product-accent-rgb), 0.14),
    0 0 18px rgba(var(--product-accent-rgb), 0.18),
    0 0 46px rgba(var(--product-accent-rgb), 0.08);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, opacity;
}

.product-hub-morph::before {
  position: absolute;
  z-index: 0;
  inset: 3px;
  border-radius: 50%;
  content: "";
  background-color: rgba(var(--product-accent-rgb), 0.13);
  box-shadow:
    inset 9px 7px 18px rgba(255, 255, 255, 0.05),
    inset -18px -20px 32px rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

.product-hub-morph::after {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(var(--product-accent-rgb), 0.58);
  border-radius: 50%;
  content: "";
  opacity: 0;
}

.product-hub-logo {
  position: absolute;
  z-index: 1;
  top: 43%;
  left: 50%;
  display: block;
  flex: 0 0 auto;
  width: clamp(64px, 5.8vw, 86px);
  height: clamp(14px, 1.25vw, 18px);
  overflow: hidden;
  transform: translate3d(-50%, -50%, 0);
}

.product-hub-logo > img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 170%;
  max-width: none;
  height: auto;
  clip-path: inset(39% 22% 46% 19%);
  filter: drop-shadow(0 0 5px rgba(224, 242, 255, 0.14));
  transform: translate3d(-50%, -46%, 0);
}

.product-hub-copy {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.product-hub-copy > small {
  position: absolute;
  z-index: 1;
  top: calc(43% + 15px);
  left: 50%;
  width: max-content;
  margin: 0;
  font-size: 7px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  transform: translate3d(-50%, 0, 0);
}

.product-hub-morph > .product-hub-copy {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
}

.product-hub-morph .product-hub-copy > small {
  color: rgba(156, 190, 219, 0.48);
}

.experience.is-planet-transforming .product-hub-morph {
  animation: productHubMorph 1420ms cubic-bezier(0.16, 0.78, 0.14, 1) both;
}

.experience.is-planet-transforming .product-hub-morph::after {
  animation: productHubMorphRipple 1080ms 120ms ease-out both;
}

.experience.is-planet-transforming .product-hub-morph::before {
  animation: productHubMorphTint 1420ms ease both;
}

.experience.is-planet-transforming .product-hub-morph > .product-hub-copy {
  animation: productHubMorphCopy 1420ms cubic-bezier(0.22, 0.72, 0.22, 1) both;
}

.product-starfield {
  /* 3페이지 별빛을 다시 표시하려면 아래 display: none; 한 줄만 제거합니다. */
  display: none;
  inset: -8%;
  opacity: 0.28;
}

.product-starfield--far {
  background-image:
    radial-gradient(circle, rgba(203, 233, 255, 0.62) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(124, 176, 220, 0.44) 0 0.8px, transparent 1.3px);
  background-position: 7px 11px, 58px 39px;
  background-size: 83px 91px, 127px 113px;
}

.product-starfield--near {
  background-image:
    radial-gradient(circle, rgba(237, 248, 255, 0.76) 0 1.1px, transparent 1.7px),
    radial-gradient(circle, rgba(148, 199, 235, 0.5) 0 1px, transparent 1.6px);
  background-position: 31px 17px, 94px 76px;
  background-size: 191px 173px, 239px 211px;
  opacity: 0.25;
}

.product-color-sweep {
  z-index: 2;
  inset: -35% -25%;
  background: linear-gradient(112deg, transparent 35%, rgba(var(--product-accent-rgb), 0.16) 48%, transparent 59%);
  opacity: 0;
  transform: translate3d(-36%, 0, 0) rotate(-4deg);
}

.product-planet {
  --planet-rgb: 167, 108, 255;
  --planet-color: #a76cff;

  z-index: 1;
  top: 84%;
  left: 72%;
  width: max(800px, 76vw);
  height: max(500px, 46vw);
  border: 1px solid rgba(var(--planet-rgb), 0.44);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 52% -14%,
    rgba(var(--planet-rgb), 0.36) 0%,
    rgba(var(--planet-rgb), 0.13) 24%,
    rgba(4, 7, 15, 0.97) 58%,
    #01030a 76%
  );
  box-shadow:
    inset 0 32px 76px rgba(var(--planet-rgb), 0.16),
    inset 0 1px 3px rgba(255, 255, 255, 0.26),
    0 -9px 54px rgba(var(--planet-rgb), 0.24),
    0 -1px 12px rgba(var(--planet-rgb), 0.5);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) rotate(-17deg) scale(1);
  transform-origin: 50% 0%;
  transition:
    opacity 620ms ease,
    transform 1000ms cubic-bezier(0.16, 0.76, 0.12, 1);
  will-change: opacity, transform;
}

.product-planet::before {
  top: -2px;
  right: 8%;
  left: 8%;
  height: 3px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), var(--planet-color), rgba(255, 255, 255, 0.32), transparent);
  opacity: 0.68;
  box-shadow: 0 0 24px rgba(var(--planet-rgb), 0.58);
}

.product-planet::after {
  top: -14%;
  left: 50%;
  width: 60%;
  height: 34%;
  border-radius: 50%;
  content: "";
  background: radial-gradient(ellipse, rgba(var(--planet-rgb), 0.25), transparent 70%);
  opacity: 0.6;
  transform: translateX(-50%);
}

.product-planet--top { --planet-rgb: 167, 108, 255; --planet-color: #a76cff; }
.product-planet--pcs { --planet-rgb: 255, 101, 76; --planet-color: #ff654c; }
.product-planet--fts { --planet-rgb: 232, 188, 67; --planet-color: #e8bc43; }

.experience:not(.is-product-section) .product-planet {
  transform: translate3d(-50%, -50%, 0) rotate(-17deg) scale(0.16);
}

.experience[data-product="0"].is-product-section .product-planet--top,
.experience[data-product="1"].is-product-section .product-planet--pcs,
.experience[data-product="2"].is-product-section .product-planet--fts {
  opacity: 0.92;
  transform: translate3d(-50%, -50%, 0) rotate(-17deg) scale(1);
}

.experience.is-product-shifting .product-color-sweep {
  animation: productColorSweep 720ms cubic-bezier(0.18, 0.75, 0.2, 1) both;
}

.product-intro,
.product-layout,
.product-index {
  position: absolute;
  z-index: 5;
}

.product-intro {
  top: clamp(86px, 13vh, 126px);
  left: clamp(34px, 6.7vw, 116px);
  width: min(720px, 54vw);
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 650ms ease 160ms, transform 850ms cubic-bezier(0.2, 0.75, 0.2, 1) 120ms;
}

.product-kicker {
  display: flex;
  gap: 11px;
  align-items: center;
  margin: 0 0 16px;
  color: rgba(205, 229, 248, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.product-kicker span {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 20px;
  border: 1px solid rgba(var(--product-accent-rgb), 0.36);
  border-radius: 999px;
  color: var(--product-accent);
  letter-spacing: 0.06em;
}

.product-intro h2 {
  margin: 0;
  color: rgba(247, 251, 255, 0.9);
  font-size: clamp(21px, 2vw, 34px);
  font-weight: 670;
  line-height: 1.34;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.product-intro h2 span {
  display: block;
  margin-bottom: 3px;
  color: rgba(210, 232, 248, 0.78);
  font-size: 60%;
  font-weight: 520;
  letter-spacing: -0.01em;
}

.experience.is-product-section .product-intro {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 3페이지 왼쪽 상단 소개는 유지하고, 제품 선택과 상세 영역만 위로 올립니다. */
.product-layout {
  right: clamp(32px, 6.5vw, 112px);
  bottom: clamp(96px, 14vh, 142px);
  left: clamp(32px, 6.5vw, 112px);
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(46px, 7vw, 124px);
  align-items: center;
  height: min(58vh, 520px);
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  transition: opacity 700ms ease 260ms, transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1) 220ms;
}

.experience.is-product-section .product-layout {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.product-orbit-nav {
  --orbit-center-x: clamp(78px, 7.4vw, 106px);
  --orbit-size: clamp(258px, 22vw, 326px);
  --orbit-radius: clamp(129px, 11vw, 163px);

  position: relative;
  justify-self: center;
  width: min(520px, 42vw);
  height: min(380px, 48vh);
  overflow: hidden;
  contain: layout paint;
}

.product-orbit-nav::before {
  position: absolute;
  top: 50%;
  left: var(--orbit-center-x);
  width: clamp(142px, 12vw, 176px);
  aspect-ratio: 1;
  border: 1px solid rgba(127, 189, 226, 0.08);
  border-right-color: rgba(var(--product-accent-rgb), 0.2);
  border-radius: 50%;
  content: "";
  box-shadow: 12px 0 36px rgba(var(--product-accent-rgb), 0.08);
  transform: translate3d(-50%, -50%, 0);
  opacity: 1;
  transition: border-color 500ms ease, box-shadow 500ms ease, opacity 360ms ease;
}

.product-orbit-hub {
  --product-hub-size: clamp(120px, 10.2vw, 152px);

  position: absolute;
  top: 50%;
  left: var(--orbit-center-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--product-hub-size);
  height: var(--product-hub-size);
  min-width: var(--product-hub-size);
  min-height: var(--product-hub-size);
  max-width: var(--product-hub-size);
  max-height: var(--product-hub-size);
  flex: 0 0 var(--product-hub-size);
  aspect-ratio: 1;
  isolation: isolate;
  border: 1px solid rgba(var(--product-accent-rgb), 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 25%, rgba(255, 255, 255, 0.42), rgba(213, 237, 250, 0.08) 14%, transparent 27%),
    radial-gradient(circle at 48% 42%, rgba(30, 55, 78, 0.92), rgba(3, 9, 20, 0.97) 72%);
  box-shadow:
    inset -18px -20px 34px rgba(0, 0, 0, 0.4),
    inset 0 0 28px rgba(var(--product-accent-rgb), 0.14),
    0 0 18px rgba(var(--product-accent-rgb), 0.18),
    0 0 46px rgba(var(--product-accent-rgb), 0.08);
  text-align: center;
  transform: translate3d(-50%, -50%, 0);
  opacity: 1;
  transition:
    border-color 720ms ease,
    box-shadow 720ms ease,
    opacity 360ms ease;
}

.product-orbit-hub::before,
.product-orbit-hub::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.product-orbit-hub::before {
  z-index: 0;
  inset: 3px;
  background-color: rgba(var(--product-accent-rgb), 0.13);
  box-shadow:
    inset 9px 7px 18px rgba(255, 255, 255, 0.05),
    inset -18px -20px 32px rgba(0, 0, 0, 0.32);
  transition: background-color 720ms ease;
}

.product-orbit-hub::after {
  z-index: -1;
  inset: -7px;
  border: 1px solid rgba(var(--product-accent-rgb), 0.14);
  background-color: rgba(var(--product-accent-rgb), 0.035);
  box-shadow:
    0 0 17px rgba(var(--product-accent-rgb), 0.14),
    0 0 38px rgba(var(--product-accent-rgb), 0.07);
  opacity: 0.72;
  transform: scale(0.96);
  transition:
    border-color 720ms ease,
    background-color 720ms ease,
    box-shadow 720ms ease;
}

.experience.is-product-shifting .product-orbit-hub::after {
  animation: productHubSolarPulse 720ms ease both;
}

.experience.is-planet-transforming .product-orbit-hub {
  animation: productOrbitHubReveal 620ms 790ms cubic-bezier(0.2, 0.76, 0.2, 1) both;
}

.experience.is-planet-transforming .product-orbit-hub > .product-hub-copy {
  animation: productOrbitHubCopyReveal 560ms 900ms cubic-bezier(0.2, 0.76, 0.2, 1) both;
}

.experience.is-planet-transforming .product-orbit-nav::before {
  animation: productOrbitRingReveal 680ms 900ms cubic-bezier(0.2, 0.76, 0.2, 1) both;
}

.experience.is-planet-transforming .product-orbit-track {
  animation: productOrbitTrackReveal 960ms 990ms cubic-bezier(0.18, 0.78, 0.18, 1) both;
}

.product-orbit-hub > .product-hub-copy {
  inset: 0;
}

.product-orbit-hub .product-hub-copy > small {
  color: rgba(188, 216, 238, 0.68);
  font-size: 8px;
}

.product-orbit-track {
  position: absolute;
  top: 50%;
  left: var(--orbit-center-x);
  width: var(--orbit-size);
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-right-color: rgba(120, 184, 223, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle at 100% 50%, rgba(var(--product-accent-rgb), 0.13), transparent 5%);
  box-shadow: 18px 0 48px rgba(var(--product-accent-rgb), 0.08);
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: border-color 500ms ease, box-shadow 500ms ease, opacity 360ms ease;
}

.experience.is-product-shifting .product-orbit-track {
  animation: productOrbitTrackPulse 640ms 30ms cubic-bezier(0.18, 0.78, 0.18, 1) both;
}

.product-orbit-wave {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: var(--orbit-center-x);
  width: var(--orbit-size);
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-right-color: rgba(var(--product-accent-rgb), 0.84);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(29% 0 29% 48%);
  filter: drop-shadow(0 0 7px rgba(var(--product-accent-rgb), 0.76));
  transform: translate3d(-50%, -50%, 0) rotate(68deg) scale(0.97);
  will-change: transform, opacity;
}

.product-orbit-wave::before {
  position: absolute;
  top: 50%;
  right: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #fff;
  box-shadow:
    0 0 8px 2px rgba(255, 255, 255, 0.72),
    0 0 18px 6px rgba(var(--product-accent-rgb), 0.54);
  transform: translateY(-50%);
}

.experience.is-product-shifting[data-product-direction="next"] .product-orbit-wave {
  animation: productOrbitWaveNext 640ms 30ms cubic-bezier(0.18, 0.76, 0.18, 1) both;
}

.experience.is-product-shifting[data-product-direction="previous"] .product-orbit-wave {
  animation: productOrbitWavePrevious 640ms 30ms cubic-bezier(0.18, 0.76, 0.18, 1) both;
}

.product-orbit-item {
  --orbit-x: -46px;
  --orbit-y: 0px;
  --orbit-scale: 0.72;
  --orbit-opacity: 0;

  position: absolute;
  top: 50%;
  right: 8px;
  left: calc(var(--orbit-center-x) + var(--orbit-radius) - 5px);
  z-index: 2;
  display: grid;
  grid-template-columns: 14px 28px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 10px 16px 10px 0;
  border: 0;
  border-radius: 0 12px 12px 0;
  background: transparent;
  color: rgba(202, 224, 241, 0.72);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(var(--orbit-x), calc(-50% + var(--orbit-y)), 0) scale(var(--orbit-scale));
  transform-origin: left center;
  transition:
    color 280ms ease,
    opacity 300ms ease,
    transform 520ms cubic-bezier(0.16, 0.8, 0.2, 1),
    visibility 0s linear 520ms;
  will-change: transform, opacity;
}

.product-orbit-item[data-orbit-position="current"] {
  --orbit-x: 18px;
  --orbit-scale: 1.08;
  --orbit-opacity: 1;
  opacity: var(--orbit-opacity);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.product-orbit-item[data-orbit-position="near-before"],
.product-orbit-item[data-orbit-position="near-after"] {
  --orbit-x: -8px;
  --orbit-scale: 0.9;
  --orbit-opacity: 0.68;
  opacity: var(--orbit-opacity);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.product-orbit-item[data-orbit-position="near-before"] { --orbit-y: -96px; }
.product-orbit-item[data-orbit-position="near-after"] { --orbit-y: 96px; }

.product-orbit-item[data-orbit-position="far-before"],
.product-orbit-item[data-orbit-position="far-after"] {
  --orbit-x: -46px;
  --orbit-scale: 0.78;
  --orbit-opacity: 0.36;
  opacity: var(--orbit-opacity);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.product-orbit-item[data-orbit-position="far-before"] { --orbit-y: -154px; }
.product-orbit-item[data-orbit-position="far-after"] { --orbit-y: 154px; }

.product-orbit-item[data-orbit-position="hidden-before"] {
  --orbit-x: -86px;
  --orbit-y: -214px;
}

.product-orbit-item[data-orbit-position="hidden-after"] {
  --orbit-x: -86px;
  --orbit-y: 214px;
}

.experience.is-planet-transforming .product-orbit-item[data-orbit-position="far-before"],
.experience.is-planet-transforming .product-orbit-item[data-orbit-position="far-after"] {
  animation: productOrbitItemReveal 720ms 1070ms cubic-bezier(0.16, 0.8, 0.2, 1) both;
}

.experience.is-planet-transforming .product-orbit-item[data-orbit-position="near-before"],
.experience.is-planet-transforming .product-orbit-item[data-orbit-position="near-after"] {
  animation: productOrbitItemReveal 720ms 1150ms cubic-bezier(0.16, 0.8, 0.2, 1) both;
}

.experience.is-planet-transforming .product-orbit-item[data-orbit-position="current"] {
  animation: productOrbitItemReveal 720ms 1230ms cubic-bezier(0.16, 0.8, 0.2, 1) both;
}

.product-orbit-item::before {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-left: 0;
  border-radius: inherit;
  content: "";
  background: linear-gradient(90deg, rgba(var(--product-accent-rgb), 0.09), transparent 78%);
  opacity: 0;
  transition: opacity 320ms ease, border-color 320ms ease;
}

.product-orbit-item > i {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  margin-left: -4px;
  border-radius: 50%;
  background: rgba(159, 207, 236, 0.68);
  box-shadow: 0 0 0 4px rgba(95, 169, 214, 0.08);
  transition: background 300ms ease, box-shadow 360ms ease, transform 360ms ease;
}

.product-orbit-index {
  position: relative;
  z-index: 1;
  color: rgba(163, 200, 226, 0.58);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  transition: color 320ms ease;
}

.product-orbit-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-orbit-copy strong {
  font-size: clamp(17px, 1.3vw, 22px);
  font-weight: 680;
  letter-spacing: 0.055em;
}

.product-orbit-copy small {
  color: rgba(178, 207, 229, 0.58);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 320ms ease;
}

.product-orbit-item:hover,
.product-orbit-item:focus-visible {
  color: rgba(239, 247, 253, 0.88);
  outline: none;
}

.product-orbit-item.is-current {
  color: #fff;
}

.product-orbit-item.is-current::before {
  border-color: transparent;
  background: transparent;
  opacity: 0;
}

.product-orbit-item.is-current > i {
  background: #fff;
  box-shadow: 0 0 12px 3px rgba(var(--product-accent-rgb), 0.72);
  transform: scale(1.12);
}

.product-orbit-item.is-current .product-orbit-index {
  color: var(--product-accent);
}

.product-orbit-item.is-current .product-orbit-copy small {
  color: rgba(220, 235, 247, 0.8);
}

.product-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  min-width: 0;
  min-height: 310px;
}

.product-slides {
  display: grid;
  min-width: 0;
}

.product-slide {
  grid-area: 1 / 1;
  align-self: center;
  width: min(590px, 100%);
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(38px, 0, 0) scale(0.985);
  transition:
    opacity 300ms ease,
    transform 560ms cubic-bezier(0.18, 0.76, 0.18, 1),
    visibility 0s linear 560ms;
  will-change: opacity, transform;
}

.product-slide.is-current {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 80ms, 80ms, 0s;
}

.product-slide.is-leaving-left {
  visibility: visible;
  opacity: 0;
  transform: translate3d(-46px, 0, 0) scale(0.98);
  transition-delay: 0s;
}

.product-slide.is-leaving-right {
  visibility: visible;
  opacity: 0;
  transform: translate3d(46px, 0, 0) scale(0.98);
  transition-delay: 0s;
}

.product-slide.is-entering-left {
  visibility: visible;
  opacity: 0;
  transform: translate3d(-38px, 0, 0) scale(0.985);
}

.product-slide.is-entering-right {
  visibility: visible;
  opacity: 0;
  transform: translate3d(38px, 0, 0) scale(0.985);
}

.product-number {
  margin: 0 0 15px;
  color: var(--product-accent);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-slide h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 0 34px rgba(var(--product-accent-rgb), 0.22);
}

.product-slide h4 {
  margin: 22px 0 0;
  color: rgba(244, 249, 255, 0.91);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 640;
  letter-spacing: -0.035em;
}

.product-description {
  max-width: 520px;
  margin: 19px auto 0;
  color: rgba(218, 232, 246, 0.78);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.68;
  letter-spacing: -0.018em;
  word-break: keep-all;
  text-wrap: pretty;
}

.product-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  margin-top: 25px;
  padding: 11px 18px 11px 20px;
  border: 1px solid rgba(var(--product-accent-rgb), 0.54);
  border-radius: 999px;
  background: rgba(2, 8, 18, 0.35);
  color: rgba(244, 250, 255, 0.9);
  font-size: 11px;
  font-weight: 650;
  text-decoration: none;
  transition: background 300ms ease, border-color 300ms ease, box-shadow 350ms ease, transform 300ms ease;
}

.product-link i {
  font-style: normal;
  color: var(--product-accent);
}

.product-link:hover,
.product-link:focus-visible {
  border-color: var(--product-accent);
  background: rgba(var(--product-accent-rgb), 0.12);
  box-shadow: 0 0 24px rgba(var(--product-accent-rgb), 0.18);
  outline: none;
  transform: translateY(-2px);
}

.product-arrow {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(160, 200, 232, 0.22);
  border-radius: 50%;
  background: rgba(3, 8, 18, 0.2);
  color: rgba(224, 239, 250, 0.7);
  font-family: inherit;
  cursor: pointer;
  transition: color 280ms ease, border-color 280ms ease, background 280ms ease, transform 280ms ease;
}

.product-arrow span {
  font-size: 16px;
  transform: translateY(-1px);
}

.product-arrow:hover,
.product-arrow:focus-visible {
  border-color: rgba(var(--product-accent-rgb), 0.54);
  background: rgba(var(--product-accent-rgb), 0.09);
  color: #fff;
  outline: none;
  transform: scale(1.08);
}

.product-arrow:disabled {
  border-color: rgba(160, 200, 232, 0.06);
  color: rgba(213, 232, 246, 0.16);
  cursor: default;
  opacity: 0.65;
  transform: none;
}

.product-index {
  right: clamp(24px, 5vw, 84px);
  bottom: 56px;
  margin: 0;
  color: rgba(174, 213, 255, 0.26);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.product-index span {
  color: var(--product-accent);
}

.panel--news {
  z-index: 3;
  color: #172542;
  background:
    radial-gradient(circle at 18% 18%, rgba(65, 209, 232, 0.12), transparent 29%),
    radial-gradient(circle at 88% 74%, rgba(111, 96, 255, 0.1), transparent 32%),
    linear-gradient(145deg, #f9fcff 0%, #eef5fb 52%, #fbfcff 100%);
}

.panel--news::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(67, 105, 157, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 105, 157, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.news-atmosphere,
.news-atmosphere-ring {
  position: absolute;
  pointer-events: none;
}

.news-atmosphere {
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.news-atmosphere::before {
  position: absolute;
  top: 13%;
  right: 8%;
  width: min(420px, 34vw);
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(73, 197, 224, 0.14), transparent 67%);
}

.news-atmosphere-ring {
  border: 1px solid rgba(70, 149, 207, 0.12);
  border-radius: 50%;
}

.news-atmosphere-ring--one {
  right: -12vw;
  bottom: -38vw;
  width: 75vw;
  aspect-ratio: 1;
}

.news-atmosphere-ring--two {
  right: -3vw;
  bottom: -29vw;
  width: 58vw;
  aspect-ratio: 1;
  border-color: rgba(102, 93, 221, 0.1);
}

.news-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(24px, 4vh, 42px);
  /* 우측 바로가기 탭과 카드가 겹치지 않도록 데스크톱 안전 여백을 확보합니다. */
  width: min(1240px, calc(100% - 176px));
  height: 100%;
  margin: 0 auto;
  padding: clamp(42px, 6vh, 64px) 0 clamp(82px, 12vh, 112px);
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 720ms ease 100ms,
    transform 900ms cubic-bezier(0.18, 0.76, 0.18, 1) 80ms;
}

.experience.is-news-section .news-shell {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.experience.is-news-section {
  scroll-snap-type: none;
}

.news-header {
  display: grid;
  /* 아래 뉴스 보드와 같은 열을 사용해 우측 안내 문구의 시작선을 카드 열과 맞춥니다. */
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  column-gap: 14px;
  align-items: end;
}

.news-kicker,
.clients-kicker {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 15px;
  color: rgba(61, 91, 131, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-kicker span,
.clients-kicker span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 20px;
  border: 1px solid rgba(44, 170, 214, 0.34);
  border-radius: 999px;
  color: rgba(30, 139, 194, 0.9);
  letter-spacing: 0.04em;
}

.news-kicker {
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.news-kicker span {
  width: 34px;
  height: 24px;
  font-size: 9px;
}

.news-header h2 {
  margin: 0;
  color: #15213d;
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 680;
  line-height: 1.16;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.news-header > p:last-child {
  max-width: 430px;
  margin: 0 0 4px;
  color: rgba(55, 76, 112, 0.66);
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.7;
  word-break: keep-all;
}

.news-board {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 14px;
  min-height: 0;
}

.news-feature-card,
.news-story-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(72, 112, 166, 0.12);
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 48px rgba(56, 88, 136, 0.06);
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    border-color 320ms ease,
    background-color 320ms ease,
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.18, 0.76, 0.18, 1);
}

.news-feature-card {
  position: relative;
  border-radius: 24px;
  touch-action: pan-y;
}

.news-story-card {
  border-radius: 17px;
}

.experience.is-news-section .news-feature-card,
.experience.is-news-section .news-story-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.experience.is-news-section .news-feature-card { transition-delay: 260ms; }
.experience.is-news-section .news-story-card:nth-child(1) { transition-delay: 330ms; }
.experience.is-news-section .news-story-card:nth-child(2) { transition-delay: 400ms; }
.experience.is-news-section .news-story-card:nth-child(3) { transition-delay: 470ms; }

.news-feature-link,
.news-story-card > a {
  color: inherit;
  text-decoration: none;
}

.news-feature-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.75fr);
  height: 100%;
  min-height: 0;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 190ms ease,
    transform 240ms cubic-bezier(0.2, 0.74, 0.2, 1);
}

.news-feature-card.is-switching[data-news-direction="next"] .news-feature-link {
  opacity: 0;
  transform: translate3d(-14px, 0, 0);
}

.news-feature-card.is-switching[data-news-direction="previous"] .news-feature-link {
  opacity: 0;
  transform: translate3d(14px, 0, 0);
}

.news-feature-card:hover,
.news-feature-card:focus-within,
.news-story-card:hover,
.news-story-card:focus-within {
  border-color: rgba(49, 164, 218, 0.34);
  background: rgba(255, 255, 255, 0.92);
}

.news-feature-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 58px);
}

.news-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: rgba(67, 88, 124, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-meta span {
  color: #198bc3;
  font-size: 11px;
  font-weight: 800;
}

.news-meta b {
  color: rgba(48, 70, 108, 0.66);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.news-feature-copy h3 {
  margin: 22px 0 0;
  color: #14213c;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 670;
  line-height: 1.3;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

/*
 * 대표 뉴스 설명은 기사에서 자동으로 불러오므로 길이가 매번 달라질 수 있습니다.
 * 설명이 길어져도 하단의 01/전체 개수, 진행선, 이전·다음 버튼과 겹치지 않도록
 * 최대 3줄까지만 표시하고 나머지는 카드 안에서 자연스럽게 숨깁니다.
 */
.news-feature-copy > p:not(.news-meta) {
  display: -webkit-box;
  max-width: 530px;
  max-height: calc(1.72em * 3);
  margin: 17px 0 0;
  overflow: hidden;
  color: rgba(55, 76, 112, 0.68);
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1.68;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-feature-card--external .news-feature-copy h3 {
  /* 제목 영역만 사진 위로 살짝 확장해 긴 기사 제목의 불필요한 줄바꿈을 줄입니다. */
  position: relative;
  z-index: 2;
  width: calc(100% + clamp(88px, 8vw, 140px));
  max-width: 680px;
  font-size: clamp(23px, calc(2vw + 2px), 36px);
  line-height: 1.34;
}

.news-link-label {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
  color: rgba(34, 70, 111, 0.72);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.news-link-label i {
  color: #1898ca;
  font-style: normal;
}

.news-feature-controls {
  position: absolute;
  z-index: 6;
  bottom: clamp(84px, 10vh, 108px);
  left: clamp(30px, 4vw, 58px);
  display: grid;
  grid-template-columns: auto minmax(72px, 1fr) auto;
  gap: 15px;
  align-items: center;
  width: min(370px, calc(57% - 96px));
  color: rgba(38, 67, 105, 0.56);
}

.news-feature-count {
  display: flex;
  gap: 6px;
  align-items: baseline;
  margin: 0;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.news-feature-count strong {
  color: #158fc4;
  font-size: 16px;
  font-weight: 780;
}

.news-feature-count span:last-child {
  color: rgba(52, 80, 116, 0.38);
}

.news-feature-progress {
  position: relative;
  display: block;
  height: 1px;
  overflow: hidden;
  background: rgba(67, 102, 148, 0.15);
}

.news-feature-progress i {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(90deg, #1bb0d4, #5577ed);
  box-shadow: 0 0 9px rgba(28, 166, 207, 0.24);
  transform: scaleX(0.25);
  transform-origin: left center;
  transition: transform 420ms cubic-bezier(0.18, 0.76, 0.18, 1);
}

.news-feature-buttons {
  display: flex;
  gap: 6px;
}

.news-feature-buttons button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(62, 104, 154, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(34, 72, 112, 0.6);
  font-family: inherit;
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.news-feature-buttons button:hover,
.news-feature-buttons button:focus-visible {
  border-color: rgba(27, 151, 199, 0.4);
  background: rgba(255, 255, 255, 0.94);
  color: #147fae;
  outline: none;
  transform: translateY(-2px);
}

.news-feature-buttons button:disabled {
  cursor: default;
  opacity: 0.3;
  transform: none;
}

.news-feature-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 46% 52%, rgba(75, 204, 228, 0.22), transparent 23%),
    radial-gradient(circle at 62% 46%, rgba(117, 91, 255, 0.13), transparent 44%),
    linear-gradient(145deg, rgba(238, 248, 255, 0.92), rgba(225, 234, 249, 0.78));
}

.news-feature-visual--photo {
  isolation: isolate;
  background: #eef4fa;
}

.news-feature-visual.news-feature-visual--photo::before {
  z-index: 2;
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(250, 252, 255, 0.96) 0%, rgba(246, 250, 254, 0.48) 28%, transparent 68%),
    linear-gradient(180deg, rgba(239, 247, 252, 0.02), rgba(220, 231, 242, 0.2));
  content: "";
  transform: none;
  pointer-events: none;
}

.news-feature-visual.news-feature-visual--photo::after {
  z-index: 3;
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: radial-gradient(circle at 70% 42%, rgba(82, 199, 224, 0.12), transparent 52%);
  content: "";
  transform: none;
  pointer-events: none;
}

.news-feature-image {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.72) contrast(0.96) brightness(1.04);
  transform: scale(1.015);
  transition: filter 520ms ease, transform 900ms cubic-bezier(0.18, 0.76, 0.18, 1);
}

.news-feature-card:hover .news-feature-image,
.news-feature-card:focus-within .news-feature-image {
  filter: saturate(0.88) contrast(1) brightness(1.06);
  transform: scale(1.045);
}

.news-feature-visual::before,
.news-feature-visual::after,
.news-signal-line,
.news-signal-core {
  position: absolute;
  border-radius: 50%;
}

.news-feature-visual::before {
  top: 50%;
  left: 50%;
  width: min(330px, 25vw);
  aspect-ratio: 1;
  border: 1px solid rgba(106, 218, 240, 0.16);
  content: "";
  transform: translate(-50%, -50%);
}

.news-feature-visual::after {
  top: 50%;
  left: 50%;
  width: min(220px, 17vw);
  aspect-ratio: 1;
  border: 1px dashed rgba(131, 104, 255, 0.2);
  content: "";
  transform: translate(-50%, -50%) rotate(18deg);
}

.news-signal-core {
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  background: #d9fbff;
  box-shadow:
    0 0 0 7px rgba(74, 218, 239, 0.08),
    0 0 24px rgba(78, 223, 242, 0.72);
  transform: translate(-50%, -50%);
}

.news-signal-line {
  top: 50%;
  left: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(98, 220, 241, 0.44);
  transform: translate(-50%, -50%);
}

.news-signal-line--one { width: 94px; height: 94px; transform: translate(-50%, -50%) rotate(22deg); }
.news-signal-line--two { width: 170px; height: 170px; border-top-color: rgba(125, 100, 255, 0.38); transform: translate(-50%, -50%) rotate(128deg); }
.news-signal-line--three { width: 270px; height: 270px; border-top-color: rgba(98, 220, 241, 0.2); transform: translate(-50%, -50%) rotate(238deg); }

.experience.is-news-section .news-signal-core {
  animation: newsSignalPulse 2800ms ease-in-out infinite;
}

.experience.is-news-section .news-signal-line--one { animation: newsSignalOrbitOne 7600ms linear infinite; }
.experience.is-news-section .news-signal-line--two { animation: newsSignalOrbitTwo 10400ms linear infinite reverse; }
.experience.is-news-section .news-signal-line--three { animation: newsSignalOrbitThree 13800ms linear infinite; }

@keyframes newsSignalPulse {
  0%,
  100% { opacity: 0.62; transform: translate(-50%, -50%) scale(0.9); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes newsSignalOrbitOne {
  to { transform: translate(-50%, -50%) rotate(382deg); }
}

@keyframes newsSignalOrbitTwo {
  to { transform: translate(-50%, -50%) rotate(488deg); }
}

@keyframes newsSignalOrbitThree {
  to { transform: translate(-50%, -50%) rotate(598deg); }
}

.news-story-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-height: 0;
}

.news-story-card > a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: clamp(18px, 2vw, 28px) clamp(48px, 4vw, 64px) clamp(18px, 2vw, 28px) clamp(22px, 2.6vw, 36px);
}

.news-story-card h3 {
  margin: 13px 0 0;
  color: rgba(24, 39, 69, 0.88);
  font-size: clamp(15px, 1vw, 21px);
  font-weight: 620;
  line-height: 1.42;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

.news-story-arrow {
  position: absolute;
  top: 50%;
  right: 23px;
  color: rgba(31, 143, 195, 0.54);
  font-size: 15px;
  transform: translate3d(0, -50%, 0);
  transition: color 260ms ease, transform 260ms ease;
}

.news-story-card:hover .news-story-arrow,
.news-story-card:focus-within .news-story-arrow {
  color: #168fc4;
  transform: translate3d(4px, -50%, 0);
}

.news-index {
  position: absolute;
  z-index: 5;
  right: clamp(24px, 5vw, 84px);
  bottom: 36px;
  margin: 0;
  color: rgba(52, 83, 128, 0.25);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.news-index span {
  color: rgba(29, 148, 195, 0.78);
}

.clients-section {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(460px, 58svh, 620px);
  overflow: hidden;
  scroll-snap-align: none;
  color: #15213d;
  background:
    radial-gradient(circle at 15% 34%, rgba(48, 208, 231, 0.09), transparent 26%),
    radial-gradient(circle at 85% 66%, rgba(113, 91, 255, 0.1), transparent 28%),
    linear-gradient(145deg, #f6faff 0%, #eef4fb 54%, #f8faff 100%);
}

.clients-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(65, 102, 156, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 102, 156, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, transparent, #000 16%, #000 84%, transparent);
  pointer-events: none;
}

.clients-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 176px));
  padding: clamp(64px, 9vh, 94px) 0 clamp(58px, 8vh, 82px);
}

.clients-header {
  text-align: center;
}

.clients-kicker {
  justify-content: center;
  color: rgba(72, 95, 133, 0.52);
}

.clients-header h2 {
  margin: 0;
  color: #15213d;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 690;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.clients-header > p:last-child {
  margin: 13px 0 0;
  color: rgba(62, 82, 119, 0.62);
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.65;
}

.client-logo-gallery {
  display: block;
  width: 100%;
  margin-top: clamp(32px, 5vh, 48px);
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
}

.client-logo-gallery:focus-visible {
  border-radius: 18px;
  outline: 2px solid rgba(51, 151, 232, 0.44);
  outline-offset: 6px;
}

.client-logo-grid {
  display: grid;
  gap: 10px;
}

.client-logo-grid--featured {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.client-logo-item {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 82px;
  padding: 15px;
  border: 1px solid rgba(75, 110, 164, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 30px rgba(62, 91, 139, 0.04);
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.client-logo-gallery:hover .client-logo-item {
  border-color: rgba(55, 157, 220, 0.2);
  background: rgba(255, 255, 255, 0.82);
}

.client-logo-gallery:hover .client-logo-item:nth-child(2n) {
  transform: translate3d(0, -3px, 0);
}

.client-logo-item.is-empty {
  border-style: dashed;
  border-color: rgba(75, 110, 164, 0.07);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  transform: none !important;
}

.client-logo-gallery:hover .client-logo-item.is-empty {
  border-color: rgba(75, 110, 164, 0.07);
  background: rgba(255, 255, 255, 0.22);
}

.client-logo-item img {
  display: block;
  width: min(150px, 88%);
  height: 48px;
  object-fit: contain;
  object-position: center;
}

.client-logo-placeholder {
  color: rgba(46, 67, 105, 0.5);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.clients-hint {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 24px);
  margin: 18px auto 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
  color: rgba(70, 91, 128, 0.48);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  cursor: default;
  transform-origin: 50% 100%;
  transition:
    color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease,
    opacity 240ms ease,
    transform 280ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.clients-hint:hover,
.clients-hint:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  color: rgba(38, 65, 112, 0.94);
  box-shadow: 0 12px 30px rgba(61, 101, 166, 0.14);
  opacity: 1;
  transform: scale(1.35);
}

.clients-hint span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #59d0e7;
  box-shadow: 0 0 0 4px rgba(72, 196, 221, 0.09);
}

.experience.has-client-dialog {
  overflow-y: hidden;
}

.client-dialog {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(27, 48, 78, 0.36);
  opacity: 0;
  transition: opacity 240ms ease;
}

.client-dialog[hidden] {
  display: none;
}

.client-dialog.is-open {
  opacity: 1;
}

.client-dialog-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(900px, 100%);
  height: min(78svh, 720px);
  overflow: hidden;
  overscroll-behavior: contain;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(78, 117, 167, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 12%, rgba(67, 196, 220, 0.11), transparent 27%),
    radial-gradient(circle at 88% 82%, rgba(115, 91, 255, 0.08), transparent 30%),
    linear-gradient(145deg, #fbfdff, #edf4fb);
  box-shadow: 0 28px 90px rgba(35, 63, 103, 0.24);
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.98);
  transition:
    opacity 240ms ease,
    transform 320ms cubic-bezier(0.18, 0.76, 0.18, 1);
}

.client-dialog.is-open .client-dialog-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.client-dialog-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(76, 112, 163, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: rgba(39, 62, 99, 0.72);
  font-family: inherit;
  font-size: 23px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.client-dialog-close:hover,
.client-dialog-close:focus-visible {
  border-color: rgba(38, 155, 205, 0.46);
  background: rgba(255, 255, 255, 0.96);
  color: #15395c;
  outline: none;
  transform: rotate(4deg);
}

.client-dialog-header {
  padding-right: 56px;
}

.client-dialog-header p {
  margin: 0;
  color: #168ebd;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.client-dialog-header h2 {
  margin: 12px 0 0;
  color: #15213d;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 680;
  letter-spacing: -0.04em;
}

.client-dialog-header span {
  display: block;
  margin-top: 8px;
  color: rgba(57, 78, 115, 0.56);
  font-size: 11px;
}

.client-logo-grid--all {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 88px;
  flex: 1 1 auto;
  min-height: 0;
  margin-top: 32px;
  padding: 0 5px 2px 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(46, 151, 196, 0.34) transparent;
  scrollbar-width: thin;
}

.client-logo-grid--all::-webkit-scrollbar {
  width: 5px;
}

.client-logo-grid--all::-webkit-scrollbar-track {
  background: transparent;
}

.client-logo-grid--all::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(46, 151, 196, 0.3);
}

.client-logo-grid--all .client-logo-item {
  height: 88px;
  border-color: rgba(70, 106, 158, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 26px rgba(54, 84, 128, 0.07);
}

.client-logo-grid--all .client-logo-placeholder {
  color: rgba(38, 57, 91, 0.58);
}

.client-logo-grid--all .client-logo-item img {
  opacity: 0.9;
}

.client-logo-grid--all .client-logo-item.is-empty {
  border-color: rgba(83, 119, 168, 0.09);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

/*
  5페이지 고객사 로고 흐름
  로고 추가·삭제는 Renewal/images/clients 폴더에서 처리하며 카드 수, 반복 횟수,
  이동 시간은 script.js가 등록된 이미지 개수에 맞춰 자동으로 계산합니다.
*/
.client-logo-marquee {
  --client-logo-gap: 16px;
  --client-logo-half-gap: 8px;

  position: relative;
  width: 100%;
  margin-top: clamp(34px, 6vh, 58px);
  padding: 16px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-logo-track {
  --client-logo-duration: 32s;

  display: flex;
  gap: var(--client-logo-gap);
  align-items: center;
  width: max-content;
  min-width: 100%;
  animation: clientLogoFlow var(--client-logo-duration) linear infinite;
  will-change: transform;
}

.client-logo-group {
  display: flex;
  flex: 0 0 auto;
  gap: var(--client-logo-gap);
  align-items: center;
}

.client-logo-marquee .client-logo-item {
  display: grid;
  flex: 0 0 clamp(156px, 15vw, 208px);
  place-items: center;
  height: 94px;
  padding: 16px 20px;
  border: 1px solid rgba(75, 110, 164, 0.11);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(247, 251, 255, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 13px 34px rgba(62, 91, 139, 0.06);
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.client-logo-marquee .client-logo-item:hover {
  border-color: rgba(55, 169, 220, 0.3);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 16px 38px rgba(55, 111, 175, 0.13);
  transform: translateY(-4px);
}

.client-logo-marquee .client-logo-item img {
  display: block;
  width: min(156px, 92%);
  max-width: 100%;
  height: 56px;
  max-height: 72%;
  object-fit: contain;
  object-position: center;
}

.client-logo-marquee .client-logo-placeholder {
  overflow: hidden;
  max-width: 100%;
  color: rgba(46, 67, 105, 0.58);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.client-logo-marquee:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-track.is-empty {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 94px;
  animation: none;
}

.client-logo-empty {
  margin: 0;
  color: rgba(52, 76, 115, 0.52);
  font-size: 12px;
  letter-spacing: -0.01em;
}

@keyframes clientLogoFlow {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - var(--client-logo-half-gap)), 0, 0); }
}

@media (max-width: 720px) {
  .client-logo-marquee {
    --client-logo-gap: 10px;
    --client-logo-half-gap: 5px;

    margin-top: 28px;
    padding-block: 12px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .client-logo-marquee .client-logo-item {
    flex-basis: 142px;
    height: 72px;
    padding: 11px 15px;
    border-radius: 14px;
  }

  .client-logo-marquee .client-logo-item img {
    width: min(120px, 92%);
    height: 43px;
  }

  .client-logo-marquee .client-logo-placeholder {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .client-logo-track {
    animation: none;
    transform: none;
  }

  .client-logo-group[aria-hidden="true"] {
    display: none;
  }
}

/*
  우측 주요 화면 바로가기 탭
  - 표시 문구와 이동 대상은 new_index.htm의 section-quick-nav에서 관리합니다.
  - 현재 화면 항목은 세로 레일에서 왼쪽으로 돌출되는 룰렛 포인터처럼 강조됩니다.
  - 2·3페이지의 어두운 배경에서는 아래 테마 변수만 자동으로 전환됩니다.
*/
.section-quick-nav {
  --quick-nav-bg: rgba(250, 253, 255, 0.42);
  --quick-nav-border: rgba(78, 113, 163, 0.09);
  --quick-nav-line: rgba(71, 115, 172, 0.13);
  --quick-nav-text: rgba(42, 64, 101, 0.4);
  --quick-nav-hover: rgba(255, 255, 255, 0.58);
  --quick-nav-active-bg: linear-gradient(110deg, rgba(244, 252, 255, 0.76), rgba(245, 243, 255, 0.72));
  --quick-nav-active-border: rgba(74, 174, 229, 0.22);
  --quick-nav-active-text: rgba(23, 48, 85, 0.78);
  --quick-nav-accent: #39c8e8;
  --quick-nav-accent-secondary: #806cff;
  --quick-nav-shadow: rgba(66, 112, 178, 0.07);

  position: fixed;
  z-index: 19;
  top: 50%;
  right: max(5px, env(safe-area-inset-right));
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 82px;
  padding: 8px 6px;
  border: 1px solid var(--quick-nav-border);
  border-radius: 22px;
  background: var(--quick-nav-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 10px 28px var(--quick-nav-shadow);
  backdrop-filter: blur(8px) saturate(108%);
  opacity: 0.74;
  transform: translateY(-50%);
  transition:
    border-color 320ms ease,
    background-color 320ms ease,
    box-shadow 320ms ease,
    opacity 240ms ease;
}

.section-quick-nav:hover,
.section-quick-nav:focus-within {
  opacity: 1;
}

.section-quick-nav::before {
  position: absolute;
  z-index: 0;
  top: 24px;
  right: 17px;
  bottom: 24px;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, var(--quick-nav-line) 12%, var(--quick-nav-line) 88%, transparent);
}

.section-quick-nav-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 34px;
  padding: 0 25px 0 6px;
  border: 1px solid transparent;
  border-radius: 999px;
  outline: none;
  background: transparent;
  color: var(--quick-nav-text);
  font: inherit;
  cursor: pointer;
  transform-origin: right center;
  transition:
    width 280ms cubic-bezier(0.18, 0.78, 0.18, 1),
    border-color 240ms ease,
    background 240ms ease,
    color 240ms ease,
    box-shadow 280ms ease,
    transform 300ms cubic-bezier(0.18, 0.78, 0.18, 1);
}

.section-quick-nav-label {
  overflow: hidden;
  font-size: 8px;
  font-weight: 680;
  line-height: 1;
  letter-spacing: -0.015em;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition:
    font-size 240ms ease,
    letter-spacing 240ms ease,
    opacity 240ms ease;
}

.section-quick-nav-marker {
  position: absolute;
  right: 8px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--quick-nav-line);
  border-radius: 50%;
  background: var(--quick-nav-bg);
  box-shadow: 0 0 0 3px transparent;
  transition:
    right 280ms ease,
    width 280ms ease,
    height 280ms ease,
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 280ms ease,
    transform 300ms cubic-bezier(0.18, 0.78, 0.18, 1);
}

.section-quick-nav-button::after {
  position: absolute;
  top: 50%;
  right: -6px;
  width: 9px;
  height: 1px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--quick-nav-accent), var(--quick-nav-accent-secondary));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 220ms ease, transform 280ms ease;
}

.section-quick-nav-button:hover {
  background: var(--quick-nav-hover);
  color: var(--quick-nav-active-text);
  transform: translateX(-2px);
}

.section-quick-nav-button:focus-visible {
  color: var(--quick-nav-active-text);
  box-shadow: 0 0 0 3px rgba(66, 192, 231, 0.18);
}

.section-quick-nav-button.is-current {
  width: calc(100% + 6px);
  border-color: var(--quick-nav-active-border);
  background: var(--quick-nav-active-bg);
  color: var(--quick-nav-active-text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 6px 18px var(--quick-nav-shadow);
  transform: translateX(-5px) scale(1.018);
}

.section-quick-nav-button.is-current .section-quick-nav-label {
  font-size: 9px;
  letter-spacing: -0.025em;
}

.section-quick-nav-button.is-current .section-quick-nav-marker {
  right: 6px;
  width: 10px;
  height: 10px;
  border-color: rgba(102, 151, 255, 0.46);
  background: radial-gradient(circle, #ffffff 0 22%, var(--quick-nav-accent) 26% 45%, var(--quick-nav-accent-secondary) 72% 100%);
  box-shadow:
    0 0 0 3px rgba(80, 195, 235, 0.08),
    0 0 10px rgba(88, 159, 255, 0.3);
}

.section-quick-nav-button.is-current::after {
  opacity: 0.58;
  transform: scaleX(1);
}

.experience.is-core-section .section-quick-nav,
.experience.is-product-section .section-quick-nav {
  --quick-nav-bg: rgba(6, 15, 32, 0.38);
  --quick-nav-border: rgba(138, 195, 255, 0.1);
  --quick-nav-line: rgba(143, 202, 255, 0.13);
  --quick-nav-text: rgba(191, 218, 245, 0.4);
  --quick-nav-hover: rgba(31, 58, 91, 0.4);
  --quick-nav-active-bg: linear-gradient(110deg, rgba(17, 47, 79, 0.66), rgba(39, 29, 83, 0.62));
  --quick-nav-active-border: rgba(92, 210, 255, 0.24);
  --quick-nav-active-text: rgba(236, 249, 255, 0.78);
  --quick-nav-shadow: rgba(0, 0, 0, 0.18);

  box-shadow:
    inset 0 1px 0 rgba(187, 225, 255, 0.05),
    0 10px 28px var(--quick-nav-shadow);
}

@media (min-width: 1181px) {
  .core-service-nav {
    right: max(clamp(24px, 5vw, 82px), 104px);
  }

  .product-layout {
    right: max(clamp(32px, 6.5vw, 112px), 104px);
  }
}

@media (max-width: 1180px) {
  .hero {
    padding-right: max(48px, calc(env(safe-area-inset-right) + 42px));
  }

  .section-quick-nav {
    right: max(3px, env(safe-area-inset-right));
    width: 34px;
    padding: 7px 3px;
    border-radius: 19px;
    opacity: 0.62;
  }

  .section-quick-nav::before {
    top: 21px;
    right: 16px;
    bottom: 21px;
  }

  .section-quick-nav-button {
    align-self: flex-end;
    width: 26px;
    height: 32px;
    padding: 0;
  }

  .section-quick-nav-label {
    position: absolute;
    right: 24px;
    opacity: 0;
    pointer-events: none;
  }

  .section-quick-nav-marker {
    right: 9px;
  }

  .section-quick-nav-button.is-current {
    width: 26px;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .section-quick-nav-button.is-current .section-quick-nav-label {
    opacity: 0;
  }

  .section-quick-nav-button.is-current .section-quick-nav-marker {
    right: 7px;
  }

  .section-quick-nav-button.is-current::after {
    right: -2px;
    width: 6px;
  }
}

.page-jump-nav {
  position: fixed;
  z-index: 18;
  right: clamp(10px, 1.4vw, 22px);
  bottom: max(20px, calc(env(safe-area-inset-bottom) + 14px));
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.page-jump-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(72, 97, 147, 0.2);
  border-radius: 999px;
  background: rgba(249, 252, 255, 0.76);
  color: rgba(31, 50, 90, 0.58);
  font-family: inherit;
  box-shadow: 0 7px 20px rgba(75, 105, 160, 0.08);
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.page-jump-button span {
  font-size: 11px;
  line-height: 1;
}

.page-jump-button small {
  font-size: 7px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.page-jump-button:hover,
.page-jump-button:focus-visible {
  border-color: rgba(66, 133, 255, 0.58);
  background: rgba(255, 255, 255, 0.94);
  color: rgba(36, 91, 196, 0.92);
  transform: translateX(-2px);
}

.page-jump-button:focus-visible {
  outline: 2px solid rgba(78, 150, 255, 0.34);
  outline-offset: 3px;
}

.page-jump-button:disabled {
  border-color: rgba(72, 97, 147, 0.08);
  background: rgba(249, 252, 255, 0.32);
  color: rgba(31, 50, 90, 0.18);
  box-shadow: none;
  cursor: default;
  transform: none;
}

.experience.is-core-section .page-jump-button,
.experience.is-product-section .page-jump-button {
  border-color: rgba(161, 208, 255, 0.22);
  background: rgba(5, 17, 34, 0.6);
  color: rgba(191, 224, 255, 0.64);
  box-shadow: 0 7px 24px rgba(0, 0, 0, 0.2);
}

.experience.is-core-section .page-jump-button:hover,
.experience.is-core-section .page-jump-button:focus-visible,
.experience.is-product-section .page-jump-button:hover,
.experience.is-product-section .page-jump-button:focus-visible {
  border-color: rgba(79, 214, 255, 0.7);
  background: rgba(9, 28, 54, 0.88);
  color: rgba(213, 242, 255, 0.96);
}

.experience.is-core-section .page-jump-button:disabled,
.experience.is-product-section .page-jump-button:disabled {
  border-color: rgba(161, 208, 255, 0.07);
  background: rgba(5, 17, 34, 0.24);
  color: rgba(191, 224, 255, 0.16);
  box-shadow: none;
}

.experience.is-news-section .page-jump-button,
.experience.is-client-section .page-jump-button {
  border-color: rgba(72, 97, 147, 0.2);
  background: rgba(249, 252, 255, 0.76);
  color: rgba(31, 50, 90, 0.58);
  box-shadow: 0 7px 20px rgba(75, 105, 160, 0.08);
}

.experience.is-news-section .page-jump-button:hover,
.experience.is-news-section .page-jump-button:focus-visible,
.experience.is-client-section .page-jump-button:hover,
.experience.is-client-section .page-jump-button:focus-visible {
  border-color: rgba(66, 133, 255, 0.58);
  background: rgba(255, 255, 255, 0.94);
  color: rgba(36, 91, 196, 0.92);
}

.experience.is-news-section .page-jump-button:disabled,
.experience.is-client-section .page-jump-button:disabled {
  border-color: rgba(72, 97, 147, 0.08);
  background: rgba(249, 252, 255, 0.32);
  color: rgba(31, 50, 90, 0.18);
  box-shadow: none;
}

.experience::before,
.experience::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.experience::before {
  inset: 0;
  background: linear-gradient(90deg, #f8fbff 0%, transparent 12%, transparent 88%, #f8fbff 100%);
}

.experience::after {
  top: 0;
  right: 0;
  width: 34vw;
  height: 34vw;
  border: 1px solid rgba(92, 117, 181, 0.08);
  border-radius: 50%;
  transform: translate(42%, -53%);
  box-shadow:
    0 0 0 70px rgba(92, 117, 181, 0.025),
    0 0 0 140px rgba(92, 117, 181, 0.018);
}

.hero {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: clamp(70px, 9vh, 100px) 24px 0;
  text-align: center;
  pointer-events: none;
}

.hero-copy {
  display: grid;
  width: min(920px, 100%);
  perspective: 1100px;
  transform-style: preserve-3d;
  will-change: opacity, transform;
}

.hero-slide {
  grid-area: 1 / 1;
  align-self: start;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  pointer-events: none;
  transform: perspective(1100px) translate3d(0, 12px, 120px) scale(1.035);
  transform-origin: 50% 48%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: opacity, filter, transform;
  transition:
    opacity 420ms ease,
    filter 620ms ease,
    transform 720ms cubic-bezier(0.18, 0.72, 0.16, 1),
    visibility 0s linear 720ms;
}

.hero-slide.is-current {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  pointer-events: auto;
  transform: perspective(1100px) translate3d(0, 0, 0) scale(1);
  transition-delay: 150ms, 150ms, 150ms, 0s;
}

.hero-slide.is-leaving {
  z-index: 2;
  opacity: 0;
  visibility: visible;
  filter: blur(14px);
  pointer-events: none;
  transform: perspective(1100px) translate3d(0, -8px, -230px) scale(0.82);
  transition-delay: 0s;
}

.hero-slide.has-entered .eyebrow,
.hero-slide.has-entered h1,
.hero-slide.has-entered .platform-info,
.hero-slide.has-entered .portal-link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-slide.has-entered .portal-link:hover,
.hero-slide.has-entered .portal-link:focus-visible {
  transform: translateY(-2px);
}

.eyebrow,
.hero h1,
.platform-info,
.portal-link {
  opacity: 0;
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
  color: #71809c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  transform: translate3d(0, 10px, 0);
  overflow-wrap: anywhere;
}

.eyebrow span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 300;
  line-height: 1.09;
  letter-spacing: -0.055em;
  transform: translate3d(0, 20px, 0);
}

.hero h1 span,
.hero h1 strong {
  display: block;
  text-wrap: balance;
}

.hero h1 span {
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: -0.048em;
}

.hero h1 strong {
  color: transparent;
  font-weight: 720;
  background: linear-gradient(95deg, #3859dc 5%, #4278f0 42%, #735de8 82%);
  background-clip: text;
  -webkit-background-clip: text;
}

.platform-info {
  margin: 24px auto 0;
  transform: translate3d(0, 16px, 0);
}

.platform-info p {
  margin-right: 0;
  margin-left: 0;
}

.platform-copy {
  margin-top: 0;
  margin-bottom: 0;
  color: #65738c;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.hero-slide--secondary h1 {
  max-width: 980px;
  margin-inline: auto;
  line-height: 1.1;
  overflow-wrap: normal;
  word-break: keep-all;
  text-wrap: balance;
}

.hero-slide--secondary h1 span {
  margin-bottom: 10px;
  font-weight: 540;
  letter-spacing: -0.042em;
}

.hero-slide--secondary h1 strong {
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: -0.06em;
  word-break: keep-all;
  text-wrap: balance;
}

.hero-slide--secondary .platform-info {
  margin-top: 27px;
}

.hero-slide--secondary .platform-copy {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.75;
  letter-spacing: -0.022em;
  word-break: keep-all;
  white-space: normal;
  text-wrap: balance;
}

.portal-link {
  display: none;
  gap: 22px;
  align-items: center;
  margin-top: 25px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(75, 102, 173, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(62, 93, 159, 0.1);
  color: #354463;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transform: translate3d(0, 12px, 0);
  pointer-events: auto;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.experience.show-portal-button .portal-link {
  display: inline-flex;
}

.portal-link i {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #14203b;
  color: #fff;
  font-size: 13px;
  font-style: normal;
}

.portal-link:hover,
.portal-link:focus-visible {
  border-color: rgba(73, 112, 230, 0.34);
  box-shadow: 0 14px 38px rgba(62, 93, 159, 0.16);
  transform: translateY(-2px);
  outline: none;
}

.experience.is-active .hero-slide--primary:not(.has-entered) .eyebrow {
  animation: copyReveal 620ms 780ms ease forwards;
}

.experience.is-active .hero-slide--primary:not(.has-entered) h1 {
  animation: copyReveal 780ms 900ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.experience.is-active .hero-slide--primary:not(.has-entered) .platform-info {
  animation: copyReveal 680ms 1150ms ease forwards;
}

.experience.is-active .hero-slide--primary:not(.has-entered) .portal-link {
  animation: copyReveal 620ms 1490ms ease forwards;
}

.hero-slide.is-entering .eyebrow {
  animation: copyReveal 460ms 150ms ease both !important;
}

.hero-slide.is-entering h1 {
  animation: copyReveal 620ms 220ms cubic-bezier(0.2, 0.75, 0.2, 1) both !important;
}

.hero-slide.is-entering .platform-info {
  animation: copyReveal 540ms 380ms ease both !important;
}

.hero-slide.is-entering .portal-link {
  animation: copyReveal 500ms 500ms ease both !important;
}

.hero-pagination {
  position: relative;
  z-index: 6;
  display: flex;
  gap: 2px;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  left: 50%;
  width: max-content;
  max-width: 100%;
  margin-top: clamp(10px, 1.5vh, 16px);
  padding: 0 2px;
  opacity: 0;
  pointer-events: auto;
  transform: translate3d(-50%, 10px, 0);
}

.experience.is-active .hero-pagination {
  animation: paginationReveal 520ms 1780ms ease forwards;
}

.hero-page-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  min-width: 34px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 220ms ease;
}

.hero-page-mark {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(83, 104, 147, 0.35);
  transition: width 420ms cubic-bezier(0.2, 0.75, 0.2, 1), background 260ms ease, box-shadow 260ms ease;
}

.hero-page-button.is-current .hero-page-mark {
  width: 32px;
  background: linear-gradient(90deg, #38d3e6, #5976ec);
  box-shadow: 0 0 8px rgba(58, 169, 226, 0.24);
}

.hero-page-button:hover .hero-page-mark,
.hero-page-button:focus-visible .hero-page-mark {
  background-color: rgba(56, 89, 220, 0.66);
}

.hero-page-button:focus-visible {
  border-radius: 3px;
  outline: 1px solid rgba(56, 89, 220, 0.34);
  outline-offset: 1px;
}

.hero-direction-button {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(68, 88, 129, 0.5);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.hero-direction-button--previous {
  margin-right: 7px;
}

.hero-direction-button--next {
  margin-left: 7px;
}

.hero-direction-button:hover:not(:disabled),
.hero-direction-button:focus-visible:not(:disabled) {
  color: rgba(49, 79, 185, 0.86);
  outline: none;
}

.hero-direction-button--previous:hover:not(:disabled),
.hero-direction-button--previous:focus-visible:not(:disabled) {
  transform: translateX(-2px);
}

.hero-direction-button--next:hover:not(:disabled),
.hero-direction-button--next:focus-visible:not(:disabled) {
  transform: translateX(2px);
}

.hero-direction-button:disabled {
  color: rgba(94, 109, 140, 0.18);
  cursor: default;
  opacity: 0.7;
}

.wave-canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.orb-canvas {
  position: fixed;
  z-index: 6;
  inset: auto;
  top: var(--experience-viewport-top, 0px);
  left: var(--experience-viewport-left, 0px);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  bottom: max(38px, calc(env(safe-area-inset-bottom) + 18px));
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  color: #9aa7ba;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.19em;
  opacity: 0;
  transform: translateX(-50%);
  animation: scrollCueReveal 700ms 2300ms ease forwards;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 24px;
  overflow: hidden;
  background: rgba(94, 115, 158, 0.14);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(transparent, #5ad9ea, transparent);
  animation: scrollCueLine 1.8s 2.7s ease-in-out infinite;
}

.wave-trigger {
  position: fixed;
  z-index: 10;
  top: var(--wave-trigger-screen-y, var(--wave-center-y));
  left: 50%;
  width: 88px;
  height: 88px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #5d7194;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    top 760ms cubic-bezier(0.18, 0.76, 0.18, 1),
    color 500ms ease,
    opacity 620ms ease,
    transform 920ms cubic-bezier(0.16, 0.76, 0.12, 1);
}

.wave-trigger:focus-visible {
  outline: 2px solid rgba(64, 133, 255, 0.55);
  outline-offset: 10px;
}

.touch-core,
.touch-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.touch-core {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(52, 219, 239, 0.86);
  background: rgba(248, 254, 255, 0.82);
  box-shadow:
    0 0 0 5px rgba(54, 220, 239, 0.08),
    0 0 24px rgba(49, 200, 240, 0.68);
  transition:
    width 600ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 600ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 500ms ease,
    background 500ms ease,
    box-shadow 500ms ease;
}

.core-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px 2px #2be1f4;
  transition: opacity 350ms ease, transform 350ms ease;
}

.core-symbol {
  position: absolute;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 450ms ease, transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.touch-ring {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(72, 208, 242, 0.64);
  opacity: 0;
}

.experience.is-active .touch-core,
.experience.is-touching .touch-core {
  animation: coreTouch 650ms 20ms cubic-bezier(0.3, 0, 0.2, 1) both;
}

.experience.is-active .touch-ring,
.experience.is-touching .touch-ring {
  animation: touchWave 880ms cubic-bezier(0.3, 0, 0.2, 1) forwards;
}

.experience.is-active .touch-ring--two,
.experience.is-touching .touch-ring--two { animation-delay: 110ms; }

.experience.is-active .touch-ring--three,
.experience.is-touching .touch-ring--three { animation-delay: 220ms; }

.experience.is-touching .touch-core {
  animation-name: coreTouchAgain;
  animation-delay: 0ms;
}

.experience.is-touching .touch-ring {
  animation-name: touchWaveAgain;
}

.experience.is-transforming .touch-core {
  animation: coreMorphCenter 1050ms cubic-bezier(0.2, 0.78, 0.2, 1) both;
}

.experience.is-transforming .touch-ring {
  animation: coreMorphPulse 1120ms cubic-bezier(0.12, 0.7, 0.18, 1) forwards;
  border-color: rgba(88, 223, 247, 0.88);
  box-shadow: 0 0 24px rgba(77, 177, 255, 0.3);
}

.experience.is-transforming .touch-ring--one { animation-delay: 0ms; }
.experience.is-transforming .touch-ring--two { animation-delay: 120ms; }
.experience.is-transforming .touch-ring--three { animation-delay: 240ms; }

.touch-label {
  position: absolute;
  top: calc(50% + 28px);
  left: 50%;
  color: #8595ad;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.22em;
  opacity: 0;
  transform: translateX(-46%);
  transition: opacity 240ms ease;
}

.wave-trigger:hover .touch-label,
.wave-trigger:focus-visible .touch-label {
  opacity: 1;
}

.experience.is-core-section .touch-core {
  width: 58px;
  height: 58px;
  border-color: rgba(83, 219, 241, 0.84);
  background: rgba(6, 11, 22, 0.88);
  box-shadow:
    0 0 0 8px rgba(48, 211, 237, 0.06),
    0 0 28px rgba(57, 200, 238, 0.66),
    inset 0 0 18px rgba(99, 88, 255, 0.24);
}

.experience.is-core-section .core-dot {
  opacity: 0;
  transform: scale(0.35);
}

.experience.is-core-section .core-symbol {
  opacity: 1;
  transform: scale(1);
}

.experience.is-core-section .touch-ring {
  border-color: rgba(90, 212, 246, 0.74);
}

.experience.is-core-section .touch-label {
  top: calc(50% + 42px);
  color: rgba(188, 225, 255, 0.58);
}

/* 중앙 버튼을 놓치지 않도록, 정지 상태에서만 은은한 호출 신호를 반복합니다. */
.experience.is-core-section .wave-trigger::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(92, 220, 244, 0.34);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: touchBeaconHalo 2.8s cubic-bezier(0.22, 0.72, 0.22, 1) infinite;
}

.experience.is-core-section.is-touching .wave-trigger::before,
.experience.is-core-section.is-transforming .wave-trigger::before {
  opacity: 0;
  animation: none;
}

.experience.is-core-section:not(.is-touching):not(.is-transforming) .touch-core {
  animation: touchBeaconCore 2.8s ease-in-out infinite;
}

.experience.is-core-section .touch-label {
  opacity: 0.42;
  animation: touchBeaconLabel 2.8s ease-in-out infinite;
}

.experience.is-core-section .wave-trigger:hover .touch-label,
.experience.is-core-section .wave-trigger:focus-visible .touch-label {
  opacity: 1;
  animation-play-state: paused;
}

.experience.is-product-section .wave-trigger,
.experience.is-news-section .wave-trigger,
.experience.is-client-section .wave-trigger {
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.55);
}

.experience.is-product-section .touch-label,
.experience.is-product-section .touch-ring {
  opacity: 0;
  animation: none;
}

.experience.is-planet-transforming .touch-core {
  animation: none;
}

.interaction-hint,
.intro-interaction-hint {
  position: absolute;
  z-index: 5;
  bottom: max(48px, calc(env(safe-area-inset-bottom) + 22px));
  left: clamp(24px, 5vw, 84px);
  margin: 0;
  padding: 8px 11px;
  border-radius: 999px;
  background: transparent;
  color: #91a0b6;
  font-size: 10px;
  letter-spacing: -0.01em;
  opacity: 0.66;
  cursor: default;
  pointer-events: auto;
  transform-origin: 0 100%;
  transition:
    color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease,
    opacity 240ms ease,
    transform 280ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.intro-interaction-hint {
  z-index: 7;
  transform: none;
}

.intro-interaction-hint.is-hidden {
  opacity: 0.66 !important;
  animation: none !important;
  transform: none !important;
}

.intro-interaction-hint::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 8px 2px 0;
  border-radius: 50%;
  content: "";
  background: #6adce9;
  box-shadow: 0 0 8px rgba(80, 211, 230, 0.55);
}

/* 2페이지에 실제로 진입한 순간부터 안내 문구의 10초 표시 시간을 시작합니다. */
.experience.is-core-section .interaction-hint {
  animation: none;
  opacity: 0.66;
}

.experience.is-active .intro-interaction-hint {
  animation: none;
  opacity: 0.66;
}

.experience.is-active .intro-interaction-hint:hover,
.experience.is-active .intro-interaction-hint:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  color: rgba(48, 68, 104, 0.96);
  box-shadow: 0 10px 28px rgba(58, 101, 165, 0.14);
  opacity: 1;
  transform: scale(1.35);
}

.experience.is-core-section .interaction-hint:hover,
.experience.is-core-section .interaction-hint:focus-visible {
  background: rgba(8, 16, 32, 0.82);
  color: rgba(226, 244, 255, 0.96);
  box-shadow: 0 10px 30px rgba(59, 176, 235, 0.16);
  opacity: 1;
  transform: scale(1.35);
}

.ambient-light {
  position: absolute;
  z-index: 1;
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(30px);
  opacity: 0.12;
}

.ambient-light--cyan {
  top: 36%;
  left: 12%;
  background: radial-gradient(circle, #48e4f0 0%, transparent 68%);
}

.ambient-light--violet {
  top: 43%;
  right: 10%;
  background: radial-gradient(circle, #9671f5 0%, transparent 68%);
}

.portal-anchor {
  position: absolute;
  top: 100%;
}

@keyframes copyReveal {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes paginationReveal {
  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes scrollCueReveal {
  to { opacity: 0.78; }
}

@keyframes scrollCueLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

@keyframes touchWave {
  0% {
    width: 22px;
    height: 22px;
    opacity: 0.85;
  }
  100% {
    width: 132px;
    height: 132px;
    opacity: 0;
  }
}

@keyframes touchWaveAgain {
  0% {
    width: 22px;
    height: 22px;
    opacity: 0.85;
  }
  100% {
    width: 132px;
    height: 132px;
    opacity: 0;
  }
}

@keyframes coreMorphPulse {
  0% {
    width: 24px;
    height: 24px;
    opacity: 0.92;
  }
  18% {
    opacity: 0.82;
  }
  100% {
    width: 420px;
    height: 420px;
    opacity: 0;
  }
}

@keyframes coreTouch {
  0% { transform: translate(-50%, -50%) scale(1); }
  30% { transform: translate(-50%, -50%) scale(0.64); }
  55% { transform: translate(-50%, -50%) scale(1.45); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes coreTouchAgain {
  0% { transform: translate(-50%, -50%) scale(1); }
  30% { transform: translate(-50%, -50%) scale(0.64); }
  55% { transform: translate(-50%, -50%) scale(1.45); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes coreMorphCenter {
  0% { transform: translate(-50%, -50%) scale(1); }
  22% { transform: translate(-50%, -50%) scale(0.52); }
  42% { transform: translate(-50%, -50%) scale(1.38); }
  68% { transform: translate(-50%, -50%) scale(0.92); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes touchBeaconHalo {
  0%,
  38% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.78);
  }

  48% {
    opacity: 0.72;
  }

  76%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.72);
  }
}

@keyframes touchBeaconCore {
  0%,
  38%,
  100% {
    box-shadow:
      0 0 0 8px rgba(48, 211, 237, 0.06),
      0 0 28px rgba(57, 200, 238, 0.66),
      inset 0 0 18px rgba(99, 88, 255, 0.24);
    transform: translate(-50%, -50%) scale(1);
  }

  52% {
    box-shadow:
      0 0 0 13px rgba(48, 211, 237, 0.1),
      0 0 42px rgba(57, 200, 238, 0.88),
      inset 0 0 22px rgba(99, 88, 255, 0.34);
    transform: translate(-50%, -50%) scale(1.08);
  }

  64% {
    transform: translate(-50%, -50%) scale(0.98);
  }
}

@keyframes touchBeaconLabel {
  0%,
  36%,
  100% { opacity: 0.24; }

  48%,
  68% { opacity: 0.82; }
}

@keyframes productColorSweep {
  0% {
    opacity: 0;
    transform: translate3d(-36%, 0, 0) rotate(-4deg);
  }

  34% { opacity: 0.9; }

  100% {
    opacity: 0;
    transform: translate3d(38%, 0, 0) rotate(-4deg);
  }
}

@keyframes productHubMorph {
  0% {
    border-color: rgba(83, 219, 241, 0.74);
    background:
      radial-gradient(circle at 33% 25%, rgba(255, 255, 255, 0.36), rgba(213, 237, 250, 0.07) 14%, transparent 27%),
      radial-gradient(circle at 48% 42%, rgba(22, 51, 70, 0.92), rgba(3, 9, 20, 0.97) 72%);
    box-shadow:
      inset -18px -20px 34px rgba(0, 0, 0, 0.4),
      inset 0 0 26px rgba(83, 219, 241, 0.15),
      0 0 22px rgba(83, 219, 241, 0.26),
      0 0 44px rgba(83, 219, 241, 0.1);
    opacity: 1;
    transform:
      translate3d(-50%, -50%, 0)
      translate3d(var(--hub-morph-from-x), var(--hub-morph-from-y), 0)
      scale(var(--hub-morph-from-scale));
  }

  66% {
    border-color: rgba(var(--product-accent-rgb), 0.38);
    background:
      radial-gradient(circle at 33% 25%, rgba(255, 255, 255, 0.42), rgba(213, 237, 250, 0.08) 14%, transparent 27%),
      radial-gradient(circle at 48% 42%, rgba(30, 55, 78, 0.92), rgba(3, 9, 20, 0.97) 72%);
    box-shadow:
      inset -18px -20px 34px rgba(0, 0, 0, 0.4),
      inset 0 0 28px rgba(var(--product-accent-rgb), 0.14),
      0 0 18px rgba(var(--product-accent-rgb), 0.18),
      0 0 46px rgba(var(--product-accent-rgb), 0.08);
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) translate3d(0, 0, 0) scale(1);
  }

  72% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) translate3d(0, 0, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) translate3d(0, 0, 0) scale(1);
  }
}

@keyframes productHubMorphTint {
  0% {
    background-color: rgba(83, 219, 241, 0.13);
  }

  66%,
  100% {
    background-color: rgba(var(--product-accent-rgb), 0.13);
  }
}

@keyframes productHubMorphCopy {
  0%,
  52% {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  70%,
  91% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes productHubMorphRipple {
  0% {
    border-color: rgba(83, 219, 241, 0.5);
    opacity: 0;
    transform: scale(0.72);
  }

  22% {
    border-color: rgba(83, 219, 241, 0.46);
    opacity: 0.72;
  }

  100% {
    border-color: rgba(var(--product-accent-rgb), 0.2);
    opacity: 0;
    transform: scale(1.34);
  }
}

@keyframes productOrbitHubReveal {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

@keyframes productOrbitHubCopyReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 9px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes productHubSolarPulse {
  0% {
    opacity: 0.46;
    transform: scale(0.93);
  }

  44% {
    opacity: 0.9;
    transform: scale(1.025);
  }

  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }
}

@keyframes productOrbitRingReveal {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

@keyframes productOrbitTrackReveal {
  0% {
    clip-path: inset(46% 0 46% 50%);
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.97);
  }

  18% {
    opacity: 0.34;
  }

  74% {
    clip-path: inset(0 0 0 48%);
    opacity: 0.26;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  100% {
    clip-path: inset(0 0 0 48%);
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

@keyframes productOrbitItemReveal {
  0% {
    opacity: 0;
    transform: translate3d(
      calc(var(--orbit-x) - 12px),
      calc(-50% + var(--orbit-y) + 38px),
      0
    ) scale(var(--orbit-scale));
  }

  100% {
    opacity: var(--orbit-opacity);
    transform: translate3d(var(--orbit-x), calc(-50% + var(--orbit-y)), 0) scale(var(--orbit-scale));
  }
}

@keyframes productOrbitTrackPulse {
  0% {
    clip-path: inset(46% 0 46% 50%);
    opacity: 0;
  }

  16% { opacity: 0.32; }

  68% {
    clip-path: inset(0 0 0 48%);
    opacity: 0.24;
  }

  100% {
    clip-path: inset(0 0 0 48%);
    opacity: 0;
  }
}

@keyframes productOrbitWaveNext {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) rotate(68deg) scale(0.97);
  }

  10%,
  62% { opacity: 0.92; }

  100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) rotate(-68deg) scale(1.02);
  }
}

@keyframes productOrbitWavePrevious {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) rotate(-68deg) scale(1.02);
  }

  10%,
  62% { opacity: 0.92; }

  100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) rotate(68deg) scale(0.97);
  }
}

@keyframes planetSeedMorph {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  28% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.68);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(12);
  }
}

@keyframes hintLifecycle {
  0% {
    opacity: 0;
  }

  6%,
  86% {
    opacity: 0.88;
  }

  100% {
    opacity: 0;
  }
}

@keyframes introHintLifecycle {
  0% {
    opacity: 0;
    transform: translate3d(0, 5px, 0);
  }

  8%,
  86% {
    opacity: 0.88;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -3px, 0);
  }
}

/*
  [전체 타이포그래피 정돈]
  제목은 한글 단어가 중간에서 끊기지 않게 균형 줄바꿈을 사용하고,
  설명문은 화면 폭에 따라 자연스럽게 줄이 이어지도록 공통 행간을 적용합니다.
*/
.hero h1,
.core-service-copy h2,
.product-intro h2,
.product-slide h3,
.product-slide h4,
.news-header h2,
.news-feature-copy h3,
.news-story-card h3,
.clients-header h2,
.client-dialog-header h2 {
  overflow-wrap: break-word;
  word-break: keep-all;
  text-wrap: balance;
}

.platform-copy,
.core-service-copy .core-description,
.product-description,
.news-header > p:last-child,
.news-feature-copy > p:not(.news-meta),
.clients-header > p:last-child,
.clients-hint,
.client-dialog-header span {
  overflow-wrap: break-word;
  word-break: keep-all;
  text-wrap: pretty;
}

.hero h1 {
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.hero h1 span,
.hero-slide--secondary h1 span {
  letter-spacing: -0.038em;
}

.hero h1 strong,
.hero-slide--secondary h1 strong {
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.platform-copy {
  max-width: min(820px, 92vw);
  margin-inline: auto;
  line-height: 1.7;
  letter-spacing: -0.012em;
  white-space: normal;
}

.eyebrow,
.core-service-eyebrow,
.product-kicker,
.news-kicker,
.clients-kicker {
  line-height: 1.4;
}

.eyebrow { letter-spacing: 0.19em; }
.core-service-eyebrow { letter-spacing: 0.12em; }
.product-kicker { letter-spacing: 0.14em; }
.news-kicker,
.clients-kicker { letter-spacing: 0.13em; }

.core-service-copy h2 {
  line-height: 1.16;
  letter-spacing: -0.038em;
}

.core-service-copy .core-description {
  line-height: 1.72;
  letter-spacing: -0.012em;
}

.core-service-tags li {
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.core-service-nav-label {
  line-height: 1.35;
  letter-spacing: -0.012em;
}

.product-intro h2 {
  line-height: 1.38;
  letter-spacing: -0.028em;
}

.product-orbit-copy strong {
  line-height: 1.2;
  letter-spacing: 0.035em;
}

.product-orbit-copy small {
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.product-slide h3 {
  line-height: 1.05;
  letter-spacing: -0.028em;
}

.product-slide h4 {
  line-height: 1.35;
  letter-spacing: -0.018em;
}

.product-description {
  line-height: 1.72;
  letter-spacing: -0.012em;
}

.portal-link,
.product-link {
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.news-header h2 {
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.news-header > p:last-child {
  line-height: 1.72;
  letter-spacing: -0.01em;
}

.news-meta {
  flex-wrap: wrap;
  row-gap: 6px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.news-feature-copy h3 {
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.news-feature-card--external .news-feature-copy h3 {
  line-height: 1.4;
}

.news-feature-copy > p:not(.news-meta) {
  line-height: 1.72;
  letter-spacing: -0.01em;
}

.news-story-card h3 {
  line-height: 1.46;
  letter-spacing: -0.015em;
}

.clients-header h2,
.client-dialog-header h2 {
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.clients-header > p:last-child {
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.client-dialog-header span {
  line-height: 1.55;
  letter-spacing: -0.005em;
}

@media (max-width: 720px) {
  .experience {
    --wave-center-y: 66%;
    --core-wave-center-y: 58%;
  }

  .hero {
    padding: clamp(92px, 15svh, 132px) max(50px, calc(env(safe-area-inset-right) + 44px)) 0 18px;
  }

  .hero h1 {
    max-width: 570px;
    margin-inline: auto;
    font-size: clamp(35px, 10vw, 52px);
    line-height: 1.2;
  }

  .platform-info {
    max-width: 330px;
  }

  .platform-copy {
    white-space: normal;
  }

  .core-copy {
    width: calc(100% - 38px);
    padding-top: clamp(76px, 12svh, 102px);
  }

  .core-copy h2 {
    font-size: clamp(32px, 9vw, 46px);
    line-height: 1.18;
  }

  .core-description {
    max-width: 330px;
  }

  .core-index {
    right: 20px;
    bottom: 28px;
  }

  .interaction-hint,
  .intro-interaction-hint {
    right: 20px;
    bottom: 27px;
    left: 20px;
    text-align: center;
  }

}

@media (max-height: 700px) and (min-width: 721px) {
  .experience {
    --wave-center-y: 66%;
    --core-wave-center-y: 58%;
  }

  .hero {
    padding-top: 105px;
  }

  .hero h1 {
    font-size: clamp(40px, 4vw, 62px);
  }

  .platform-info {
    margin-top: 14px;
  }

  .portal-link {
    margin-top: 17px;
  }

  .core-copy {
    padding-top: 72px;
  }

  .core-copy h2 {
    font-size: clamp(36px, 4vw, 52px);
  }

}

@media (max-height: 620px) {
  .experience {
    --wave-center-y: 72%;
    --core-wave-center-y: 60%;
  }

  .hero {
    padding: max(28px, calc(env(safe-area-inset-top) + 16px)) 18px 0;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .hero h1 {
    font-size: clamp(28px, 7vh, 42px);
    line-height: 1.08;
  }

  .hero h1 span {
    margin-bottom: 4px;
  }

  .platform-info {
    max-width: min(520px, 92vw);
    margin-top: 10px;
  }

  .platform-copy {
    font-size: 12px;
    line-height: 1.4;
    white-space: normal;
  }

  .portal-link {
    gap: 16px;
    margin-top: 10px;
    padding: 7px 8px 7px 14px;
    font-size: 11px;
  }

  .portal-link i {
    width: 25px;
    height: 25px;
  }

  .hero-pagination {
    margin-top: 7px;
    padding: 0 2px;
  }

  .core-copy {
    width: min(720px, calc(100% - 32px));
    padding-top: max(28px, calc(env(safe-area-inset-top) + 16px));
  }

  .core-kicker {
    margin-bottom: 10px;
    font-size: 8px;
  }

  .core-copy h2 {
    font-size: clamp(27px, 7vh, 40px);
    line-height: 1.08;
  }

  .core-copy h2 strong {
    margin-top: 4px;
  }

  .core-description {
    max-width: min(520px, 88vw);
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.4;
  }

  .scroll-cue,
  .core-index {
    display: none;
  }

  .interaction-hint,
  .intro-interaction-hint {
    bottom: max(12px, env(safe-area-inset-bottom));
    font-size: 8px;
  }
}

@media (max-width: 360px) {
  .hero,
  .core-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(30px, 10vw, 36px);
  }

  .core-copy h2 {
    font-size: clamp(28px, 9vw, 34px);
  }

}

@media (max-width: 1100px) {
  .core-service-copy {
    left: clamp(28px, 4vw, 48px);
    width: min(470px, 45vw);
  }

  .core-service-nav {
    right: 52px;
    width: min(230px, 23vw);
  }
}

@media (max-width: 720px) {
  .core-service-copy {
    left: 18px;
    width: calc(100% - 70px);
    padding-top: clamp(48px, 7svh, 70px);
    text-align: center;
  }

  .core-service-slide--centered {
    top: 0;
  }

  .core-service-slide::before {
    top: -38px;
    left: 50%;
    font-size: clamp(74px, 25vw, 104px);
    transform: translateX(-50%);
  }

  .core-service-eyebrow {
    justify-content: center;
    margin-bottom: 14px;
    font-size: 8px;
  }

  .core-service-copy h2 {
    max-width: 540px;
    margin-inline: auto;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.14;
  }

  .core-service-copy .core-description {
    max-width: 360px;
    margin: 17px auto 0;
    font-size: 13px;
    line-height: 1.62;
  }

  .core-service-tags {
    justify-content: center;
    margin-top: 17px;
  }

  .core-service-tags li {
    padding: 7px 10px;
    font-size: 10px;
  }

  .core-service-nav {
    top: auto;
    right: auto;
    bottom: max(70px, calc(env(safe-area-inset-bottom) + 54px));
    left: 50%;
    flex-direction: row;
    gap: 4px;
    width: auto;
    transform: translateX(-50%);
  }

  .core-service-nav::before {
    display: none;
  }

  .core-service-nav-button {
    display: grid;
    grid-template-columns: 1fr;
    width: 54px;
    min-height: 34px;
    padding: 0 4px 6px;
    text-align: center;
  }

  .core-service-nav-label {
    display: none;
  }

  .core-service-nav-index {
    font-size: 8px;
  }

  .core-service-nav-button i {
    position: absolute;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 4px;
    height: 2px;
    margin: 0;
    transform: translateX(-50%);
    transition: width 320ms ease, background 260ms ease, box-shadow 260ms ease;
  }

  .core-service-nav-button:hover,
  .core-service-nav-button:focus-visible,
  .core-service-nav-button.is-current {
    transform: translateY(-2px);
  }

  .core-service-nav-button.is-current i {
    width: 28px;
    height: 2px;
  }
}

@media (max-height: 620px) {
  .core-service-copy {
    left: 16px;
    width: min(520px, calc(100% - 92px));
    padding-top: max(24px, calc(env(safe-area-inset-top) + 12px));
    text-align: left;
  }

  .core-service-slide--centered {
    top: 0;
  }

  .core-service-slide::before {
    top: -20px;
    left: -4px;
    font-size: 64px;
    transform: none;
  }

  .core-service-eyebrow {
    justify-content: flex-start;
    margin-bottom: 7px;
  }

  .core-service-copy h2 {
    margin: 0;
    font-size: clamp(26px, 7vh, 36px);
    line-height: 1.04;
  }

  .core-service-copy .core-description {
    max-width: 460px;
    margin: 9px 0 0;
    font-size: 11px;
    line-height: 1.38;
  }

  .core-service-tags {
    display: none;
  }

  .core-service-nav {
    top: 47%;
    right: clamp(44px, 8vw, 116px);
    bottom: auto;
    left: auto;
    flex-direction: column;
    gap: 0;
    width: 48px;
    transform: translateY(-50%);
  }

  .core-service-nav-button {
    width: 46px;
    min-height: 32px;
    padding: 3px 8px 3px 0;
  }

  .core-service-nav-button i {
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    width: 2px;
    height: 4px;
    transform: translateY(-50%);
    transition: height 320ms ease, background 260ms ease, box-shadow 260ms ease;
  }

  .core-service-nav-button.is-current i {
    width: 2px;
    height: 20px;
  }

  .core-service-nav-button:hover,
  .core-service-nav-button:focus-visible,
  .core-service-nav-button.is-current {
    transform: translateX(-2px);
  }
}

@media (max-width: 1100px) {
  .product-intro {
    left: 42px;
    width: min(650px, 62vw);
  }

  .product-layout {
    right: 36px;
    left: 36px;
    grid-template-columns: minmax(280px, 0.78fr) minmax(410px, 1.22fr);
    gap: 28px;
  }

  .product-orbit-nav {
    width: min(420px, 40vw);
  }
}

@media (max-width: 820px) {
  .product-intro {
    top: max(48px, calc(env(safe-area-inset-top) + 26px));
    left: 18px;
    width: calc(100% - 70px);
    text-align: center;
  }

  .product-kicker {
    justify-content: center;
    margin-bottom: 9px;
    font-size: 8px;
  }

  .product-intro h2 {
    max-width: 620px;
    margin: 0 auto;
    font-size: clamp(20px, 6vw, 30px);
    line-height: 1.32;
  }

  .product-layout {
    top: clamp(136px, 21svh, 184px);
    right: 46px;
    bottom: max(42px, calc(env(safe-area-inset-bottom) + 24px));
    left: 14px;
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    height: auto;
  }

  .product-showcase {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    width: 100%;
    min-height: 0;
    flex: 1 1 auto;
  }

  .product-slide h3 {
    font-size: clamp(40px, 11vw, 62px);
  }

  .product-slide h4 {
    margin-top: 15px;
    font-size: clamp(17px, 5vw, 23px);
  }

  .product-description {
    max-width: 470px;
    margin-top: 13px;
    font-size: 12px;
    line-height: 1.62;
  }

  .product-link {
    margin-top: 17px;
    padding: 9px 15px 9px 17px;
  }

  .product-orbit-nav {
    display: flex;
    flex-direction: row;
    flex: 0 0 auto;
    gap: 7px;
    justify-content: center;
    width: 100%;
    height: 46px;
    padding-left: 0;
    overflow: visible;
    contain: none;
  }

  .product-orbit-nav::before,
  .product-orbit-hub,
  .product-orbit-track,
  .product-orbit-wave,
  .product-hub-morph {
    display: none;
  }

  .experience.is-planet-transforming .product-orbit-item {
    animation: none;
  }

  .product-orbit-item {
    position: relative;
    top: auto;
    left: auto;
    grid-template-columns: 7px 17px auto;
    gap: 6px;
    min-height: 42px;
    min-width: 0;
    padding: 6px 10px 6px 7px;
    border-radius: 999px;
    opacity: 0.46;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: color 280ms ease, opacity 280ms ease, transform 320ms ease;
  }

  .product-orbit-item[data-orbit-position^="hidden"] {
    display: none;
  }

  .product-orbit-item[data-orbit-position="current"] {
    opacity: 1;
  }

  .experience.is-planet-transforming .product-orbit-item[data-orbit-position="current"] {
    opacity: 1;
  }

  .experience.is-planet-transforming .product-orbit-item[data-orbit-position="near-before"],
  .experience.is-planet-transforming .product-orbit-item[data-orbit-position="near-after"] {
    opacity: 0.5;
  }

  .experience.is-planet-transforming .product-orbit-item[data-orbit-position="far-before"],
  .experience.is-planet-transforming .product-orbit-item[data-orbit-position="far-after"] {
    opacity: 0.24;
  }

  .product-orbit-item::before {
    border-left: 1px solid transparent;
    border-radius: inherit;
    background: rgba(var(--product-accent-rgb), 0.08);
  }

  .product-orbit-item.is-current::before {
    border-left-color: transparent;
  }

  .product-orbit-item > i {
    margin-left: 0;
  }

  .product-orbit-copy strong {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .product-orbit-copy small {
    display: none;
  }

  .product-orbit-item:hover,
  .product-orbit-item:focus-visible,
  .product-orbit-item.is-current {
    transform: translateY(-3px);
  }

  .product-planet {
    top: 90%;
    left: 58%;
    width: max(700px, 165vw);
    height: max(430px, 105vw);
  }

  .product-index {
    display: none;
  }
}

@media (max-height: 620px) and (min-width: 821px) {
  .product-intro {
    top: max(20px, calc(env(safe-area-inset-top) + 10px));
    left: 30px;
    width: 58vw;
  }

  .product-kicker {
    margin-bottom: 7px;
  }

  .product-intro h2 {
    font-size: clamp(18px, 5vh, 25px);
    line-height: 1.22;
  }

  .product-layout {
    right: max(46px, 7vw);
    bottom: 34px;
    left: 28px;
    grid-template-columns: minmax(260px, 0.75fr) minmax(430px, 1.25fr);
    gap: 22px;
    height: min(62vh, 360px);
  }

  .product-orbit-nav {
    width: min(340px, 34vw);
    height: min(320px, 54vh);
  }

  .product-orbit-hub {
    --product-hub-size: clamp(92px, 16vh, 124px);
  }

  .product-orbit-item[data-orbit-position="near-before"] { --orbit-y: -82px; }
  .product-orbit-item[data-orbit-position="near-after"] { --orbit-y: 82px; }
  .product-orbit-item[data-orbit-position="far-before"] { --orbit-y: -130px; }
  .product-orbit-item[data-orbit-position="far-after"] { --orbit-y: 130px; }

  .product-orbit-item {
    min-height: 54px;
  }

  .product-showcase {
    min-height: 245px;
  }

  .product-number {
    margin-bottom: 9px;
  }

  .product-slide h3 {
    font-size: clamp(38px, 9vh, 56px);
  }

  .product-slide h4 {
    margin-top: 12px;
    font-size: clamp(16px, 4vh, 21px);
  }

  .product-description {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.45;
  }

  .product-link {
    margin-top: 14px;
    padding-block: 8px;
  }
}

@media (max-width: 980px) {
  .news-shell,
  .clients-shell {
    width: calc(100% - 76px);
  }

  .news-header {
    grid-template-columns: minmax(0, 1.12fr) minmax(290px, 0.88fr);
    column-gap: 14px;
  }

  .news-board {
    grid-template-columns: minmax(0, 1.12fr) minmax(290px, 0.88fr);
  }

  .news-feature-link {
    grid-template-columns: minmax(0, 1fr) minmax(175px, 0.55fr);
  }

  .client-logo-grid--featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .client-logo-grid--all {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .news-shell {
    gap: 16px;
    width: calc(100% - 76px);
    padding: max(44px, calc(env(safe-area-inset-top) + 28px)) 0 max(30px, calc(env(safe-area-inset-bottom) + 18px));
  }

  .news-header {
    display: block;
  }

  .news-kicker {
    margin-bottom: 10px;
  }

  .news-header h2 {
    font-size: clamp(27px, 8vw, 38px);
  }

  .news-header > p:last-child {
    max-width: 470px;
    margin-top: 9px;
    font-size: 11px;
    line-height: 1.62;
  }

  .news-board {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(220px, 1.2fr) minmax(205px, 0.8fr);
    gap: 9px;
  }

  .news-feature-card {
    position: relative;
    border-radius: 18px;
  }

  .news-feature-link {
    display: block;
  }

  .news-feature-controls {
    top: 16px;
    right: 16px;
    bottom: auto;
    left: auto;
    grid-template-columns: auto auto;
    gap: 9px;
    width: auto;
  }

  .news-feature-count {
    gap: 4px;
    font-size: 8px;
  }

  .news-feature-count strong {
    font-size: 12px;
  }

  .news-feature-progress {
    display: none;
  }

  .news-feature-buttons {
    gap: 4px;
  }

  .news-feature-buttons button {
    width: 27px;
    height: 27px;
    background: rgba(255, 255, 255, 0.78);
    font-size: 10px;
  }

  .news-feature-copy {
    width: 76%;
    height: 100%;
    padding: 22px;
  }

  .news-feature-copy h3 {
    margin-top: 14px;
    font-size: clamp(21px, 6vw, 29px);
    line-height: 1.38;
  }

  .news-feature-card--external .news-feature-copy h3 {
    width: auto;
    max-width: none;
  }

  .news-feature-copy > p:not(.news-meta) {
    display: none;
  }

  .news-link-label {
    padding-top: 13px;
    font-size: 9px;
  }

  .news-feature-visual {
    position: absolute;
    z-index: 0;
    inset: 0 0 0 48%;
    opacity: 0.72;
  }

  .news-story-list {
    gap: 6px;
  }

  .news-story-card {
    border-radius: 13px;
  }

  .news-story-card > a {
    padding: 10px 38px 10px 16px;
  }

  .news-story-card .news-meta {
    font-size: 9px;
  }

  .news-story-card .news-meta span {
    font-size: 9px;
  }

  .news-story-card h3 {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.38;
  }

  .news-story-card h3 br {
    display: none;
  }

  .news-story-arrow {
    right: 15px;
    font-size: 13px;
  }

  .news-index {
    display: none;
  }

  .clients-section {
    min-height: 66svh;
  }

  .clients-shell {
    width: calc(100% - 76px);
    padding: 54px 0 max(48px, calc(env(safe-area-inset-bottom) + 26px));
  }

  .clients-header h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .clients-header > p:last-child {
    margin-top: 9px;
    font-size: 11px;
  }

  .client-logo-gallery {
    margin-top: 28px;
  }

  .client-logo-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .client-logo-item {
    height: 66px;
    padding: 11px;
    border-radius: 12px;
  }

  .client-logo-item img {
    height: 38px;
  }

  .client-logo-placeholder {
    font-size: 9px;
  }

  .clients-hint {
    align-items: flex-start;
    margin-top: 14px;
    padding-inline: 8px;
    font-size: 8px;
    text-align: left;
  }

  .clients-hint span {
    flex: 0 0 auto;
    margin-top: 4px;
  }

  .client-dialog {
    padding: 12px;
  }

  .client-dialog-panel {
    width: 100%;
    height: 86svh;
    max-height: none;
    padding: 30px 18px 22px;
    border-radius: 18px;
  }

  .client-dialog-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }

  .client-dialog-header {
    padding-right: 44px;
  }

  .client-dialog-header h2 {
    margin-top: 8px;
    font-size: 28px;
  }

  .client-logo-grid--all {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 68px;
    gap: 7px;
    margin-top: 24px;
  }

  .client-logo-grid--all .client-logo-item {
    height: 68px;
  }
}

@media (max-height: 700px) and (min-width: 721px) {
  .news-shell {
    gap: 18px;
    padding: 28px 0 52px;
  }

  .news-kicker {
    margin-bottom: 9px;
  }

  .news-header h2 {
    font-size: clamp(28px, 3vw, 41px);
  }

  .news-header > p:last-child {
    font-size: 11px;
    line-height: 1.5;
  }

  .news-feature-copy {
    padding: 26px 32px;
  }

  .news-feature-copy h3 {
    margin-top: 13px;
    font-size: clamp(23px, 2vw, 34px);
  }

  .news-feature-copy > p:not(.news-meta) {
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.5;
  }

  .news-link-label {
    padding-top: 12px;
  }

  .news-story-card > a {
    padding-block: 13px;
  }

  .news-story-card h3 {
    margin-top: 7px;
    font-size: clamp(14px, 1vw, 18px);
  }
}

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

  .news-shell,
  .news-feature-card,
  .news-story-card,
  .client-dialog,
  .client-dialog-panel {
    transition: none !important;
  }

  .experience.is-news-section .news-shell,
  .experience.is-news-section .news-feature-card,
  .experience.is-news-section .news-story-card {
    opacity: 1;
    transform: none;
  }

  .news-signal-core,
  .news-signal-line {
    animation: none !important;
  }

  .eyebrow,
  .hero h1,
  .platform-info,
  .portal-link,
  .interaction-hint,
  .intro-interaction-hint {
    opacity: 1;
    transform: none;
  }

  .experience.is-active .intro-interaction-hint {
    opacity: 0.88;
    animation: none !important;
  }

  .experience.is-active .intro-interaction-hint.is-hidden {
    opacity: 0.66 !important;
  }

  .experience.is-core-section .interaction-hint {
    animation: none !important;
    opacity: 0.66;
  }

  .core-copy {
    opacity: 1;
    transform: none;
  }

  .hero-slide {
    filter: none;
    transform: none;
  }

  .core-service-slide {
    filter: none;
    transform: none;
    clip-path: none;
  }

  .experience.is-core-section .wave-trigger::before,
  .experience.is-core-section:not(.is-touching):not(.is-transforming) .touch-core,
  .experience.is-core-section .touch-label {
    animation: none !important;
  }

  .experience.is-core-section .wave-trigger::before {
    opacity: 0.34;
  }

  .experience.is-core-section .touch-label {
    opacity: 0.68;
  }

  .product-intro,
  .product-layout,
  .product-slide {
    filter: none;
    transition: none;
  }

  .experience[data-product="0"].is-product-section .product-planet--top,
  .experience[data-product="1"].is-product-section .product-planet--pcs,
  .experience[data-product="2"].is-product-section .product-planet--fts {
    animation: none !important;
    opacity: 0.92;
    transform: translate3d(-50%, -50%, 0) rotate(-17deg) scale(1);
  }

  .product-color-sweep {
    animation: none !important;
  }

  .product-hub-morph,
  .product-orbit-wave {
    display: none !important;
  }

  .experience.is-planet-transforming .product-orbit-hub,
  .experience.is-planet-transforming .product-orbit-hub > .product-hub-copy,
  .experience.is-planet-transforming .product-orbit-nav::before,
  .experience.is-planet-transforming .product-orbit-track,
  .experience.is-planet-transforming .product-orbit-item {
    animation: none !important;
  }

  .experience.is-product-shifting .product-orbit-hub::after {
    animation: none !important;
  }

  .experience.is-planet-transforming .product-orbit-hub,
  .experience.is-planet-transforming .product-orbit-nav::before,
  .experience.is-planet-transforming .product-orbit-hub > .product-hub-copy {
    opacity: 1;
  }

  .experience.is-planet-transforming .product-orbit-track {
    opacity: 0;
  }

  .experience.is-planet-transforming .product-orbit-item[data-orbit-position="current"] {
    opacity: 1;
  }

  .experience.is-planet-transforming .product-orbit-item[data-orbit-position="near-before"],
  .experience.is-planet-transforming .product-orbit-item[data-orbit-position="near-after"] {
    opacity: 0.5;
  }

  .experience.is-planet-transforming .product-orbit-item[data-orbit-position="far-before"],
  .experience.is-planet-transforming .product-orbit-item[data-orbit-position="far-after"] {
    opacity: 0.24;
  }
}

/* 721~1180px 구간에서도 우측 축약 탭만큼 본문 안전 여백을 유지합니다. */
@media (min-width: 721px) and (max-width: 1180px) {
  .hero {
    padding-right: max(48px, calc(env(safe-area-inset-right) + 42px));
  }
}

/* 클릭·터치 후 브라우저가 자동으로 그리는 사각 포커스 테두리를 표시하지 않습니다. */
.experience :where(button, a, [tabindex]):focus,
.experience :where(button, a, [tabindex]):focus-visible {
  outline: none !important;
  outline-offset: 0 !important;
}
