/* =========================================================
   SYNC-T 결과 페이지 — Hero·Pentagon·Sync·Fingerprint·Type
   ========================================================= */

.st-page-result {
  padding-top: var(--sp-5);
  padding-bottom: var(--sp-9);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

/* ── HERO ── */
.st-result-hero {
  position: relative;
  text-align: center;
  padding: var(--sp-7) var(--sp-4);
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 30% 30%, var(--c-real-dyn, var(--c-real)) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, var(--c-ideal-dyn, var(--c-ideal)) 0%, transparent 55%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.st-result-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}
/* 결과 페이지 최상단 식별 플레이트 — 이름 + 코드 강조 박스 */
/* margin-bottom 축소(sp-5 → sp-3): 헤더 DOM 순서 변경 후 essence margin-top과 합산 여백이 과도해지지 않도록 */
.st-result-plate {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-3);
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r-lg);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.45);
}
.st-result-plate::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--c-real-dyn, #fff), var(--c-ideal-dyn, #fff));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
}
/* 코드(예: LPSF-BURN) — 메타 정보 톤다운: NAME에 강조를 양보하고 기술 라벨 느낌 유지 */
.st-result-eyebrow {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.62);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin: 0;
}
/* 호명형 카피 — ACT 1 임팩트 (스펙 v2) */
.st-result-greeting-label {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--sp-2);
}
/* 핵심 호명 카피 — '당신은, ~한 사람이에요' (스펙 v2 ACT 1 primary)
   가독성 우선: 흰색 본문 + 그라디언트는 두 번째 줄(타입 묘사)에만 적용 */
.st-result-greeting {
  position: relative;
  font-size: clamp(22px, 5.6vw, 30px);
  font-weight: 800;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: var(--tracking-tight);
  white-space: pre-line;
  word-break: keep-all;
  margin: 0 0 var(--sp-4);
}
/* 두 번째 줄(타입 묘사)에 미묘한 그라디언트 강조 — 단, 명도 충분히 확보 */
.st-result-greeting::first-line {
  font-size: 0.7em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}
/* 후크 카피 — ACT 1→ACT 2 다리 (질문형) */
.st-result-hook {
  position: relative;
  font-size: var(--fz-md);
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  word-break: keep-all;
  max-width: 360px;
  margin: var(--sp-3) auto 0;
  padding: 0 var(--sp-2);
}
/* 통합 공유 패키지 — 인스타 카드 + 한 줄 자기소개 + 컬러 + SYNC 코드 + 액션 */
.st-share-package {
  padding: var(--sp-6) var(--sp-5);
  background: linear-gradient(160deg, rgba(255, 138, 169, 0.06), rgba(110, 168, 255, 0.06));
  border: 1.5px solid rgba(255, 138, 169, 0.20);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.st-share-package-title {
  margin: 0;
  text-align: center;
  font-size: clamp(20px, 5vw, 24px);
}
.st-share-package-help {
  margin: 0;
  text-align: center;
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  word-break: keep-all;
  line-height: 1.6;
}
.st-share-package-help strong { color: var(--txt); font-weight: 700; }

/* 패키지 안 sub-block (한 줄 자기소개 / 컬러 / SYNC 코드) */
.st-share-block {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.st-share-block-label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--txt-dim);
}
.st-share-block-copy {
  align-self: flex-start;
  font-size: var(--fz-xs);
  padding: 6px 12px;
  margin-top: 4px;
}
.st-share-oneline-quote {
  margin: 0;
  padding: var(--sp-3);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r-sm);
  font-size: var(--fz-sm);
  line-height: 1.6;
  color: var(--txt);
  word-break: keep-all;
  border-left: 3px solid var(--c-real);
}

/* SYNC 코드 텍스트 */
.st-share-synccode .st-sync-code-text {
  font-size: clamp(14px, 3.6vw, 17px);
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: var(--sp-2) var(--sp-3);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r-sm);
  color: var(--txt);
  margin: 0;
  word-break: break-all;
}

/* 액션 버튼 행 */
.st-share-actions {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-2);
}
.st-share-actions .st-btn {
  flex: 1 1 140px;
  max-width: 200px;
}

/* LIFE GUIDE — 일상의 모습·강점·상성 묶음 (스크린샷 자산) */
.st-life-guide {
  padding: var(--sp-5);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.st-life-guide-title {
  margin: 0;
  font-size: clamp(20px, 5vw, 24px);
}
.st-life-guide-intro {
  margin: 0;
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  word-break: keep-all;
}
.st-life-guide .st-h3 {
  font-size: var(--fz-md);
  font-weight: 700;
  margin: 0 0 var(--sp-3);
  color: var(--txt);
}

/* 디테일 영역 구분선 — ACT 3 끝나고 detail 들어가기 직전 */
.st-detail-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: var(--sp-7) 0 var(--sp-5);
}
.st-detail-divider::after {
  content: '더 자세히 보기 ↓';
  display: block;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--txt-mute);
  margin-top: -10px;
  background: var(--bg-0);
  padding: 0 var(--sp-3);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
/* Quick share — hero 직후 노출되는 작은 공유 행 (페이지 끝까지 안 가도 공유 가능) */
.st-result-quick-share {
  position: relative;
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  margin-top: var(--sp-4);
  flex-wrap: wrap;
}
.st-quick-share-btn {
  font-size: var(--fz-sm);
  padding: 10px 18px;
  border-radius: var(--r-pill);
}
/* 플레이트 안의 메인 타이틀 — 1순위 최강조
   NAME이 짧은 명사형(4~6자)으로 통일됨에 따라 폰트 사이즈 상향 + tracking 완화로 안정감 부여 */
.st-result-name {
  position: relative;
  font-size: clamp(26px, 6.4vw, 34px);
  font-weight: 800;
  letter-spacing: var(--tracking-normal);
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
  margin: 0;
  word-break: keep-all;
}
/* 해시태그 라인(#몰입광 #밤샘사색 #이불킥장인) — 3순위 보조 강조
   essence보다 작고 dim하게 처리, 해시태그 사이 word-spacing으로 가독성 확보 */
.st-result-tagline {
  position: relative;
  margin-top: var(--sp-2);
  font-size: var(--fz-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.02em;
  word-spacing: 0.15em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  word-break: keep-all;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* ── PENTAGON ── */
.st-result-pent {
  text-align: center;
}
.st-result-pent .st-pentagon-host {
  margin: 0 auto;
  max-width: 380px;
}
.st-result-legend {
  margin-top: var(--sp-4);
  display: flex;
  justify-content: center;
  gap: var(--sp-5);
  font-size: var(--fz-sm);
  color: var(--txt-dim);
}
.st-legend-item { display: flex; align-items: center; gap: var(--sp-2); }
.st-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-real);
}
.st-legend-dot.dashed {
  background: transparent;
  border: 2px dashed var(--c-ideal);
  width: 14px; height: 14px;
}

