*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: #070707;
  overflow-x: hidden;
  padding-top: 0;
  /* 히어로가 GNB 뒤로 풀스크린 */
}

/* ══ NAV — 메인 페이지 GNB 오버라이드 ══ */
/* 메인 페이지에서는 히어로 위에 투명하게 시작 (common.css에서 position:fixed 처리) */

.mob-br {
  display: none;
}

/* ══ HERO ══ */
#hero {
  position: relative;
  width: 100%;
  height: 100svh;
  height: 100vh;
  /* fallback */
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/main/HERO_poster.jpg') center/cover no-repeat;
}

/* 히어로 배경 영상: .hero-bg 위, .hero-overlay 아래. 로딩 전엔 poster(HERO_poster.jpg=영상 첫 프레임) 표시 */
.hero-bg-video {
  /* 검수 0809: 기존 'min-100%+width/height:auto' 커버 해킹은 영상이 컨테이너보다 크면(모바일: 810px 영상 vs
     ~393px 폰 뷰포트) 영상을 축소하지 않고 '원본 픽셀 크기 그대로' 렌더 → 가운데 일부만 보여 초확대되는 버그.
     (object-fit:cover가 있어도 박스가 이미 원본크기라 무효.) → width/height:100% + object-fit:cover로 교체해
     실제로 컨테이너에 맞춰 축소·커버. object-fit:video는 모던 iOS/안드로이드 모두 지원. */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.45));
}

.hero-blob {
  position: absolute;
  left: -140px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
  pointer-events: none;
}

/* 히어로 영상 자막(Figma 1997:13254): 시점별 문구를 영상 재생에 맞춰 전환.
   위치/스타일 그대로 — Pretendard SemiBold 50px, 행간 1.3, opacity .8, text-shadow.
   font-family는 var로 두어 다국어 시 폰트만 교체 가능(--hero-caption-font). */
.hero-caption {
  position: absolute;
  left: clamp(24px, 7.29vw, 140px);                 /* 140/1920 */
  top: calc(50% + clamp(120px, 20.37vh, 220px));    /* 중앙 아래 220px(하단 좌측) */
  z-index: 3;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: var(--hero-caption-font, 'Pretendard', sans-serif);
  font-weight: 600;                                 /* SemiBold */
  font-size: clamp(28px, 2.6vw, 50px);              /* 50/1920 */
  line-height: 1.3;
  color: #fff;
  opacity: 0;                                       /* 검수 0724: 크로스페이드 — 기본 숨김, 활성 레이어만 표시 */
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  transition: opacity 0.55s ease;                   /* 사라지는 레이어: 지연 없이 먼저 페이드아웃(0.55s) */
}

/* 크로스페이드 간격(중간): 나타나는 레이어는 0.35s 지연 후 페이드인 → 앞 자막이 거의 사라질 때 뒷 자막 등장
   (완전 겹침도 아니고 빈 시간(마)도 안 뜨는 중간 수준). 지연값으로 조정. */
.hero-caption.is-active {
  opacity: 0.8;
  transition: opacity 0.55s ease 0.35s;
}

/* 검수 0809: 스크롤로 히어로를 벗어나면 자막 즉시 숨김 — is-active(영상시간 기준)만으로는
   스크롤 후에도 자막이 켜져 있어, 빠른 스크롤 시 다음 콘텐츠 위로 겹쳐 보이던 것 방지. 빠르게 페이드아웃. */
.hero-caption.cap-hidden {
  opacity: 0 !important;
  transition: opacity 0.15s ease !important;
}

.hero-caption-line {
  display: block;
}

/* 다국어 폰트 훅: 특정 언어(예: 영문)일 때 폰트를 달리 주려면 아래처럼.
   .hero-caption:lang(en) { font-family: 'Latin Font', sans-serif; }
   전체 언어 전환 시엔 상위에서 --hero-caption-font 변수만 바꿔도 됨. */

/* ══ ORBITAL SECTION ══ */
#orbital-wrapper {
  position: relative;
  height: 500vh;
  z-index: 3;
  margin-top: 120px;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.orbital-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  height: 100vh;
  height: 100svh;
  background: transparent;
  overflow: hidden;
}

.orb-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.orb-ellipse {
  fill: none;
  stroke-linecap: round;
}

.orb-e1 {
  stroke: rgba(18, 28, 72, 0);
  stroke-width: 0;
}

.orb-e2 {
  stroke: rgba(18, 28, 72, 0.09);
  stroke-width: 0.7;
}

.orb-inner-trail {
  fill: none;
  stroke-linecap: butt;
  stroke-width: 4;
}

.orb-coil {
  position: absolute;
  width: clamp(640px, 76vw, 1460px) !important;
  height: clamp(640px, 76vw, 1460px) !important;
  transform: translate(-50%, -50%) scale(1);
  z-index: 1;
  opacity: 1;
  will-change: transform, opacity;
}

.orb-coil img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 36px rgba(0, 0, 0, 0.16)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.orb-coil canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* ── 3D 코일 고정 오버레이 (orbital → product 이동용) ── */
#coil-3d-fixed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
  height: 100svh;
  height: 100vh;
  height: 100svh;
  pointer-events: none;
  z-index: -1;
}

#coil-3d-fixed.coil-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 4;
  will-change: transform;
}

#coil-3d-fixed.coil-on-product {
  z-index: 10;
}


#coil-3d-fixed canvas {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent !important;
  filter: drop-shadow(0 0 0.5px rgba(0, 0, 0, 0.6));
}

.orb-dot {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  will-change: left, top;
}

.orb-dot-navy {
  background: #003592;
  filter: blur(0px);
}

.orb-dot-orange {
  background: #f37220;
  filter: blur(0px);
}

.orb-dot-gray {
  background: #8a8a9a;
  filter: blur(0px);
}

.orb-card {
  position: absolute;
  z-index: 1;
  opacity: 0;
  line-height: 0;
  will-change: transform, opacity;
  overflow: hidden;
}

.orb-card img {
  display: block;
}

#orb-card-1 {
  right: 140px;
  top: 100px;
  z-index: 1;
}

#orb-card-2 {
  left: 40px;
  top: 72px;
  z-index: 1;
  max-width: calc(50vw - 340px);
}

#orb-card-3 {
  right: 40px;
  top: calc(50% - 188px);
  z-index: 1;
}

#orb-card-4 {
  left: 200px;
  bottom: 72px;
  z-index: 1;
  max-width: calc(50vw - 340px);
}

#orb-card-2 img,
#orb-card-4 img {
  width: 100%;
  height: auto;
}

#orb-phase-1,
#orb-phase-2 {
  position: fixed;
  left: 50%;
  opacity: 0;
  text-align: center;
  z-index: 5;
  pointer-events: none;
  will-change: opacity, transform;
  top: 50%;
}

.orb-line-clip {
  overflow: hidden;
  padding-bottom: 0.08em;
}

.orb-line {
  display: block;
  font-size: clamp(40px, 4.17vw, 80px);
  font-weight: 600;
  color: #070707;
  line-height: 1.4;
  letter-spacing: 0;
  transform: translateY(110%);
  will-change: transform;
}

.orb-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 28px;
  opacity: 0;
  will-change: opacity;
  pointer-events: auto;
}

.orb-btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 174px;
  height: 64px;
  padding: 0 24px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background: #111;
  line-height: 1.6;
  border-radius: 16px;
  text-decoration: none;
}