/* ── SYNC RATE ── */
.st-result-sync {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(44, 95, 141, 0.25), rgba(255, 138, 101, 0.25));
  border: 1px solid var(--border);
}
.st-sync-pct {
  font-size: clamp(48px, 14vw, 72px);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: 1;
  background: linear-gradient(135deg, var(--c-real-dyn, var(--c-real)), var(--c-ideal-dyn, var(--c-ideal)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.st-sync-label {
  margin-top: var(--sp-2);
  font-size: var(--fz-lg);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
}
.st-sync-tag {
  margin-top: var(--sp-1);
  font-size: var(--fz-sm);
  color: var(--txt-dim);
}

/* ── COLOR FINGERPRINT ── */
.st-result-fingerprint .st-fp-title {
  text-align: center;
  margin-bottom: var(--sp-4);
}
.st-fp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  /* v2 Phase C-2: 컬러 카드 가운데 정렬 (한 줄 자기소개·SYNC 코드 블록 제거 후 빈 공간 보정) */
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.st-fp-card {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  min-width: 0;        /* grid 자식 텍스트 overflow 방지 */
  overflow: hidden;
}
/* 좁은 모바일(≤420px) — 본캐/추구미 카드를 1열로 쌓아 컨테이너 밖으로 안 빠지게 */
@media (max-width: 420px) {
  .st-fp-grid { grid-template-columns: 1fr; }
  .st-fp-card { padding: var(--sp-3); gap: var(--sp-3); }
  .st-fp-swatch { width: 48px; height: 48px; }
  .st-result-fingerprint.enhanced { padding: var(--sp-5) var(--sp-4); }
  .st-fp-name { font-size: var(--fz-sm); }
}
.st-fp-swatch {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
/* glow — 살아있는 듯 천천히 숨쉬는 발광 (스펙 v2 ACT 3-2) */
.st-fp-swatch.glow {
  position: relative;
  animation: st-fp-pulse 4s ease-in-out infinite;
}
.st-fp-swatch.glow::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--r-md) + 8px);
  background: inherit;
  filter: blur(18px);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}
@keyframes st-fp-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,0.3), 0 0 18px rgba(255,255,255,0.05); }
  50%      { box-shadow: 0 4px 16px rgba(0,0,0,0.3), 0 0 32px rgba(255,255,255,0.18); }
}

.st-result-fingerprint.enhanced {
  padding: var(--sp-6) var(--sp-5);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}
.st-fp-help {
  text-align: center;
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  margin: -8px auto var(--sp-4);
  max-width: 480px;
  word-break: keep-all;
  line-height: 1.6;
}
.st-fp-help strong { color: var(--txt); font-weight: 700; }
.st-fp-meta { min-width: 0; }
.st-fp-label {
  font-size: var(--fz-xs);
  letter-spacing: var(--tracking-wide);
  color: var(--txt-dim);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.st-fp-name {
  font-size: var(--fz-md);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.st-fp-hex {
  font-size: var(--fz-xs);
  font-family: var(--font-mono);
  color: var(--txt-mute);
}

.st-sync-code {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.st-sync-code .st-fp-label { flex-shrink: 0; }
.st-sync-code-text {
  flex: 1;
  font-size: var(--fz-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.st-fp-copy {
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fz-xs);
}

/* ── 설명 / 핵심 특징 / 일상 / 강점·약점 ── */
.st-result-desc {
  padding: var(--sp-5);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.st-result-paragraph {
  font-size: var(--fz-md);
  line-height: var(--lh-normal);
  color: var(--txt);
  word-break: keep-all;
  white-space: pre-line;
}

.st-trait-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}
.st-trait {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.st-trait-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.st-trait-body h4 {
  font-size: var(--fz-md);
  font-weight: 700;
  margin-bottom: 4px;
}
.st-trait-body p {
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  line-height: var(--lh-normal);
}

.st-daily-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}
@media (min-width: 540px) {
  .st-daily-grid { grid-template-columns: repeat(2, 1fr); }
}
.st-daily-card {
  padding: var(--sp-4);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.st-daily-label {
  font-size: var(--fz-sm);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.st-daily-text {
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  line-height: var(--lh-normal);
  word-break: keep-all;
  white-space: pre-line;
}

.st-result-pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 540px) {
  .st-result-pros-cons { grid-template-columns: repeat(2, 1fr); }
}
.st-pros, .st-cons {
  padding: var(--sp-5);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.st-pros h3, .st-cons h3 { margin-bottom: var(--sp-3); font-size: var(--fz-md); }
.st-pros ul, .st-cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.st-pros li, .st-cons li {
  font-size: var(--fz-sm);
  color: var(--txt);
  padding-left: var(--sp-3);
  position: relative;
}
.st-pros li::before, .st-cons li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-ideal);
}
.st-cons li::before { background: var(--color-warn); }

/* ── COMPANIONS ── */
.st-comp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}
@media (min-width: 540px) {
  .st-comp-grid { grid-template-columns: repeat(3, 1fr); }
}
.st-comp-card {
  padding: var(--sp-4);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
}
.st-comp-card.tone-real  { border-color: rgba(44, 95, 141, 0.5); }
.st-comp-card.tone-ideal { border-color: rgba(255, 138, 101, 0.5); }
.st-comp-card.tone-warn  { border-color: rgba(255, 91, 60, 0.4); }
.st-comp-label {
  font-size: var(--fz-xs);
  color: var(--txt-dim);
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--sp-2);
}
.st-comp-name {
  font-size: var(--fz-md);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--sp-1);
}
.st-comp-code {
  font-size: var(--fz-xs);
  color: var(--txt-mute);
  margin-bottom: var(--sp-2);
}
.st-comp-tag {
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  word-break: keep-all;
  line-height: var(--lh-snug);
}

/* ── ACTIONS ── */
.st-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  /* 모바일에서 양쪽 잘림 방지 — 컨테이너 안쪽 여백 확보 */
  padding: var(--sp-3) var(--sp-4);
  margin: 0 auto;
}
.st-result-actions .st-btn {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 200px;
  /* 좁은 모바일(<420px) 에서 텍스트 축소·줄바꿈 허용 */
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 420px) {
  .st-result-actions {
    padding: var(--sp-3) var(--sp-3);
    gap: var(--sp-2);
  }
  .st-result-actions .st-btn {
    font-size: var(--fz-xs);
    padding: 10px 8px;
    flex-basis: calc(33% - var(--sp-2));
  }
}

/* ── ACT 3-3: 인스타 9:16 공유 카드 ── */
.st-share-card-section {
  padding: var(--sp-6) var(--sp-5);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.st-share-card-title {
  font-size: var(--fz-xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 0;
}
.st-share-card-help {
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  margin-top: -8px;
  text-align: center;
  word-break: keep-all;
}
.st-share-card-frame {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
  /* 사용자 피드백: SNS 공유 카드 가운데 정렬 */
  margin-left: auto;
  margin-right: auto;
}
.st-share-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  font-family: var(--font-sans);
  color: #fff;
}
.st-share-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.st-share-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
}
.st-share-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  gap: 10px;
}
.st-share-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.65);
}
.st-share-card-greet {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
  white-space: pre-line;
  word-break: keep-all;
  margin-top: 6px;
}
.st-share-card-name {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
  margin-top: 4px;
  word-break: keep-all;
}
.st-share-card-code {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
}
.st-share-card-sync {
  margin-top: auto;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.st-share-card-sync-num {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #34d399 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.st-share-card-sync-cap {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}
.st-share-card-colors {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.st-share-card-color {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}
.st-share-card-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.st-share-card-foot {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.st-share-card-actions {
  display: flex;
  gap: var(--sp-3);
  width: 100%;
  justify-content: center;
}
.st-share-card-actions .st-btn { flex: 1; max-width: 200px; }

/* 기존 stub 영역 비활성 — 클래스 충돌 방지 */
.st-result-stub { display: none; }

/* ================================================
   v3 — 듀얼 펜타곤 Hero + 5축 안내 + 친절한 카피
   ================================================ */

/* ── 듀얼 펜타곤 Hero ── */
.st-dual-hero {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-6) var(--sp-4);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  text-align: center;
}

.st-dual-hero-intro { display: flex; flex-direction: column; gap: var(--sp-2); }

.st-dual-title {
  font-size: var(--fz-xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 0;
}

.st-dual-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  flex-wrap: wrap;
}
.st-dual-help em {
  font-style: normal;
  font-weight: 700;
  color: var(--txt);
}
.st-dual-help .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 4px;
}
/* 펜타곤 시각용 고정 컬러 — 본캐(그린) / 추구미(옐로우) */
.st-dual-help .dot.real  { background: #34d399; }
/* 통일: 추구미 = 빈 동그라미 + 노란 실선 윤곽 (이전 dashed → solid) */
.st-dual-help .dot.ideal {
  background: transparent;
  border: 2px solid #fbbf24;
  box-sizing: border-box;
  width: 12px; height: 12px;
}
.st-dual-help .dual-sep { color: var(--txt-mute); }

.st-dual-caption {
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  word-break: keep-all;
}
.st-dual-caption strong { color: var(--txt); font-weight: 700; }

/* ── 동적 SYNC 코드 행 (본캐 vs 추구미) ── */
.st-sync-code-row {
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.st-sync-code-line {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.st-sync-code-line-cap {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
  width: 56px;
}
.st-sync-code-line.real  .st-sync-code-line-cap { color: #34d399; }
.st-sync-code-line.ideal .st-sync-code-line-cap { color: #fbbf24; }
.st-sync-code-line-text {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: clamp(13px, 3.6vw, 16px);
  letter-spacing: 0.03em;
  color: var(--txt);
  word-break: break-all;
}
.st-sync-code-line-diff {
  font-size: var(--fz-xs);
  color: var(--txt-dim);
  margin: 4px 0 0;
  padding-top: var(--sp-2);
  border-top: 1px dashed var(--border);
  word-break: keep-all;
  line-height: 1.5;
}

/* ── 알파벳 코드 강조 (사용자 피드백: 코드가 너무 안 드러남) ── */
.st-dual-codes {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--sp-2);
  margin: var(--sp-4) auto 0;
  flex-wrap: wrap;
}
.st-dual-code-chip {
  flex: 1 1 0;
  min-width: 0;
  max-width: 200px;
  padding: 10px var(--sp-3);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.st-dual-code-chip.real  { border-color: rgba(52, 211, 153, 0.55); background: rgba(52, 211, 153, 0.08); }
.st-dual-code-chip.ideal { border-color: rgba(251, 191, 36, 0.55); background: rgba(251, 191, 36, 0.08); }
.st-dual-code-cap {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--txt-dim);
  text-transform: uppercase;
}
.st-dual-code-mono {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: clamp(16px, 4.5vw, 22px);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.st-dual-code-chip.real  .st-dual-code-mono { color: #34d399; }
.st-dual-code-chip.ideal .st-dual-code-mono { color: #fbbf24; }
.st-dual-code-sep {
  align-self: center;
  font-size: var(--fz-md);
  color: var(--txt-mute);
  flex-shrink: 0;
}

.st-pentagon-host.dual {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  /* 위/아래 라벨이 인접 텍스트(특히 캐릭터 카드)와 겹치지 않도록 여유 확보
     라벨이 펜타곤 외곽에 절대좌표로 그려져 약 30~40px 튀어나오므로 충분히 띄움 */
  margin: 28px auto 36px;
  padding: 16px 0;
}

/* 펜타곤 중앙 84% 오버레이 — ACT 1 임팩트 (스펙 v2) */
.st-pentagon-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.st-pentagon-sync-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
.st-pentagon-sync-num {
  font-size: clamp(36px, 9vw, 52px);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #34d399 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.st-pentagon-sync-cap {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
}

/* 훅 카피 — 다음 섹션 호기심 유도 */
.st-dual-hook {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fz-md);
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--txt-dim);
  border-left: 3px solid rgba(110, 168, 255, 0.6);
  background: rgba(110, 168, 255, 0.06);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  text-align: left;
  word-break: keep-all;
}

/* 듀얼 분할: 왼쪽 펜타곤 + 오른쪽 본캐/추구미 축그래프
   - 모바일(<768px): 펜타곤 위, 축그래프 아래 (스택)
   - 데스크톱(≥768px, 컨테이너 720px): 좌 펜타곤 / 우 축그래프 2컬럼 */
.st-dual-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  align-items: center;
}
@media (min-width: 768px) {
  .st-dual-split {
    grid-template-columns: minmax(280px, 6fr) minmax(260px, 4fr);
    gap: var(--sp-5);
    align-items: stretch;
  }
  .st-dual-split-left .st-pentagon-host.dual {
    max-width: 320px;
    margin: 0 auto;
  }
}
.st-dual-split-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-dual-split-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  text-align: left;
}
/* ── 5축 안내 (legend) ── */
.st-axis-legend {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}
.st-axis-legend-title {
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--txt-dim);
  margin-bottom: var(--sp-3);
  text-align: center;
}
.st-axis-legend-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
  text-align: left;
}
@media (min-width: 540px) {
  .st-axis-legend-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .st-axis-legend-grid { grid-template-columns: repeat(3, 1fr); }
}
.st-axis-legend-card {
  padding: var(--sp-3);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.st-axis-legend-head {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.st-axis-legend-emoji { font-size: 18px; }
.st-axis-legend-name { font-size: var(--fz-sm); font-weight: 800; }
/* SYNC 코드 알파벳 (예: L·V) — head 우측 끝에 배지처럼 (베타 피드백 #11) */
.st-axis-legend-code {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--txt-dim);
  padding: 2px 8px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
}
/* 한글 키워드 매핑 (예: 머리·가슴) — 알파벳 코드의 한글 직관 (#11 X3) */
.st-axis-legend-ko {
  margin: 0;
  font-size: var(--fz-sm);
  font-weight: 700;
  color: var(--txt);
  letter-spacing: var(--tracking-tight);
}
.st-axis-legend-ends {
  font-size: var(--fz-xs);
  color: var(--txt-mute);
  font-weight: 600;
}
.st-axis-legend-desc {
  font-size: var(--fz-xs);
  color: var(--txt-dim);
  line-height: var(--lh-snug);
  word-break: keep-all;
}

/* ── Sync big 추가 카피 ── */
.st-sync-big-eyebrow {
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--sp-3);
}

/* ── block help 안내 (본캐/추구미 섹션 도입부) ── */
.st-block-help {
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  line-height: var(--lh-normal);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--r-sm);
  word-break: keep-all;
  margin-bottom: var(--sp-2);
}
.st-block-help strong { color: var(--txt); font-weight: 700; }

/* 코드 prefix가 들어간 이름들 — 자동으로 첫 단어(알파벳 코드)를 모노 강조 */
.st-result-name,
.st-block-title,
.st-comp-name {
  /* prefix 효과는 textContent 첫 토큰을 위한 별도 wrap 없이 사용자 시각 처리만 — Hero에선 더블 여백으로 자연스럽게 분리됨 */
}

/* ── v2 추가 — Hero essence ──
   본질 정의 한 줄 — 2순위 중강조
   NAME 다음으로 눈에 들어와야 하므로 사이즈 상향(--fz-md), italic 제거(한글 가독성),
   weight 500으로 본문보다 약간 더 또렷하게 */
.st-result-essence {
  position: relative;
  margin-top: var(--sp-3);
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--fz-md);
  font-weight: 500;
  line-height: var(--lh-snug);
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  word-break: keep-all;
}

/* 좁은 모바일 — 헤더 위계가 무너지지 않도록 미세 조정
   NAME clamp가 이미 처리하지만, tagline 해시태그 3개가 좁은 화면에서 word-spacing 누적으로
   넘치는 것을 방지 + essence 라인 길이 보정 */
@media (max-width: 420px) {
  .st-result-name { letter-spacing: -0.005em; }
  .st-result-essence { max-width: 92%; font-size: 14px; }
  .st-result-tagline { word-spacing: 0.08em; max-width: 92%; }
}

/* ── Sync big block ── */
.st-result-sync-big {
  text-align: center;
  padding: var(--sp-7) var(--sp-4);
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse at 30% 0%, rgba(44, 95, 141, 0.4) 0, transparent 60%),
    radial-gradient(ellipse at 70% 100%, rgba(255, 138, 101, 0.4) 0, transparent 60%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.st-sync-big-pct {
  font-size: clamp(56px, 18vw, 96px);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: 1;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.6));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.st-sync-big-label {
  margin-top: var(--sp-3);
  font-size: var(--fz-xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
}
.st-sync-big-tag {
  margin-top: var(--sp-1);
  font-size: var(--fz-md);
  color: var(--txt-dim);
}
.st-sync-big-explain {
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--r-md);
  font-size: var(--fz-sm);
  line-height: var(--lh-normal);
  color: rgba(255, 255, 255, 0.92);
  word-break: keep-all;
  text-align: left;
}

/* ── 본캐/추구미 block ── */
.st-block {
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.st-block.real { border-color: rgba(44, 95, 141, 0.4); }
.st-block.ideal { border-color: rgba(255, 138, 101, 0.4); }

.st-block-eyebrow {
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  color: var(--txt-dim);
  text-transform: uppercase;
}
.st-block-title {
  font-size: var(--fz-2xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: 1.2;
  background: linear-gradient(135deg, var(--c-real-dyn, var(--c-real)), var(--c-ideal-dyn, var(--c-ideal)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  word-break: keep-all;
}
.st-block.ideal .st-block-title {
  background: linear-gradient(135deg, var(--c-ideal-dyn, var(--c-ideal)), #ffd54a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.st-block-tag {
  font-size: var(--fz-md);
  color: var(--txt-dim);
  margin-top: -8px;
}
.st-block-desc {
  font-size: var(--fz-sm);
  line-height: var(--lh-normal);
  color: var(--txt);
  word-break: keep-all;
  white-space: pre-line;
}
.st-block-variant-desc {
  font-size: var(--fz-sm);
  line-height: var(--lh-normal);
  color: var(--txt-dim);
  font-style: italic;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--c-ideal);
  word-break: keep-all;
  white-space: pre-line;
}
.st-block-common-ideal {
  font-size: var(--fz-sm);
  line-height: var(--lh-normal);
  color: var(--txt-dim);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--c-ideal);
  word-break: keep-all;
  white-space: pre-line;
}

.st-nuance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.st-nuance-list li {
  font-size: var(--fz-sm);
  color: var(--txt);
  padding-left: var(--sp-4);
  position: relative;
}
.st-nuance-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--c-ideal);
}

/* ── 5축 가로 막대 ── */
.st-axis-bars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* 양방향(bipolar) 축 막대 — SYNC-T 철학: 양극단 모두 매력적 */
.st-axis-bar.bipolar { display: flex; flex-direction: column; gap: 6px; }
.st-axis-bar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  font-size: var(--fz-sm);
}
.st-axis-bar-title { font-weight: 700; color: var(--txt); }
.st-axis-bar-score {
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  transition: color 0.4s ease;
}

.st-axis-bar-bipolar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.st-axis-pole {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  min-width: 36px;
  transition: color 0.4s ease;
}
.st-axis-pole.left { text-align: right; }
.st-axis-pole.right { text-align: left; }

.st-axis-bar-track {
  position: relative;
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--c-low) 22%, transparent) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    color-mix(in srgb, var(--c-high) 22%, transparent) 100%
  );
  overflow: hidden;
}
/* color-mix 미지원 폴백: 흐릿한 배경 */
@supports not (background: color-mix(in srgb, red, blue)) {
  .st-axis-bar-track {
    background: rgba(255, 255, 255, 0.06);
  }
}
.st-axis-bar-center {
  position: absolute;
  top: -2px; bottom: -2px;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-0.5px);
}
.st-axis-bar-fill {
  position: absolute;
  top: 0; bottom: 0;
  border-radius: 4px;
  transition: width 0.9s var(--ease-out, cubic-bezier(.22,.61,.36,1)),
              left 0.9s var(--ease-out, cubic-bezier(.22,.61,.36,1)),
              right 0.9s var(--ease-out, cubic-bezier(.22,.61,.36,1));
  box-shadow: 0 0 8px currentColor;
}