.orb-btn-circle {
  width: 60px;
  height: 64px;
  border-radius: 16px;
  border: 1.5px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}

.orb-cta-group:hover .orb-btn-circle {
  background: #F27100;
  border-color: transparent;
  color: #fff;
}

.orb-inner-box {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-arrow-svg {
  width: 14px;
  height: 11px;
}




/* ══ 제품소개 ══ */
#product-wrapper {
  position: relative;
  height: 800vh;
  /* 👇 제품소개 카드도 양옆 30px 띄우기 위해 wrapper에 패딩 부여 */
  padding: 0 30px;
  box-sizing: border-box;
  max-width: 1920px;
  margin: 0 auto;
}

.product-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  height: 100vh;
  height: 100svh;
  width: 100%;
  padding: 40px 0;
  background: #fff;
  overflow: visible;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card {
  position: relative;
  width: 100%;
  /* 100vh에서 위아래 40px(총 80px) 패딩을 제외한 높이 꽉 채우기 */
  height: calc(100svh - 80px);
  height: calc(100vh - 80px);
  height: calc(100svh - 80px);
  max-height: 930px;
  background: linear-gradient(135deg, #E46116 0%, #FF7824 66%, #F98039 100%);
  border-radius: clamp(22px, 1.458vw, 28px);
  overflow: visible;
  display: flex;
  align-items: flex-start;
  padding: clamp(45px, 3.125vw, 60px) clamp(54px, 3.75vw, 72px);
}

.product-left {
  /* Figma 컨텐츠 폭 730(카드 700 + 세로 인디케이터) 수용 */
  flex: 0 0 clamp(560px, 38.02vw, 730px);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
}

.product-dikel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0 !important;
}

.product-dikel-icon {
  width: clamp(36px, 2.292vw, 44px);
  height: clamp(36px, 2.292vw, 44px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-dikel-name {
  font-size: clamp(20px, 1.354vw, 26px);
  font-weight: 700;
  color: #fff;
  transition: opacity 0.4s ease;
}

#prod-steps {
  flex: 1;
  position: relative;
  min-height: clamp(280px, 18.75vw, 360px);
  margin-top: clamp(22px, 1.563vw, 30px) !important;
}

/* 좌측 레이아웃: 프레임(제목칸·안내문구·흰카드·인디케이터)은 고정,
   내부 텍스트/내용만 튕기듯(overshoot) 전환 */
#prod-steps {
  display: flex;
  flex-direction: column;
}

/* 제목 프레임: 고정 높이 + overflow hidden. 내부 트랙(3개 제목)이 스크롤 따라 연속 이동(스와이프) */
.product-title-frame {
  position: relative;
  width: 100%;
  height: clamp(90px, 5.83vw, 112px);
  overflow: hidden;
}

.product-title-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
  /* 전환 지점에서 살짝 감속하며 안착(과한 바운스 X) */
  transition: transform 0.75s cubic-bezier(0.25, 1.06, 0.4, 1);
}

.product-title-frame .product-title {
  flex: 0 0 auto;
  height: clamp(90px, 5.83vw, 112px);
  /* 프레임과 동일 = 1페이지 */
  display: flex;
  align-items: center;
}

/* 흰 카드(프레임 고정, overflow hidden) 내부 트랙이 세로로 연속 이동 */
.product-info-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
  /* 전환 지점에서 살짝 감속하며 안착(과한 바운스 X) */
  transition: transform 0.75s cubic-bezier(0.25, 1.06, 0.4, 1);
}

#prod-arc-fill {
  /* 1/3 조각이 다음 3등분 위치로 부드럽게 회전 이동 */
  transition: stroke-dashoffset 0.75s cubic-bezier(0.25, 1.06, 0.4, 1);
}

.product-info-content {
  position: relative;
  flex: 0 0 auto;
  height: clamp(250px, 16.67vw, 320px);
  /* 카드 높이와 동일 = 1페이지 */
}

/* 제목 앞 번호 (01/02/03) — 3개 제품이 있음을 안내 */
.product-num {
  margin-right: 0.35em;
  font-weight: 700;
  opacity: 0.55;
}

/* ── PC 안내 문구: 흰 카드 위, 스크롤 아이콘(48) + 텍스트(20 Regular) (Figma 1300:3777/3779) ── */
.product-guide {
  display: flex;
  align-items: center;
  gap: 4px;                 /* 검수 0716: 아이콘↔텍스트 간격 4px */
  margin-top: auto;
  /* 좌측 하단부(카드 위)로 밀착 */
  margin-bottom: clamp(10px, 0.833vw, 16px);
}

.product-guide-ic {
  flex: 0 0 auto;
  width: 32px;              /* 검수 0716: 아이콘 32px */
  height: 32px;
}

.product-guide p {
  margin: 0;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 16px;          /* 검수 0716: 텍스트 16px */
  line-height: 1.6;
  color: #fff;
}

/* ── 흰 카드 + 세로 인디케이터 한 행 (Figma 1300:3780) ── */
.product-card-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(12px, 1.04vw, 20px);
  width: 100%;
}

/* ── PC 인디케이터: 흰 카드 우측, 세로 pill 3개 10×24 (Figma 1300:3787~3789) ── */
.product-indicator {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}

.pind-dot {
  width: 10px;
  height: 24px;
  border-radius: 100px;
  background: #fff;
  opacity: 0.3;
  transition: opacity 0.35s ease;
}

.pind-dot.is-active {
  opacity: 1;
}

/* PC 전용: 태블릿·모바일에서는 안내문구·인디케이터 숨김 + 카드행 래퍼 해제 */
@media (max-width: 1439px) {
  .product-guide,
  .product-indicator {
    display: none !important;
  }

  .product-card-row {
    display: contents;
  }

  /* 모바일/태블릿: 트랙 캐러셀 해제 → 활성 항목만 흐름 배치로 표시 */
  .product-title-frame {
    height: auto;
    overflow: visible;
  }

  .product-title-track,
  .product-info-track {
    transform: none !important;
    display: block;
  }

  .product-title-frame .product-title {
    height: auto;
  }

  .product-title-frame .product-title:not(.is-shown) {
    display: none;
  }

  .product-info-content {
    height: auto;
  }

  .product-info-content:not(.is-shown) {
    display: none;
  }
}

/* 점 내비게이터: 데스크탑에서 숨김, 모바일에서만 표시 */
.prod-dots {
  display: none;
}

.product-title {
  font-family: 'Pretendard', sans-serif;
  font-size: clamp(56px, 4.167vw, 80px) !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff;
  white-space: nowrap;
  display: block !important;
}

.product-info-card {
  position: relative;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 20px;
  width: clamp(540px, 36.46vw, 700px);
  height: clamp(250px, 16.67vw, 320px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  padding: 0;
  overflow: hidden;
}

.product-info-text h3 {
  position: absolute;
  left: clamp(22px, 1.5625vw, 30px);
  top: clamp(22px, 1.5625vw, 30px);

  /* 📍 핵심 수정: 아래 p 태그와 너비(width)를 완벽하게 똑같이 맞췄습니다! */
  width: clamp(280px, 19vw, 365px);

  height: clamp(70px, 4.6875vw, 90px);
  /* (이 높이는 피그마 디자인에 맞게 그대로 두셔도 됩니다) */
  font-size: clamp(24px, 1.56vw, 30px);
  font-weight: 600;
  color: #070707;
  line-height: 1.5;
  margin: 0;
  display: flex;
  align-items: flex-start;
  word-break: keep-all;
}

.product-info-text p {
  position: absolute;
  left: clamp(22px, 1.5625vw, 30px);
  bottom: clamp(22px, 1.5625vw, 30px);

  /* 📍 기준이 되는 너비 */
  width: clamp(280px, 19vw, 365px);

  font-size: clamp(18px, 1.15vw, 22px);
  font-weight: 400;
  color: #4e4e4e;
  line-height: 1.6;
  margin: 0;
  word-break: keep-all;
}

.product-info-img {
  position: absolute;
  right: clamp(22px, 1.5625vw, 30px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 13.75vw, 264px);
  height: clamp(200px, 13.75vw, 264px);
  background: linear-gradient(135deg, #f0f4f8, #d0dee8);
  border-radius: 12px;
}

.product-bottom {
  position: absolute;
  bottom: clamp(28px, 1.875vw, 36px);
  left: clamp(54px, 3.75vw, 72px);
  right: clamp(54px, 3.75vw, 72px);
  display: flex;
  align-items: center;
  /* SCROLL DOWN 그룹 제거 → 버튼만 우측 정렬 유지 */
  justify-content: flex-end;
  z-index: 20;
}

.product-bottom-group-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 6px;
}

.product-status-row {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.keep-scrolling {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: clamp(100px, 7.03vw, 135px);
  height: clamp(22px, 1.56vw, 30px);
  justify-content: center;
}

.keep-scrolling span {
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 0;
  white-space: nowrap;
}

.mouse-icon-box {
  width: 48px;
  height: 48px;
  margin-left: clamp(380px, 26.3vw, 505px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-loading-container {
  width: clamp(520px, 35.83vw, 688px);
  height: clamp(28px, 1.87vw, 36px);
  display: flex;
  align-items: center;
}

.product-loading-track {
  width: clamp(520px, 35.625vw, 684px);
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.product-loading-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  transition: width 0.2s ease-out;
}

.keep-scrolling-line {
  display: none;
}

.product-detail-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 2;
}

.product-detail-btn a:not(.circle-arrow) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(50px, 3.177vw, 61px);
  padding: 0 clamp(20px, 1.25vw, 24px);
  font-size: clamp(15px, 0.937vw, 18px);
  font-weight: 500;
  color: #000;
  background: #fff;
  line-height: 1.6;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-detail-btn .circle-arrow {
  width: clamp(50px, 3.177vw, 61px);
  height: clamp(50px, 3.177vw, 61px);
  border-radius: 14px;
  border: 1.5px solid #fff;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.product-detail-btn .circle-arrow:hover {
  background: #C15A00;
  border-color: transparent;
  color: #fff;
}

.product-detail-btn .orb-inner-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.product-coil {
  position: absolute;
  right: clamp(-25px, -1.3vw, -20px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(640px, 44.792vw, 860px);
  height: clamp(640px, 44.792vw, 860px);
  z-index: 1;
  pointer-events: none;
}

.product-coil img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.prod-coil-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.prod-coil-img.prod-active {
  opacity: 1;
}

/* ══ 슬로건 ══ */
#slogan {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: #fff;
  height: 600px;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: -40px;
}

.slogan-track {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 48px);
  white-space: nowrap;
  width: max-content;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.slogan-text {
  font-size: clamp(60px, 8.333vw, 160px);
  font-weight: 400;
  color: #070707;
  letter-spacing: -0.04em;
  line-height: 1;
}

.slogan-circle {
  flex-shrink: 0;
  width: clamp(72px, 10.313vw, 198px);
  height: clamp(72px, 10.313vw, 198px);
}

.slogan-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ══ 투자 (지속 가능한 성장) ══ */
#invest-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1920px;
  margin: 0 auto;
}

#invest {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 30px;
  padding-top: 0;
}

/* ══ 투자 섹션 (피그마 리빌드) ══ */
.invest-card-wrap {
  width: 1860px;
  max-width: calc(100vw - 60px);
  min-height: 1044px;
  background: #F1EDEA;
  border-radius: clamp(0px, 1.5625vw, 30px);
  overflow: hidden;
  flex-shrink: 0;
  padding: var(--section-padding-y) 90px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* 모바일 전용 투자정보 센터 버튼 — PC에서 숨김 */
.invest-mob-center-btn {
  display: none;
}

.invest-title-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.invest-title-text {
  font-family: 'Pretendard', sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}

.invest-btn-row {
  display: flex;
  gap: 4px;
  align-items: center;
}

.invest-btn-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: #000;
  border-radius: 14px;
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.invest-btn-outline {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 14px;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.invest-btn-outline:hover {
  background: #F27100;
  border-color: transparent;
  color: #fff;
}

/* 카드 행 */
.invest-cards-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: 100%;
}

/* 주가 카드 */
.inv-card-stock {
  width: 396px;
  min-width: 0;
  min-height: 556px;
  background: #fff;
  border-radius: clamp(16px, 1.5625vw, 30px);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.inv-stock-header {
  display: flex;
  align-items: center;
  padding: 14px 0;
}

.inv-stock-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inv-company-label {
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #4E4E4E;
  line-height: 1.5;
}

.invest-ticker-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid #F48D33;
  border-radius: 6px;
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #F27100;
  line-height: 1.5;
}

.inv-stock-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.inv-price-num {
  font-family: 'Pretendard', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.inv-price-unit {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  padding-bottom: 8px;
}

.inv-change-box {
  background: #F8F9FB;
  border-radius: clamp(6px, 0.833vw, 16px);
  padding: 16px 20px;
}

.inv-change-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 0;
}

.inv-change-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.inv-change-label {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #4E4E4E;
  line-height: 1.6;
  width: 84px;
  flex-shrink: 0;
}

.inv-change-val {
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #363636;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 4px;
}

.inv-change-val .tri {
  color: #F64301;
  font-size: 14px;
  border-radius: 1px;
}

.inv-change-val .tri img {
  width: 20px;
  height: auto;
  vertical-align: middle;
}

.inv-divider-thin {
  width: 100%;
  height: 1px;
  background: #E9E9E9;
}

/* 중간 컬럼 (국내시장 + 글로벌) */
.inv-card-col {
  width: 450px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inv-card-market {
  flex: 1;
  border-radius: clamp(16px, 1.042vw, 20px);
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
}

.inv-card-market::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.2));
  border-radius: clamp(16px, 1.042vw, 20px);
  pointer-events: none;
}

.inv-card-market>* {
  position: relative;
  z-index: 1;
}