/* 컴팩트(듀얼 분할 우측) 변형 */
.st-axis-bars.compact { gap: var(--sp-3); }
.st-axis-bars.compact .st-axis-bar-head { font-size: var(--fz-xs); }
.st-axis-bars.compact .st-axis-bar-score { font-size: 14px; }
.st-axis-bars.compact .st-axis-bar-track { height: 6px; }
.st-axis-bars.compact .st-axis-pole { font-size: 10px; min-width: 32px; }

/* ── Deep dive (싱크로율 축별 갭) ── */
.st-deepdive {
  padding: var(--sp-5);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.st-deepdive-title { margin-bottom: 0; }
.st-deepdive-intro {
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  word-break: keep-all;
}

.st-axisgap-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.st-axisgap-item {
  padding: var(--sp-4);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.st-axisgap-item.intensity-aligned   { border-left: 3px solid var(--color-success); }
.st-axisgap-item.intensity-gentle    { border-left: 3px solid var(--c-vibe-warm); }
.st-axisgap-item.intensity-meaningful{ border-left: 3px solid var(--c-drive-do); }
.st-axisgap-item.intensity-extreme   { border-left: 3px solid var(--c-fire-burn); }

.st-axisgap-head {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fz-sm);
}
.st-axisgap-emoji { font-size: 18px; }
.st-axisgap-name { flex: 1; font-weight: 700; color: var(--txt); }
.st-axisgap-num {
  font-family: var(--font-mono);
  font-weight: 800;
  color: var(--c-ideal);
  font-size: var(--fz-md);
}

.st-axisgap-bar {
  position: relative;
  height: 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-pill);
}
/* 양방향 트랙 — 좌/우 끝에 축의 양극 색을 옅게 */
.st-axisgap-bar.bipolar {
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--c-low) 22%, transparent) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    color-mix(in srgb, var(--c-high) 22%, transparent) 100%
  );
}
@supports not (background: color-mix(in srgb, red, blue)) {
  .st-axisgap-bar.bipolar { background: rgba(255, 255, 255, 0.06); }
}
.st-axisgap-center {
  position: absolute;
  top: -3px; bottom: -3px;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(-0.5px);
  z-index: 1;
}
.st-axisgap-arrow {
  position: absolute;
  top: 6px;
  height: 2px;
  border-radius: 1px;
}
.st-axisgap-dot {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
/* 본캐: 축 색상 채움 + 부드러운 글로우 (흰 테두리·dark 보더 제거) */
.st-axisgap-dot.real {
  z-index: 3;
  background: transparent; /* JS에서 background 주입 */
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.18);
}
/* 추구미: 음영 없는 빈 동그라미, 축 색상 윤곽선 (점선 → 실선으로 통일) */
.st-axisgap-dot.ideal {
  z-index: 2;
  background: transparent;
  border: 2px solid transparent; /* JS에서 borderColor 주입 */
}