.inv-card-accum {
  flex: 1;
  background: #fff;
  border-radius: clamp(16px, 1.042vw, 20px);
  padding: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inv-card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.inv-card-top-row .inv-lbl {
  flex: 1;
  padding: 14px 0;
}

.inv-card-label {
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  word-break: keep-all;
  padding: 14px 0;
}

.inv-card-label-dark {
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #4E4E4E;
  line-height: 1.5;
  word-break: keep-all;
  padding: 14px 0;   /* 검수 0806: .inv-card-label(흰색)과 스타일 통일 — 데스크탑에도 상하 14px (색만 다르고 나머지 동일) */
}

.inv-card-icon {
  width: 48px;              /* 검수 0731: 카드 아이콘 48px (웹·태블릿, 62→48) */
  height: 48px;
  flex-shrink: 0;
}

.inv-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inv-card-num {
  font-family: 'Pretendard', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.inv-card-num-dark {
  font-family: 'Pretendard', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.inv-card-unit {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 8px;
}

.inv-card-sub {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}

.inv-card-sub-dark {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #4E4E4E;
  line-height: 1.6;
}

/* 장기 파트너십 카드: 문구 + 하위문구 (Figma 1500-9987) */
.inv-card-partner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inv-card-statement {
  font-family: 'Pretendard', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}

/* IR 자료실 카드 */
.inv-card-ir {
  flex: 1;
  background: #F27100;
  border-radius: clamp(16px, 1.5625vw, 30px);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  min-height: 556px;
}

.ir-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.ir-header-left {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 0;
}

.ir-header-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  white-space: nowrap;
}

.ir-header-arrow {
  display: inline-flex;
  align-items: center;
}

.ir-header-arrow svg {
  width: 30px;
  height: 30px;
}

.ir-doc-area {
  margin-top: auto;
}

.ir-doc-row {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.ir-doc-item {
  flex: 1;
}

.ir-doc-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.ir-doc-type {
  font-family: 'Pretendard', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

.ir-doc-desc-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 64px;
  flex: 1;
}

.ir-doc-desc {
  font-family: 'Pretendard', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
}

.ir-doc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.ir-doc-date {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  opacity: 0.7;
}

.ir-doc-dl {
  width: 60px;
  height: 60px;
  background: rgba(241, 237, 234, 0.3);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
}

.ir-doc-dl svg {
  width: 24px;
  height: 24px;
}

.ir-divider-v {
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  align-self: stretch;
}

/* ══ 고객지원 ══ */
#support-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
}

.support-sticky {
  position: sticky;
  top: 0;
  background: #fff;
  padding: var(--section-padding-y) var(--section-padding-x);
  box-sizing: border-box;
}

.support-heading {
  font-size: 60px;
  font-weight: 700;
  color: #070707;
  line-height: 1.4;
  margin-bottom: clamp(30px, 3.125vw, 60px);
  width: min(1680px, 100%);
  display: flex;
  align-items: center;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.25vw, 24px);
  width: min(1680px, 100%);
}

.support-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  flex-wrap: wrap;
}

.support-card-img {
  width: 100%;
  height: clamp(150px, 15.625vw, 300px);
  border-radius: clamp(12px, 1.042vw, 20px);
  overflow: hidden;
  margin-bottom: clamp(12px, 1.25vw, 24px);
  position: relative;
}

.support-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-card:hover .support-card-img img {
  transform: scale(1.05);
}

.support-card-text-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.support-card-title {
  font-size: clamp(20px, 1.67vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  color: #1B1B1B;
}

.support-card-desc {
  font-size: clamp(16px, 1.15vw, 22px);
  font-weight: 400;
  line-height: 1.6;
  color: #4E4E4E;
}



.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.fade-in.d1 {
  transition-delay: 0.1s;
}

.fade-in.d2 {
  transition-delay: 0.2s;
}

@media (min-width: 768px) and (max-width: 1439px) {

  /* 히어로(위성) 스크롤 길이 단축 → 위성 사라진 뒤 빈 구간 줄이고 카드가 더 빨리 올라옴 (500vh→200vh) */
  #orbital-wrapper {
    height: 200vh;
  }

  /* ── Product Section: 피그마 태블릿 레이아웃 (좌측 컨텐츠 + 우측 코일) ── */
  #product-wrapper {
    /* 스크롤 재킹 제거: sticky 자식과 같은 높이 → 고정 안 되고 그냥 스크롤됨. 전환은 스와이프 */
    height: auto;
    padding: 0 30px;
  }

  .product-card {
    border-radius: 30px;
    padding: 0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
  }

  .product-left {
    flex: none;
    width: clamp(340px, 42vw, 560px);
    height: 100% !important;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px 120px 30px;
    position: relative;
    z-index: 3;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .product-dikel {
    gap: 12px;
  }

  .product-dikel-icon {
    width: 36px;
    height: 36px;
  }

  .product-dikel-name {
    font-size: 24px;
    font-weight: 700;
  }

  #prod-steps {
    flex: 1;
    position: relative;
    min-height: 0 !important;
    margin-top: 0 !important;
  }

  .prod-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
  }

  .prod-step.prod-active {
    position: relative;
  }

  .product-title {
    font-size: 42px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    white-space: normal !important;
  }

  /* 도넛 인디케이터: 태블릿에서 표시 */
  .prod-dots {
    display: flex !important;
    gap: 6px;
    margin-bottom: 0;
  }

  .prod-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.3s ease;
  }

  .prod-dot.active {
    background: #fff;
  }

  /* info-card: 흰색 박스 해체 → 카드 위에 직접 텍스트 표시 */
  .product-info-card {
    position: relative !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    overflow: visible !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .product-info-text {
    position: relative !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
  }

  .product-info-text h3 {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff !important;
    opacity: 0.8;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
  }

  .product-info-text h3 br {
    display: none;
  }

  .product-info-text p {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: 100% !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #fff !important;
    opacity: 0.8;
    line-height: 1.5 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .product-info-text p br {
    display: none;
  }

  .product-info-img {
    display: block !important;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 348px !important;
    height: 148px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: transparent !important;
  }

  /* 코일: 우측 중앙 — 카드 내 절대 위치 */
  .product-coil {
    display: block !important;
    position: absolute;
    right: clamp(-40px, -2vw, -20px);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(250px, 35vw, 520px);
    height: clamp(250px, 35vw, 520px);
  }

  /* 하단 버튼: product-card 기준 좌측 하단 */
  .product-bottom {
    position: absolute !important;
    left: 30px !important;
    right: auto !important;
    bottom: 30px !important;
    width: auto;
    z-index: 10;
  }

  .product-bottom-group-wrap {
    display: none !important;
  }

  .product-loading-container {
    display: none !important;
  }

  .product-status-row {
    display: none !important;
  }

  .product-detail-btn {
    display: flex;
    gap: 4px;
  }

  .product-detail-btn a:not(.circle-arrow) {
    height: auto;
    padding: 16px 24px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 14px;
    background: #fff !important;
    color: #000 !important;
  }

  .product-detail-btn .circle-arrow {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    border-color: #fff !important;
    padding: 20px;
  }

  .mouse-icon-box {
    display: none !important;
  }

  .keep-scrolling {
    display: none !important;
  }

  .footer-nav-list a {
    font-size: clamp(13px, 1.2vw, 18px) !important;
  }
}

@media (max-width: 1439px) {
  #slogan {
    height: 400px;
  }
}