.st-axisgap-desc {
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  line-height: var(--lh-snug);
  word-break: keep-all;
}

/* ── 차이 크기 tier별 시각 위계 (3-group) ── */
.st-axisgap-groups {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.st-axisgap-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.st-axisgap-group-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.st-axisgap-group-title {
  font-size: var(--fz-md);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}
.st-axisgap-group-intro {
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  line-height: var(--lh-snug);
  word-break: keep-all;
  margin: 0;
}
/* tier별 강조 */
.st-axisgap-group.tier-high .st-axisgap-group-title {
  color: #ff8a65;
}
.st-axisgap-group.tier-high .st-axisgap-item {
  background: rgba(239, 68, 68, 0.06);
  border-left-width: 4px;
}
.st-axisgap-group.tier-high .st-axisgap-name { font-size: 15px; }
.st-axisgap-group.tier-high .st-axisgap-num  { font-size: var(--fz-lg); }
.st-axisgap-group.tier-high .st-axisgap-desc { color: var(--txt); font-weight: 500; }

.st-axisgap-group.tier-mid .st-axisgap-group-title { color: #a78bfa; }
.st-axisgap-group.tier-mid .st-axisgap-item { background: rgba(167, 139, 250, 0.04); }

.st-axisgap-group.tier-match .st-axisgap-group-title { color: #5eead4; }
.st-axisgap-group.tier-match .st-axisgap-item {
  padding: var(--sp-3) var(--sp-4);
  background: rgba(94, 234, 212, 0.03);
}
.st-axisgap-group.tier-match .st-axisgap-desc { font-size: 13px; }

/* ── 상위 2축 조합 인사이트 박스 ── */
.st-deepdive-combo {
  padding: var(--sp-4) var(--sp-5);
  background: linear-gradient(135deg, rgba(255, 138, 169, 0.10), rgba(167, 139, 250, 0.10));
  border: 1px solid rgba(255, 138, 169, 0.25);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.st-combo-label {
  font-size: var(--fz-xs);
  font-weight: 800;
  color: #ff8aa9;
  letter-spacing: 0.05em;
  margin: 0;
}
.st-combo-text {
  font-size: var(--fz-sm);
  color: var(--txt);
  line-height: var(--lh-relaxed);
  word-break: keep-all;
  margin: 0;
}

.st-deepdive-summary p {
  padding: var(--sp-3) var(--sp-4);
  background: linear-gradient(135deg, rgba(44, 95, 141, 0.15), rgba(255, 138, 101, 0.15));
  border-radius: var(--r-sm);
  font-size: var(--fz-sm);
  font-weight: 600;
  word-break: keep-all;
}

/* ── ACT 2-1: 일상 장면 3컷 ── */
.st-daily-scenes {
  padding: var(--sp-6) var(--sp-5);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.st-daily-scenes-title {
  font-size: var(--fz-xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 0;
}
.st-daily-scenes-intro {
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  margin-top: -8px;
  word-break: keep-all;
}
.st-daily-scenes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  counter-reset: scene;
}
.st-daily-scene {
  position: relative;
  padding: var(--sp-5) var(--sp-4);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.st-daily-scene::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #6EA8FF 0%, #FF8AA9 100%);
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  opacity: 0.6;
}
.st-daily-scene:nth-child(2)::before {
  background: linear-gradient(180deg, #FB923C 0%, #FBBF24 100%);
}
.st-daily-scene:nth-child(3)::before {
  background: linear-gradient(180deg, #EC4899 0%, #A78BFA 100%);
}
.st-daily-scene-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--txt-mute);
  margin-bottom: 0;
}
.st-daily-scene-context {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fz-xs);
  font-weight: 700;
  color: var(--txt-dim);
  letter-spacing: 0.02em;
}
.st-daily-scene-emoji {
  font-size: 18px;
  line-height: 1;
}
.st-daily-scene-title {
  font-size: var(--fz-lg);
  font-weight: 800;
  color: var(--txt);
  letter-spacing: var(--tracking-tight);
  line-height: 1.3;
  margin: var(--sp-1) 0;
  word-break: keep-all;
}
.st-daily-scene-body {
  font-size: var(--fz-sm);
  color: var(--txt);
  line-height: 1.75;
  word-break: keep-all;
}
.st-daily-scene-hl {
  font-style: normal;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, transparent 60%, rgba(255, 138, 169, 0.35) 60%);
  padding: 0 2px;
}

/* ── ACT 2-2: 듀얼리티 스토리 ── */
.st-duality {
  padding: var(--sp-6) var(--sp-5);
  background:
    radial-gradient(circle at 20% 30%, rgba(52, 211, 153, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.08) 0%, transparent 55%),
    var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  text-align: center;
}
.st-duality-title {
  margin-bottom: var(--sp-4);
  font-size: var(--fz-xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
}
.st-duality-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.st-duality-card {
  padding: var(--sp-4) var(--sp-3);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-1);
  min-height: 92px;
}
.st-duality-card.real { border-left: 3px solid #34d399; }
.st-duality-card.ideal { border-left: 3px solid #fbbf24; }
.st-duality-card-label {
  font-size: var(--fz-xs);
  font-weight: 700;
  color: var(--txt-mute);
  letter-spacing: 0.04em;
}
.st-duality-card-name {
  font-size: var(--fz-md);
  font-weight: 800;
  color: var(--txt);
  word-break: keep-all;
  line-height: 1.3;
}
.st-duality-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0 var(--sp-2);
  position: relative;
}
.st-duality-arrow::before, .st-duality-arrow::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(52,211,153,0.5), rgba(251,191,36,0.5));
  margin: 4px auto;
}
.st-duality-arrow-num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #34d399, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.st-duality-arrow-cap {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--txt-mute);
  text-transform: uppercase;
}
.st-duality-headline {
  font-size: var(--fz-md);
  font-weight: 800;
  color: var(--txt);
  margin-bottom: var(--sp-2);
}
.st-duality-meaning {
  font-size: var(--fz-sm);
  line-height: 1.7;
  color: var(--txt-dim);
  word-break: keep-all;
  max-width: 540px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .st-duality-flow {
    grid-template-columns: 1fr;
    gap: var(--sp-2);
  }
  .st-duality-arrow {
    padding: var(--sp-2) 0;
    flex-direction: row;
    gap: var(--sp-2);
  }
  .st-duality-arrow::before, .st-duality-arrow::after {
    width: 1px;
    height: 22px;
    margin: 0;
  }
}

/* ── 결과 근거 (P2-#8: details/summary로 접기) ── */
.st-reasoning-details {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.st-reasoning-summary {
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fz-md);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  user-select: none;
}
.st-reasoning-summary::-webkit-details-marker { display: none; }
.st-reasoning-toggle {
  font-size: var(--fz-xs);
  font-weight: 600;
  color: var(--txt-dim);
  letter-spacing: 0.02em;
  font-family: var(--font-mono);
}
.st-reasoning-toggle::before { content: '펼치기 ↓'; }
.st-reasoning-details[open] .st-reasoning-toggle { color: var(--c-real); }
.st-reasoning-details[open] .st-reasoning-toggle::before { content: '접기 ↑'; }
.st-reasoning-body {
  padding: 0 var(--sp-5) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
/* legacy .st-reasoning 잔존 (혹시 남은 selectors와 충돌 방지용) */
.st-reasoning {
  padding: var(--sp-5);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}
.st-reasoning-title {
  font-size: var(--fz-xl);
  font-weight: 800;
  margin-bottom: var(--sp-2);
  letter-spacing: var(--tracking-tight);
}
.st-reasoning-intro {
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  margin-bottom: var(--sp-3);
}
.st-reasoning-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.st-reasoning-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.st-reasoning-item:last-child { border-bottom: none; }
.st-reasoning-check {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 800;
  color: #6EA8FF;
  line-height: 1.4;
}
.st-reasoning-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.st-reasoning-option {
  font-size: var(--fz-sm);
  font-weight: 600;
  color: var(--txt);
  line-height: 1.5;
  word-break: keep-all;
}
.st-reasoning-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fz-xs);
}
.st-reasoning-axis {
  color: var(--txt-mute);
  font-weight: 600;
}
.st-reasoning-delta {
  font-family: var(--font-mono);
  font-weight: 800;
  color: #6EA8FF;
  font-variant-numeric: tabular-nums;
}
.st-reasoning-conclusion {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(110, 168, 255, 0.10);
  border-radius: var(--r-md);
  text-align: center;
  font-size: var(--fz-sm);
  font-weight: 700;
  color: var(--txt);
  letter-spacing: 0.01em;
}