/* 투자 섹션 태블릿 전용 (768~1439) */
@media (min-width: 768px) and (max-width: 1439px) {
  .invest-card-wrap {
    max-width: calc(100vw - 40px);
    min-height: auto;
    border-radius: 20px;
    gap: 30px;
    padding: 60px 40px;
  }

  .invest-title-text {
    font-size: 36px;
  }

  .inv-company-label {
    font-size: 20px;
  }

  .ir-doc-type {
    font-size: 30px;
  }

  .ir-doc-desc {
    font-size: 16px;
  }

  .ir-doc-dl {
    width: 44px;
    height: 44px;
  }

  /* 검수 0713: 홈 투자 섹션 태블릿 텍스트 고정값 (클램프 아님) */
  .inv-change-label,
  .inv-change-val { font-size: 20px; }        /* 전일대비/등락률 */
  .inv-card-label,
  .inv-card-label-dark { font-size: 20px; }   /* 검수 0806: 태블릿 카드 라벨(독보적·장기 파트너십) 16→20px */
  .inv-card-label-dark { padding: 14px 0; }   /* 검수 0713: 좌측(독보적) 라벨과 상단 패딩 동일 (0→14) */
  .inv-card-statement { font-size: 24px; }    /* 글로벌 본문 */
  .inv-card-sub { font-size: 16px; }          /* 검수 0806: 태블릿 서브(국내 시장점유율 압도적 1위) 20→16px */
  .inv-card-sub-dark { font-size: 16px; }     /* 글로벌 서브 */
  .ir-header-title { font-size: 20px; }       /* IR 자료실 */
  .ir-doc-date { font-size: 16px; }           /* IR 날짜 */
  .inv-card-ir { min-height: 380px; height: 380px; }  /* 검수 0728: 태블릿 IR 카드 높이 380 (base 556 오버라이드) */

  .invest-card-ir {
    min-height: auto;
  }

  .invest-cards-row {
    flex-direction: column;
    gap: 14px;
  }

  .inv-card-stock {
    width: 100%;
    min-height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 32px;
  }

  .inv-card-stock .inv-stock-header {
    width: 100%;
  }

  .inv-card-stock .inv-stock-body {
    flex: 1;
    min-width: 200px;
    gap: 10px
  }

  .inv-card-stock .inv-change-box {
    flex: 1;
    min-width: 200px;
  }

  .inv-price-num {
    font-size: 44px;
  }

  .inv-card-col {
    width: 100%;
    flex-direction: row;
    gap: 14px;
  }

  .inv-card-col>* {
    flex: 1;
  }

  .inv-card-num,
  .inv-card-num-dark {
    font-size: 44px;
  }

  .invest-inner {
    flex-direction: column;
    padding: 40px;
  }

  .invest-cards-wrap {
    width: 100%;
  }

  .ic {
    width: 100% !important;
    right: 0 !important;
  }

  /* 모바일에서는 끝까지 붙도록 설정 */
  .support-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    width: auto;
  }

  .support-heading {
    width: auto;
    font-size: 36px;
  }

  .footer-btns {
    justify-content: flex-start;
    position: relative;
    right: auto;
    top: auto;
  }

  .footer-info-box {
    position: relative;
    left: auto;
    top: auto;
  }

  .footer-logo {
    position: relative;
    left: auto;
    top: auto;
  }

  .footer-content-wrap {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 80px;
  }

  .footer-coil {
    display: none;
  }


  .inv-change-val .tri img {
    width: 18px;
  }
}