/* ── 자기인식 + 받아들이기 통합 카드 (P1) ── */
.st-self-card {
  padding: var(--sp-5);
  background: linear-gradient(160deg, rgba(255,138,169,0.08), rgba(94,234,212,0.06));
  border: 1px solid rgba(255, 138, 169, 0.20);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  word-break: keep-all;
}
.st-self-meta { padding-bottom: var(--sp-3); border-bottom: 1px dashed var(--border); }
.st-self-row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin: var(--sp-2) 0;
}
.st-self-meta-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.st-self-receive { display: flex; flex-direction: column; gap: var(--sp-3); }
.st-self-foot {
  font-size: var(--fz-xs);
  color: var(--txt-dim);
  line-height: 1.5;
  padding-top: var(--sp-2);
  border-top: 1px dashed var(--border);
  margin: 0;
}
.st-self-foot em { font-style: normal; font-weight: 700; color: var(--txt); }

/* 기존 메타 카드 — 통합 카드 안에서 inline 형태로 사용 */
.st-result-meta.meta-card {
  text-align: center;
  padding: var(--sp-7) var(--sp-5);
  background: linear-gradient(135deg, rgba(255, 138, 169, 0.10), rgba(255, 215, 110, 0.04));
  border: 1px solid rgba(255, 138, 169, 0.25);
  border-radius: var(--r-xl);
  box-shadow: 0 8px 24px rgba(255, 138, 169, 0.08);
}
.st-meta-eyebrow {
  font-size: var(--fz-xs);
  font-weight: 800;
  color: rgba(255, 138, 169, 0.95);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 var(--sp-2);
}
.st-meta-score {
  font-size: clamp(40px, 10vw, 56px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #ff8aa9, #ffd76e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.st-meta-label {
  font-size: var(--fz-md);
  font-weight: 800;
  margin: 0;
  color: var(--txt);
}
.st-meta-comfort {
  font-size: var(--fz-sm);
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
  color: var(--txt-dim);
  margin: 0;
  word-break: keep-all;
}
.st-meta-tag {
  font-size: 11px;
  color: var(--txt-mute);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  word-break: keep-all;
  margin: 0;
  text-align: right;
}
.st-self-receive .st-receive-title {
  font-size: var(--fz-md);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}
.st-self-receive .st-receive-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.st-self-receive .st-receive-list li {
  position: relative;
  padding-left: 1.2em;
  font-size: var(--fz-sm);
  line-height: 1.55;
  color: var(--txt);
}
.st-self-receive .st-receive-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-ideal);
  font-weight: 700;
}

/* ============================================================
   v3 — 결과 받아들이기 가이드 / 작은 실험 / 한 줄 자기소개 / 방법론
   ============================================================ */

/* ── 결과 받아들이기 카드 ── */
.st-receive-card {
  padding: var(--sp-5);
  background: linear-gradient(160deg, rgba(52,211,153,0.08), rgba(251,191,36,0.08));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  word-break: keep-all;
}
.st-receive-title {
  font-size: var(--fz-xl);
  font-weight: 800;
  margin: 0 0 var(--sp-3);
  letter-spacing: -0.01em;
}
.st-receive-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.st-receive-list li {
  position: relative;
  padding-left: 1.4em;
  font-size: var(--fz-md);
  line-height: 1.7;
  color: var(--txt);
}
.st-receive-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--c-ideal);
  font-weight: 700;
}
.st-receive-foot {
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  padding-top: var(--sp-3);
  border-top: 1px dashed var(--border);
  line-height: 1.6;
}
.st-receive-foot em {
  font-style: normal;
  font-weight: 700;
  color: var(--txt);
}