/* ════════════════════════════════════
       MOBILE — 1023px 이하 (메인 페이지)
       모든 고정 너비/절대 위치를 유연한 레이아웃으로 전환
       ════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── Hero ── */
  /* 검수 0723: 아래 var(--vh)는 index.html <head> 스크립트가 '잠근' 뷰포트높이(툴바 토글에도 불변).
     svh 불안정 웹뷰(카톡)에서 페이지 튐 방지용. 전체 이력: js/main-coil3d.js 상단 [작업 이력] 주석. */
  /* 검수 0729: 모바일 높이 기준을 lvh(큰 뷰포트=툴바 접힘, 정적)로 통일.
     lvh는 툴바 토글에도 안 변하는 값 → ①캔버스가 항상 큰 화면을 채워 안 잘림 ②값이 안 변해 리사이즈 발작 없음.
     구형(lvh 미지원) 웹뷰는 앞줄 --vh(JS 잠금) fallback 사용. */
  /* 검수 0729: 히어로는 '초기 로드 화면 높이'로 고정(잠근 --vh) → 주소창/바텀바 토글에도 높이 불변.
     (lvh는 그 위에서 캔버스 채우기용이었으나, 히어로 영상은 툴바마다 늘었다 줄면 더 어색 → 고정이 맞음.
     lvh 미지원 웹뷰에선 동적 svh로 떨어져 영상이 늘어나던 문제도 이걸로 해결.) */
  #hero {
    /* 검수 0806: 히어로 영상/자막은 '첫 진입 실제 보이는 높이'(--vhFit, 하단 UI 반영)로 딱 맞춤.
       코일 높이(--vh, 큰 뷰포트 grow-only)와 분리 — 일부 브라우저에서 영상이 화면보다 길게 잡혀
       자막이 아래로 밀리던 현상 해결(네이버앱처럼 풀프레임). */
    height: 100svh;
    height: calc(var(--vhFit, 1svh) * 100);
    min-height: 0;
    margin-bottom: 0;
  }

  /* 코일 캔버스: 안정 높이(잠근 --vh, 스크롤 중 불변). 검수 0806 — dvh(실시간)로 두면 툴바 토글마다 캔버스가
     바뀌며 카메라 aspect까지 흔들려 코일 안착 위치가 틀어짐. 안착은 카드 문서좌표(topDoc) 기준이라 캔버스높이는
     소거되지만, 그러려면 캔버스가 '스크롤 중 안 변해야' aspect가 안정돼 코일이 정확히 캔버스 중앙에 옴. */
  #coil-3d-fixed {
    height: calc(var(--vh, 1svh) * 100);
  }

  /* 모바일 초기 배경도 세로(9:16) 첫 프레임으로 → 가로본이 스치지 않게 */
  .hero-bg {
    background-image: url('../assets/main/HERO_poster_mobile.jpg');
  }

  .hero-caption {
    /* 검수 0723: 모바일 자막 위치 Figma 2005:15352 그대로 (left 24 / top calc(50%+186) / w 312 / 26px·1.4) */
    left: 24px;
    right: 24px;
    top: calc(50% + 186px);
    bottom: auto;
    font-size: 26px;
    line-height: 1.4;
    white-space: normal;
    word-break: keep-all;
  }

  .hero-blob {
    width: 200px;
    height: 200px;
    left: -60px;
  }

  /* ── Orbital ── */
  #orbital-wrapper {
    /* 검수 0724: 텍스트 전환 느리게 하려 구간 확대(기본 160→600vh). 빈 구간은 감수.
       검수 0729: 캔버스와 동일 기준(lvh)으로 → 스크롤 구간이 캔버스 높이와 정확히 일치. */
    height: calc(var(--vh, 1vh) * 600);   /* 검수 0806: 600lvh 제거 → 잠근 --vh만 사용(캔버스와 동일 기준 유지) */
  }

  .orbital-sticky {
    width: 100%;
    overflow: hidden;
    /* 검수 0729: 코일이 들어있는 sticky 컨테이너. 이게 svh(716)라 툴바 내려가면 아래 흰 여백 + 캔버스도
       이 부모(overflow:hidden)에 잘림 → 잠근 --vh로 캔버스와 동일 높이로 채움. (검수 0806: 100lvh 제거) */
    height: calc(var(--vh, 1svh) * 100);
  }

  .orb-inner-trail {
    stroke-width: 1.32 !important;
  }

  .orb-dot {
    width: 6px !important;
    height: 6px !important;
  }

  .orb-heading {
    font-size: 30px;
    text-align: center;
  }

  .orb-line {
    font-size: 30px;
    text-align: center;
    font-weight: 700;
  }

  .orb-coil {
    width: min(70vw, calc(var(--vh, 1svh) * 40)) !important;   /* 검수 0806: 40svh → 잠근 --vh (svh도 이 웹뷰선 동적) */
    height: min(70vw, calc(var(--vh, 1svh) * 40)) !important;
  }

  .orb-card {
    /* border-radius: 기본 clamp(12px, 1.6vw, 20px) 상속 */
  }

  .orb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #orb-card-1 {
    width: 220px;
    right: auto;
    bottom: auto;
    left: 62%;
    top: 14%;
  }

  #orb-card-2 {
    width: 220px;
    left: -26%;
    top: auto;
    right: auto;
    bottom: 16%;
    max-width: none;
  }

  #orb-card-3 {
    width: 170px;
    right: auto;
    top: 66%;
    left: 57%;
    bottom: auto;
  }

  #orb-card-4 {
    width: 240px;
    right: auto;
    bottom: auto;
    left: 8%;
    top: 90%;
    max-width: none;
  }

  .orb-btn-main {
    width: auto;
    padding: 8px 16px;
    height: 42px;
    font-size: 14px;
    border-radius: 10px;
  }

  .orb-btn-circle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .orb-cta-group {
    margin-top: 16px;
  }

  /* 검수 0729: 중앙 문구도 캔버스와 같은 lvh 기준으로 → top:50%(실시간 뷰포트, 툴바 따라 이동) 대신
     50lvh(정적)로 고정 → 툴바 토글에도 문구 안 움직임. 구형은 top:50%(base) fallback. */
  #orb-phase-1 {
    white-space: normal;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-left: 0;
    padding: 0 16px;
    box-sizing: border-box;
    text-align: center;
    transform: translateY(60px);
    top: calc(var(--vh, 1svh) * 50);   /* 검수 0806: 50lvh → 잠근 --vh */
  }

  #orb-phase-2 {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-left: 0;
    padding: 0 16px;
    box-sizing: border-box;
    text-align: center;
    top: calc(var(--vh, 1svh) * 50);   /* 검수 0806: 50lvh → 잠근 --vh */
  }

  /* ── Product Section (sticky 유지!) ── */
  #product-wrapper {
    /* 스크롤 재킹 제거: sticky 자식과 같은 높이 → 고정 안 되고 그냥 스크롤됨. 전환은 스와이프 */
    height: auto;
    padding: 0 16px !important;
  }

  .product-sticky {
    position: sticky;
    top: 0;
    /* 주황 카드(.pm-inner) 높이 = 590. product-mob 상/하 패딩 제거로 카드가 이 높이를 꽉 채움.
       코일은 카드 위쪽으로 별도(고정 캔버스)로 올라옴 */
    height: 590px;
    width: 100%;
    padding: 60px 0 20px;
    background: #fff;
    overflow: visible;
    display: flex;
    align-items: stretch;
    justify-content: center;
    box-sizing: border-box;
  }

  .product-card {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    padding: 40px 16px 30px !important;
    border-radius: 16px !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden !important;
    background-size: cover !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    box-sizing: border-box !important;
  }

  /* ── 좌측 컨텐츠 ── */
  .product-left {
    flex: 0 0 auto !important;
    width: 100%;
    height: auto !important;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .product-dikel {
    margin-bottom: 0 !important;
    gap: 8px !important;
    align-items: center !important;
  }

  .product-dikel-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .product-dikel-icon svg {
    width: 28px !important;
    height: 28px !important;
  }

  .product-dikel-name {
    font-size: 18px !important;
  }

  #prod-steps {
    flex: 0 0 auto;
    position: relative;
    min-height: 0 !important;
    margin-top: 0 !important;
  }

  .prod-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .prod-step.prod-active {
    position: relative;
  }

  .product-title {
    font-size: 30px !important;
    font-weight: 700 !important;
    white-space: normal !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 0 !important;
    line-height: 1.4 !important;
    color: #fff !important;
  }

  /* ── Info Card: Figma에서는 흰색 카드 없음 → 텍스트 직접 표시 ── */
  .product-info-card {
    position: relative !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .product-info-text {
    position: relative !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .product-info-text h3 {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff !important;
    opacity: 0.8;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
    white-space: nowrap !important;
  }

  .product-info-text h3 br {
    display: none;
  }

  .product-info-text p {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: 100% !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #fff !important;
    opacity: 0.8;
    line-height: 1.6 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .product-info-text p br {
    display: none;
  }

  /* 비디오: 피그마 h-112 rounded-8 */
  .product-info-img {
    display: block !important;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    height: 112px !important;
    border-radius: 8px !important;
    overflow: hidden;
    background: transparent !important;
    order: -1;
  }

  /* ── 점 내비게이터 (모바일) ── */
  .prod-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 20px;
    padding: 0;
    z-index: 10;
  }

  .prod-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    transition: background 0.3s ease;
    cursor: pointer;
  }

  .prod-dot.active {
    background: #000;
  }

  /* ── 3D 코일: div 숨김, 3D 캔버스가 직접 표시 ── */
  .product-coil {
    display: none !important;
  }

  /* ── Bottom: 자동 갭으로 하단 배치 ── */
  .product-bottom {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: auto;
    width: auto;
    z-index: 3;
  }

  .product-bottom-group-wrap {
    display: none !important;
  }

  .product-loading-container {
    display: none !important;
  }

  .product-status-row {
    display: none !important;
  }

  .product-detail-btn {
    width: 100%;
  }

  .product-detail-btn a:not(.circle-arrow) {
    width: auto;
    padding: 11px 16px 10px !important;
    height: auto;
    font-size: 14px !important;
    font-weight: 400 !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #000 !important;
    line-height: 1.5 !important;
  }

  .product-detail-btn .circle-arrow {
    width: 42px;
    height: 42px;
    padding: 11px !important;
    border-radius: 10px !important;
    border-color: #fff !important;
  }

  .mouse-icon-box {
    display: none !important;
    margin-left: 0 !important;
  }

  .keep-scrolling {
    display: none !important;
  }

  /* ── Slogan ── */
  #slogan {
    height: 231px;
    padding: 0;
  }

  .slogan-text {
    font-size: 60px;
  }

  .slogan-circle {
    width: 64px;
    height: 64px;
  }

  /* ── Invest Section ── */
  #invest-wrapper {
    padding: 0 !important;
  }

  #invest {
    padding: 0 !important;
  }

  .invest-card-wrap {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    padding: 40px 16px !important;
    border-radius: 0 !important;
    gap: 30px !important;
  }

  .invest-title-block {
    gap: 20px;
  }

  .invest-btn-row {
    display: none !important;
  }

  /* Figma 997:16456 — 투자정보 센터 아웃라인 버튼 */
  .invest-mob-center-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 15px 40px;
    border: 1px solid #F27100;
    border-radius: 10px;
    background: transparent;
    text-decoration: none;
    box-sizing: border-box;
  }
  .invest-mob-center-btn span {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    color: #F27100;
  }
  .invest-mob-center-btn img {
    width: 20px;
    height: 20px;
    filter: invert(44%) sepia(96%) saturate(1500%) hue-rotate(6deg) brightness(101%) contrast(95%);
  }

  .invest-title-text {
    font-size: 30px !important;
  }

  .mob-br {
    display: inline !important;
  }

  .invest-btn-fill {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 10px;
    height: 42px;
  }

  .invest-btn-outline {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .invest-cards-row {
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .inv-card-stock {
    width: 100% !important;
    min-height: auto !important;
    padding: 16px !important;
    border-radius: 16px !important;
    flex-shrink: 0 !important;
    gap: 11px !important;
  }

  .inv-stock-header {
    padding: 0 !important;
    height: 62px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
  }

  .inv-stock-name {
    gap: 10px !important;
  }

  .inv-company-label {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #4E4E4E !important;
    line-height: 1.6 !important;
  }

  .invest-ticker-badge {
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 2px 8px !important;
    border: 1px solid #F48D33 !important;
    border-radius: 3px !important;
    color: #F27100 !important;
  }

  .inv-stock-body {
    gap: 10px !important;
  }

  .inv-price-num {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #000 !important;
    line-height: 1.5 !important;
    gap: 10px !important;
  }

  .inv-price-unit {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #363636 !important;
    line-height: 1.6 !important;
    padding-bottom: 2px !important;
  }

  .inv-change-box {
    background: #F8F9FB !important;
    border-radius: 6px !important;
    padding: 8px 16px !important;
    height: 89px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }

  .inv-change-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 0 !important;
    width: 100% !important;
    align-items: flex-start !important;
  }

  .inv-change-row {
    display: flex !important;
    justify-content: space-between !important;
    gap: 6px !important;
    align-items: center !important;
    height: 26px !important;
  }

  .inv-change-label {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #1B1B1B !important;
    line-height: 1.6 !important;
    width: 84px !important;
  }

  .inv-change-val {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #1B1B1B !important;
    line-height: 1.6 !important;
    gap: 4px !important;
  }

  .inv-change-val .tri {
    display: inline-flex !important;
    align-items: center !important;
    position: relative !important;
    top: -2px !important;
  }

  .inv-change-val .tri img {
    width: 16px;
  }

  .inv-divider-thin {
    background: #D3D3D3 !important;
  }

  .inv-card-col {
    width: 100% !important;
    flex-shrink: 0 !important;
    gap: 8px !important;
  }

  .inv-card-market,
  .inv-card-accum {
    padding: 16px !important;
    border-radius: 16px !important;
    min-height: 258px !important;
  }

  .inv-card-num,
  .inv-card-num-dark {
    font-size: 60px;
  }

  .inv-card-num-pct {
    font-size: 24px;
  }

  .inv-card-statement {
    font-size: 24px;
    line-height: 1.5;
  }

  .inv-card-label,
  .inv-card-label-dark {
    font-size: 18px;
    white-space: nowrap;
  }
  .inv-card-label,
  .inv-card-label-dark { padding: 4px 0; }   /* 검수 0806: 모바일 라벨(독보적·장기 파트너십) 상하간격 4로 통일 */

  /* 모바일: 라벨이 한 줄로 들어가도록 라벨↔아이콘 최소 간격 축소 */
  .inv-card-top-row {
    gap: 12px;
  }

  .inv-card-sub,
  .inv-card-sub-dark {
    font-size: 16px;
  }

  .inv-card-icon {
    width: 48px;
    height: 48px;
  }

  .inv-card-ir {
    min-height: auto !important;
    padding: 16px !important;
    border-radius: 16px !important;
  }

  .ir-card-header {
    margin-bottom: 50px; /* 검수 0723: IR 헤더~본문(IR 레터) 간격 50px */
  }

  .ir-header-left {
    padding: 0 !important;
  }

  .ir-header-title {
    font-size: 18px !important;
  }

  .ir-doc-area {
    margin-top: 0 !important;
  }

  .ir-doc-row {
    flex-direction: column;
    gap: 0;
  }

  .ir-doc-item {
    padding: 0;
  }

  .ir-doc-type {
    font-size: 30px !important;
    line-height: 1.5;
  }

  .ir-doc-desc-wrap {
    gap: 16px !important;
  }

  .ir-doc-desc {
    font-size: 16px !important;
  }

  .ir-doc-date {
    font-size: 16px !important;
  }

  .ir-doc-dl {
    width: 42px !important;
    height: 42px !important;
    border-radius: 30px;
  }

  .ir-divider-v {
    width: 100% !important;
    height: 1px !important;
    align-self: auto !important;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.2) !important;
  }

  /* ── Support Section ── */
  #support-wrapper {
    height: auto !important;
  }

  .support-sticky {
    position: relative !important;
    height: auto !important;
    padding: 40px 16px !important;
  }

  .support-heading {
    font-size: clamp(24px, 6vw, 32px);
    width: 100% !important;
  }

  .support-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 24px;
  }

  .support-card-arrow {
    display: none !important;
  }

  .support-card-text-group {
    gap: 8px !important;
  }

  /* ── Footer (Figma MOB 기준) ── */
}