/* ── 듀얼리티 안의 작은 실험 — 시각 비중 강화 (메인 CTA처럼 보이게) ── */
.st-experiment-inline {
  margin-top: var(--sp-5);
  padding: var(--sp-5);
  background: linear-gradient(135deg, rgba(251,191,36,0.10), rgba(52,211,153,0.06));
  border: 1.5px solid rgba(251,191,36,0.35);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.st-experiment-inline::before {
  content: '🎯 SOLUTION';
  position: absolute;
  top: -10px;
  left: 16px;
  background: #fbbf24;
  color: #1a1208;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
}
.st-experiment-eyebrow {
  font-size: var(--fz-md);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fbbf24;
  margin: 0;
}

/* ── 작은 실험 섹션 (legacy standalone — 미사용 잔존) ── */
.st-experiment {
  padding: var(--sp-5);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.st-experiment-title {
  margin: 0 0 var(--sp-2);
}
.st-experiment-intro {
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  margin: 0 0 var(--sp-4);
  word-break: keep-all;
  line-height: 1.6;
}
.st-experiment-card {
  padding: var(--sp-4);
  background: linear-gradient(135deg, rgba(52,211,153,0.10), rgba(251,191,36,0.10));
  border: 1px dashed rgba(251,191,36,0.5);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.st-experiment-axis {
  font-size: var(--fz-sm);
  font-weight: 700;
  color: var(--c-ideal);
  letter-spacing: 0.01em;
}
.st-experiment-action {
  font-size: var(--fz-md);
  font-weight: 700;
  line-height: 1.6;
  color: var(--txt);
  word-break: keep-all;
}
.st-experiment-why {
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  line-height: 1.6;
  word-break: keep-all;
}
.st-experiment-foot {
  font-size: var(--fz-sm);
  color: var(--txt-dim);
  margin: var(--sp-3) 0 0;
  text-align: center;
  word-break: keep-all;
}

/* ── 방법론 details ── */
.st-methodology details {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
}
.st-methodology summary {
  cursor: pointer;
  font-size: var(--fz-md);
  font-weight: 700;
  color: var(--txt);
  list-style: none;
}
.st-methodology summary::-webkit-details-marker { display: none; }
.st-methodology summary::after {
  content: ' ▾';
  color: var(--txt-dim);
  font-weight: 400;
}
.st-methodology details[open] summary::after {
  content: ' ▴';
}
.st-methodology-body {
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  font-size: var(--fz-sm);
  line-height: 1.7;
  color: var(--txt-dim);
  word-break: keep-all;
}
.st-methodology-body strong { color: var(--txt); }
.st-methodology-body em { font-style: normal; font-weight: 700; color: var(--txt); }
.st-methodology-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-1);
}
.st-methodology-list li {
  padding: var(--sp-1) var(--sp-3);
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--c-real);
  border-radius: 4px;
}
.st-methodology-disclaimer {
  padding: var(--sp-3);
  background: rgba(251,191,36,0.08);
  border-radius: var(--r-md);
  font-size: var(--fz-xs);
  color: var(--txt-dim);
}

/* =========================================================
   v2 Phase A — AxisComparisonBars (5축 통합 비교 막대)
   본캐·추구미를 한 줄에 두 점으로 비교.
   ========================================================= */

.st-axis-cmp-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-size: var(--fz-xs);
  color: var(--txt-dim);
  margin-bottom: var(--sp-2);
}
.st-axis-cmp-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.st-axis-cmp-legend-item em { font-style: normal; opacity: 0.75; }
.st-axis-cmp-legend-item .dot {
  width: 10px; height: 10px; border-radius: 50%; display: inline-block;
}
.st-axis-cmp-legend-item .dot.real  { background: #34d399; }
/* 비교 막대 점 디자인과 통일 — 추구미는 음영 없는 빈 동그라미, 노란 윤곽선만 */
.st-axis-cmp-legend-item .dot.ideal {
  background: transparent;
  border: 2px solid #fbbf24;
  box-sizing: border-box;
  box-shadow: none;
}

.st-axis-compare {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.st-axis-cmp-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.st-axis-cmp-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-2);
}
.st-axis-cmp-title {
  font-size: var(--fz-sm);
  font-weight: 700;
  color: var(--txt);
}
.st-axis-cmp-diff {
  font-size: var(--fz-xs);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--txt-mute);
  white-space: nowrap;
}
.st-axis-cmp-row.intensity-medium .st-axis-cmp-diff { color: #facc15; }
.st-axis-cmp-row.intensity-strong .st-axis-cmp-diff { color: #fb923c; }
.st-axis-cmp-row.is-max .st-axis-cmp-diff { color: #fb923c; font-weight: 800; }

.st-axis-cmp-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-2);
}
.st-axis-cmp-pole {
  font-size: var(--fz-xs);
  color: var(--txt-mute);
  font-weight: 600;
  white-space: nowrap;
}
.st-axis-cmp-pole.left  { color: var(--c-low,  var(--txt-mute)); }
.st-axis-cmp-pole.right { color: var(--c-high, var(--txt-mute)); }

.st-axis-cmp-track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    color-mix(in srgb, var(--c-low) 35%, transparent) 0%,
    rgba(255,255,255,0.12) 50%,
    color-mix(in srgb, var(--c-high) 35%, transparent) 100%
  );
}
.st-axis-cmp-center {
  position: absolute;
  left: 50%;
  top: -2px;
  bottom: -2px;
  width: 1px;
  background: rgba(255,255,255,0.18);
  transform: translateX(-0.5px);
}
.st-axis-cmp-row.is-max .st-axis-cmp-track {
  box-shadow: 0 0 0 1px rgba(251,146,60,0.35);
}