/* ── 태블릿: border-radius 30px → 20px ── */
@media (min-width: 768px) and (max-width: 1439px) {
    .hero-blob,
    .product-card,
    .invest-card-wrap,
    .inv-card-stock,
    .inv-card-market,
    .inv-card-accum,
    .inv-card-ir {
        border-radius: 20px !important;
    }

    /* 위성 사진 카드: 데스크탑용 max-width:calc(50vw-340)이 좁은 태블릿(예 776px)에서 48px까지
       쪼그라들어 이미지/라운드가 뭉개지던 문제 해결. 뷰포트 비례로 축소(768≈모바일, 1439≈데스크탑 실측). */
    .orb-card img { width: 100%; height: auto; display: block; }
    /* border-radius는 주지 않음 — 이미지 원본 모서리(일부 뾰족한 디자인) 그대로 살림 */
    #orb-card-1 { width: clamp(220px, 29vw, 420px); }          /* forest 420 */
    #orb-card-2 { width: clamp(210px, 28vw, 404px); max-width: none; }  /* windmill 404 */
    #orb-card-3 { width: clamp(170px, 22vw, 320px); }          /* solar 320 */
    #orb-card-4 { width: clamp(255px, 34vw, 490px); max-width: none; }  /* ev 490 */
}
/* ══════════════════════════════════════════════
   모바일 제품 스와이프 카루셀 (Figma 3021:15625)
   ══════════════════════════════════════════════ */
/* 캐러셀 슬라이드용 커스텀 속성 등록 — 숫자로 보간 가능해야 transform이 부드럽게 이동(미등록 시 점프) */
@property --pm-i {
  syntax: '<number>';
  inherits: false;
  initial-value: 0;
}

.product-mob { display: none; }

/* 공통(모바일+태블릿 ≤1439): 색상·flex·버튼 박스 등 기본 스타일.
   뷰포트별 수치(패딩/폰트/레이아웃)는 아래 태블릿 블록이 덮음 */