.st-axis-cmp-dot {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: transparent;
  border: 2px solid transparent;
  box-sizing: border-box;
}
/* 본캐 — 채움 (그린) + 부드러운 글로우 */
.st-axis-cmp-dot.real {
  background: var(--c-real, #34d399);
  box-shadow: 0 0 8px color-mix(in srgb, var(--c-real, #34d399) 55%, transparent);
}
/* 추구미 — 음영 없는 빈 동그라미, 노란색 윤곽선 (사용자 피드백) */
.st-axis-cmp-dot.ideal {
  background: transparent;
  border: 2px solid var(--c-ideal, #fbbf24);
  z-index: 3;
}
.st-axis-cmp-dot-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  color: var(--txt-dim);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.st-axis-cmp-dot.real  .st-axis-cmp-dot-num { color: var(--c-real, #34d399); }
.st-axis-cmp-dot.ideal .st-axis-cmp-dot-num { color: var(--c-ideal, #fbbf24); }

/* v2.1 단순화: 점 옆 숫자는 더 이상 렌더 안 함 (헤드에 절대점수 있음) */
.st-axis-cmp-dot-num { display: none; }

/* v2.1 단순화: 헤드 한 줄 — 축 이름 · 본캐 점수 · 추구미 점수 · 차이값 */
.st-axis-cmp-scores {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: var(--fz-xs);
  font-weight: 600;
  color: var(--txt-dim);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.st-axis-cmp-score.real  { color: #34d399; }
.st-axis-cmp-score.ideal { color: #fbbf24; }
.st-axis-cmp-score-sep { color: var(--txt-mute); opacity: 0.5; }

/* 헤드: 모바일에선 wrap 허용 (차이값은 우측 끝 유지) */
.st-axis-cmp-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
  justify-content: space-between;
}
.st-axis-cmp-head .st-axis-cmp-title { flex: 0 0 auto; }
.st-axis-cmp-head .st-axis-cmp-scores { flex: 1 1 auto; }
.st-axis-cmp-head .st-axis-cmp-diff { flex: 0 0 auto; }

/* =========================================================
   v2 Phase A — ChangeSignature (변화 시그니처 한 줄)
   ========================================================= */

.st-change-sig {
  margin-top: var(--sp-3);
  padding: var(--sp-3);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
}
.st-change-sig-line {
  margin: 0 0 6px;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: var(--fz-sm);
  line-height: 1.7;
  letter-spacing: 0.01em;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.st-change-sig-tok {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--txt-mute);
  font-weight: 600;
}
.st-change-sig-tok.is-change {
  /* 단순화: 박스/보더 제거 — 화살표 + 색상만으로 변화 표현 */
  padding: 0;
  border: none;
  background: none;
}
.st-change-sig-old {
  font-style: normal;
  color: var(--txt-mute);
  font-weight: 500;
  /* 취소선 제거 — 화살표가 전환을 명확히 표현하므로 충분 */
}
.st-change-sig-arrow {
  color: var(--txt-mute);
  opacity: 0.7;
  font-size: 0.85em;
}
.st-change-sig-new {
  font-weight: 800;
  color: var(--c-change, #fbbf24);
}
.st-change-sig-tok.is-max {
  /* is-max 상자 강조 제거 — 캡션의 '↑ 가장 큰 변화' 텍스트로 충분 */
  box-shadow: none;
}
.st-change-sig-sep {
  color: var(--txt-mute);
  opacity: 0.5;
  user-select: none;
}
.st-change-sig-cap {
  margin: 0;
  font-size: var(--fz-xs);
  color: var(--txt-dim);
}
.st-change-sig-cap.is-aligned { color: #34d399; }
.st-change-sig-cap strong { color: var(--txt); }

/* =========================================================
   v2 Phase B — AxisComparisonBars 헤드 2행 (절대 점수 + 강도)
   ========================================================= */

.st-axis-cmp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  align-items: center;
  font-size: var(--fz-xs);
  color: var(--txt-dim);
  line-height: 1.5;
}
.st-axis-cmp-persona {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.st-axis-cmp-persona-cap {
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 999px;
  color: var(--txt);
}
.st-axis-cmp-persona.real  .st-axis-cmp-persona-cap { background: rgba(52, 211, 153, 0.18); color: #34d399; }
.st-axis-cmp-persona.ideal .st-axis-cmp-persona-cap { background: rgba(251, 191, 36, 0.18); color: #fbbf24; }
.st-axis-cmp-persona-sep { opacity: 0.5; }
.st-axis-cmp-persona-side { font-weight: 700; }
.st-axis-cmp-persona-num {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--txt);
}
.st-axis-cmp-persona-strength {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 2px;
}
.st-axis-cmp-persona-strength.s-strong {
  background: rgba(251, 146, 60, 0.18);
  color: #fb923c;
}
.st-axis-cmp-persona-strength.s-medium {
  background: rgba(250, 204, 21, 0.16);
  color: #facc15;
}

/* =========================================================
   v2 Phase B — CharacterCardGrid (본캐·추구미 좌우 카드)
   ========================================================= */

.st-character-section {
  margin-top: var(--sp-5);
}
/* 듀얼 hero 안에 배치될 때 — 시그니처 직후, 축 안내 직전 위치 */
.st-dual-hero #characterCardGrid {
  margin-top: var(--sp-3);
}
.st-character-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .st-character-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    align-items: stretch;
  }
}

.st-character-card {
  position: relative;
  padding: var(--sp-4);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.st-character-card.real  { border-left: 3px solid #34d399; }
.st-character-card.ideal { border-left: 3px solid #fbbf24; }

.st-character-eyebrow {
  margin: 0;
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--txt-dim);
}
.st-character-card.real  .st-character-eyebrow { color: #34d399; }
.st-character-card.ideal .st-character-eyebrow { color: #fbbf24; }

.st-character-code {
  margin: 0;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.st-character-name {
  margin: 0;
  font-size: var(--fz-lg);
  font-weight: 800;
  color: var(--txt);
  line-height: 1.3;
}
.st-character-tagline {
  margin: 0;
  font-size: var(--fz-sm);
  font-weight: 600;
  color: var(--txt-dim);
}
.st-character-desc {
  margin: 4px 0 0;
  font-size: var(--fz-sm);
  line-height: 1.65;
  color: var(--txt);
  word-break: keep-all;
  white-space: pre-line;
}
.st-character-variant {
  margin: 0;
  font-size: var(--fz-xs);
  color: var(--txt-dim);
  line-height: 1.6;
  font-style: italic;
  white-space: pre-line;
}
.st-character-nuance {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.st-character-nuance li {
  position: relative;
  padding-left: 18px;
  font-size: var(--fz-sm);
  line-height: 1.55;
  color: var(--txt);
}
.st-character-nuance li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: #34d399;
  font-size: 12px;
}
.st-character-common-ideal {
  margin: 4px 0 0;
  padding: var(--sp-2);
  background: rgba(251, 191, 36, 0.06);
  border-radius: 6px;
  font-size: var(--fz-xs);
  line-height: 1.6;
  color: var(--txt-dim);
  white-space: pre-line;
}

/* =========================================================
   v2 Phase C — SYNC 요약 한 줄 + deepdive explain
   (이전 sync-big 섹션 통합 결과)
   ========================================================= */

.st-dual-sync-summary {
  margin: var(--sp-3) 0 0;
  padding: var(--sp-3);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #fbbf24;
  font-size: var(--fz-sm);
  line-height: 1.65;
  color: var(--txt);
  text-align: left;
}
.st-dual-sync-label {
  font-weight: 800;
  color: #fbbf24;
  white-space: nowrap;
}
.st-dual-sync-sep {
  color: var(--txt-mute);
  opacity: 0.5;
}
.st-dual-sync-tag {
  color: var(--txt-dim);
}

.st-deepdive-explain {
  margin: 0 auto var(--sp-4);
  max-width: 720px;
  padding: var(--sp-3);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  font-size: var(--fz-sm);
  line-height: 1.7;
  color: var(--txt-dim);
  word-break: keep-all;
}
.st-deepdive-explain:empty { display: none; }

/* =========================================================
   v2 Phase D-2 — CharacterCard 신규 블록
   (paradox · misunderstanding · microMoments)
   ========================================================= */

.st-character-block {
  margin-top: var(--sp-3);
  padding: var(--sp-3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  border-left: 2px solid rgba(255, 255, 255, 0.12);
}
.st-character-card.real  .st-character-block { border-left-color: rgba(52, 211, 153, 0.4); }
.st-character-card.ideal .st-character-block { border-left-color: rgba(251, 191, 36, 0.4); }

.st-character-block-head {
  margin: 0 0 6px;
  font-size: var(--fz-xs);
  font-weight: 700;
  color: var(--txt-dim);
  letter-spacing: 0.02em;
}

/* paradox · microMoments 공통 — 불릿 리스트 */
.st-character-block-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.st-character-block-list li {
  position: relative;
  padding-left: 16px;
  font-size: var(--fz-sm);
  line-height: 1.55;
  color: var(--txt);
  word-break: keep-all;
}
.st-character-block-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 11px;
  opacity: 0.7;
}
.st-character-card.real  .st-character-paradox li::before,
.st-character-card.real  .st-character-moments li::before { color: #34d399; }
.st-character-card.ideal .st-character-paradox li::before,
.st-character-card.ideal .st-character-moments li::before { color: #fbbf24; }

/* microMoments — 항목이 이모지로 시작하므로 ✦ 불릿 생략 (이중 시각자극 방지) */
.st-character-moments .st-character-block-list li {
  padding-left: 0;
}
.st-character-moments .st-character-block-list li::before {
  display: none;
}

/* misunderstanding — '보이는 모습' / '진짜는' 두 줄 */
.st-character-mis-seen,
.st-character-mis-real {
  margin: 0;
  font-size: var(--fz-sm);
  line-height: 1.55;
  word-break: keep-all;
}
.st-character-mis-seen { color: var(--txt-dim); }
.st-character-mis-real { color: var(--txt); margin-top: 4px; }
.st-character-mis-cap {
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 999px;
  margin-right: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--txt-mute);
}
.st-character-mis-real .st-character-mis-cap {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}
.st-character-card.ideal .st-character-mis-real .st-character-mis-cap {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}