@media (max-width: 1439px) {
  /* 데스크탑 카드 숨기고 캐러셀 표시 */
  .product-sticky > .product-card { display: none !important; }

  /* 페이지 16 패딩 밖으로: 화면 전체 폭으로 빼서 옆 카드가 보이게.
     상단 116(코일 영역)부터 카드 시작, 하단 20 */
  .product-mob {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    /* 재킹용 상/하 패딩 제거 → 일반 스와이프 컨테이너. 카드가 컨테이너를 꽉 채움(=590), 코일은 위(캔버스)로 별도 표시 */
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  .product-mob-track {
    display: flex;
    gap: 8px;   /* 카드 간 8 */
    height: 100%;
    padding: 0 16px;   /* 좌우 16 여백(활성 카드 정렬) */
    box-sizing: border-box;
    /* 카드폭(100vw-32) + gap8 = (100vw-24)씩 이동 */
    transform: translateX(calc(var(--pm-i, 0) * (24px - 100vw)));
    /* --pm-i(등록된 number)를 트랜지션 → transform이 매 프레임 재계산되어 부드럽게 슬라이드 */
    transition: --pm-i 0.55s cubic-bezier(0.25, 1.06, 0.4, 1);
    will-change: transform;
  }

  .pm-card {
    flex: 0 0 calc(100vw - 32px);
    width: calc(100vw - 32px);
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .pm-inner {
    flex: 1;
    min-height: 0;
    border-radius: 16px;
    padding: 40px 16px 30px;
    /* 배경 gradient는 JS가 시안(A/B)·제품별로 설정. 아래는 fallback */
    background: linear-gradient(136.73deg, rgb(239,99,0) 6.6863%, rgb(242,113,0) 47.486%, rgb(248,133,31) 68.45%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
  }

  .pm-top { display: flex; flex-direction: column; }

  .pm-dikel { display: flex; align-items: center; gap: 8px; }
  .pm-donut { display: block; }
  .pm-dikel-name { font-size: 18px; font-weight: 700; color: #fff; }

  .pm-title { display: flex; flex-direction: column; margin-top: 12px; }
  .pm-num { font-size: 30px; font-weight: 500; opacity: 0.5; color: #fff; line-height: 1.4; }
  .pm-title span:last-child { font-size: 30px; font-weight: 700; color: #fff; line-height: 1.4; }

  .pm-media { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
  .pm-video { width: 100%; height: 112px; border-radius: 8px; object-fit: cover; display: block; }
  .pm-desc { display: flex; flex-direction: column; gap: 6px; }
  .pm-desc h3 { font-size: 18px; font-weight: 700; color: #fff; margin: 0; line-height: 1.6; word-break: keep-all; }
  .pm-desc p { font-size: 16px; font-weight: 400; color: #fff; opacity: 0.8; margin: 0; line-height: 1.6; word-break: keep-all; }

  /* 버튼(Figma BtnCommon MOB/inverted): 흰 텍스트 박스 + 흰 테두리 화살표 박스, gap 4 */
  .pm-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
    text-decoration: none;
  }
  .pm-btn-label {
    background: #fff;
    color: #000;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    padding: 11px 16px 10px;   /* pt-11 / pb-10 / px-16 */
    border-radius: 10px;
    white-space: nowrap;
  }
  .pm-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    border: 1px solid #fff;
    border-radius: 10px;
  }
  .pm-btn-arrow svg { display: block; width: 20px; height: 20px; }
}

/* ══════════════════════════════════════════════
   태블릿 제품 스와이프 카루셀 (Figma 3025:15694)
   3화면(768/1024/1439) 수치로 clamp. 콘텐츠 좌측 + 코일 우측
   ══════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1439px) {
  /* 데스크탑 카드 숨기고 캐러셀 표시 */
  .product-sticky > .product-card { display: none !important; }

  .product-mob {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    padding: 30px;              /* 프레임 p-30 */
    overflow: hidden;
    box-sizing: border-box;
  }

  .product-mob-track {
    display: flex;
    gap: 12px;                  /* 카드 간 12 */
    height: 100%;
    align-items: center;        /* 검수 0806: 카드를 세로 중앙 정렬 → 카드 중앙=뷰포트 중앙=코일 위치와 정렬 유지 */
    padding: 0;                 /* 모바일 트랙의 0 16px 상속 제거 (프레임 p-30이 담당) */
    /* 카드폭 + gap 12씩 이동 (트랙폭 = 카드폭) */
    transform: translateX(calc(var(--pm-i, 0) * -100% - var(--pm-i, 0) * 12px));
    /* --pm-i(등록된 number)를 트랜지션 → transform이 매 프레임 재계산되어 부드럽게 슬라이드 */
    transition: --pm-i 0.6s cubic-bezier(0.25, 1.06, 0.4, 1);
    will-change: transform;
  }

  .pm-card {
    flex: 0 0 calc(100vw - 60px);   /* frame - 60 */
    width: calc(100vw - 60px);
    /* 검수 0806: 세로 긴 태블릿에서 카드가 뷰포트 높이를 꽉 채워 내부 여백이 생기던 문제 해결.
       디자인 3해상도(768→630, 1024→756, 1439→943)를 지나는 선형식으로 폭에 비례해 높이 결정 →
       비율 유지한 채 전체 크기만 유동. 가로 긴(짧은 높이) 태블릿 대비 뷰포트 높이로 캡. 세로중앙정렬(track)로 코일과 정렬. */
    height: min(calc(46.65vw + 271.8px), calc(100vh - 60px));
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  /* 카드(gradient): px-30 py-40 rounded-20, 콘텐츠 좌측 정렬 */
  .pm-inner {
    flex: 1;
    min-height: 0;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
  }

  .pm-top { display: flex; flex-direction: column; align-items: flex-start; }

  /* dikel: 아이콘 36→48 clamp, 텍스트 24→32 */
  .pm-dikel { gap: 12px; }
  .pm-donut { width: clamp(36px, 4.6875vw, 48px); height: clamp(36px, 4.6875vw, 48px); }
  .pm-dikel-name { font-size: clamp(24px, 3.125vw, 32px); }

  /* dikel행 → 번호/제목: gap 30. 번호/제목은 가로 inline(gap-20) */
  .pm-title { flex-direction: row; gap: 20px; align-items: flex-start; margin-top: clamp(24px, 3.125vw, 30px); }
  .pm-num { font-size: clamp(42px, 5.56vw, 80px); line-height: 1.4; }
  .pm-title span:last-child { font-size: clamp(42px, 5.56vw, 80px); line-height: 1.4; }

  /* 제목행 → 미디어: gap 24 */
  .pm-media { margin-top: clamp(18px, 2.344vw, 24px); gap: clamp(18px, 2.344vw, 24px); width: clamp(348px, 45.3vw, 652px); }
  .pm-video { width: 100%; height: clamp(149px, 19.46vw, 280px); border-radius: 16px; }
  .pm-desc { gap: 12px; }
  .pm-desc h3 { font-size: clamp(18px, 2.344vw, 30px); line-height: 1.5; }
  .pm-desc p { font-size: clamp(16px, 1.953vw, 24px); opacity: 0.8; line-height: 1.6; }

  /* 버튼(태블릿 고정): 텍스트 20 Medium, px-24 py-16 rounded-14, 화살표 64px */
  .pm-btn { gap: 4px; }
  .pm-btn-label { font-size: 20px; font-weight: 500; line-height: 1.6; padding: 16px 24px; border-radius: 14px; }
  .pm-btn-arrow { width: 64px; height: 64px; padding: 0; border-radius: 14px; box-sizing: border-box; }
  .pm-btn-arrow svg { width: 20px; height: 20px; }
}

/* ══════════════════════════════════════════════
   투자정보 카드 리빌 (하단→상단 슬라이드 + 페이드, 탄력 안착)
   ══════════════════════════════════════════════ */
.inv-card-stock,
.inv-card-market,
.inv-card-accum,
.inv-card-ir {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 0.8s ease, transform 1.05s cubic-bezier(0.22, 1.12, 0.4, 1);
}
.inv-card-stock.inv-reveal,
.inv-card-market.inv-reveal,
.inv-card-accum.inv-reveal,
.inv-card-ir.inv-reveal {
  opacity: 1;
  transform: translateY(0);
}
